From 8cb7320e4b9b364da110b7b737eeaf991665b300 Mon Sep 17 00:00:00 2001 From: isabelmsft <67024108+isabelmsft@users.noreply.github.com> Date: Wed, 16 Aug 2023 15:27:23 -0700 Subject: [PATCH 01/75] [GCU] Add PORT table StateDB Validator (#2936) --- .../field_operation_validators.py | 77 +++++++++++++++++- .../gcu_field_operation_validators.conf.json | 3 + scripts/portconfig | 4 +- .../field_operation_validator_test.py | 79 +++++++++++++++++++ utilities_common/constants.py | 1 + 5 files changed, 161 insertions(+), 3 deletions(-) diff --git a/generic_config_updater/field_operation_validators.py b/generic_config_updater/field_operation_validators.py index 8f555d0c1a..fc7c14464e 100644 --- a/generic_config_updater/field_operation_validators.py +++ b/generic_config_updater/field_operation_validators.py @@ -5,7 +5,8 @@ import subprocess from sonic_py_common import device_info from .gu_common import GenericConfigUpdaterError - +from swsscommon import swsscommon +from utilities_common.constants import DEFAULT_SUPPORTED_FECS_LIST SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__)) GCU_TABLE_MOD_CONF_FILE = f"{SCRIPT_DIR}/gcu_field_operation_validators.conf.json" @@ -71,7 +72,7 @@ def rdma_config_update_validator(patch_element): 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 + # Helper function to return relevant cleaned paths, considers 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 = [] @@ -126,3 +127,75 @@ def _get_fields_in_patch(): return False return True + + +def read_statedb_entry(table, key, field): + state_db = swsscommon.DBConnector("STATE_DB", 0) + tbl = swsscommon.Table(state_db, table) + return tbl.hget(key, field)[1] + + +def port_config_update_validator(patch_element): + + def _validate_field(field, port, value): + if field == "fec": + supported_fecs_str = read_statedb_entry("PORT_TABLE", port, "supported_fecs") + if supported_fecs_str: + if supported_fecs_str != 'N/A': + supported_fecs_list = [element.strip() for element in supported_fecs_str.split(',')] + else: + supported_fecs_list = [] + else: + supported_fecs_list = DEFAULT_SUPPORTED_FECS_LIST + if value.strip() not in supported_fecs_list: + return False + return True + if field == "speed": + supported_speeds_str = read_statedb_entry("PORT_TABLE", port, "supported_speeds") or '' + try: + supported_speeds = [int(s) for s in supported_speeds_str.split(',') if s] + if supported_speeds and int(value) not in supported_speeds: + return False + except ValueError: + return False + return True + return False + + def _parse_port_from_path(path): + match = re.search(r"Ethernet\d+", path) + if match: + port = match.group(0) + return port + return None + + if patch_element["op"] == "remove": + return True + + # for PORT speed and fec configs, need to ensure value is allowed based on StateDB + patch_element_str = json.dumps(patch_element) + path = patch_element["path"] + value = patch_element.get("value") + fields = ['fec', 'speed'] + for field in fields: + if field in patch_element_str: + if path.endswith(field): + port = _parse_port_from_path(path) + if not _validate_field(field, port, value): + return False + elif isinstance(value, dict): + if field in value.keys(): + port = _parse_port_from_path(path) + value = value[field] + if not _validate_field(field, port, value): + return False + else: + for port_name, port_info in value.items(): + if isinstance(port_info, dict): + port = port_name + if field in port_info.keys(): + value = port_info[field] + if not _validate_field(field, port, value): + return False + else: + continue + return True diff --git a/generic_config_updater/gcu_field_operation_validators.conf.json b/generic_config_updater/gcu_field_operation_validators.conf.json index f598e0d300..28f4dc0508 100644 --- a/generic_config_updater/gcu_field_operation_validators.conf.json +++ b/generic_config_updater/gcu_field_operation_validators.conf.json @@ -145,6 +145,9 @@ } } } + }, + "PORT": { + "field_operation_validators": [ "generic_config_updater.field_operation_validators.port_config_update_validator" ] } } } diff --git a/scripts/portconfig b/scripts/portconfig index becc203a90..acdebcc236 100755 --- a/scripts/portconfig +++ b/scripts/portconfig @@ -30,6 +30,8 @@ import sys import decimal import argparse +from utilities_common.constants import DEFAULT_SUPPORTED_FECS_LIST + # mock the redis for unit test purposes # try: if os.environ["UTILITIES_UNIT_TESTING"] == "1" or os.environ["UTILITIES_UNIT_TESTING"] == "2": @@ -276,7 +278,7 @@ class portconfig(object): else: supported_fecs_list = [] else: - supported_fecs_list = ["rs", "fc", "none"] + supported_fecs_list = DEFAULT_SUPPORTED_FECS_LIST return supported_fecs_list diff --git a/tests/generic_config_updater/field_operation_validator_test.py b/tests/generic_config_updater/field_operation_validator_test.py index f381c593af..f69955fc28 100644 --- a/tests/generic_config_updater/field_operation_validator_test.py +++ b/tests/generic_config_updater/field_operation_validator_test.py @@ -14,6 +14,85 @@ class TestValidateFieldOperation(unittest.TestCase): + @patch("generic_config_updater.field_operation_validators.read_statedb_entry", mock.Mock(return_value="")) + def test_port_config_update_validator_valid_speed_no_state_db(self): + patch_element = {"path": "/PORT/Ethernet3", "op": "add", "value": {"speed": "234"}} + assert generic_config_updater.field_operation_validators.port_config_update_validator(patch_element) == True + + @patch("generic_config_updater.field_operation_validators.read_statedb_entry", mock.Mock(return_value="40000,30000")) + def test_port_config_update_validator_invalid_speed_existing_state_db(self): + patch_element = {"path": "/PORT/Ethernet3", "op": "add", "value": {"speed": "xyz"}} + assert generic_config_updater.field_operation_validators.port_config_update_validator(patch_element) == False + + @patch("generic_config_updater.field_operation_validators.read_statedb_entry", mock.Mock(return_value="123,234")) + def test_port_config_update_validator_valid_speed_existing_state_db(self): + patch_element = {"path": "/PORT/Ethernet3", "op": "add", "value": {"speed": "234"}} + assert generic_config_updater.field_operation_validators.port_config_update_validator(patch_element) == True + + @patch("generic_config_updater.field_operation_validators.read_statedb_entry", mock.Mock(return_value="123,234")) + def test_port_config_update_validator_valid_speed_existing_state_db(self): + patch_element = {"path": "/PORT/Ethernet3/speed", "op": "add", "value": "234"} + assert generic_config_updater.field_operation_validators.port_config_update_validator(patch_element) == True + + @patch("generic_config_updater.field_operation_validators.read_statedb_entry", mock.Mock(return_value="123,234")) + def test_port_config_update_validator_invalid_speed_existing_state_db(self): + patch_element = {"path": "/PORT/Ethernet3/speed", "op": "add", "value": "235"} + assert generic_config_updater.field_operation_validators.port_config_update_validator(patch_element) == False + + @patch("generic_config_updater.field_operation_validators.read_statedb_entry", mock.Mock(return_value="123,234")) + def test_port_config_update_validator_invalid_speed_existing_state_db_nested(self): + patch_element = {"path": "/PORT", "op": "add", "value": {"Ethernet3": {"alias": "Eth0", "speed": "235"}}} + assert generic_config_updater.field_operation_validators.port_config_update_validator(patch_element) == False + + @patch("generic_config_updater.field_operation_validators.read_statedb_entry", mock.Mock(return_value="123,234")) + def test_port_config_update_validator_valid_speed_existing_state_db_nested(self): + patch_element = {"path": "/PORT", "op": "add", "value": {"Ethernet3": {"alias": "Eth0", "speed": "234"}, "Ethernet4": {"alias": "Eth4", "speed": "234"}}} + assert generic_config_updater.field_operation_validators.port_config_update_validator(patch_element) == True + + @patch("generic_config_updater.field_operation_validators.read_statedb_entry", mock.Mock(return_value="123,234")) + def test_port_config_update_validator_invalid_speed_existing_state_db_nested_2(self): + patch_element = {"path": "/PORT", "op": "add", "value": {"Ethernet3": {"alias": "Eth0", "speed": "234"}, "Ethernet4": {"alias": "Eth4", "speed": "236"}}} + assert generic_config_updater.field_operation_validators.port_config_update_validator(patch_element) == False + + def test_port_config_update_validator_remove(self): + patch_element = {"path": "/PORT/Ethernet3", "op": "remove"} + assert generic_config_updater.field_operation_validators.port_config_update_validator(patch_element) == True + + @patch("generic_config_updater.field_operation_validators.read_statedb_entry", mock.Mock(return_value="rs, fc")) + def test_port_config_update_validator_invalid_fec_existing_state_db(self): + patch_element = {"path": "/PORT/Ethernet3/fec", "op": "add", "value": "asf"} + assert generic_config_updater.field_operation_validators.port_config_update_validator(patch_element) == False + + @patch("generic_config_updater.field_operation_validators.read_statedb_entry", mock.Mock(return_value="rs, fc")) + def test_port_config_update_validator_invalid_fec_existing_state_db_nested(self): + patch_element = {"path": "/PORT", "op": "add", "value": {"Ethernet3": {"alias": "Eth0", "fec": "none"}, "Ethernet4": {"alias": "Eth4", "fec": "fs"}}} + assert generic_config_updater.field_operation_validators.port_config_update_validator(patch_element) == False + + @patch("generic_config_updater.field_operation_validators.read_statedb_entry", mock.Mock(return_value="rs, fc")) + def test_port_config_update_validator_valid_fec_existing_state_db_nested(self): + patch_element = {"path": "/PORT", "op": "add", "value": {"Ethernet3": {"alias": "Eth0", "fec": "fc"}}} + assert generic_config_updater.field_operation_validators.port_config_update_validator(patch_element) == True + + @patch("generic_config_updater.field_operation_validators.read_statedb_entry", mock.Mock(return_value="rs, fc")) + def test_port_config_update_validator_valid_fec_existing_state_db_nested_2(self): + patch_element = {"path": "/PORT", "op": "add", "value": {"Ethernet3": {"alias": "Eth0", "fec": "rs"}, "Ethernet4": {"alias": "Eth4", "fec": "fc"}}} + assert generic_config_updater.field_operation_validators.port_config_update_validator(patch_element) == True + + @patch("generic_config_updater.field_operation_validators.read_statedb_entry", mock.Mock(return_value="rs, fc")) + def test_port_config_update_validator_valid_fec_existing_state_db(self): + patch_element = {"path": "/PORT/Ethernet3/fec", "op": "add", "value": "rs"} + assert generic_config_updater.field_operation_validators.port_config_update_validator(patch_element) == True + + @patch("generic_config_updater.field_operation_validators.read_statedb_entry", mock.Mock(return_value="")) + def test_port_config_update_validator_valid_fec_no_state_db(self): + patch_element = {"path": "/PORT/Ethernet3", "op": "add", "value": {"fec": "rs"}} + assert generic_config_updater.field_operation_validators.port_config_update_validator(patch_element) == True + + @patch("generic_config_updater.field_operation_validators.read_statedb_entry", mock.Mock(return_value="")) + def test_port_config_update_validator_invalid_fec_no_state_db(self): + patch_element = {"path": "/PORT/Ethernet3/fec", "op": "add", "value": "rsf"} + assert generic_config_updater.field_operation_validators.port_config_update_validator(patch_element) == False + @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"} diff --git a/utilities_common/constants.py b/utilities_common/constants.py index 536965d009..f5c157941c 100644 --- a/utilities_common/constants.py +++ b/utilities_common/constants.py @@ -1,6 +1,7 @@ #All the constant used in sonic-utilities DEFAULT_NAMESPACE = '' +DEFAULT_SUPPORTED_FECS_LIST = [ 'rs', 'fc', 'none'] DISPLAY_ALL = 'all' DISPLAY_EXTERNAL = 'frontend' BGP_NEIGH_OBJ = 'BGP_NEIGH' From 7435b1ca539382e644f29d424c551f6258fd2920 Mon Sep 17 00:00:00 2001 From: Arvindsrinivasan Lakshmi Narasimhan <55814491+arlakshm@users.noreply.github.com> Date: Thu, 17 Aug 2023 21:08:45 -0700 Subject: [PATCH 02/75] Fix show acl table for masic (#2937) What I did Fixes sonic-net/sonic-buildimage#16012 The show acl table command currently get the ports from host config_db on multi asic platforms. This host config_db will not the phyiscal ports in the binding ports because the host doesnt have any front panel ports on the host. This causes the show acl table not to display the phyiscal ports in the output on multi asic devices/linecards. The test iface_namingmode/test_iface_namingmode.py::test_show_acl_table fails because of this issue. --- acl_loader/main.py | 26 +++++++++++++++++++++++++- tests/mock_tables/asic2/config_db.json | 2 +- tests/show_acl_test.py | 10 ++++++---- 3 files changed, 32 insertions(+), 6 deletions(-) diff --git a/acl_loader/main.py b/acl_loader/main.py index 31c181de33..5bacfe7d8f 100644 --- a/acl_loader/main.py +++ b/acl_loader/main.py @@ -173,7 +173,31 @@ 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 diff --git a/tests/mock_tables/asic2/config_db.json b/tests/mock_tables/asic2/config_db.json index bfda10a0d5..32a5243658 100644 --- a/tests/mock_tables/asic2/config_db.json +++ b/tests/mock_tables/asic2/config_db.json @@ -132,7 +132,7 @@ }, "ACL_TABLE|DATAACL_5": { "policy_desc": "DATAACL_5", - "ports@": "Ethernet124", + "ports@": "Ethernet20", "type": "L3", "stage": "ingress" } diff --git a/tests/show_acl_test.py b/tests/show_acl_test.py index 1b2cdc60a9..64db81fb9a 100644 --- a/tests/show_acl_test.py +++ b/tests/show_acl_test.py @@ -11,6 +11,11 @@ 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(): @@ -74,10 +79,7 @@ def test_show_acl_table(self, setup_teardown_multi_asic): } 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 {'asic0': 'Active', 'asic2': 'Active'}" - assert result_top == expected_output + assert result.output == MASIC_SHOW_ACL_OUTPUT def test_show_acl_rule(self, setup_teardown_multi_asic): runner = CliRunner() From b15f95f9f54409b2eca29cc41e74f891cbbd2a4e Mon Sep 17 00:00:00 2001 From: judyjoseph <53951155+judyjoseph@users.noreply.github.com> Date: Fri, 18 Aug 2023 18:27:53 -0700 Subject: [PATCH 03/75] Fix in config override when all asic namespaces not present in golden_config_db (#2946) #### What I did Fixes https://github.com/sonic-net/sonic-buildimage/issues/16164 #### How I did it In the multi-asic devices for eg: supervisor card of a chassis, the asics are not of its own -- it is the asic present in the fabric cards in the chassis. On then -- all the fabric cards need not be present in the chassis everytime. In that case golden_config_db.json file generated by NDM ( based on the Subdevices in the minigraph ) will not have all ASICs -- it will be for the fabric cards present in the chassis With the current logic, if there is an asic namespace missing -- config load_minigraph will exit with error as in the Issue #https://github.com/sonic-net/sonic-buildimage/issues/16164 and not restart dockers. Add logic to check and continue if the "asic" namespace is not present in the golden_config_db.json for multi-asic platforms. #### How to verify it Verified on a SUP ``` admin@str2-xxxx-sup-1:~$ sudo config load_minigraph -y --override_config Disabling container monitoring ... Stopping SONiC target ... Running command: /usr/local/bin/sonic-cfggen -H -m -j /etc/sonic/init_cfg.json --write-to-db Running command: /usr/local/bin/sonic-cfggen -H -m -j /etc/sonic/init_cfg.json -n asic0 --write-to-db Running command: /usr/local/bin/sonic-cfggen -H -m -j /etc/sonic/init_cfg.json -n asic1 --write-to-db Running command: /usr/local/bin/sonic-cfggen -H -m -j /etc/sonic/init_cfg.json -n asic2 --write-to-db Running command: /usr/local/bin/sonic-cfggen -H -m -j /etc/sonic/init_cfg.json -n asic3 --write-to-db Running command: /usr/local/bin/sonic-cfggen -H -m -j /etc/sonic/init_cfg.json -n asic4 --write-to-db Running command: /usr/local/bin/sonic-cfggen -H -m -j /etc/sonic/init_cfg.json -n asic5 --write-to-db Running command: /usr/local/bin/sonic-cfggen -H -m -j /etc/sonic/init_cfg.json -n asic6 --write-to-db Running command: /usr/local/bin/sonic-cfggen -H -m -j /etc/sonic/init_cfg.json -n asic7 --write-to-db Running command: /usr/local/bin/sonic-cfggen -H -m -j /etc/sonic/init_cfg.json -n asic8 --write-to-db Running command: /usr/local/bin/sonic-cfggen -H -m -j /etc/sonic/init_cfg.json -n asic9 --write-to-db Running command: /usr/local/bin/sonic-cfggen -H -m -j /etc/sonic/init_cfg.json -n asic10 --write-to-db Running command: /usr/local/bin/sonic-cfggen -H -m -j /etc/sonic/init_cfg.json -n asic11 --write-to-db Running command: /usr/local/bin/sonic-cfggen -H -m -j /etc/sonic/init_cfg.json -n asic12 --write-to-db Running command: /usr/local/bin/sonic-cfggen -H -m -j /etc/sonic/init_cfg.json -n asic13 --write-to-db Running command: /usr/local/bin/sonic-cfggen -H -m -j /etc/sonic/init_cfg.json -n asic14 --write-to-db Running command: /usr/local/bin/sonic-cfggen -H -m -j /etc/sonic/init_cfg.json -n asic15 --write-to-db Running command: /usr/local/bin/sonic-cfggen -d -y /etc/sonic/sonic_version.yml -t /usr/share/sonic/templates/sonic-environment.j2,/etc/sonic/sonic-environment Running command: config qos reload --no-dynamic-buffer --no-delay Buffer definition template not found at /usr/share/sonic/device/x86_64-nokia_ixrxxxxe_sup-r0/Nokia-IXRxxxxE-SUP-10/0/buffers.json.j2 Buffer definition template not found at /usr/share/sonic/device/x86_64-nokia_ixrxxxxe_sup-r0/Nokia-IXRxxxxE-SUP-10/1/buffers.json.j2 Buffer definition template not found at /usr/share/sonic/device/x86_64-nokia_ixrxxxxe_sup-r0/Nokia-IXRxxxxE-SUP-10/2/buffers.json.j2 Buffer definition template not found at /usr/share/sonic/device/x86_64-nokia_ixrxxxxe_sup-r0/Nokia-IXRxxxxE-SUP-10/3/buffers.json.j2 Buffer definition template not found at /usr/share/sonic/device/x86_64-nokia_ixrxxxxe_sup-r0/Nokia-IXRxxxxE-SUP-10/4/buffers.json.j2 Buffer definition template not found at /usr/share/sonic/device/x86_64-nokia_ixrxxxxe_sup-r0/Nokia-IXRxxxxE-SUP-10/5/buffers.json.j2 Buffer definition template not found at /usr/share/sonic/device/x86_64-nokia_ixrxxxxe_sup-r0/Nokia-IXRxxxxE-SUP-10/6/buffers.json.j2 Buffer definition template not found at /usr/share/sonic/device/x86_64-nokia_ixrxxxxe_sup-r0/Nokia-IXRxxxxE-SUP-10/7/buffers.json.j2 Buffer definition template not found at /usr/share/sonic/device/x86_64-nokia_ixrxxxxe_sup-r0/Nokia-IXRxxxxE-SUP-10/8/buffers.json.j2 Buffer definition template not found at /usr/share/sonic/device/x86_64-nokia_ixrxxxxe_sup-r0/Nokia-IXRxxxxE-SUP-10/9/buffers.json.j2 Buffer definition template not found at /usr/share/sonic/device/x86_64-nokia_ixrxxxxe_sup-r0/Nokia-IXRxxxxE-SUP-10/10/buffers.json.j2 Buffer definition template not found at /usr/share/sonic/device/x86_64-nokia_ixrxxxxe_sup-r0/Nokia-IXRxxxxE-SUP-10/11/buffers.json.j2 Buffer definition template not found at /usr/share/sonic/device/x86_64-nokia_ixrxxxxe_sup-r0/Nokia-IXRxxxxE-SUP-10/12/buffers.json.j2 Buffer definition template not found at /usr/share/sonic/device/x86_64-nokia_ixrxxxxe_sup-r0/Nokia-IXRxxxxE-SUP-10/13/buffers.json.j2 Buffer definition template not found at /usr/share/sonic/device/x86_64-nokia_ixrxxxxe_sup-r0/Nokia-IXRxxxxE-SUP-10/14/buffers.json.j2 Buffer definition template not found at /usr/share/sonic/device/x86_64-nokia_ixrxxxxe_sup-r0/Nokia-IXRxxxxE-SUP-10/15/buffers.json.j2 Running command: pfcwd start_default Running command: config override-config-table /etc/sonic/golden_config_db.json Removing configDB overriden table first ... Overriding input config to configDB ... Overriding completed. No service is restarted. Removing configDB overriden table first ... Overriding input config to configDB ... Overriding completed. No service is restarted. Override config not present for asic1 <<<<<<<<<<<<<<<<<<<<< Removing configDB overriden table first ... Overriding input config to configDB ... Overriding completed. No service is restarted. Removing configDB overriden table first ... Overriding input config to configDB ... Overriding completed. No service is restarted. Removing configDB overriden table first ... Overriding input config to configDB ... Overriding completed. No service is restarted. Removing configDB overriden table first ... Overriding input config to configDB ... Overriding completed. No service is restarted. Removing configDB overriden table first ... Overriding input config to configDB ... Overriding completed. No service is restarted. Removing configDB overriden table first ... Overriding input config to configDB ... Overriding completed. No service is restarted. Removing configDB overriden table first ... Overriding input config to configDB ... Overriding completed. No service is restarted. Removing configDB overriden table first ... Overriding input config to configDB ... Overriding completed. No service is restarted. Removing configDB overriden table first ... Overriding input config to configDB ... Overriding completed. No service is restarted. Removing configDB overriden table first ... Overriding input config to configDB ... Overriding completed. No service is restarted. Removing configDB overriden table first ... Overriding input config to configDB ... Overriding completed. No service is restarted. Removing configDB overriden table first ... Overriding input config to configDB ... Overriding completed. No service is restarted. Override config not present for asic14 <<<<<<<<<<<<<<<<<<<<< Override config not present for asic15 <<<<<<<<<<<<<<<<<<<<< Restarting SONiC target ... Enabling container monitoring ... Reloading Monit configuration ... Reinitializing monit daemon ``` --- config/main.py | 4 ++-- tests/config_override_input/multi_asic_missing_asic.json | 3 +++ tests/config_override_test.py | 6 +++--- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/config/main.py b/config/main.py index 6641328c36..8b16a42b6c 100644 --- a/config/main.py +++ b/config/main.py @@ -1907,8 +1907,8 @@ def override_config_table(db, input_config_db, dry_run): if ns in config_input.keys(): ns_config_input = config_input[ns] else: - click.secho("Wrong config format! {} not found in asic config! cannot override.. abort".format(ns)) - sys.exit(1) + 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 diff --git a/tests/config_override_input/multi_asic_missing_asic.json b/tests/config_override_input/multi_asic_missing_asic.json index 4399bfb32e..db8ba8ec80 100644 --- a/tests/config_override_input/multi_asic_missing_asic.json +++ b/tests/config_override_input/multi_asic_missing_asic.json @@ -1,5 +1,8 @@ { "localhost": { "DEVICE_METADATA": {} + }, + "asic0": { + "DEVICE_METADATA": {} } } diff --git a/tests/config_override_test.py b/tests/config_override_test.py index beeafaa82b..19d2ddc197 100644 --- a/tests/config_override_test.py +++ b/tests/config_override_test.py @@ -413,9 +413,9 @@ def read_json_file_side_effect(filename): runner = CliRunner() result = runner.invoke(config.config.commands["override-config-table"], ['golden_config_db.json'], obj=db) - assert "not found in asic config" in result.output - # make sure program aborted with return code 1 - assert result.exit_code == 1 + 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): From 7f8779d433492b6a742b26269faaaff74c5fe39b Mon Sep 17 00:00:00 2001 From: kenneth-arista <93353051+kenneth-arista@users.noreply.github.com> Date: Fri, 18 Aug 2023 21:09:20 -0700 Subject: [PATCH 04/75] [Chassis][Voq] Clear fabric counters queue/port (#2892) What I did This PR is a clone of #2789. Added two clear commands for fabric counters queue and fabric counters port. sonic-clear fabriccountersport sonic-clear fabriccountersqueue Fabric counters are cleared and saved with these two commands. For example, # show fabric counters port ASIC PORT STATE IN_CELL IN_OCTET OUT_CELL OUT_OCTET CRC FEC_CORRECTABLE FEC_UNCORRECTABLE SYMBOL_ERR ------ ------ ------- --------- ---------- ---------- ----------- ----- ----------------- ------------------- ---------- ... 0 49 up 1 244 0 0 0 2 2,372,752,496 0 0 50 up 2 315 1 135 0 4 2,522,457,120 4 ... # sonic-clear fabriccountersport Clear and update saved counters port # show fabric counters port ASIC PORT STATE IN_CELL IN_OCTET OUT_CELL OUT_OCTET CRC FEC_CORRECTABLE FEC_UNCORRECTABLE SYMBOL_ERR ------ ------ ------- --------- ---------- ---------- ----------- ----- ----------------- ------------------- ------------ ... 0 49 up 0 0 0 0 0 0 0 0 0 50 up 0 0 0 0 0 0 0 Co-authored-by: Qi Luo Co-authored-by: Jie Feng --- clear/main.py | 12 +++ scripts/fabricstat | 136 ++++++++++++++++++++++++++++++-- tests/fabricstat_test.py | 166 ++++++++++++++++++++++++++++++--------- 3 files changed, 270 insertions(+), 44 deletions(-) diff --git a/clear/main.py b/clear/main.py index 63a0a0635a..d09153533b 100755 --- a/clear/main.py +++ b/clear/main.py @@ -184,6 +184,18 @@ def queuecounters(): 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/scripts/fabricstat b/scripts/fabricstat index fcc0983ade..205e3170bc 100755 --- a/scripts/fabricstat +++ b/scripts/fabricstat @@ -2,10 +2,13 @@ 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 @@ -32,6 +35,10 @@ 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 @@ -78,6 +85,12 @@ class FabricStat(object): """ 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. @@ -115,6 +128,25 @@ class FabricPortStat(FabricStat): 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) @@ -127,19 +159,44 @@ class FabricPortStat(FabricStat): 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), - data.crc, data.fec_correctable, data.fec_uncorrectable, - data.symbol_err)) + 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), - data.in_cell, data.in_octet, data.out_cell, data.out_octet, - data.crc, data.fec_correctable, data.fec_uncorrectable, - data.symbol_err)) + 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() @@ -166,6 +223,25 @@ class FabricQueueStat(FabricStat): 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) @@ -177,11 +253,29 @@ class FabricQueueStat(FabricStat): 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, - data.curbyte, data.curlevel, data.watermarklevel)) + 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() @@ -214,6 +308,10 @@ class FabricReachability(FabricStat): 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=""" @@ -223,12 +321,16 @@ Examples: 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 @@ -236,6 +338,23 @@ Examples: 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) @@ -246,7 +365,10 @@ Examples: else: stat = FabricPortStat(ns) cnstat_dict = stat.get_cnstat_dict() - stat.cnstat_print(cnstat_dict, errors_only) + 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 diff --git a/tests/fabricstat_test.py b/tests/fabricstat_test.py index 7e37e993fe..625c1d14a0 100644 --- a/tests/fabricstat_test.py +++ b/tests/fabricstat_test.py @@ -14,38 +14,55 @@ 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 1113 0 0 0 5 1759692040 5 - 0 1 down 0 0 0 0 0 0 58977677898 0 - 0 2 up 2 371 0 0 0 0 1769448760 0 - 0 3 down 0 0 0 0 0 0 58976477608 0 - 0 4 up 10 1855 0 0 0 73 1763293100 73 - 0 5 down 0 0 0 0 0 44196 58975150569 0 - 0 6 up 4 742 0 0 0 10 1763174090 0 - 0 7 up 10 1855 0 0 0 187 1768439529 1331 + 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 ------ ------ ------- --------- ---------- ---------- ----------- ----- ----------------- ------------------- ------------ - 1 0 up 16 2968 0 0 0 0 1763890500 0 - 1 1 down 0 0 0 0 0 0 105269481425 0 - 1 2 down 0 0 0 0 0 0 105268895944 0 - 1 3 down 0 0 0 0 0 0 105268290607 0 - 1 4 up 14 2597 0 0 0 0 1762188940 0 - 1 5 down 0 0 0 0 0 968 105267020477 0 - 1 6 down 0 0 0 0 0 53192703023 1422986 41913682074 - 1 7 down 0 0 0 0 0 0 105264567398 0 + 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 """ -multi_asic_fabric_counters_asic0 = """\ + +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 6 1113 0 0 0 5 1759692040 5 - 0 1 down 0 0 0 0 0 0 58977677898 0 - 0 2 up 2 371 0 0 0 0 1769448760 0 - 0 3 down 0 0 0 0 0 0 58976477608 0 - 0 4 up 10 1855 0 0 0 73 1763293100 73 - 0 5 down 0 0 0 0 0 44196 58975150569 0 - 0 6 up 4 742 0 0 0 10 1763174090 0 - 0 7 up 10 1855 0 0 0 187 1768439529 1331 + 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 """ @@ -58,18 +75,18 @@ 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 1147 14 22 + 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 1147 14 17 + 0 7 up 0 1,147 14 17 ASIC PORT STATE QUEUE_ID CURRENT_BYTE CURRENT_LEVEL WATERMARK_LEVEL ------ ------ ------- ---------- -------------- --------------- ----------------- - 1 0 up 0 1942 18 24 + 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 1362 15 24 + 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 @@ -83,10 +100,24 @@ 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 1147 14 22 + 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 1147 14 17 + 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 """ @@ -128,12 +159,8 @@ def setup_class(cls): os.environ["UTILITIES_UNIT_TESTING"] = "1" def test_single_show_fabric_counters(self): - from .mock_tables import mock_single_asic - import importlib - importlib.reload(mock_single_asic) - from .mock_tables import dbconnector - dbconnector.load_database_config - dbconnector.load_namespace_config() + 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)) @@ -141,6 +168,22 @@ def test_single_show_fabric_counters(self): 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") @@ -193,6 +236,27 @@ def test_multi_show_fabric_counters_queue_asic(self): 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)) @@ -214,3 +278,31 @@ def teardown_class(cls): 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"] = "" From c523ff20d1705e527ab107c21ba9c2576d272e2a Mon Sep 17 00:00:00 2001 From: pdhruv-marvell <132541308+pdhruv-marvell@users.noreply.github.com> Date: Thu, 24 Aug 2023 03:43:29 +0530 Subject: [PATCH 05/75] Add show techsupport feature for Marvell(Innovium) platform (#2829) Add show techsupport feature for Marvell(Innovium) platform ### What I did Added support to collect Marvell (Innovium) platform logs under "show techsupport" #### How I did it Enhanced generate_dump.py to collect Marvell logs when run on Marvell platforms #### How to verify it On SONiC device CLI: ================================ ``` admin@sonic-wistron13-dut:~$ show techsupport . . . { cat }; ivmcmd 'show techsupport -i /innovium/show_techsupport_infile' | dummy_cleanup_method &> '/var/dump/sonic_dump_sonic-wistron13-dut_20230428_125015/dump/show_techsupport_op_ifcs.log'" timeout --foreground 5m bash -c "dummy_cleanup_method () { cat }; ivmcmd 'show techsupport -i /innovium/show_techsupport_infile_iSAI' | dummy_cleanup_method &> '/var/dump/sonic_dump_sonic-wistron13-dut_20230428_125015/dump/show_techsupport_op_iSAI.log'" timeout --foreground 5m bash -c "dummy_cleanup_method () { . . . ``` --- scripts/generate_dump | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/scripts/generate_dump b/scripts/generate_dump index 12ca39bdbd..dd98302a27 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -1412,6 +1412,20 @@ collect_cisco_8000() { fi } +############################################################################## +# collect_innovium +# Globals: +# None +# Arguments: +# None +# Retuens: +# None +############################################################################## +collect_innovium() { + save_cmd "ivmcmd 'show techsupport -i /innovium/show_techsupport_infile'" "show_techsupport_op_ifcs.log" + save_cmd "ivmcmd 'show techsupport -i /innovium/show_techsupport_infile_iSAI'" "show_techsupport_op_iSAI.log" +} + ############################################################################### # Save log file # Globals: @@ -1795,6 +1809,10 @@ main() { collect_cisco_8000 fi + if [ "$asic" = "innovium" ]; then + collect_innovium + fi + if [ "$asic" = "marvell" ]; then collect_marvell fi From a0b1cdcfa4f31ca6e94bfdea0a98f9953edb8799 Mon Sep 17 00:00:00 2001 From: RoRonoa Date: Thu, 24 Aug 2023 22:06:33 +0500 Subject: [PATCH 06/75] Switch Port Modes and VLAN CLI Enhancement (#2419) #### What I did - Modified "/config/vlan.py" to add support for multiple vids, range of vids in ```vlan add|del``` and ```vlan member add|del``` - Creation of "/config/switchport.py" which will deal with port modes for interfaces i.e. access, trunk and routed - Created the ```show interface switchport status``` and ```show interface switchport config``` commands so that it shows the status of port either being access, trunk or routed. - Modified ```Command-Reference.md``` to add new commands in it with usage and examples - Added new utility functions in "/utilities_common/cli.py" to use in vlan.py and switchport.py commands - Modified test cases and added new test cases for the new commands #### How I did it - Added new commands and modified the existing commands in "/config/vlan.py" to - accept multiple vids - accept range of vids - ```except_flag``` and ```all option``` in vlan member command - Creation of "/config/switchport.py" file to add commands which will deal with port modes i.e. access, trunk or routed which we were unable to define or assign in SONiC before - New utility functions in "/utilities_common/cli.py" - Using ```show interface switchport status``` and ```show interface switchport config``` commands, it will display if an interface is in access or trunk or routed mode. #### How to verify it New commands have been added in Command-Reference.md All the syntax and examples have been added there and they can be verified by running the specific command --- config/main.py | 38 +- config/switchport.py | 138 ++++ config/vlan.py | 371 ++++++---- doc/Command-Reference.md | 180 ++++- scripts/db_migrator.py | 47 +- scripts/intfutil | 2 +- show/interfaces/__init__.py | 67 ++ .../config_db/port-an-expected.json | 3 + .../config_db/portchannel-expected.json | 5 + .../config_db/switchport-expected.json | 144 ++++ .../config_db/switchport-input.json | 138 ++++ tests/db_migrator_test.py | 24 + tests/interfaces_test.py | 97 +++ tests/intfutil_test.py | 2 +- tests/ipv6_link_local_test.py | 2 +- tests/mock_tables/asic0/config_db.json | 1 + tests/mock_tables/config_db.json | 32 + tests/vlan_test.py | 631 +++++++++++++++++- utilities_common/cli.py | 269 ++++++-- 19 files changed, 1982 insertions(+), 209 deletions(-) create mode 100644 config/switchport.py create mode 100644 tests/db_migrator_input/config_db/switchport-expected.json create mode 100644 tests/db_migrator_input/config_db/switchport-input.json diff --git a/config/main.py b/config/main.py index 8b16a42b6c..5f7e41a36f 100644 --- a/config/main.py +++ b/config/main.py @@ -56,6 +56,7 @@ from .config_mgmt import ConfigMgmtDPB, ConfigMgmt from . import mclag from . import syslog +from . import switchport from . import dns # mock masic APIs for unit test @@ -101,6 +102,8 @@ CFG_PORTCHANNEL_NO="<0-9999>" PORT_MTU = "mtu" +PORT_MODE= "switchport_mode" + PORT_SPEED = "speed" PORT_TPID = "tpid" DEFAULT_TPID = "0x8100" @@ -1190,6 +1193,7 @@ def config(ctx): config.add_command(nat.nat) config.add_command(vlan.vlan) config.add_command(vxlan.vxlan) +config.add_command(switchport.switchport) #add mclag commands config.add_command(mclag.mclag) @@ -4499,19 +4503,39 @@ def add(ctx, interface_name, ip_addr, gw): if interface_name is None: ctx.fail("'interface_name' is None!") - # Add a validation to check this interface is not a member in vlan before - # changing it to a router port - vlan_member_table = config_db.get_table('VLAN_MEMBER') - if (interface_is_in_vlan(vlan_member_table, interface_name)): - 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)) + + + # Add a validation to check this interface is in routed mode before + # assigning an IP address to it + + sub_intf = False + if clicommon.is_valid_port(config_db, interface_name): + is_port = True + elif clicommon.is_valid_portchannel(config_db, interface_name): + is_port = False + else: + sub_intf = True + + if not sub_intf: + interface_mode = "routed" + if is_port: + interface_data = config_db.get_entry('PORT',interface_name) + elif not is_port: + interface_data = config_db.get_entry('PORTCHANNEL',interface_name) + + if "mode" in interface_data: + interface_mode = interface_data["mode"] + + if interface_mode != "routed": + ctx.fail("Interface {} is not in routed mode!".format(interface_name)) + return + try: ip_address = ipaddress.ip_interface(ip_addr) except ValueError as err: diff --git a/config/switchport.py b/config/switchport.py new file mode 100644 index 0000000000..fe51ccaf79 --- /dev/null +++ b/config/switchport.py @@ -0,0 +1,138 @@ +import click +from .utils import log +import utilities_common.cli as clicommon + +# +# 'switchport' mode ('config switchport ...') +# + + +@click.group(cls=clicommon.AbbreviationGroup, name='switchport') +def switchport(): + """Switchport mode configuration tasks""" + pass + + +@switchport.command("mode") +@click.argument("type", metavar="", required=True, type=click.Choice(["access", "trunk", "routed"])) +@click.argument("port", metavar="port", required=True) +@clicommon.pass_db +def switchport_mode(db, type, port): + """switchport mode help commands.Mode_type can be access or trunk or routed""" + + ctx = click.get_current_context() + + log.log_info("'switchport mode {} {}' executing...".format(type, port)) + mode_exists_status = True + + # checking if port name with alias exists + if clicommon.get_interface_naming_mode() == "alias": + alias = port + iface_alias_converter = clicommon.InterfaceAliasConverter(db) + port = iface_alias_converter.alias_to_name(port) + if port is None: + ctx.fail("cannot find port name for alias {}".format(alias)) + + if clicommon.is_port_mirror_dst_port(db.cfgdb, port): + ctx.fail("{} is configured as mirror destination port".format(port)) + + + if clicommon.is_valid_port(db.cfgdb, port): + is_port = True + elif clicommon.is_valid_portchannel(db.cfgdb, port): + is_port = False + else: + ctx.fail("{} does not exist".format(port)) + + portchannel_member_table = db.cfgdb.get_table('PORTCHANNEL_MEMBER') + + if (is_port and clicommon.interface_is_in_portchannel(portchannel_member_table, port)): + ctx.fail("{} is part of portchannel!".format(port)) + + if is_port: + port_data = db.cfgdb.get_entry('PORT',port) + else: + port_data = db.cfgdb.get_entry('PORTCHANNEL',port) + + # mode type is either access or trunk + if type != "routed": + + if "mode" in port_data: + existing_mode = port_data["mode"] + else: + existing_mode = "routed" + mode_exists_status = False + if (is_port and clicommon.is_port_router_interface(db.cfgdb, port)) or \ + (not is_port and clicommon.is_pc_router_interface(db.cfgdb, port)): + ctx.fail("Remove IP from {} to change mode!".format(port)) + + if existing_mode == "routed": + if mode_exists_status: + # if the port in an interface + if is_port: + db.cfgdb.mod_entry("PORT", port, {"mode": "{}".format(type)}) + # if not port then is a port channel + elif not is_port: + db.cfgdb.mod_entry("PORTCHANNEL", port, {"mode": "{}".format(type)}) + + if not mode_exists_status: + port_data["mode"] = type + if is_port: + db.cfgdb.set_entry("PORT", port, port_data) + # if not port then is a port channel + elif not is_port: + db.cfgdb.set_entry("PORTCHANNEL", port, port_data) + + if existing_mode == type: + ctx.fail("{} is already in the {} mode".format(port,type)) + else: + if existing_mode == "access" and type == "trunk": + pass + if existing_mode == "trunk" and type == "access": + if clicommon.interface_is_tagged_member(db.cfgdb,port): + ctx.fail("{} is in {} mode and have tagged member(s).\nRemove tagged member(s) from {} to switch to {} mode".format(port,existing_mode,port,type)) + if is_port: + db.cfgdb.mod_entry("PORT", port, {"mode": "{}".format(type)}) + # if not port then is a port channel + elif not is_port: + db.cfgdb.mod_entry("PORTCHANNEL", port, {"mode": "{}".format(type)}) + + click.echo("{} switched from {} to {} mode".format(port, existing_mode, type)) + + # if mode type is routed + else: + + if clicommon.interface_is_tagged_member(db.cfgdb,port): + ctx.fail("{} has tagged member(s). \nRemove them to change mode to {}".format(port,type)) + + if clicommon.interface_is_untagged_member(db.cfgdb,port): + ctx.fail("{} has untagged member. \nRemove it to change mode to {}".format(port,type)) + + if "mode" in port_data: + existing_mode = port_data["mode"] + else: + existing_mode = "routed" + mode_exists_status = False + + if not mode_exists_status: + port_data["mode"] = type + if is_port: + db.cfgdb.set_entry("PORT", port, port_data) + + # if not port then is a port channel + elif not is_port: + db.cfgdb.set_entry("PORTCHANNEL", port, port_data) + pass + + elif mode_exists_status and existing_mode == type: + ctx.fail("{} is already in {} mode".format(port,type)) + + else: + if is_port: + db.cfgdb.mod_entry("PORT", port, {"mode": "{}".format(type)}) + # if not port then is a port channel + elif not is_port: + db.cfgdb.mod_entry("PORTCHANNEL", port, {"mode": "{}".format(type)}) + + click.echo("{} switched from {} to {} mode".format(port,existing_mode,type)) + diff --git a/config/vlan.py b/config/vlan.py index 03660ab0af..7206868db7 100644 --- a/config/vlan.py +++ b/config/vlan.py @@ -12,15 +12,19 @@ DHCP_RELAY_TABLE = "DHCP_RELAY" DHCPV6_SERVERS = "dhcpv6_servers" + # # 'vlan' group ('config vlan ...') # + + @click.group(cls=clicommon.AbbreviationGroup, name='vlan') 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) @@ -29,41 +33,68 @@ def is_dhcp_relay_running(): out, _ = clicommon.run_command("systemctl show dhcp_relay.service --property ActiveState --value", return_cmd=True) return out.strip() == "active" +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", vlan_name) + dhcpv6_servers = table.get(DHCPV6_SERVERS, []) + if len(dhcpv6_servers) > 0: + return True + @vlan.command('add') -@click.argument('vid', metavar='', required=True, type=int) +@click.argument('vid', metavar='', required=True) +@click.option('-m', '--multiple', is_flag=True, help="Add Multiple Vlan(s) in Range or in Comma separated list") @clicommon.pass_db -def add_vlan(db, vid): +def add_vlan(db, vid, multiple): """Add VLAN""" ctx = click.get_current_context() - vlan = 'Vlan{}'.format(vid) - + config_db = ValidatedConfigDBConnector(db.cfgdb) + + vid_list = [] + # parser will parse the vid input if there are syntax errors it will throw error + if multiple: + vid_list = clicommon.multiple_vlan_parser(ctx, vid) + else: + if not vid.isdigit(): + ctx.fail("{} is not integer".format(vid)) + vid_list.append(int(vid)) + if ADHOC_VALIDATION: - if not clicommon.is_vlanid_in_range(vid): - ctx.fail("Invalid VLAN ID {} (1-4094)".format(vid)) - if vid == 1: - ctx.fail("{} is default VLAN".format(vlan)) # TODO: MISSING CONSTRAINT IN YANG MODEL + # loop will execute till an exception occurs + for vid in vid_list: - if clicommon.check_if_vlanid_exist(db.cfgdb, vlan): # TODO: MISSING CONSTRAINT IN YANG MODEL - ctx.fail("{} already exists".format(vlan)) - 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', config_db, vlan, {'vlanid': str(vid)}) + vlan = 'Vlan{}'.format(vid) + # default vlan checker + if vid == 1: + # TODO: MISSING CONSTRAINT IN YANG MODEL + ctx.fail("{} is default VLAN.".format(vlan)) -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 + log.log_info("'vlan add {}' executing...".format(vid)) - table = db.cfgdb.get_entry("DHCP_RELAY", vlan_name) - dhcpv6_servers = table.get(DHCPV6_SERVERS, []) - if len(dhcpv6_servers) > 0: - return True + if not clicommon.is_vlanid_in_range(vid): + ctx.fail("Invalid VLAN ID {} (2-4094)".format(vid)) + + # TODO: MISSING CONSTRAINT IN YANG MODEL + if clicommon.check_if_vlanid_exist(db.cfgdb, vlan): + log.log_info("{} already exists".format(vlan)) + ctx.fail("{} already exists, Aborting!!!".format(vlan)) + + if clicommon.check_if_vlanid_exist(db.cfgdb, vlan, "DHCP_RELAY"): + ctx.fail("DHCPv6 relay config for {} already exists".format(vlan)) + + try: + # set dhcpv4_relay / VLAN table + config_db.set_entry('VLAN', vlan, {'vlanid': str(vid)}) + + except ValueError: + ctx.fail("Invalid VLAN ID {} (2-4094)".format(vid)) def delete_state_db_entry(entry_name): @@ -75,57 +106,74 @@ def delete_state_db_entry(entry_name): @vlan.command('del') -@click.argument('vid', metavar='', required=True, type=int) +@click.argument('vid', metavar='', required=True) +@click.option('-m', '--multiple', is_flag=True, help="Add Multiple Vlan(s) in Range or in Comma separated list") @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") + require dhcpv6 relay of this is empty") @clicommon.pass_db -def del_vlan(db, vid, no_restart_dhcp_relay): +def del_vlan(db, vid, multiple, no_restart_dhcp_relay): """Delete VLAN""" - log.log_info("'vlan del {}' executing...".format(vid)) - ctx = click.get_current_context() - vlan = 'Vlan{}'.format(vid) - 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)) - config_db = ValidatedConfigDBConnector(db.cfgdb) - if ADHOC_VALIDATION: - if not clicommon.is_vlanid_in_range(vid): - ctx.fail("Invalid VLAN ID {} (1-4094)".format(vid)) - - if clicommon.check_if_vlanid_exist(db.cfgdb, vlan) == False: - ctx.fail("{} does not 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 # TODO: MISSING CONSTRAINT IN YANG MODEL - (type(intf_key) is tuple and intf_key[0] == 'Vlan{}'.format(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: # TODO: MISSING CONSTRAINT IN YANG MODEL - ctx.fail("VLAN ID {} can not be removed. First remove all members assigned to this VLAN.".format(vid)) - - 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', config_db, 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', config_db, 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) + vid_list = [] + # parser will parse the vid input if there are syntax errors it will throw error + if multiple: + vid_list = clicommon.multiple_vlan_parser(ctx, vid) + else: + if not vid.isdigit(): + ctx.fail("{} is not integer".format(vid)) + vid_list.append(int(vid)) + if ADHOC_VALIDATION: + # loop will execute till an exception occurs + for vid in vid_list: + + log.log_info("'vlan del {}' executing...".format(vid)) + + if not clicommon.is_vlanid_in_range(vid): + ctx.fail("Invalid VLAN ID {} (2-4094)".format(vid)) + + vlan = 'Vlan{}'.format(vid) + + 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)) + + if clicommon.check_if_vlanid_exist(db.cfgdb, vlan) == False: + log.log_info("{} does not exist".format(vlan)) + ctx.fail("{} does not exist, Aborting!!!".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 # TODO: MISSING CONSTRAINT IN YANG MODEL + (type(intf_key) is tuple and intf_key[0] == 'Vlan{}'.format(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: # TODO: MISSING CONSTRAINT IN YANG MODEL + ctx.fail("VLAN ID {} can not be removed. First remove all members assigned to this VLAN.".format(vid)) + + 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 / VLAN table + config_db.set_entry('VLAN', 'Vlan{}'.format(vid), 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', config_db, 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 {}" @@ -135,7 +183,7 @@ def del_vlan(db, vid, no_restart_dhcp_relay): 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'] @@ -182,103 +230,162 @@ def config_proxy_arp(db, vid, mode): db.cfgdb.mod_entry('VLAN_INTERFACE', vlan, {"proxy_arp": mode}) click.echo('Proxy ARP setting saved to ConfigDB') restart_ndppd() + + # # 'member' group ('config vlan member ...') # + + @vlan.group(cls=clicommon.AbbreviationGroup, name='member') def vlan_member(): pass + @vlan_member.command('add') -@click.argument('vid', metavar='', required=True, type=int) +@click.argument('vid', metavar='', required=True) @click.argument('port', metavar='port', required=True) -@click.option('-u', '--untagged', is_flag=True) +@click.option('-u', '--untagged', is_flag=True, help="Untagged status") +@click.option('-m', '--multiple', is_flag=True, help="Add Multiple Vlan(s) in Range or in Comma separated list") +@click.option('-e', '--except_flag', is_flag=True, help="Skips the given vlans and adds all other existing vlans.") @clicommon.pass_db -def add_vlan_member(db, vid, port, untagged): +def add_vlan_member(db, vid, port, untagged, multiple, except_flag): """Add VLAN member""" ctx = click.get_current_context() - - log.log_info("'vlan member add {} {}' executing...".format(vid, port)) - - vlan = 'Vlan{}'.format(vid) - config_db = ValidatedConfigDBConnector(db.cfgdb) - if ADHOC_VALIDATION: - if not clicommon.is_vlanid_in_range(vid): - ctx.fail("Invalid VLAN ID {} (1-4094)".format(vid)) - - if clicommon.check_if_vlanid_exist(db.cfgdb, vlan) == False: - ctx.fail("{} does not exist".format(vlan)) - if clicommon.get_interface_naming_mode() == "alias": # TODO: MISSING CONSTRAINT IN YANG MODEL - alias = port - iface_alias_converter = clicommon.InterfaceAliasConverter(db) - port = iface_alias_converter.alias_to_name(alias) - if port is None: - ctx.fail("cannot find port name for alias {}".format(alias)) + # parser will parse the vid input if there are syntax errors it will throw error - if clicommon.is_port_mirror_dst_port(db.cfgdb, port): # TODO: MISSING CONSTRAINT IN YANG MODEL - ctx.fail("{} is configured as mirror destination port".format(port)) + vid_list = clicommon.vlan_member_input_parser(ctx, "add", db, except_flag, multiple, vid, port) - if clicommon.is_port_vlan_member(db.cfgdb, port, vlan): # TODO: MISSING CONSTRAINT IN YANG MODEL - ctx.fail("{} is already a member of {}".format(port, vlan)) + # multiple vlan command cannot be used to add multiple untagged vlan members + if untagged and (multiple or except_flag or vid == "all"): + ctx.fail("{} cannot have more than one untagged Vlan.".format(port)) - if clicommon.is_valid_port(db.cfgdb, port): - is_port = True - elif clicommon.is_valid_portchannel(db.cfgdb, port): - is_port = False - else: - ctx.fail("{} does not exist".format(port)) - - if (is_port and clicommon.is_port_router_interface(db.cfgdb, port)) or \ - (not is_port and clicommon.is_pc_router_interface(db.cfgdb, port)): # TODO: MISSING CONSTRAINT IN YANG MODEL - ctx.fail("{} is a router interface!".format(port)) - - portchannel_member_table = db.cfgdb.get_table('PORTCHANNEL_MEMBER') - - if (is_port and clicommon.interface_is_in_portchannel(portchannel_member_table, port)): # TODO: MISSING CONSTRAINT IN YANG MODEL - ctx.fail("{} is part of portchannel!".format(port)) - - if (clicommon.interface_is_untagged_member(db.cfgdb, port) and untagged): # TODO: MISSING CONSTRAINT IN YANG MODEL - ctx.fail("{} is already untagged member!".format(port)) + if ADHOC_VALIDATION: + for vid in vid_list: + + # default vlan checker + if vid == 1: + ctx.fail("{} is default VLAN".format(vlan)) + + log.log_info("'vlan member add {} {}' executing...".format(vid, port)) + + if not clicommon.is_vlanid_in_range(vid): + ctx.fail("Invalid VLAN ID {} (2-4094)".format(vid)) + + vlan = 'Vlan{}'.format(vid) + if clicommon.check_if_vlanid_exist(db.cfgdb, vlan) == False: + log.log_info("{} does not exist".format(vlan)) + ctx.fail("{} does not exist".format(vlan)) + + if clicommon.get_interface_naming_mode() == "alias": # TODO: MISSING CONSTRAINT IN YANG MODEL + alias = port + iface_alias_converter = clicommon.InterfaceAliasConverter(db) + port = iface_alias_converter.alias_to_name(alias) + if port is None: + ctx.fail("cannot find port name for alias {}".format(alias)) + + # TODO: MISSING CONSTRAINT IN YANG MODEL + if clicommon.is_port_mirror_dst_port(db.cfgdb, port): + ctx.fail("{} is configured as mirror destination port".format(port)) + + # TODO: MISSING CONSTRAINT IN YANG MODEL + if clicommon.is_port_vlan_member(db.cfgdb, port, vlan): + log.log_info("{} is already a member of {}, Aborting!!!".format(port, vlan)) + ctx.fail("{} is already a member of {}, Aborting!!!".format(port, vlan)) + + + if clicommon.is_valid_port(db.cfgdb, port): + is_port = True + elif clicommon.is_valid_portchannel(db.cfgdb, port): + is_port = False + else: + ctx.fail("{} does not exist".format(port)) + + portchannel_member_table = db.cfgdb.get_table('PORTCHANNEL_MEMBER') + + # TODO: MISSING CONSTRAINT IN YANG MODEL + if (is_port and clicommon.interface_is_in_portchannel(portchannel_member_table, port)): + ctx.fail("{} is part of portchannel!".format(port)) + + # TODO: MISSING CONSTRAINT IN YANG MODEL + if (clicommon.interface_is_untagged_member(db.cfgdb, port) and untagged): + ctx.fail("{} is already untagged member!".format(port)) + + # checking mode status of port if its access, trunk or routed + if is_port: + port_data = config_db.get_entry('PORT',port) + + # if not port then is a port channel + elif not is_port: + port_data = config_db.get_entry('PORTCHANNEL',port) + + if "mode" not in port_data: + ctx.fail("{} is in routed mode!\nUse switchport mode command to change port mode".format(port)) + else: + existing_mode = port_data["mode"] + + if existing_mode == "routed": + ctx.fail("{} is in routed mode!\nUse switchport mode command to change port mode".format(port)) + + mode_type = "access" if untagged else "trunk" + if existing_mode == "access" and mode_type == "trunk": # TODO: MISSING CONSTRAINT IN YANG MODEL + ctx.fail("{} is in access mode! Tagged Members cannot be added".format(port)) + + elif existing_mode == mode_type or (existing_mode == "trunk" and mode_type == "access"): + pass + + # in case of exception in list last added member will be shown to user + try: + config_db.set_entry('VLAN_MEMBER', (vlan, port), {'tagging_mode': "untagged" if untagged else "tagged"}) + except ValueError: + ctx.fail("{} invalid or does not exist, or {} invalid or does not exist".format(vlan, port)) - try: - config_db.set_entry('VLAN_MEMBER', (vlan, port), {'tagging_mode': "untagged" if untagged else "tagged" }) - except ValueError: - ctx.fail("{} invalid or does not exist, or {} invalid or does not exist".format(vlan, port)) @vlan_member.command('del') -@click.argument('vid', metavar='', required=True, type=int) +@click.argument('vid', metavar='', required=True) @click.argument('port', metavar='', required=True) +@click.option('-m', '--multiple', is_flag=True, help="Add Multiple Vlan(s) in Range or in Comma separated list") +@click.option('-e', '--except_flag', is_flag=True, help="Skips the given vlans and adds all other existing vlans.") @clicommon.pass_db -def del_vlan_member(db, vid, port): +def del_vlan_member(db, vid, port, multiple, except_flag): """Delete VLAN member""" ctx = click.get_current_context() - log.log_info("'vlan member del {} {}' executing...".format(vid, port)) - vlan = 'Vlan{}'.format(vid) - config_db = ValidatedConfigDBConnector(db.cfgdb) + + # parser will parse the vid input if there are syntax errors it will throw error + + vid_list = clicommon.vlan_member_input_parser(ctx,"del", db, except_flag, multiple, vid, port) + if ADHOC_VALIDATION: - if not clicommon.is_vlanid_in_range(vid): - ctx.fail("Invalid VLAN ID {} (1-4094)".format(vid)) + for vid in vid_list: + + log.log_info("'vlan member del {} {}' executing...".format(vid, port)) + + if not clicommon.is_vlanid_in_range(vid): + ctx.fail("Invalid VLAN ID {} (2-4094)".format(vid)) - if clicommon.check_if_vlanid_exist(db.cfgdb, vlan) == False: - ctx.fail("{} does not exist".format(vlan)) + vlan = 'Vlan{}'.format(vid) + if clicommon.check_if_vlanid_exist(db.cfgdb, vlan) == False: + log.log_info("{} does not exist, Aborting!!!".format(vlan)) + ctx.fail("{} does not exist, Aborting!!!".format(vlan)) - if clicommon.get_interface_naming_mode() == "alias": # TODO: MISSING CONSTRAINT IN YANG MODEL - alias = port - iface_alias_converter = clicommon.InterfaceAliasConverter(db) - port = iface_alias_converter.alias_to_name(alias) - if port is None: - ctx.fail("cannot find port name for alias {}".format(alias)) + if clicommon.get_interface_naming_mode() == "alias": # TODO: MISSING CONSTRAINT IN YANG MODEL + alias = port + iface_alias_converter = clicommon.InterfaceAliasConverter(db) + port = iface_alias_converter.alias_to_name(alias) + if port is None: + ctx.fail("cannot find port name for alias {}".format(alias)) - if not clicommon.is_port_vlan_member(db.cfgdb, port, vlan): # TODO: MISSING CONSTRAINT IN YANG MODEL - ctx.fail("{} is not a member of {}".format(port, vlan)) + # TODO: MISSING CONSTRAINT IN YANG MODEL + if not clicommon.is_port_vlan_member(db.cfgdb, port, vlan): + ctx.fail("{} is not a member of {}".format(port, vlan)) - try: - config_db.set_entry('VLAN_MEMBER', (vlan, port), None) - except JsonPatchConflict: - ctx.fail("{} invalid or does not exist, or {} is not a member of {}".format(vlan, port, vlan)) + try: + config_db.set_entry('VLAN_MEMBER', (vlan, port), None) + except JsonPatchConflict: + ctx.fail("{} invalid or does not exist, or {} is not a member of {}".format(vlan, port, vlan)) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index c4a28a5460..429fe39bbf 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -158,6 +158,8 @@ * [Subinterfaces](#subinterfaces) * [Subinterfaces Show Commands](#subinterfaces-show-commands) * [Subinterfaces Config Commands](#subinterfaces-config-commands) +* [Switchport Modes](#switchport-modes) + * [Switchport Mode config commands](#switchport modes-config-commands) * [Syslog](#syslog) * [Syslog show commands](#syslog-show-commands) * [Syslog config commands](#syslog-config-commands) @@ -2841,23 +2843,23 @@ This command is used to show ipv6 dhcp_relay counters. - Example: ``` admin@sonic:~$ sudo sonic-clear dhcp_relay counters -      Message Type    Vlan1000 - -------------------  ---------- -             Unknown           0 -             Solicit           0 -           Advertise           0 -             Request           5 -             Confirm           0 -               Renew           0 -              Rebind           0 -               Reply           0 -             Release           0 -             Decline           0 -         Reconfigure           0 - Information-Request           0 -       Relay-Forward           0 -         Relay-Reply           0 -           Malformed           0 + Message Type Vlan1000 + ------------------- ---------- + Unknown 0 + Solicit 0 + Advertise 0 + Request 5 + Confirm 0 + Renew 0 + Rebind 0 + Reply 0 + Release 0 + Decline 0 + Reconfigure 0 + Information-Request 0 + Relay-Forward 0 + Relay-Reply 0 + Malformed 0 ``` ### DHCP Relay clear commands @@ -4212,6 +4214,7 @@ Subsequent pages explain each of these commands in detail. neighbor Show neighbor related information portchannel Show PortChannel information status Show Interface status information + switchport Show Interface switchport information tpid Show Interface tpid information transceiver Show SFP Transceiver information ``` @@ -4654,6 +4657,50 @@ This command displays some more fields such as Lanes, Speed, MTU, Type, Asymmetr Ethernet180 105,106,107,108 100G 9100 hundredGigE46 down down N/A N/A ``` + +**show interface switchport status** + +This command displays switchport modes status of the interfaces + +- Usage: + ``` + show interfaces switchport status + ``` + +- Example (show interface switchport status of all interfaces): + ``` + admin@sonic:~$ show interfaces switchport status + Interface Mode + ----------- -------- + Ethernet0 access + Ethernet4 trunk + Ethernet8 routed + + ``` + +**show interface switchport config** + +This command displays switchport modes configuration of the interfaces + +- Usage: + ``` + show interfaces switchport config + ``` + +- Example (show interface switchport config of all interfaces): + ``` + admin@sonic:~$ show interfaces switchport config + Interface Mode Untagged Tagged + ----------- -------- -------- ------- + Ethernet0 access 2 + Ethernet4 trunk 3 4,5,6 + Ethernet8 routed + + ``` + + +For details please refer [Switchport Mode HLD](https://github.com/sonic-net/SONiC/pull/912/files#diff-03597c34684d527192f76a6e975792fcfc83f54e20dde63f159399232d148397) to know more about this command. + **show interfaces transceiver** This command is already explained [here](#Transceivers) @@ -9760,6 +9807,40 @@ This sub-section explains how to configure subinterfaces. Go Back To [Beginning of the document](#) or [Beginning of this section](#subinterfaces) +## Switchport Modes + +### Switchport Modes Config Commands + +This subsection explains how to configure switchport modes on Port/PortChannel. + +**config switchport** +mode +Usage: + ``` + config switchport mode + ``` + +- Example (Config switchport mode access on "Ethernet0): + ``` + admin@sonic:~$ sudo config switchport mode access Ethernet0 + ``` + +- Example (Config switchport mode trunk on "Ethernet4"): + ``` + admin@sonic:~$ sudo config switchport mode trunk Ethernet4 + ``` + +- Example (Config switchport mode routed on "Ethernet12"): + ``` + admin@sonic:~$ sudo config switchport mode routed Ethernet12 + ``` + + + +Go Back To [Beginning of the document](#) or [Beginning of this section](#switchport-modes) + + + ## Syslog ### Syslog Show Commands @@ -10445,6 +10526,29 @@ This command is used to add or delete the vlan. admin@sonic:~$ sudo config vlan add 100 ``` +**config vlan add/del -m** + +This command is used to add or delete multiple vlans via single command. + +- Usage: + ``` + config vlan (add | del) -m + ``` + +- Example01 (Create the VLAN "Vlan100, Vlan101, Vlan102, Vlan103" if these does not already exist) + + ``` + admin@sonic:~$ sudo config vlan add -m 100-103 + ``` + + +- Example02 (Create the VLAN "Vlan105, Vlan106, Vlan107, Vlan108" if these does not already exist): + + ``` + admin@sonic:~$ sudo config vlan add -m 105,106,107,108 + ``` + + **config vlan member add/del** This command is to add or delete a member port into the already created vlan. @@ -10466,6 +10570,48 @@ This command is to add or delete a member port into the already created vlan. This command will add Ethernet4 as member of the vlan 100. ``` + +**config vlan member add/del -m -e** + +This command is to add or delete a member port into multiple already created vlans. + +- Usage: + ``` + config vlan member add/del [-m] [-e] + ``` + +*NOTE: -m flag multiple Vlans in range or comma separted list can be added as a member port.* + + +*NOTE: -e is used as an except flag as explaied with examples below.* + + +- Example: + ``` + admin@sonic:~$ sudo config vlan member add -m 100-103 Ethernet0 + This command will add Ethernet0 as member of the vlan 100, vlan 101, vlan 102, vlan 103 + ``` + + ``` + admin@sonic:~$ sudo config vlan member add -m 100,101,102 Ethernet4 + This command will add Ethernet4 as member of the vlan 100, vlan 101, vlan 102 + ``` + + ``` + admin@sonic:~$ sudo config vlan member add -e -m 104,105 Ethernet8 + Suppose vlan 100, vlan 101, vlan 102, vlan 103, vlan 104, vlan 105 are exisiting vlans. This command will add Ethernet8 as member of vlan 100, vlan 101, vlan 102, vlan 103 + ``` + + ``` + admin@sonic:~$ sudo config vlan member add -e 100 Ethernet12 + Suppose vlan 100, vlan 101, vlan 102, vlan 103, vlan 104, vlan 105 are exisiting vlans. This command will add Ethernet12 as member of vlan 101, vlan 102, vlan 103, vlan 104, vlan 105 + ``` + + ``` + admin@sonic:~$ sudo config vlan member add all Ethernet20 + Suppose vlan 100, vlan 101, vlan 102, vlan 103, vlan 104, vlan 105 are exisiting vlans. This command will add Ethernet20 as member of vlan 100, vlan 101, vlan 102, vlan 103, vlan 104, vlan 105 + ``` + **config proxy_arp enabled/disabled** This command is used to enable or disable proxy ARP for a VLAN interface diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index cbb25e0a52..c2d0fd837a 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -455,6 +455,39 @@ def migrate_config_db_port_table_for_auto_neg(self): elif value['autoneg'] == '0': self.configDB.set(self.configDB.CONFIG_DB, '{}|{}'.format(table_name, key), 'autoneg', 'off') + + def migrate_config_db_switchport_mode(self): + port_table = self.configDB.get_table('PORT') + portchannel_table = self.configDB.get_table('PORTCHANNEL') + vlan_member_table = self.configDB.get_table('VLAN_MEMBER') + + vlan_member_keys= [] + for _,key in vlan_member_table: + vlan_member_keys.append(key) + + for p_key, p_value in port_table.items(): + if 'mode' in p_value: + self.configDB.set(self.configDB.CONFIG_DB, '{}|{}'.format("PORT", p_key), 'mode', p_value['mode']) + else: + if p_key in vlan_member_keys: + p_value["mode"] = "trunk" + self.configDB.set_entry("PORT", p_key, p_value) + else: + p_value["mode"] = "routed" + self.configDB.set_entry("PORT", p_key, p_value) + + for pc_key, pc_value in portchannel_table.items(): + if 'mode' in pc_value: + self.configDB.set(self.configDB.CONFIG_DB, '{}|{}'.format("PORTCHANNEL", pc_key), 'mode', pc_value['mode']) + else: + if pc_key in vlan_member_keys: + pc_value["mode"] = "trunk" + self.configDB.set_entry("PORTCHANNEL", pc_key, pc_value) + else: + pc_value["mode"] = "routed" + self.configDB.set_entry("PORTCHANNEL", pc_key, pc_value) + + def migrate_qos_db_fieldval_reference_remove(self, table_list, db, db_num, db_delimeter): for pair in table_list: table_name, fields_list = pair @@ -1018,7 +1051,7 @@ def version_4_0_1(self): self.migrate_feature_timer() self.set_version('version_4_0_2') return 'version_4_0_2' - + def version_4_0_2(self): """ Version 4_0_2. @@ -1045,9 +1078,19 @@ def version_4_0_3(self): def version_4_0_4(self): """ Version 4_0_4. - This is the latest version for master branch """ log.log_info('Handling version_4_0_4') + + self.migrate_config_db_switchport_mode() + self.set_version('version_4_0_4') + return 'version_4_0_5' + + def version_4_0_5(self): + """ + Version 4_0_5. + This is the latest version for master branch + """ + log.log_info('Handling version_4_0_5') return None def get_version(self): diff --git a/scripts/intfutil b/scripts/intfutil index 285863d7fb..5988b7f43d 100755 --- a/scripts/intfutil +++ b/scripts/intfutil @@ -833,4 +833,4 @@ def main(): sys.exit(0) if __name__ == "__main__": - main() + main() \ No newline at end of file diff --git a/show/interfaces/__init__.py b/show/interfaces/__init__.py index 5aeaef6bf5..8757d23aec 100644 --- a/show/interfaces/__init__.py +++ b/show/interfaces/__init__.py @@ -764,3 +764,70 @@ def link_training_status(interfacename, namespace, display, verbose): cmd += ['-n', str(namespace)] clicommon.run_command(cmd, display_cmd=verbose) + + +# +# switchport group (show interfaces switchport ...) +# +@interfaces.group(name='switchport', cls=clicommon.AliasedGroup) +def switchport(): + """Show interface switchport information""" + pass + + +@switchport.command(name="config") +@clicommon.pass_db +def switchport_mode_config(db): + """Show interface switchport config information""" + + port_data = list(db.cfgdb.get_table('PORT').keys()) + portchannel_data = list(db.cfgdb.get_table('PORTCHANNEL').keys()) + + portchannel_member_table = db.cfgdb.get_table('PORTCHANNEL_MEMBER') + + for interface in port_data: + if clicommon.interface_is_in_portchannel(portchannel_member_table,interface): + port_data.remove(interface) + + + keys = port_data + portchannel_data + + def tablelize(keys): + table = [] + + for key in natsorted(keys): + r = [clicommon.get_interface_name_for_display(db, key), clicommon.get_interface_switchport_mode(db,key), clicommon.get_interface_untagged_vlan_members(db,key), clicommon.get_interface_tagged_vlan_members(db,key)] + table.append(r) + + return table + + header = ['Interface', 'Mode', 'Untagged', 'Tagged'] + click.echo(tabulate(tablelize(keys), header, tablefmt="simple", stralign='left')) + +@switchport.command(name="status") +@clicommon.pass_db +def switchport_mode_status(db): + """Show interface switchport status information""" + + port_data = list(db.cfgdb.get_table('PORT').keys()) + portchannel_data = list(db.cfgdb.get_table('PORTCHANNEL').keys()) + + portchannel_member_table = db.cfgdb.get_table('PORTCHANNEL_MEMBER') + + for interface in port_data: + if clicommon.interface_is_in_portchannel(portchannel_member_table,interface): + port_data.remove(interface) + + keys = port_data + portchannel_data + + def tablelize(keys): + table = [] + + for key in natsorted(keys): + r = [clicommon.get_interface_name_for_display(db, key), clicommon.get_interface_switchport_mode(db,key)] + table.append(r) + + return table + + header = ['Interface', 'Mode'] + click.echo(tabulate(tablelize(keys), header,tablefmt="simple", stralign='left')) \ No newline at end of file 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 1ef2cf4916..19fb6a80dd 100644 --- a/tests/db_migrator_input/config_db/port-an-expected.json +++ b/tests/db_migrator_input/config_db/port-an-expected.json @@ -3,6 +3,7 @@ "index": "0", "lanes": "0,1", "description": "etp1a", + "mode": "routed", "mtu": "9100", "alias": "etp1a", "pfc_asym": "off", @@ -16,6 +17,7 @@ "lanes": "2,3", "description": "Servers0:eth0", "admin_status": "up", + "mode": "routed", "mtu": "9100", "alias": "etp1b", "pfc_asym": "off", @@ -28,6 +30,7 @@ "lanes": "4,5", "description": "Servers1:eth0", "admin_status": "up", + "mode": "routed", "mtu": "9100", "alias": "etp2a", "pfc_asym": "off", diff --git a/tests/db_migrator_input/config_db/portchannel-expected.json b/tests/db_migrator_input/config_db/portchannel-expected.json index 2644e5f4e9..da97ad3f3d 100644 --- a/tests/db_migrator_input/config_db/portchannel-expected.json +++ b/tests/db_migrator_input/config_db/portchannel-expected.json @@ -3,6 +3,7 @@ "admin_status": "up", "members@": "Ethernet0,Ethernet4", "min_links": "2", + "mode": "routed", "mtu": "9100", "lacp_key": "auto" }, @@ -10,6 +11,7 @@ "admin_status": "up", "members@": "Ethernet8,Ethernet12", "min_links": "2", + "mode": "routed", "mtu": "9100", "lacp_key": "auto" }, @@ -17,6 +19,7 @@ "admin_status": "up", "members@": "Ethernet16", "min_links": "1", + "mode": "routed", "mtu": "9100", "lacp_key": "auto" }, @@ -24,11 +27,13 @@ "admin_status": "up", "members@": "Ethernet20,Ethernet24", "min_links": "2", + "mode": "routed", "mtu": "9100", "lacp_key": "auto" }, "PORTCHANNEL|PortChannel9999": { "admin_status": "up", + "mode": "routed", "mtu": "9100", "lacp_key": "auto" }, diff --git a/tests/db_migrator_input/config_db/switchport-expected.json b/tests/db_migrator_input/config_db/switchport-expected.json new file mode 100644 index 0000000000..0f49b5edf3 --- /dev/null +++ b/tests/db_migrator_input/config_db/switchport-expected.json @@ -0,0 +1,144 @@ +{ + "PORT|Ethernet0": { + "admin_status": "up", + "alias": "fortyGigE0/0", + "index": "0", + "lanes": "25,26,27,28", + "mode": "trunk", + "mtu": "9100", + "speed": "40000" + }, + "PORT|Ethernet4": { + "admin_status": "up", + "alias": "fortyGigE0/4", + "index": "1", + "lanes": "29,30,31,32", + "mode": "routed", + "mtu": "9100", + "speed": "40000" + }, + "PORT|Ethernet8": { + "admin_status": "up", + "alias": "fortyGigE0/8", + "index": "2", + "lanes": "33,34,35,36", + "mode": "trunk", + "mtu": "9100", + "speed": "40000" + }, + "PORT|Ethernet12": { + "admin_status": "up", + "alias": "fortyGigE0/12", + "index": "3", + "lanes": "37,38,39,40", + "mode": "access", + "mtu": "9100", + "speed": "40000" + }, + "PORT|Ethernet16": { + "admin_status": "up", + "alias": "fortyGigE0/16", + "index": "4", + "lanes": "45,46,47,48", + "mode": "routed", + "mtu": "9100", + "speed": "40000" + }, + "PORT|Ethernet20": { + "admin_status": "up", + "alias": "fortyGigE0/20", + "index": "5", + "lanes": "41,42,43,44", + "mode": "trunk", + "mtu": "9100", + "speed": "40000" + }, + + "VLAN|Vlan2": { + "vlanid": "2" + }, + "VLAN|Vlan3": { + "vlanid": "3" + }, + "VLAN|Vlan4": { + "vlanid": "4" + }, + "VLAN|Vlan5": { + "vlanid": "5" + }, + "VLAN|Vlan6": { + "vlanid": "6" + }, + "VLAN|Vlan7": { + "vlanid": "7" + }, + + + "VLAN_MEMBER|Vlan2|Ethernet0": { + "tagging_mode": "tagged" + }, + "VLAN_MEMBER|Vlan3|Ethernet8": { + "tagging_mode": "tagged" + }, + "VLAN_MEMBER|Vlan4|Ethernet0": { + "tagging_mode": "tagged" + }, + "VLAN_MEMBER|Vlan6|Ethernet0": { + "tagging_mode": "tagged" + }, + "VLAN_MEMBER|Vlan6|Ethernet8": { + "tagging_mode": "untagged" + }, + "VLAN_MEMBER|Vlan7|Ethernet8": { + "tagging_mode": "tagged" + }, + "VLAN_MEMBER|Vlan5|Ethernet8": { + "tagging_mode": "untagged" + }, + "VLAN_MEMBER|Vlan3|PortChannel0003": { + "tagging_mode": "untagged" + }, + "VLAN_MEMBER|Vlan8|PortChannel0002": { + "tagging_mode": "tagged" + }, + "VLAN_MEMBER|Vlan9|PortChannel0002": { + "tagging_mode": "tagged" + }, + + "PORTCHANNEL|PortChannel0001": { + "admin_status": "up", + "fast_rate": "false", + "lacp_key": "auto", + "min_links": "1", + "mode": "access", + "mtu": "9100" + }, + "PORTCHANNEL|PortChannel0002": { + "admin_status": "up", + "fast_rate": "false", + "lacp_key": "auto", + "min_links": "1", + "mode": "trunk", + "mtu": "9100" + }, + "PORTCHANNEL|PortChannel0003": { + "admin_status": "up", + "fast_rate": "false", + "lacp_key": "auto", + "min_links": "1", + "mode": "trunk", + "mtu": "9100" + }, + "PORTCHANNEL|PortChannel0004": { + "admin_status": "up", + "fast_rate": "false", + "lacp_key": "auto", + "min_links": "1", + "mode": "routed", + "mtu": "9100" + }, + + "VERSIONS|DATABASE": { + "VERSION": "version_4_0_1" + } +} \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/switchport-input.json b/tests/db_migrator_input/config_db/switchport-input.json new file mode 100644 index 0000000000..9613f29e75 --- /dev/null +++ b/tests/db_migrator_input/config_db/switchport-input.json @@ -0,0 +1,138 @@ +{ + "PORT|Ethernet0": { + "admin_status": "up", + "alias": "fortyGigE0/0", + "index": "0", + "lanes": "25,26,27,28", + "mtu": "9100", + "speed": "40000" + }, + "PORT|Ethernet4": { + "admin_status": "up", + "alias": "fortyGigE0/4", + "index": "1", + "lanes": "29,30,31,32", + "mode": "routed", + "mtu": "9100", + "speed": "40000" + }, + "PORT|Ethernet8": { + "admin_status": "up", + "alias": "fortyGigE0/8", + "index": "2", + "lanes": "33,34,35,36", + "mtu": "9100", + "speed": "40000" + }, + "PORT|Ethernet12": { + "admin_status": "up", + "alias": "fortyGigE0/12", + "index": "3", + "lanes": "37,38,39,40", + "mode": "access", + "mtu": "9100", + "speed": "40000" + }, + "PORT|Ethernet16": { + "admin_status": "up", + "alias": "fortyGigE0/16", + "index": "4", + "lanes": "45,46,47,48", + "mtu": "9100", + "speed": "40000" + }, + "PORT|Ethernet20": { + "admin_status": "up", + "alias": "fortyGigE0/20", + "index": "5", + "lanes": "41,42,43,44", + "mode": "trunk", + "mtu": "9100", + "speed": "40000" + }, + "VLAN|Vlan2": { + "vlanid": "2" + }, + "VLAN|Vlan3": { + "vlanid": "3" + }, + "VLAN|Vlan4": { + "vlanid": "4" + }, + "VLAN|Vlan5": { + "vlanid": "5" + }, + "VLAN|Vlan6": { + "vlanid": "6" + }, + "VLAN|Vlan7": { + "vlanid": "7" + }, + + "VLAN_MEMBER|Vlan2|Ethernet0": { + "tagging_mode": "tagged" + }, + "VLAN_MEMBER|Vlan3|Ethernet8": { + "tagging_mode": "tagged" + }, + "VLAN_MEMBER|Vlan4|Ethernet0": { + "tagging_mode": "tagged" + }, + "VLAN_MEMBER|Vlan6|Ethernet0": { + "tagging_mode": "tagged" + }, + "VLAN_MEMBER|Vlan6|Ethernet8": { + "tagging_mode": "untagged" + }, + "VLAN_MEMBER|Vlan7|Ethernet8": { + "tagging_mode": "tagged" + }, + "VLAN_MEMBER|Vlan5|Ethernet8": { + "tagging_mode": "untagged" + }, + "VLAN_MEMBER|Vlan3|PortChannel0003": { + "tagging_mode": "untagged" + }, + "VLAN_MEMBER|Vlan8|PortChannel0002": { + "tagging_mode": "tagged" + }, + "VLAN_MEMBER|Vlan9|PortChannel0002": { + "tagging_mode": "tagged" + }, + + + "PORTCHANNEL|PortChannel0001": { + "admin_status": "up", + "fast_rate": "false", + "lacp_key": "auto", + "min_links": "1", + "mode": "access", + "mtu": "9100" + }, + "PORTCHANNEL|PortChannel0002": { + "admin_status": "up", + "fast_rate": "false", + "lacp_key": "auto", + "min_links": "1", + "mode": "trunk", + "mtu": "9100" + }, + "PORTCHANNEL|PortChannel0003": { + "admin_status": "up", + "fast_rate": "false", + "lacp_key": "auto", + "min_links": "1", + "mtu": "9100" + }, + "PORTCHANNEL|PortChannel0004": { + "admin_status": "up", + "fast_rate": "false", + "lacp_key": "auto", + "min_links": "1", + "mtu": "9100" + }, + + "VERSIONS|DATABASE": { + "VERSION": "version_4_0_0" + } +} \ No newline at end of file diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index ecd187aa88..7b4f842463 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -246,6 +246,30 @@ def test_port_autoneg_migrator(self): assert dbmgtr.configDB.get_table('PORT') == expected_db.cfgdb.get_table('PORT') assert dbmgtr.configDB.get_table('VERSIONS') == expected_db.cfgdb.get_table('VERSIONS') +class TestSwitchPortMigrator(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_switchport_mode_migrator(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'switchport-input') + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + dbmgtr.migrate() + + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'switchport-expected') + expected_db = Db() + advance_version_for_expected_database(dbmgtr.configDB, expected_db.cfgdb, 'version_4_0_1') + + assert dbmgtr.configDB.get_table('PORT') == expected_db.cfgdb.get_table('PORT') + assert dbmgtr.configDB.get_table('PORTCHANNEL') == expected_db.cfgdb.get_table('PORTCHANNEL') + assert dbmgtr.configDB.get_table('VERSIONS') == expected_db.cfgdb.get_table('VERSIONS') + class TestInitConfigMigrator(object): @classmethod def setup_class(cls): diff --git a/tests/interfaces_test.py b/tests/interfaces_test.py index c3246ba026..84940f0bca 100644 --- a/tests/interfaces_test.py +++ b/tests/interfaces_test.py @@ -144,6 +144,85 @@ 1001 PortChannel1001 N/A """ +show_interfaces_switchport_status_output="""\ +Interface Mode +--------------- ------ +Ethernet0 routed +Ethernet4 trunk +Ethernet8 routed +Ethernet12 routed +Ethernet16 trunk +Ethernet20 routed +Ethernet24 trunk +Ethernet28 trunk +Ethernet36 routed +Ethernet40 routed +Ethernet44 routed +Ethernet48 routed +Ethernet52 access +Ethernet56 access +Ethernet60 routed +Ethernet64 routed +Ethernet68 routed +Ethernet72 routed +Ethernet76 routed +Ethernet80 routed +Ethernet84 routed +Ethernet88 routed +Ethernet92 routed +Ethernet96 routed +Ethernet100 routed +Ethernet104 routed +Ethernet108 routed +Ethernet116 routed +Ethernet124 routed +PortChannel0001 routed +PortChannel0002 routed +PortChannel0003 routed +PortChannel0004 routed +PortChannel1001 trunk +""" + +show_interfaces_switchport_config_output = """\ +Interface Mode Untagged Tagged +--------------- ------ ---------- -------- +Ethernet0 routed +Ethernet4 trunk 1000 +Ethernet8 routed 1000 +Ethernet12 routed 1000 +Ethernet16 trunk 1000 +Ethernet20 routed +Ethernet24 trunk 2000 +Ethernet28 trunk 2000 +Ethernet36 routed +Ethernet40 routed +Ethernet44 routed +Ethernet48 routed +Ethernet52 access +Ethernet56 access +Ethernet60 routed +Ethernet64 routed +Ethernet68 routed +Ethernet72 routed +Ethernet76 routed +Ethernet80 routed +Ethernet84 routed +Ethernet88 routed +Ethernet92 routed +Ethernet96 routed +Ethernet100 routed +Ethernet104 routed +Ethernet108 routed +Ethernet116 routed +Ethernet124 routed +PortChannel0001 routed +PortChannel0002 routed +PortChannel0003 routed +PortChannel0004 routed +PortChannel1001 trunk 4000 +""" + + class TestInterfaces(object): @classmethod def setup_class(cls): @@ -337,6 +416,24 @@ def test_parse_interface_in_filter(self): assert len(intf_list) == 3 assert intf_list == ["Ethernet-BP10", "Ethernet-BP11", "Ethernet-BP12"] + def test_show_interfaces_switchport_status(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["switchport"].commands["status"]) + print(result.exit_code) + print(result.output) + + assert result.exit_code == 0 + assert result.output == show_interfaces_switchport_status_output + + def test_show_interfaces_switchport_config(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["switchport"].commands["config"]) + print(result.exit_code) + print(result.output) + + assert result.exit_code == 0 + assert result.output == show_interfaces_switchport_config_output + @classmethod def teardown_class(cls): print("TEARDOWN") diff --git a/tests/intfutil_test.py b/tests/intfutil_test.py index ef37199bfe..bb83dd31df 100644 --- a/tests/intfutil_test.py +++ b/tests/intfutil_test.py @@ -342,4 +342,4 @@ def test_show_interfaces_link_training_status(self): 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"] = "0" \ No newline at end of file diff --git a/tests/ipv6_link_local_test.py b/tests/ipv6_link_local_test.py index 50b691be6b..bb9e53ac1a 100644 --- a/tests/ipv6_link_local_test.py +++ b/tests/ipv6_link_local_test.py @@ -232,7 +232,7 @@ def test_vlan_member_add_on_link_local_interface(self): 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 + assert 'Error: Ethernet40 is in routed mode!\nUse switchport mode command to change port mode' in result.output @classmethod def teardown_class(cls): diff --git a/tests/mock_tables/asic0/config_db.json b/tests/mock_tables/asic0/config_db.json index de20194a64..023e70299c 100644 --- a/tests/mock_tables/asic0/config_db.json +++ b/tests/mock_tables/asic0/config_db.json @@ -75,6 +75,7 @@ "admin_status": "up", "members@": "Ethernet0,Ethernet4", "min_links": "2", + "mode": "trunk", "mtu": "9100" }, "PORTCHANNEL|PortChannel4001": { diff --git a/tests/mock_tables/config_db.json b/tests/mock_tables/config_db.json index ff0be3a446..07fc66db9e 100644 --- a/tests/mock_tables/config_db.json +++ b/tests/mock_tables/config_db.json @@ -29,6 +29,7 @@ "lanes": "25,26,27,28", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -40,6 +41,7 @@ "lanes": "29,30,31,32", "mtu": "9100", "tpid": "0x8100", + "mode": "trunk", "pfc_asym": "off", "speed": "40000" }, @@ -51,6 +53,7 @@ "lanes": "33,34,35,36", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -62,6 +65,7 @@ "lanes": "37,38,39,40", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -73,6 +77,7 @@ "lanes": "16", "mtu": "9100", "tpid": "0x8100", + "mode": "trunk", "pfc_asym": "off", "speed": "100" }, @@ -84,6 +89,7 @@ "lanes": "41,42,43,44", "mtu": "9100", "tpid": "0x9200", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -95,6 +101,7 @@ "lanes": "1,2,3,4", "mtu": "9100", "tpid": "0x8100", + "mode": "trunk", "pfc_asym": "off", "speed": "1000" }, @@ -106,6 +113,7 @@ "lanes": "5,6,7,8", "mtu": "9100", "tpid": "0x8100", + "mode": "trunk", "pfc_asym": "off", "speed": "1000" }, @@ -117,6 +125,7 @@ "lanes": "13,14,15,16", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -128,6 +137,7 @@ "lanes": "9,10,11,12", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "10" }, @@ -139,6 +149,7 @@ "lanes": "17,18,19,20", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -150,6 +161,7 @@ "lanes": "21,22,23,24", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -161,6 +173,7 @@ "lanes": "53,54,55,56", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -172,6 +185,7 @@ "lanes": "49,50,51,52", "mtu": "9100", "tpid": "0x8100", + "mode": "access", "pfc_asym": "off", "speed": "40000" }, @@ -183,6 +197,7 @@ "lanes": "57,58,59,60", "mtu": "9100", "tpid": "0x8100", + "mode": "access", "pfc_asym": "off", "speed": "40000" }, @@ -194,6 +209,7 @@ "lanes": "61,62,63,64", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -216,6 +232,7 @@ "lanes": "65,66,67,68", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -227,6 +244,7 @@ "lanes": "73,74,75,76", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -238,6 +256,7 @@ "lanes": "77,78,79,80", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -249,6 +268,7 @@ "lanes": "109,110,111,112", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -260,6 +280,7 @@ "lanes": "105,106,107,108", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -271,6 +292,7 @@ "lanes": "113,114,115,116", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -282,6 +304,7 @@ "lanes": "117,118,119,120", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -293,6 +316,7 @@ "lanes": "125,126,127,128", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -303,6 +327,7 @@ "lanes": "121,122,123,124", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -313,6 +338,7 @@ "lanes": "81,82,83,84", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -323,6 +349,7 @@ "lanes": "85,86,87,88", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -334,6 +361,7 @@ "lanes": "93,94,95,96", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -345,6 +373,7 @@ "lanes": "89,90,91,92", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -356,6 +385,7 @@ "lanes": "101,102,103,104", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -367,6 +397,7 @@ "lanes": "97,98,99,100", "mtu": "9100", "tpid": "0x8100", + "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -668,6 +699,7 @@ "admin_status": "up", "members@": "Ethernet32", "min_links": "1", + "mode":"trunk", "tpid": "0x8100", "mtu": "9100" }, diff --git a/tests/vlan_test.py b/tests/vlan_test.py index 13364f76e6..e00d3c40a8 100644 --- a/tests/vlan_test.py +++ b/tests/vlan_test.py @@ -134,6 +134,124 @@ +-----------+-----------------+-----------------+----------------+-------------+ """ +test_config_add_del_multiple_vlan_and_vlan_member_output="""\ ++-----------+-----------------+-----------------+----------------+-------------+ +| VLAN ID | IP Address | Ports | Port Tagging | Proxy ARP | ++===========+=================+=================+================+=============+ +| 1000 | 192.168.0.1/21 | Ethernet4 | untagged | disabled | +| | fc02:1000::1/64 | Ethernet8 | untagged | | +| | | Ethernet12 | untagged | | +| | | Ethernet16 | untagged | | ++-----------+-----------------+-----------------+----------------+-------------+ +| 1001 | | Ethernet20 | tagged | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +| 1002 | | Ethernet20 | tagged | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +| 1003 | | Ethernet20 | tagged | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +| 2000 | 192.168.0.10/21 | Ethernet24 | untagged | enabled | +| | fc02:1011::1/64 | Ethernet28 | untagged | | ++-----------+-----------------+-----------------+----------------+-------------+ +| 3000 | | | | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +| 4000 | | PortChannel1001 | tagged | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +""" + +test_config_add_del_add_vlans_and_add_all_vlan_member_output="""\ ++-----------+-----------------+-----------------+----------------+-------------+ +| VLAN ID | IP Address | Ports | Port Tagging | Proxy ARP | ++===========+=================+=================+================+=============+ +| 1000 | 192.168.0.1/21 | Ethernet4 | untagged | disabled | +| | fc02:1000::1/64 | Ethernet8 | untagged | | +| | | Ethernet12 | untagged | | +| | | Ethernet16 | untagged | | +| | | Ethernet20 | tagged | | ++-----------+-----------------+-----------------+----------------+-------------+ +| 1001 | | Ethernet20 | tagged | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +| 1002 | | Ethernet20 | tagged | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +| 1003 | | Ethernet20 | tagged | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +| 2000 | 192.168.0.10/21 | Ethernet20 | tagged | enabled | +| | fc02:1011::1/64 | Ethernet24 | untagged | | +| | | Ethernet28 | untagged | | ++-----------+-----------------+-----------------+----------------+-------------+ +| 3000 | | Ethernet20 | tagged | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +| 4000 | | Ethernet20 | tagged | disabled | +| | | PortChannel1001 | tagged | | ++-----------+-----------------+-----------------+----------------+-------------+ +""" + +test_config_add_del_add_vlans_and_add_vlans_member_except_vlan_output = """\ ++-----------+-----------------+-----------------+----------------+-------------+ +| VLAN ID | IP Address | Ports | Port Tagging | Proxy ARP | ++===========+=================+=================+================+=============+ +| 1000 | 192.168.0.1/21 | Ethernet4 | untagged | disabled | +| | fc02:1000::1/64 | Ethernet8 | untagged | | +| | | Ethernet12 | untagged | | +| | | Ethernet16 | untagged | | ++-----------+-----------------+-----------------+----------------+-------------+ +| 1001 | | Ethernet20 | tagged | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +| 1002 | | Ethernet20 | tagged | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +| 2000 | 192.168.0.10/21 | Ethernet20 | tagged | enabled | +| | fc02:1011::1/64 | Ethernet24 | untagged | | +| | | Ethernet28 | untagged | | ++-----------+-----------------+-----------------+----------------+-------------+ +| 3000 | | Ethernet20 | tagged | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +| 4000 | | PortChannel1001 | tagged | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +""" + +test_config_add_del_add_vlans_and_add_vlans_member_except_vlan__after_del_member_output = """\ ++-----------+-----------------+-----------------+----------------+-------------+ +| VLAN ID | IP Address | Ports | Port Tagging | Proxy ARP | ++===========+=================+=================+================+=============+ +| 1000 | 192.168.0.1/21 | Ethernet4 | untagged | disabled | +| | fc02:1000::1/64 | Ethernet8 | untagged | | +| | | Ethernet12 | untagged | | +| | | Ethernet16 | untagged | | ++-----------+-----------------+-----------------+----------------+-------------+ +| 1001 | | Ethernet20 | tagged | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +| 1002 | | Ethernet20 | tagged | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +| 2000 | 192.168.0.10/21 | Ethernet24 | untagged | enabled | +| | fc02:1011::1/64 | Ethernet28 | untagged | | ++-----------+-----------------+-----------------+----------------+-------------+ +| 3000 | | | | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +| 4000 | | PortChannel1001 | tagged | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +""" + +test_config_add_del_vlan_and_vlan_member_with_switchport_modes_output = """\ ++-----------+-----------------+-----------------+----------------+-------------+ +| VLAN ID | IP Address | Ports | Port Tagging | Proxy ARP | ++===========+=================+=================+================+=============+ +| 1000 | 192.168.0.1/21 | Ethernet4 | untagged | disabled | +| | fc02:1000::1/64 | Ethernet8 | untagged | | +| | | Ethernet12 | untagged | | +| | | Ethernet16 | untagged | | +| | | Ethernet20 | tagged | | ++-----------+-----------------+-----------------+----------------+-------------+ +| 1001 | | Ethernet20 | untagged | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +| 2000 | 192.168.0.10/21 | Ethernet24 | untagged | enabled | +| | fc02:1011::1/64 | Ethernet28 | untagged | | ++-----------+-----------------+-----------------+----------------+-------------+ +| 3000 | | | | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +| 4000 | | PortChannel1001 | tagged | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +""" + + config_add_del_vlan_and_vlan_member_in_alias_mode_output="""\ +-----------+-----------------+-----------------+----------------+-------------+ | VLAN ID | IP Address | Ports | Port Tagging | Proxy ARP | @@ -154,6 +272,27 @@ +-----------+-----------------+-----------------+----------------+-------------+ """ +test_config_add_del_vlan_and_vlan_member_with_switchport_modes_and_change_mode_types_output = """\ ++-----------+-----------------+-----------------+----------------+-------------+ +| VLAN ID | IP Address | Ports | Port Tagging | Proxy ARP | ++===========+=================+=================+================+=============+ +| 1000 | 192.168.0.1/21 | Ethernet4 | untagged | disabled | +| | fc02:1000::1/64 | Ethernet8 | untagged | | +| | | Ethernet12 | untagged | | +| | | Ethernet16 | untagged | | ++-----------+-----------------+-----------------+----------------+-------------+ +| 1001 | | | | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +| 2000 | 192.168.0.10/21 | Ethernet24 | untagged | enabled | +| | fc02:1011::1/64 | Ethernet28 | untagged | | ++-----------+-----------------+-----------------+----------------+-------------+ +| 3000 | | | | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +| 4000 | | PortChannel1001 | tagged | disabled | ++-----------+-----------------+-----------------+----------------+-------------+ +""" + + class TestVlan(object): _old_run_bgp_command = None @@ -236,7 +375,7 @@ def test_config_vlan_add_vlan_with_invalid_vlanid(self): print(result.exit_code) print(result.output) assert result.exit_code != 0 - assert "Error: Invalid VLAN ID 4096 (1-4094)" in result.output + assert "Error: Invalid VLAN ID 4096 (2-4094)" in result.output def test_config_vlan_add_vlan_with_exist_vlanid(self): runner = CliRunner() @@ -252,7 +391,7 @@ def test_config_vlan_del_vlan_with_invalid_vlanid(self): print(result.exit_code) print(result.output) assert result.exit_code != 0 - assert "Error: Invalid VLAN ID 4096 (1-4094)" in result.output + assert "Error: Invalid VLAN ID 4096 (2-4094)" in result.output def test_config_vlan_del_vlan_with_nonexist_vlanid(self): runner = CliRunner() @@ -262,13 +401,79 @@ def test_config_vlan_del_vlan_with_nonexist_vlanid(self): assert result.exit_code != 0 assert "Error: Vlan1001 does not exist" in result.output + def test_config_vlan_add_vlan_with_multiple_vlanids(self, mock_restart_dhcp_relay_service): + runner = CliRunner() + result = runner.invoke(config.config.commands["vlan"].commands["add"], ["10,20,30,40", "--multiple"]) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + def test_config_vlan_add_vlan_with_multiple_vlanids_with_range(self, mock_restart_dhcp_relay_service): + runner = CliRunner() + result = runner.invoke(config.config.commands["vlan"].commands["add"], ["10-20", "--multiple"]) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + def test_config_vlan_add_vlan_with_multiple_vlanids_with_range_and_multiple_ids(self, mock_restart_dhcp_relay_service): + runner = CliRunner() + result = runner.invoke(config.config.commands["vlan"].commands["add"], ["10-15,20,25,30", "--multiple"]) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + def test_config_vlan_add_vlan_with_wrong_range(self): + runner = CliRunner() + result = runner.invoke(config.config.commands["vlan"].commands["add"], ["15-10", "--multiple"]) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "15 is greater than 10. List cannot be generated" in result.output + + def test_config_vlan_add_vlan_range_with_default_vlan(self): + runner = CliRunner() + result = runner.invoke(config.config.commands["vlan"].commands["add"], ["1-10", "--multiple"]) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Vlan1 is default vlan" in result.output + + def test_config_vlan_add_vlan_is_digit_fail(self): + runner = CliRunner() + vid = "test_fail_case" + result = runner.invoke(config.config.commands["vlan"].commands["add"], [vid]) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "{} is not integer".format(vid) in result.output + + def test_config_vlan_add_vlan_is_default_vlan(self): + runner = CliRunner() + default_vid = "1" + vlan = "Vlan{}".format(default_vid) + result = runner.invoke(config.config.commands["vlan"].commands["add"], [default_vid]) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "{} is default VLAN.".format(vlan) in result.output + + def test_config_vlan_del_vlan_does_not_exist(self): + runner = CliRunner() + vid = "3010" + vlan = "Vlan{}".format(vid) + result = runner.invoke(config.config.commands["vlan"].commands["del"], [vid]) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "{} does not exist".format(vlan) in result.output + def test_config_vlan_add_member_with_invalid_vlanid(self): runner = CliRunner() result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], ["4096", "Ethernet4"]) print(result.exit_code) print(result.output) assert result.exit_code != 0 - assert "Error: Invalid VLAN ID 4096 (1-4094)" in result.output + assert "Error: Invalid VLAN ID 4096 (2-4094)" in result.output def test_config_vlan_add_member_with_nonexist_vlanid(self): runner = CliRunner() @@ -296,6 +501,13 @@ def test_config_vlan_add_nonexist_port_member(self): def test_config_vlan_add_nonexist_portchannel_member(self): runner = CliRunner() + #switch port mode for PortChannel1011 to trunk mode + result = runner.invoke(config.config.commands["switchport"].commands["mode"],["trunk", "PortChannel1011"]) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Error: PortChannel1011 does not exist" in result.output + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], \ ["1000", "PortChannel1011"]) print(result.exit_code) @@ -306,7 +518,6 @@ def test_config_vlan_add_nonexist_portchannel_member(self): def test_config_vlan_add_portchannel_member(self): runner = CliRunner() db = Db() - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], \ ["1000", "PortChannel1001", "--untagged"], obj=db) print(result.exit_code) @@ -329,7 +540,7 @@ def test_config_vlan_add_rif_portchannel_member(self): print(result.exit_code) print(result.output) assert result.exit_code != 0 - assert "Error: PortChannel0001 is a router interface!" in result.output + assert "Error: PortChannel0001 is in routed mode!\nUse switchport mode command to change port mode" in result.output def test_config_vlan_with_vxlanmap_del_vlan(self, mock_restart_dhcp_relay_service): runner = CliRunner() @@ -446,6 +657,22 @@ def test_config_add_del_vlan_and_vlan_member(self, mock_restart_dhcp_relay_servi print(result.output) assert result.exit_code == 0 + # add Ethernet20 to vlan 1001 but Ethernet20 is in routed mode will give error + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], + ["1001", "Ethernet20", "--untagged"], obj=db) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code != 0 + assert "Ethernet20 is in routed mode!\nUse switchport mode command to change port mode" in result.output + + # configure Ethernet20 from routed to access mode + result = runner.invoke(config.config.commands["switchport"].commands["mode"],["access", "Ethernet20"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert "Ethernet20 switched from routed to access mode" in result.output + # add Ethernet20 to vlan 1001 result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], ["1001", "Ethernet20", "--untagged"], obj=db) @@ -491,6 +718,22 @@ def test_config_add_del_vlan_and_vlan_member_in_alias_mode(self, mock_restart_dh print(result.output) assert result.exit_code == 0 + # add etp6 to vlan 1001 but etp6 is in routed mode will give error + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], + ["1001", "etp6", "--untagged"], obj=db) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code != 0 + assert "Ethernet20 is in routed mode!\nUse switchport mode command to change port mode" in result.output + + # configure etp6 from routed to access mode + result = runner.invoke(config.config.commands["switchport"].commands["mode"],["access", "etp6"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert "Ethernet20 switched from routed to access mode" in result.output + # add etp6 to vlan 1001 result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], ["1001", "etp6", "--untagged"], obj=db) @@ -527,6 +770,380 @@ def test_config_add_del_vlan_and_vlan_member_in_alias_mode(self, mock_restart_dh os.environ['SONIC_CLI_IFACE_MODE'] = "default" + def test_config_add_del_multiple_vlan_and_vlan_member(self,mock_restart_dhcp_relay_service): + runner = CliRunner() + db = Db() + + # add vlan 1001 + result = runner.invoke(config.config.commands["vlan"].commands["add"], ["1001,1002,1003","--multiple"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + # add Ethernet20 to vlan1001, vlan1002, vlan1003 multiple flag but Ethernet20 is in routed mode will give error + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], + ["1001,1002,1003", "Ethernet20", "--multiple"], obj=db) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code != 0 + assert "Ethernet20 is in routed mode!\nUse switchport mode command to change port mode" in result.output + + # configure Ethernet20 from routed to access mode + result = runner.invoke(config.config.commands["switchport"].commands["mode"],["trunk", "Ethernet20"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert "Ethernet20 switched from routed to trunk mode" in result.output + + # add Ethernet20 to vlan 1001 + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], + ["1001,1002,1003", "Ethernet20", "--multiple"], obj=db) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code == 0 + + # show output + result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) + print(result.output) + assert result.output == test_config_add_del_multiple_vlan_and_vlan_member_output + + # remove vlan member + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["del"], + ["1001-1003", "Ethernet20", "--multiple"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + # add del 1001 + result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1001-1003","--multiple"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + # show output + result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_vlan_brief_output + + def test_config_add_del_add_vlans_and_add_vlans_member_except_vlan(self, mock_restart_dhcp_relay_service): + runner = CliRunner() + db = Db() + + # add vlan 1001 + result = runner.invoke(config.config.commands["vlan"].commands["add"], ["1001,1002","--multiple"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + # add Ethernet20 to vlan1001, vlan1002, vlan1003 multiple flag but Ethernet20 is in routed mode will give error + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], + ["1000,4000", "Ethernet20", "--multiple", "--except_flag"], obj=db) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code != 0 + assert "Ethernet20 is in routed mode!\nUse switchport mode command to change port mode" in result.output + + # configure Ethernet20 from routed to access mode + result = runner.invoke(config.config.commands["switchport"].commands["mode"],["trunk", "Ethernet20"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert "Ethernet20 switched from routed to trunk mode" in result.output + + # add Ethernet20 to vlan 1001 + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], + ["1000,4000", "Ethernet20", "--multiple", "--except_flag"], obj=db) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code == 0 + + # show output + result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) + print(result.output) + assert result.output == test_config_add_del_add_vlans_and_add_vlans_member_except_vlan_output + + # remove vlan member except some + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["del"], + ["1001,1002", "Ethernet20", "--multiple", "--except_flag"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + # show output + result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == test_config_add_del_add_vlans_and_add_vlans_member_except_vlan__after_del_member_output + + # remove vlan member + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["del"], + ["1001,1002", "Ethernet20", "--multiple"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + # add del 1001 + result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1001-1002","--multiple"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + # show output + result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_vlan_brief_output + + + def test_config_add_del_add_vlans_and_add_all_vlan_member(self, mock_restart_dhcp_relay_service): + runner = CliRunner() + db = Db() + + # add vlan 1001 + result = runner.invoke(config.config.commands["vlan"].commands["add"], ["1001,1002,1003","--multiple"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + # add Ethernet20 to vlan1001, vlan1002, vlan1003 multiple flag but Ethernet20 is in routed mode will give error + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], + ["all", "Ethernet20"], obj=db) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code != 0 + assert "Ethernet20 is in routed mode!\nUse switchport mode command to change port mode" in result.output + + # configure Ethernet20 from routed to access mode + result = runner.invoke(config.config.commands["switchport"].commands["mode"],["trunk", "Ethernet20"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert "Ethernet20 switched from routed to trunk mode" in result.output + + # add Ethernet20 to vlan 1001 + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], + ["all", "Ethernet20"], obj=db) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code == 0 + + # show output + result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) + print(result.output) + assert result.output == test_config_add_del_add_vlans_and_add_all_vlan_member_output + + # remove vlan member + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["del"], + ["all", "Ethernet20"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + # add del 1001 + result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1001-1003","--multiple"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + # show output + result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_vlan_brief_output + + def test_config_add_del_vlan_and_vlan_member_with_switchport_modes(self, 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 + + # add Ethernet20 to vlan 1001 but Ethernet20 is in routed mode will give error + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], + ["1001", "Ethernet20", "--untagged"], obj=db) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code != 0 + assert "Ethernet20 is in routed mode!\nUse switchport mode command to change port mode" in result.output + + + # configure Ethernet20 from routed to access mode + result = runner.invoke(config.config.commands["switchport"].commands["mode"],["access", "Ethernet20"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert "Ethernet20 switched from routed to access mode" in result.output + + # add Ethernet20 to vlan 1001 + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], + ["1001", "Ethernet20", "--untagged"], obj=db) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code == 0 + + # add Ethernet20 to vlan 1001 as tagged member + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], + ["1000", "Ethernet20"], obj=db) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code != 0 + assert "Ethernet20 is in access mode! Tagged Members cannot be added" in result.output + + # configure Ethernet20 from access to trunk mode + result = runner.invoke(config.config.commands["switchport"].commands["mode"],["trunk", "Ethernet20"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert "Ethernet20 switched from access to trunk mode" in result.output + + # add Ethernet20 to vlan 1001 as tagged member + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], + ["1000", "Ethernet20"], obj=db) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code == 0 + + # show output + result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) + print(result.output) + assert result.output == test_config_add_del_vlan_and_vlan_member_with_switchport_modes_output + + # configure Ethernet20 from trunk to routed mode + result = runner.invoke(config.config.commands["switchport"].commands["mode"],["routed", "Ethernet20"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Ethernet20 has tagged member(s). \nRemove them to change mode to routed" in result.output + + # remove vlan member + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["del"], + ["1000", "Ethernet20"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + # configure Ethernet20 from trunk to routed mode + result = runner.invoke(config.config.commands["switchport"].commands["mode"],["routed", "Ethernet20"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Ethernet20 has untagged member. \nRemove it to change mode to routed" in result.output + + # remove vlan member + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["del"], + ["1001", "Ethernet20"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + # configure Ethernet20 from trunk to routed mode + result = runner.invoke(config.config.commands["switchport"].commands["mode"],["routed", "Ethernet20"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert "Ethernet20 switched from trunk to routed mode" in result.output + + # add del 1001 + result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1001"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + # show output + result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_vlan_brief_output + + + def test_config_add_del_vlan_and_vlan_member_with_switchport_modes_and_change_mode_types(self, 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 + + + # configure Ethernet64 to routed mode + result = runner.invoke(config.config.commands["switchport"].commands["mode"],["routed", "Ethernet64"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + # add Ethernet64 to vlan 1001 but Ethernet64 is in routed mode will give error + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], + ["1001", "Ethernet64"], obj=db) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code != 0 + assert "Ethernet64 is in routed mode!\nUse switchport mode command to change port mode" in result.output + + # configure Ethernet64 from routed to trunk mode + result = runner.invoke(config.config.commands["switchport"].commands["mode"],["trunk", "Ethernet64"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert "Ethernet64 switched from routed to trunk mode" in result.output + + # add Ethernet64 to vlan 1001 + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], + ["1001", "Ethernet64"], obj=db) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code == 0 + + # configure Ethernet64 from routed to access mode + result = runner.invoke(config.config.commands["switchport"].commands["mode"],["access", "Ethernet64"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Ethernet64 is in trunk mode and have tagged member(s).\nRemove tagged member(s) from Ethernet64 to switch to access mode" in result.output + + # remove vlan member + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["del"], + ["1001", "Ethernet64"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + # configure Ethernet64 from routed to access mode + result = runner.invoke(config.config.commands["switchport"].commands["mode"],["access", "Ethernet64"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert "Ethernet64 switched from trunk to access mode" in result.output + + # show output + result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == test_config_add_del_vlan_and_vlan_member_with_switchport_modes_and_change_mode_types_output + def test_config_vlan_proxy_arp_with_nonexist_vlan_intf_table(self): modes = ["enabled", "disabled"] runner = CliRunner() @@ -615,8 +1232,8 @@ def test_config_set_router_port_on_member_interface(self): result = runner.invoke(config.config.commands["interface"].commands["ip"].commands["add"], ["Ethernet4", "10.10.10.1/24"], obj=obj) print(result.exit_code, result.output) - assert result.exit_code == 0 - assert 'Interface Ethernet4 is a member of vlan' in result.output + assert result.exit_code != 0 + assert 'Interface Ethernet4 is not in routed mode!' in result.output def test_config_vlan_add_member_of_portchannel(self): runner = CliRunner() diff --git a/utilities_common/cli.py b/utilities_common/cli.py index 9d3cdae710..54e867c610 100644 --- a/utilities_common/cli.py +++ b/utilities_common/cli.py @@ -20,6 +20,7 @@ pass_db = click.make_pass_decorator(Db, ensure=True) + class AbbreviationGroup(click.Group): """This subclass of click.Group supports abbreviated subgroup/subcommand names """ @@ -76,9 +77,11 @@ def read_config(self, filename): except configparser.NoSectionError: pass + # Global Config object _config = None + class AliasedGroup(click.Group): """This subclass of click.Group supports abbreviations and looking up aliases in a config file with a bit of magic. @@ -117,6 +120,7 @@ def get_command(self, ctx, cmd_name): return click.Group.get_command(self, ctx, matches[0]) ctx.fail('Too many matches: %s' % ', '.join(sorted(matches))) + class InterfaceAliasConverter(object): """Class which handles conversion between interface name and alias""" @@ -131,7 +135,6 @@ def __init__(self, db=None): self.port_dict = self.config_db.get_table('PORT') self.alias_max_length = 0 - if not self.port_dict: self.port_dict = {} @@ -139,7 +142,7 @@ def __init__(self, db=None): try: if self.alias_max_length < len( self.port_dict[port_name]['alias']): - self.alias_max_length = len( + self.alias_max_length = len( self.port_dict[port_name]['alias']) except KeyError: break @@ -151,7 +154,8 @@ def name_to_alias(self, interface_name): vlan_id = '' sub_intf_sep_idx = -1 if interface_name is not None: - sub_intf_sep_idx = interface_name.find(VLAN_SUB_INTERFACE_SEPARATOR) + sub_intf_sep_idx = interface_name.find( + VLAN_SUB_INTERFACE_SEPARATOR) if sub_intf_sep_idx != -1: vlan_id = interface_name[sub_intf_sep_idx + 1:] # interface_name holds the parent port name @@ -160,7 +164,7 @@ def name_to_alias(self, interface_name): for port_name in self.port_dict: if interface_name == port_name: return self.port_dict[port_name]['alias'] if sub_intf_sep_idx == -1 \ - else self.port_dict[port_name]['alias'] + VLAN_SUB_INTERFACE_SEPARATOR + vlan_id + else self.port_dict[port_name]['alias'] + VLAN_SUB_INTERFACE_SEPARATOR + vlan_id # interface_name not in port_dict. Just return interface_name return interface_name if sub_intf_sep_idx == -1 else interface_name + VLAN_SUB_INTERFACE_SEPARATOR + vlan_id @@ -172,7 +176,8 @@ def alias_to_name(self, interface_alias): vlan_id = '' sub_intf_sep_idx = -1 if interface_alias is not None: - sub_intf_sep_idx = interface_alias.find(VLAN_SUB_INTERFACE_SEPARATOR) + sub_intf_sep_idx = interface_alias.find( + VLAN_SUB_INTERFACE_SEPARATOR) if sub_intf_sep_idx != -1: vlan_id = interface_alias[sub_intf_sep_idx + 1:] # interface_alias holds the parent port alias @@ -185,8 +190,11 @@ 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 + # Lazy global class instance for SONiC interface name to alias conversion -iface_alias_converter = lazy_object_proxy.Proxy(lambda: InterfaceAliasConverter()) +iface_alias_converter = lazy_object_proxy.Proxy( + lambda: InterfaceAliasConverter()) + def get_interface_naming_mode(): mode = os.getenv('SONIC_CLI_IFACE_MODE') @@ -194,6 +202,7 @@ def get_interface_naming_mode(): mode = "default" return mode + def is_ipaddress(val): """ Validate if an entry is a valid IP """ import netaddr @@ -205,6 +214,7 @@ def is_ipaddress(val): return False return True + def ipaddress_type(val): """ Return the IP address type """ if not val: @@ -217,6 +227,7 @@ def ipaddress_type(val): return ip_version.version + def is_ip_prefix_in_key(key): ''' Function to check if IP address is present in the key. If it @@ -225,6 +236,7 @@ def is_ip_prefix_in_key(key): ''' return (isinstance(key, tuple)) + def is_valid_port(config_db, port): """Check if port is in PORT table""" @@ -234,6 +246,7 @@ def is_valid_port(config_db, port): return False + def is_valid_portchannel(config_db, port): """Check if port is in PORT_CHANNEL table""" @@ -243,6 +256,7 @@ def is_valid_portchannel(config_db, port): return False + def is_vlanid_in_range(vid): """Check if vlan id is valid or not""" @@ -251,6 +265,7 @@ def is_vlanid_in_range(vid): return False + def check_if_vlanid_exist(config_db, vlan, table_name='VLAN'): """Check if vlan id exits in the config db or ot""" @@ -259,6 +274,7 @@ def check_if_vlanid_exist(config_db, vlan, table_name='VLAN'): return False + def is_port_vlan_member(config_db, port, vlan): """Check if port is a member of vlan""" @@ -269,26 +285,134 @@ def is_port_vlan_member(config_db, port, vlan): return False + +def vlan_range_list(ctx, vid_range: str) -> list: + + vid1, vid2 = map(int, vid_range.split("-")) + + if vid1 == 1 or vid2 == 1: + ctx.fail("Vlan1 is default vlan") + + if vid1 >= vid2: + ctx.fail("{} is greater than {}. List cannot be generated".format(vid1,vid2)) + + if is_vlanid_in_range(vid1) and is_vlanid_in_range(vid2): + return list(range(vid1, vid2+1)) + else: + ctx.fail("Invalid VLAN ID must be in (2-4094)") + + +def multiple_vlan_parser(ctx, s_input: str) -> list: + + vlan_list = [] + + vlan_map = map(str, s_input.replace(" ", "").split(",")) + for vlan in vlan_map: + if "-" in vlan: + vlan_list += vlan_range_list(ctx, vlan) + elif vlan.isdigit() and int(vlan) not in vlan_list: + vlan_list.append(int(vlan)) + elif not vlan.isdigit(): + ctx.fail("{} is not integer".format(vlan)) + + vlan_list.sort() + return vlan_list + + +def get_existing_vlan_id(db) -> list: + existing_vlans = [] + vlan_data = db.cfgdb.get_table('VLAN') + + for i in vlan_data.keys(): + existing_vlans.append(int(i.strip("Vlan"))) + + return sorted(existing_vlans) + +def get_existing_vlan_id_on_interface(db,port) -> list: + intf_vlans = [] + vlan_member_data = db.cfgdb.get_table('VLAN_MEMBER') + + for (k,v) in vlan_member_data.keys(): + if v == port: + intf_vlans.append(int(k.strip("Vlan"))) + + return sorted(intf_vlans) + + +def vlan_member_input_parser(ctx, command_mode, db, except_flag, multiple, vid, port) -> list: + vid_list = [] + if vid == "all": + if command_mode == "add": + return get_existing_vlan_id(db) # config vlan member add + if command_mode == "del": + return get_existing_vlan_id_on_interface(db,port) # config vlan member del + + if multiple: + vid_list = multiple_vlan_parser(ctx, vid) + + if except_flag: + if command_mode == "add": + comp_list = get_existing_vlan_id(db) # config vlan member add + + elif command_mode == "del": + comp_list = get_existing_vlan_id_on_interface(db,port) # config vlan member del + + if multiple: + for i in vid_list: + if i in comp_list: + comp_list.remove(i) + + else: + if not vid.isdigit(): + ctx.fail("Vlan is not integer.") + vid = int(vid) + if vid in comp_list: + comp_list.remove(vid) + vid_list = comp_list + + elif not multiple: + # if entered vlan is not a integer + if not vid.isdigit(): + ctx.fail("Vlan is not integer.") + vid_list.append(int(vid)) + + # sorting the vid_list + vid_list.sort() + return vid_list + +def interface_is_tagged_member(db, interface_name): + """ Check if interface has tagged members i.e. is in trunk mode""" + vlan_member_table = db.get_table('VLAN_MEMBER') + + for key, val in vlan_member_table.items(): + if(key[1] == interface_name): + if (val['tagging_mode'] == 'tagged'): + return True + return False + def interface_is_in_vlan(vlan_member_table, interface_name): """ Check if an interface is in a vlan """ - for _,intf in vlan_member_table: + for _, intf in vlan_member_table: if intf == interface_name: return True return False + def is_valid_vlan_interface(config_db, interface): """ Check an interface is a valid VLAN interface """ return interface in config_db.get_table("VLAN_INTERFACE") + def interface_is_in_portchannel(portchannel_member_table, interface_name): """ Check if an interface is part of portchannel """ - for _,intf in portchannel_member_table: + for _, intf in portchannel_member_table: if intf == interface_name: return True return False + def is_port_router_interface(config_db, port): """Check if port is a router interface""" @@ -299,6 +423,7 @@ def is_port_router_interface(config_db, port): return False + def is_pc_router_interface(config_db, pc): """Check if portchannel is a router interface""" @@ -309,15 +434,65 @@ def is_pc_router_interface(config_db, pc): return False +def get_vlan_id(vlan): + vlan_prefix, vid = vlan.split('Vlan') + return vid + +def get_interface_name_for_display(db ,interface): + interface_naming_mode = get_interface_naming_mode() + iface_alias_converter = InterfaceAliasConverter(db) + if interface_naming_mode == "alias" and interface: + return iface_alias_converter.name_to_alias(interface) + return interface + +def get_interface_untagged_vlan_members(db,interface): + untagged_vlans = [] + vlan_member = db.cfgdb.get_table('VLAN_MEMBER') + + for member in natsorted(list(vlan_member.keys())): + interface_vlan, interface_name = member + + if interface == interface_name and vlan_member[member]['tagging_mode'] == 'untagged': + untagged_vlans.append(get_vlan_id(interface_vlan)) + + return "\n".join(untagged_vlans) + +def get_interface_tagged_vlan_members(db,interface): + tagged_vlans = [] + formatted_tagged_vlans = [] + vlan_member = db.cfgdb.get_table('VLAN_MEMBER') + + for member in natsorted(list(vlan_member.keys())): + interface_vlan, interface_name = member + + if interface == interface_name and vlan_member[member]['tagging_mode'] == 'tagged': + tagged_vlans.append(get_vlan_id(interface_vlan)) + + for i in range(len(tagged_vlans)//5+1): + formatted_tagged_vlans.append(" ,".join([str(x) for x in tagged_vlans[i*5:(i+1)*5]])) + + return "\n".join(formatted_tagged_vlans) + +def get_interface_switchport_mode(db, interface): + port = db.cfgdb.get_entry('PORT',interface) + portchannel = db.cfgdb.get_entry('PORTCHANNEL',interface) + switchport_mode = 'routed' + if "mode" in port: + switchport_mode = port['mode'] + elif "mode" in portchannel: + switchport_mode = portchannel['mode'] + return switchport_mode + def is_port_mirror_dst_port(config_db, port): """Check if port is already configured as mirror destination port """ mirror_table = config_db.get_table('MIRROR_SESSION') - for _,v in mirror_table.items(): + for _, v in mirror_table.items(): if 'dst_port' in v and v['dst_port'] == port: return True return False + def vni_id_is_valid(vni): """Check if the vni id is in acceptable range (between 1 and 2^24) """ @@ -327,6 +502,7 @@ def vni_id_is_valid(vni): return True + def is_vni_vrf_mapped(db, vni): """Check if the vni is mapped to vrf """ @@ -335,20 +511,22 @@ def is_vni_vrf_mapped(db, vni): vrf_table = db.cfgdb.get_table('VRF') vrf_keys = vrf_table.keys() if vrf_keys is not None: - for vrf_key in vrf_keys: - if ('vni' in vrf_table[vrf_key] and vrf_table[vrf_key]['vni'] == vni): - found = 1 - break + for vrf_key in vrf_keys: + if ('vni' in vrf_table[vrf_key] and vrf_table[vrf_key]['vni'] == vni): + found = 1 + break if (found == 1): - print("VNI {} mapped to Vrf {}, Please remove VRF VNI mapping".format(vni, vrf_key)) + print("VNI {} mapped to Vrf {}, Please remove VRF VNI mapping".format( + vni, vrf_key)) return False return True + def interface_has_mirror_config(mirror_table, interface_name): """Check if port is already configured with mirror config """ - for _,v in mirror_table.items(): + for _, v in mirror_table.items(): if 'src_port' in v and v['src_port'] == interface_name: return True if 'dst_port' in v and v['dst_port'] == interface_name: @@ -356,6 +534,7 @@ def interface_has_mirror_config(mirror_table, interface_name): return False + def print_output_in_alias_mode(output, index): """Convert and print all instances of SONiC interface name to vendor-sepecific interface aliases. @@ -381,12 +560,12 @@ def print_output_in_alias_mode(output, index): interface_name = word[index] interface_name = interface_name.replace(':', '') for port_name in natsorted(list(iface_alias_converter.port_dict.keys())): - if interface_name == port_name: - alias_name = iface_alias_converter.port_dict[port_name]['alias'] + if interface_name == port_name: + alias_name = iface_alias_converter.port_dict[port_name]['alias'] if alias_name: if len(alias_name) < iface_alias_converter.alias_max_length: alias_name = alias_name.rjust( - iface_alias_converter.alias_max_length) + iface_alias_converter.alias_max_length) output = output.replace(interface_name, alias_name, 1) click.echo(output.rstrip('\n')) @@ -416,7 +595,7 @@ def run_command_in_alias_mode(command, shell=False): index = 0 if output.startswith("IFACE"): output = output.replace("IFACE", "IFACE".rjust( - iface_alias_converter.alias_max_length)) + iface_alias_converter.alias_max_length)) print_output_in_alias_mode(output, index) elif command_str.startswith("intfstat"): @@ -424,7 +603,7 @@ def run_command_in_alias_mode(command, shell=False): index = 0 if output.startswith("IFACE"): output = output.replace("IFACE", "IFACE".rjust( - iface_alias_converter.alias_max_length)) + iface_alias_converter.alias_max_length)) print_output_in_alias_mode(output, index) elif command_str == "pfcstat": @@ -432,11 +611,11 @@ def run_command_in_alias_mode(command, shell=False): index = 0 if output.startswith("Port Tx"): output = output.replace("Port Tx", "Port Tx".rjust( - iface_alias_converter.alias_max_length)) + iface_alias_converter.alias_max_length)) elif output.startswith("Port Rx"): output = output.replace("Port Rx", "Port Rx".rjust( - iface_alias_converter.alias_max_length)) + iface_alias_converter.alias_max_length)) print_output_in_alias_mode(output, index) elif (command_str.startswith("sudo sfputil show eeprom")): @@ -451,7 +630,7 @@ def run_command_in_alias_mode(command, shell=False): index = 0 if output.startswith("Port"): output = output.replace("Port", "Port".rjust( - iface_alias_converter.alias_max_length)) + iface_alias_converter.alias_max_length)) print_output_in_alias_mode(output, index) elif command_str == "sudo lldpshow": @@ -459,7 +638,7 @@ def run_command_in_alias_mode(command, shell=False): index = 0 if output.startswith("LocalPort"): output = output.replace("LocalPort", "LocalPort".rjust( - iface_alias_converter.alias_max_length)) + iface_alias_converter.alias_max_length)) print_output_in_alias_mode(output, index) elif command_str.startswith("queuestat"): @@ -467,7 +646,7 @@ def run_command_in_alias_mode(command, shell=False): index = 0 if output.startswith("Port"): output = output.replace("Port", "Port".rjust( - iface_alias_converter.alias_max_length)) + iface_alias_converter.alias_max_length)) print_output_in_alias_mode(output, index) elif command_str == "fdbshow": @@ -476,7 +655,7 @@ def run_command_in_alias_mode(command, shell=False): if output.startswith("No."): output = " " + output output = re.sub( - 'Type', ' Type', output) + 'Type', ' Type', output) elif output[0].isdigit(): output = " " + output print_output_in_alias_mode(output, index) @@ -491,8 +670,8 @@ def run_command_in_alias_mode(command, shell=False): """Show ip(v6) int""" index = 0 if output.startswith("Interface"): - output = output.replace("Interface", "Interface".rjust( - iface_alias_converter.alias_max_length)) + output = output.replace("Interface", "Interface".rjust( + iface_alias_converter.alias_max_length)) print_output_in_alias_mode(output, index) else: @@ -505,8 +684,9 @@ def run_command_in_alias_mode(command, shell=False): converted_output = raw_output for port_name in iface_alias_converter.port_dict: converted_output = re.sub(r"(^|\s){}($|,{{0,1}}\s)".format(port_name), - r"\1{}\2".format(iface_alias_converter.name_to_alias(port_name)), - converted_output) + r"\1{}\2".format( + iface_alias_converter.name_to_alias(port_name)), + converted_output) click.echo(converted_output.rstrip('\n')) rc = process.poll() @@ -541,7 +721,7 @@ def run_command(command, display_cmd=False, ignore_error=False, return_cmd=False if get_interface_naming_mode() == "alias" and not command_str.startswith("intfutil") and not re.search("show ip|ipv6 route", command_str): run_command_in_alias_mode(command, shell=shell) sys.exit(0) - + proc = subprocess.Popen(command, shell=shell, text=True, stdout=subprocess.PIPE) if return_cmd: @@ -593,20 +773,21 @@ def interface_is_untagged_member(db, interface_name): """ Check if interface is already untagged member""" vlan_member_table = db.get_table('VLAN_MEMBER') - for key,val in vlan_member_table.items(): + for key, val in vlan_member_table.items(): if(key[1] == interface_name): if (val['tagging_mode'] == 'untagged'): return True return False + def is_interface_in_config_db(config_db, interface_name): """ Check if an interface is in CONFIG DB """ 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 + not interface_name == 'null'): + return False return True @@ -623,9 +804,11 @@ def __init__(self, *args, **kwargs): def get_help_record(self, ctx): """Return help string with mutually_exclusive list added.""" - help_record = list(super(MutuallyExclusiveOption, self).get_help_record(ctx)) + help_record = list( + super(MutuallyExclusiveOption, self).get_help_record(ctx)) if self.mutually_exclusive: - mutually_exclusive_str = 'NOTE: this argument is mutually exclusive with arguments: %s' % ', '.join(self.mutually_exclusive) + mutually_exclusive_str = 'NOTE: this argument is mutually exclusive with arguments: %s' % ', '.join( + self.mutually_exclusive) if help_record[-1]: help_record[-1] += ' ' + mutually_exclusive_str else: @@ -637,8 +820,9 @@ def handle_parse_result(self, ctx, opts, args): for opt_name in self.mutually_exclusive: if opt_name in opts and opts[opt_name] is not None: raise click.UsageError( - "Illegal usage: %s is mutually exclusive with arguments %s" % (self.name, ', '.join(self.mutually_exclusive)) - ) + "Illegal usage: %s is mutually exclusive with arguments %s" % ( + self.name, ', '.join(self.mutually_exclusive)) + ) return super(MutuallyExclusiveOption, self).handle_parse_result(ctx, opts, args) @@ -687,8 +871,10 @@ def __init__(self, app_name=None, tag=None): 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.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) @@ -697,7 +883,8 @@ def __init__(self, app_name=None, tag=None): finally: os.umask(prev_umask) - self.cache_directory = os.path.join(self.cache_directory_app, self.cache_directory_suffix) + 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): From 09daeb2081e001a2906c1676daf44bdbebaa80fa Mon Sep 17 00:00:00 2001 From: mihirpat1 <112018033+mihirpat1@users.noreply.github.com> Date: Tue, 29 Aug 2023 19:19:07 -0700 Subject: [PATCH 07/75] [sfputil] Retrieve error-status for transceiver using sfp API (#2953) * [sfputil] Retrieve error-status for transceiver using sfp API Signed-off-by: Mihir Patel * Resolved testcase failures * Improved code coverage --------- Signed-off-by: Mihir Patel --- sfputil/main.py | 56 +++++++------------------------------------ tests/sfputil_test.py | 26 +++++++++++++++++--- 2 files changed, 31 insertions(+), 51 deletions(-) diff --git a/sfputil/main.py b/sfputil/main.py index c19f8bdfda..51d5af4895 100644 --- a/sfputil/main.py +++ b/sfputil/main.py @@ -882,62 +882,22 @@ def fetch_error_status_from_platform_api(port): """ if port is None: logical_port_list = natsort.natsorted(platform_sfputil.logical) - # Create a list containing the logical port names of all ports we're interested in - generate_sfp_list_code = \ - "sfp_list = chassis.get_all_sfps()\n" else: - physical_port_list = logical_port_name_to_physical_port_list(port) logical_port_list = [port] - # Create a list containing the logical port names of all ports we're interested in - generate_sfp_list_code = \ - "sfp_list = [chassis.get_sfp(x) for x in {}]\n".format(physical_port_list) - - # Code to initialize chassis object - init_chassis_code = \ - "import sonic_platform.platform\n" \ - "platform = sonic_platform.platform.Platform()\n" \ - "chassis = platform.get_chassis()\n" - - # 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" \ - "except NotImplementedError as e:\n"\ - " errors=['{}:{}'.format(sfp.index, 'OK (Not implemented)') for sfp in sfp_list]\n" \ - "print(errors)\n" - - get_error_status_command = ["docker", "exec", "pmon", "python3", "-c", "{}{}{}".format( - init_chassis_code, generate_sfp_list_code, get_error_status_code)] - # Fetch error status from pmon docker - try: - output = subprocess.check_output(get_error_status_command, universal_newlines=True) - except subprocess.CalledProcessError as e: - click.Abort("Error! Unable to fetch error status for SPF modules. Error code = {}, error messages: {}".format(e.returncode, e.output)) - return None - - 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 ':' - # 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 = logical_port_to_physical_port_index(logical_port_name) if is_port_type_rj45(logical_port_name): - output.append([port_name, "N/A"]) + output.append([logical_port_name, "N/A"]) else: - output.append([port_name, output_dict.get(physical_port_list[0])]) + try: + error_description = platform_chassis.get_sfp(physical_port).get_error_description() + output.append([logical_port_name, error_description]) + except NotImplementedError: + click.echo("get_error_description NOT implemented for port {}".format(logical_port_name)) + sys.exit(ERROR_NOT_IMPLEMENTED) return output diff --git a/tests/sfputil_test.py b/tests/sfputil_test.py index f50acdc441..f8917d9c44 100644 --- a/tests/sfputil_test.py +++ b/tests/sfputil_test.py @@ -424,13 +424,17 @@ def test_error_status_from_db_RJ45(self): output = sfputil.fetch_error_status_from_state_db('Ethernet0', db.db) assert output == expected_output_ethernet0 + @patch('sfputil.main.platform_chassis') @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="['0:OK']")) - def test_fetch_error_status_from_platform_api(self): + def test_fetch_error_status_from_platform_api(self, mock_chassis): + mock_sfp = MagicMock() + mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) + mock_sfp.get_error_description = MagicMock(return_value='OK') + output = sfputil.fetch_error_status_from_platform_api('Ethernet0') - assert output == [['Ethernet0', None]] + 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)) @@ -440,6 +444,22 @@ 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.platform_sfputil', MagicMock(is_logical_port=MagicMock(return_value=1))) + @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)) + def test_fetch_error_status_from_platform_api_exception(self, mock_chassis): + mock_sfp = MagicMock() + mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) + mock_sfp.get_error_description = MagicMock(side_effect=NotImplementedError) + + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['show'].commands['error-status'], ["-hw", "-p", "Ethernet0"]) + assert result.exit_code == ERROR_NOT_IMPLEMENTED + expected_output = "get_error_description NOT implemented for port Ethernet0\n" + assert result.output == expected_output + @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): From 832ecf0fe574fed8c7ef0f7c52df7f8e5f521d2f Mon Sep 17 00:00:00 2001 From: guangyao6 <107662061+guangyao6@users.noreply.github.com> Date: Wed, 30 Aug 2023 15:50:10 +0800 Subject: [PATCH 08/75] [GCU] Add BGPSentinel to CreateOnlyFilter (#2955) #### What I did BGPSentinel is the same as BGP_PEER_RANGE (create only). In order to support GCU for BGPSentinel, add BGPSentinel to GCU create only filter. #### How I did it Add BGPSentinel to CreateOnlyFilter and add related testcases. #### How to verify it Unit Test. And corresponding sonic-mgmt case: https://github.com/sonic-net/sonic-mgmt/pull/9735 --- generic_config_updater/patch_sorter.py | 1 + .../files/change_applier_test.data.json | 30 ++++++++++++++++++- .../patch_sorter_test.py | 23 ++++++++++++++ 3 files changed, 53 insertions(+), 1 deletion(-) diff --git a/generic_config_updater/patch_sorter.py b/generic_config_updater/patch_sorter.py index 528e3d5151..829c3c2b68 100644 --- a/generic_config_updater/patch_sorter.py +++ b/generic_config_updater/patch_sorter.py @@ -562,6 +562,7 @@ def __init__(self, path_addressing): ["BGP_NEIGHBOR", "*", "nhopself"], ["BGP_NEIGHBOR", "*", "rrclient"], ["BGP_PEER_RANGE", "*", "*"], + ["BGP_SENTINELS", "*", "*"], ["BGP_MONITORS", "*", "holdtime"], ["BGP_MONITORS", "*", "keepalive"], ["BGP_MONITORS", "*", "name"], diff --git a/tests/generic_config_updater/files/change_applier_test.data.json b/tests/generic_config_updater/files/change_applier_test.data.json index d75541a5de..bb3af93e0f 100644 --- a/tests/generic_config_updater/files/change_applier_test.data.json +++ b/tests/generic_config_updater/files/change_applier_test.data.json @@ -73,6 +73,23 @@ "src_address": "10.1.0.32" } }, + "BGP_SENTINELS": { + "BGPSentinelV6": { + "ip_range": [ + "2603:10a0:321:82f9::/64", + "2603:10a1:30a:8000::/59" + ], + "name": "BGPSentinelV6", + "src_address": "fc00:1::32" + }, + "BGPSentinel": { + "ip_range": [ + "10.1.0.0/24" + ], + "name": "BGPSentinel", + "src_address": "10.1.0.32" + } + }, "BUFFER_PG": { "Ethernet0|3-4": { "profile": "[BUFFER_PROFILE|pg_lossless_40000_300m_profile]" @@ -253,7 +270,8 @@ }, "remove": { "BGP_NEIGHBOR": { "10.0.0.57": {} }, - "BGP_PEER_RANGE": { "BGPSLBPassive": {} } + "BGP_PEER_RANGE": { "BGPSLBPassive": {} }, + "BGP_SENTINELS": { "BGPSentinelV6": {} } }, "services_validated": [ "vlan_validate", "acl_validate" ] }, @@ -297,6 +315,16 @@ "name": "BGPSLBPassive", "src_address": "10.1.0.32" } + }, + "BGP_SENTINELS": { + "BGPSentinelV6": { + "ip_range": [ + "2603:10a0:321:82f9::/64", + "2603:10a1:30a:8000::/59" + ], + "name": "BGPSentinelV6", + "src_address": "fc00:1::32" + } } }, "remove": { diff --git a/tests/generic_config_updater/patch_sorter_test.py b/tests/generic_config_updater/patch_sorter_test.py index 900538dd6e..baeab6fddb 100644 --- a/tests/generic_config_updater/patch_sorter_test.py +++ b/tests/generic_config_updater/patch_sorter_test.py @@ -1097,6 +1097,23 @@ def test_hard_coded_create_only_paths(self): "src_address": "10.1.0.32" } }, + "BGP_SENTINELS": { + "BGPSentinelV6": { + "ip_range": [ + "2603:10a0:321:82f9::/64", + "2603:10a1:30a:8000::/59" + ], + "name": "BGPSentinelV6", + "src_address": "fc00:1::32" + }, + "BGPSentinel": { + "ip_range": [ + "10.1.0.0/24" + ], + "name": "BGPSentinel", + "src_address": "10.1.0.32" + } + }, "BGP_MONITORS": { "5.6.7.8": { "admin_status": "up", @@ -1135,6 +1152,12 @@ def test_hard_coded_create_only_paths(self): "/BGP_PEER_RANGE/BGPSLBPassive/name", "/BGP_PEER_RANGE/BGPSLBPassive/peer_asn", "/BGP_PEER_RANGE/BGPSLBPassive/src_address", + "/BGP_SENTINELS/BGPSentinelV6/ip_range", + "/BGP_SENTINELS/BGPSentinelV6/name", + "/BGP_SENTINELS/BGPSentinelV6/src_address", + "/BGP_SENTINELS/BGPSentinel/ip_range", + "/BGP_SENTINELS/BGPSentinel/name", + "/BGP_SENTINELS/BGPSentinel/src_address", "/BGP_MONITORS/5.6.7.8/asn", "/BGP_MONITORS/5.6.7.8/holdtime", "/BGP_MONITORS/5.6.7.8/keepalive", From d8a04d8b2ee6b0c51c578c49bc0e626ade619158 Mon Sep 17 00:00:00 2001 From: isabelmsft <67024108+isabelmsft@users.noreply.github.com> Date: Wed, 30 Aug 2023 14:04:12 -0700 Subject: [PATCH 09/75] add Mellanox-SN4700-O8C48 hwsku (#2951) #### What I did Add Mellanox-SN4700-O8C48 HwSKU to GCU RDMA platform validator conf file --- generic_config_updater/gcu_field_operation_validators.conf.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generic_config_updater/gcu_field_operation_validators.conf.json b/generic_config_updater/gcu_field_operation_validators.conf.json index 28f4dc0508..4398f96abd 100644 --- a/generic_config_updater/gcu_field_operation_validators.conf.json +++ b/generic_config_updater/gcu_field_operation_validators.conf.json @@ -19,7 +19,7 @@ "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" ] + "spc3": [ "ACS-MSN4700", "ACS-MSN4600", "ACS-MSN4600C", "ACS-MSN4410", "Mellanox-SN4600C-D112C8", "Mellanox-SN4600C-C64", "Mellanox-SN4700-O8C48" ] }, "broadcom_asics": { "th": [ "Force10-S6100", "Arista-7060CX-32S-C32", "Arista-7060CX-32S-C32-T1", "Arista-7060CX-32S-D48C8", "Celestica-DX010-C32", "Seastone-DX010" ], From c7c4831baf2f60c7f63166244eb07c6ab7fe8b8a Mon Sep 17 00:00:00 2001 From: Junchao-Mellanox <57339448+Junchao-Mellanox@users.noreply.github.com> Date: Fri, 1 Sep 2023 00:50:55 +0800 Subject: [PATCH 10/75] [db_migrator.py] Fix issue while upgrading from 202205 to 202211 via fast reboot (#2948) - What I did Fix issue while upgrading from 202205 to 202211 via fast reboot. This issue is caused by a mismatch version handling for fast reboot in db_migrator. This mismatch causes an incorrect sequence like this: 1. User issue fast-reboot under 202205 2. fast-reboot script set fast reboot flag by command "sonic-db-cli STATE_DB HSET "FAST_RESTART_ENABLE_TABLE|system" "enable" "true" &>/dev/null" 3. system boot to 202211 4. db_migrator found the database version is 3_0_6, it will run 4_0_0, however, it found FAST_REBOOT|system does not exist, and it set FAST_RESTART_ENABLE_TABLE|system enable to false 5. system incorrectly performs cold reboot - How I did it in db migrator if we see there is FAST_RESTART_ENABLE_TABLE already, we should skip fast reboot flag migration - How to verify it unit test manual test --- scripts/db_migrator.py | 17 ++++++++------- .../fast_reboot_upgrade_from_202205.json | 5 +++++ tests/db_migrator_test.py | 21 ++++++++++++++++++- 3 files changed, 34 insertions(+), 9 deletions(-) create mode 100644 tests/db_migrator_input/state_db/fast_reboot_upgrade_from_202205.json diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index c2d0fd837a..d8d1ec24c5 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -691,7 +691,7 @@ def migrate_routing_config_mode(self): # 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" + # 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') @@ -1033,12 +1033,14 @@ def version_4_0_0(self): # 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) + keys = self.stateDB.keys(self.stateDB.STATE_DB, "FAST_RESTART_ENABLE_TABLE|system") + if not keys: + 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_4_0_1') return 'version_4_0_1' @@ -1057,7 +1059,6 @@ def version_4_0_2(self): Version 4_0_2. """ log.log_info('Handling version_4_0_2') - if self.stateDB.keys(self.stateDB.STATE_DB, "FAST_REBOOT|system"): self.migrate_config_db_flex_counter_delay_status() diff --git a/tests/db_migrator_input/state_db/fast_reboot_upgrade_from_202205.json b/tests/db_migrator_input/state_db/fast_reboot_upgrade_from_202205.json new file mode 100644 index 0000000000..b2e3169d4b --- /dev/null +++ b/tests/db_migrator_input/state_db/fast_reboot_upgrade_from_202205.json @@ -0,0 +1,5 @@ +{ + "FAST_RESTART_ENABLE_TABLE|system": { + "enable": "true" + } +} \ No newline at end of file diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index 7b4f842463..3f15f2c2e0 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -538,6 +538,25 @@ def test_rename_fast_reboot_table_check_enable(self): diff = DeepDiff(resulting_table, expected_table, ignore_order=True) assert not diff + def test_ignore_rename_fast_reboot_table(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_upgrade_from_202205') + 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_upgrade_from_202205') + 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): @@ -744,4 +763,4 @@ def test_fast_reboot_upgrade_to_4_0_3(self): expected_db = self.mock_dedicated_config_db(db_after_migrate) advance_version_for_expected_database(dbmgtr.configDB, expected_db.cfgdb, 'version_4_0_3') 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 + assert dbmgtr.CURRENT_VERSION == expected_db.cfgdb.get_entry('VERSIONS', 'DATABASE')['VERSION'] From 3a4ebb6569f3f8ff894dd0eac7c00dc753354844 Mon Sep 17 00:00:00 2001 From: Mridul Bajpai <30709399+bmridul@users.noreply.github.com> Date: Thu, 7 Sep 2023 15:27:28 -0700 Subject: [PATCH 11/75] Voltage and Current Sensors CLI (#2941) Added support for voltage and current sensor monitoring CLIs as mentioned in the feature HLD for PMON Voltage/Current Sensor Monitoring Enhancement. sonic-net/SONiC#1394 * Addressed review comments * Fix review comment * UT file * Fixed dependency for running unit test on platform common changes * Fixed standalone unit test failure * Addressed review comment --- scripts/sensorshow | 88 +++++++++++++++++++++++++++++++++ setup.py | 1 + show/platform.py | 17 +++++++ tests/mock_tables/state_db.json | 52 +++++++++++++++++++ tests/sensor_test.py | 50 +++++++++++++++++++ 5 files changed, 208 insertions(+) create mode 100755 scripts/sensorshow create mode 100644 tests/sensor_test.py diff --git a/scripts/sensorshow b/scripts/sensorshow new file mode 100755 index 0000000000..54c37619d6 --- /dev/null +++ b/scripts/sensorshow @@ -0,0 +1,88 @@ +#!/usr/bin/python3 + +''' + Script to show Voltage and Current Sensor status. +''' +from tabulate import tabulate +from natsort import natsorted +import argparse +import os +import sys + +# mock the redis for unit test purposes # +try: + if os.environ["UTILITIES_UNIT_TESTING"] == "1": + modules_path = os.path.join(os.path.dirname(__file__), "..") + test_path = os.path.join(modules_path, "tests") + sys.path.insert(0, modules_path) + sys.path.insert(0, test_path) + import mock_tables.dbconnector +except KeyError: + pass + +from swsscommon.swsscommon import SonicV2Connector + +header = ['Sensor', '', 'High TH', 'Low TH', 'Crit High TH', 'Crit Low TH', 'Warning', 'Timestamp'] + +TIMESTAMP_FIELD_NAME = 'timestamp' +UNIT_FIELD_NAME = 'unit' +HIGH_THRESH_FIELD_NAME = 'high_threshold' +LOW_THRESH_FIELD_NAME = 'low_threshold' +CRIT_HIGH_THRESH_FIELD_NAME = 'critical_high_threshold' +CRIT_LOW_THRESH_FIELD_NAME = 'critical_low_threshold' +WARNING_STATUS_FIELD_NAME = 'warning_status' +VOLTAGE_INFO_TABLE_NAME = 'VOLTAGE_INFO' +CURRENT_INFO_TABLE_NAME = 'CURRENT_INFO' + + +class SensorShow(object): + def __init__(self, type): + self.db = SonicV2Connector(use_unix_socket_path=True) + self.db.connect(self.db.STATE_DB) + self.field_name = type + header[1] = type.capitalize() + + if type == "voltage": + self.table_name = VOLTAGE_INFO_TABLE_NAME + else: + self.table_name = CURRENT_INFO_TABLE_NAME + + def show(self): + keys = self.db.keys(self.db.STATE_DB, self.table_name + '*') + if not keys: + print('Sensor not detected') + return + + table = [] + for key in natsorted(keys): + key_list = key.split('|') + if len(key_list) != 2: # error data in DB, log it and ignore + print('Warn: Invalid key in table {}: {}'.format(self.table_name, key)) + continue + + name = key_list[1] + data_dict = self.db.get_all(self.db.STATE_DB, key) + #print(name, data_dict) + table.append((name, + "{} {}".format(data_dict[self.field_name], data_dict[UNIT_FIELD_NAME]), + data_dict[HIGH_THRESH_FIELD_NAME], + data_dict[LOW_THRESH_FIELD_NAME], + data_dict[CRIT_HIGH_THRESH_FIELD_NAME], + data_dict[CRIT_LOW_THRESH_FIELD_NAME], + data_dict[WARNING_STATUS_FIELD_NAME], + data_dict[TIMESTAMP_FIELD_NAME] + )) + + if table: + print(tabulate(table, header, tablefmt='simple', stralign='right')) + else: + print('No sensor data available') + + +if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument("-t", "--type", help="sensor type", required=True, choices=['voltage', 'current']) + args = parser.parse_args() + + sensor_show = SensorShow(args.type) + sensor_show.show() diff --git a/setup.py b/setup.py index ac069267f0..6888d3405d 100644 --- a/setup.py +++ b/setup.py @@ -170,6 +170,7 @@ 'scripts/tempershow', 'scripts/tunnelstat', 'scripts/update_json.py', + 'scripts/sensorshow', 'scripts/voqutil', 'scripts/warm-reboot', 'scripts/watermarkstat', diff --git a/show/platform.py b/show/platform.py index c4f2c3a29c..d3e9fa098a 100644 --- a/show/platform.py +++ b/show/platform.py @@ -137,6 +137,23 @@ def temperature(): cmd = ['tempershow'] clicommon.run_command(cmd) + +# 'voltage' subcommand ("show platform voltage") +@platform.command() +def voltage(): + """Show device voltage information""" + cmd = ["sensorshow", "-t", "voltage"] + clicommon.run_command(cmd) + + +# 'current' subcommand ("show platform current") +@platform.command() +def current(): + """Show device current information""" + cmd = ["sensorshow", "-t", "current"] + clicommon.run_command(cmd) + + # 'firmware' subcommand ("show platform firmware") @platform.command( context_settings=dict( diff --git a/tests/mock_tables/state_db.json b/tests/mock_tables/state_db.json index f98de518b8..8d7f27f7ca 100644 --- a/tests/mock_tables/state_db.json +++ b/tests/mock_tables/state_db.json @@ -1620,5 +1620,57 @@ }, "ACL_RULE_TABLE|DATAACL_5|RULE_1" : { "status": "Active" + }, + "VOLTAGE_INFO|VSENSOR0": { + "critical_high_threshold": "872", + "critical_low_threshold": "664", + "high_threshold": "852", + "is_replaceable": "False", + "low_threshold": "684", + "maximum_voltage": "760", + "minimum_voltage": "759", + "timestamp": "20230704 17:38:04", + "voltage": "760", + "unit": "mV", + "warning_status": "False" + }, + "VOLTAGE_INFO|VSENSOR1": { + "critical_high_threshold": "872", + "critical_low_threshold": "664", + "high_threshold": "852", + "is_replaceable": "False", + "low_threshold": "684", + "maximum_voltage": "760", + "minimum_voltage": "759", + "timestamp": "20230704 17:38:04", + "voltage": "759", + "unit": "mV", + "warning_status": "False" + }, + "CURRENT_INFO|ISENSOR0": { + "critical_high_threshold": "460", + "critical_low_threshold": "300", + "current": "410", + "unit": "mA", + "high_threshold": "440", + "is_replaceable": "False", + "low_threshold": "320", + "maximum_current": "431", + "minimum_current": "402", + "timestamp": "20230704 17:38:04", + "warning_status": "False" + }, + "CURRENT_INFO|ISENSOR1": { + "critical_high_threshold": "460", + "critical_low_threshold": "300", + "current": "360", + "unit": "mA", + "high_threshold": "440", + "is_replaceable": "False", + "low_threshold": "320", + "maximum_current": "367", + "minimum_current": "339", + "timestamp": "20230704 17:38:04", + "warning_status": "False" } } diff --git a/tests/sensor_test.py b/tests/sensor_test.py new file mode 100644 index 0000000000..d97ce5c74e --- /dev/null +++ b/tests/sensor_test.py @@ -0,0 +1,50 @@ +import sys +import os +from click.testing import CliRunner + +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) + +import show.main as show + +class TestVoltage(object): + @classmethod + def setup_class(cls): + print("SETUP") + os.environ["PATH"] += os.pathsep + scripts_path + os.environ["UTILITIES_UNIT_TESTING"] = "1" + + def test_show_platform_voltage(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["platform"].commands["voltage"]) + print(result.output) + expected = """\ + Sensor Voltage High TH Low TH Crit High TH Crit Low TH Warning Timestamp +-------- --------- --------- -------- -------------- ------------- --------- ----------------- +VSENSOR0 760 mV 852 684 872 664 False 20230704 17:38:04 +VSENSOR1 759 mV 852 684 872 664 False 20230704 17:38:04 +""" + + assert result.output == expected + + def test_show_platform_current(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["platform"].commands["current"]) + print(result.output) + expected = """\ + Sensor Current High TH Low TH Crit High TH Crit Low TH Warning Timestamp +-------- --------- --------- -------- -------------- ------------- --------- ----------------- +ISENSOR0 410 mA 440 320 460 300 False 20230704 17:38:04 +ISENSOR1 360 mA 440 320 460 300 False 20230704 17:38:04 +""" + + assert result.output == expected + + @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" + From 57b3b313b0ab272a04ef7553c15eddf780e7e8b0 Mon Sep 17 00:00:00 2001 From: Vivek Date: Sun, 10 Sep 2023 08:31:29 -0700 Subject: [PATCH 12/75] Remove the CONFIG_DB_INIT flag dependency on db_migrator (#2959) - What I did db_migrator should not depend on CONFIG_DB_INITIALIZED flag. get_hwsku api call busy waits on that flag - How I did it Replace get_hwsku call with get_localhost_info call which takes in a custom config_db object Signed-off-by: Vivek Reddy Karri --- scripts/db_migrator.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index d8d1ec24c5..8df892b2d7 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -91,7 +91,8 @@ def __init__(self, namespace, socket=None): 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() + + self.hwsku = device_info.get_localhost_info('hwsku', self.configDB) if not self.hwsku: log.log_error("HWSKU information not obtained. DB migration will not be reliable") From b1ac2ef1c5ca4d3724603d813413ae98a768a5e5 Mon Sep 17 00:00:00 2001 From: Yaqiang Zhu Date: Mon, 11 Sep 2023 01:12:00 -0400 Subject: [PATCH 13/75] [sonic-package-manager] Increate timeout for sonic-package-manager migrate (#2973) What I did When we migrate package via sonic-package-manager in some low-performance device, getting docker image from old image via docker socket may timeout by default timeout setting (60s) client.py. This PR is to increase timeout to 120s. How I did it Increase docker client timeout from 60s to 120s. How to verify it ut passed. Build image with INCLUDE_MACSEC, and install it, macsec image was not include. And the build image with this PR, install it. Migrate package successfully. Signed-off-by: Yaqiang Zhu --- sonic_package_manager/manager.py | 7 +++++- tests/sonic_package_manager/test_manager.py | 28 +++++++++++++++++++++ 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/sonic_package_manager/manager.py b/sonic_package_manager/manager.py index 7ed2be0a9e..d01ed9cb44 100644 --- a/sonic_package_manager/manager.py +++ b/sonic_package_manager/manager.py @@ -659,6 +659,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, @@ -701,7 +705,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/tests/sonic_package_manager/test_manager.py b/tests/sonic_package_manager/test_manager.py index ad365f946d..db9a79b309 100644 --- a/tests/sonic_package_manager/test_manager.py +++ b/tests/sonic_package_manager/test_manager.py @@ -356,3 +356,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) From 82a4d7163fe7fbf71e988d460f891cd683e75ee8 Mon Sep 17 00:00:00 2001 From: Saikrishna Arcot Date: Wed, 13 Sep 2023 14:11:33 -0700 Subject: [PATCH 14/75] Remove command to install libhiredis deb file (#2980) libhiredis is now used as-is from the slave container, since we're not making any changes to this package. See also sonic-net/sonic-buildimage#15633. Signed-off-by: Saikrishna Arcot --- azure-pipelines.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index eecf1c9e53..1f0f354436 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -52,12 +52,11 @@ stages: - script: | set -xe - sudo apt-get -y purge libhiredis-dev libnl-3-dev libnl-route-3-dev || true + sudo apt-get -y purge 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 sudo dpkg -i libnl-nf-3-200_*.deb - sudo dpkg -i libhiredis0.14_*.deb 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 From e2c184188ba3cdd73b81ba4c50463a515ccf99d4 Mon Sep 17 00:00:00 2001 From: abdosi <58047199+abdosi@users.noreply.github.com> Date: Thu, 14 Sep 2023 09:28:46 -0700 Subject: [PATCH 15/75] Added support to display only nonzero queue counter. (#2978) Added new option --nonzero to display given {port,queue} or {system-port, voq} counter only if any of counter value is non zero. --- scripts/queuestat | 73 +- show/main.py | 6 +- tests/mock_tables/counters_db.json | 24 +- tests/queue_counter_test.py | 1150 +++++++++++++++++++++++++--- 4 files changed, 1120 insertions(+), 133 deletions(-) diff --git a/scripts/queuestat b/scripts/queuestat index d82e7e4a6a..8f95554481 100755 --- a/scripts/queuestat +++ b/scripts/queuestat @@ -198,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. @@ -211,19 +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: hdr = voq_header if self.voq else header - print(tabulate(table, hdr, tablefmt='simple', stralign='right')) - print() + 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. @@ -241,25 +244,32 @@ 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: - table.append((port, cntr['queuetype'] + str(cntr['queueindex']), - cntr['totalpacket'], cntr['totalbytes'], - cntr['droppacket'], cntr['dropbytes'])) + 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'])) if json_opt: json_output[port].update(build_json(port, table)) return json_output else: hdr = voq_header if self.voq else header - print(tabulate(table, hdr, tablefmt='simple', stralign='right')) - print() + 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 @@ -276,22 +286,21 @@ class Queuestat(object): cnstat_cached_dict = json.load(open(cnstat_fqn_file_name, 'r')) 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 @@ -310,17 +319,17 @@ class Queuestat(object): cnstat_cached_dict = json.load(open(cnstat_fqn_file_name, 'r')) 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)) @@ -358,6 +367,7 @@ Examples: 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 @@ -365,6 +375,7 @@ Examples: voq = args.voq json_opt = args.json_opt namespace = args.namespace + non_zero = args.non_zero port_to_show_stats = args.port @@ -383,9 +394,9 @@ Examples: 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/show/main.py b/show/main.py index 35303b6eda..725556e6e8 100755 --- a/show/main.py +++ b/show/main.py @@ -718,7 +718,8 @@ def queue(): @click.option('--verbose', is_flag=True, help="Enable verbose output") @click.option('--json', is_flag=True, help="JSON output") @click.option('--voq', is_flag=True, help="VOQ counters") -def counters(interfacename, namespace, display, verbose, json, voq): +@click.option('--nonzero', is_flag=True, help="Non Zero Counters") +def counters(interfacename, namespace, display, verbose, json, voq, nonzero): """Show queue counters""" cmd = ["queuestat"] @@ -739,6 +740,9 @@ def counters(interfacename, namespace, display, verbose, json, voq): if voq: cmd += ["-V"] + if nonzero: + cmd += ["-nz"] + run_command(cmd, display_cmd=verbose) # diff --git a/tests/mock_tables/counters_db.json b/tests/mock_tables/counters_db.json index c0c37880df..d62c34cb3c 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": { @@ -399,10 +399,10 @@ "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" + "SAI_QUEUE_STAT_BYTES": "0", + "SAI_QUEUE_STAT_DROPPED_BYTES": "0", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "0", + "SAI_QUEUE_STAT_PACKETS": "0" }, "COUNTERS:oid:0x15000000000658": { "SAI_QUEUE_STAT_BYTES": "43", diff --git a/tests/queue_counter_test.py b/tests/queue_counter_test.py index a5fbf0b81b..20b9516fbc 100644 --- a/tests/queue_counter_test.py +++ b/tests/queue_counter_test.py @@ -24,7 +24,107 @@ 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 +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 + + Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes +--------- ----- -------------- --------------- ----------- ------------ +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 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_nz = """\ + 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 @@ -90,7 +190,6 @@ Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes --------- ----- -------------- --------------- ----------- ------------ -Ethernet8 UC0 19 5 36 56 Ethernet8 UC1 38 17 68 91 Ethernet8 UC2 16 65 79 51 Ethernet8 UC3 11 97 63 72 @@ -227,7 +326,41 @@ show_queue_counters_port = """\ 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 +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_nz = """\ + 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 @@ -384,10 +517,10 @@ "totalpacket": "57" }, "UC0": { - "dropbytes": "74", - "droppacket": "56", - "totalbytes": "30", - "totalpacket": "68" + "dropbytes": "0", + "droppacket": "0", + "totalbytes": "0", + "totalpacket": "0" }, "UC1": { "dropbytes": "1", @@ -748,10 +881,10 @@ "totalpacket": "20" }, "UC0": { - "dropbytes": "56", - "droppacket": "36", - "totalbytes": "5", - "totalpacket": "19" + "dropbytes": "0", + "droppacket": "0", + "totalbytes": "0", + "totalpacket": "0" }, "UC1": { "dropbytes": "91", @@ -810,9 +943,9 @@ } }""" -show_queue_counters_port_json = """\ +show_queue_counters_json_nz = """\ { - "Ethernet8": { + "Ethernet0": { "ALL20": { "dropbytes": "N/A", "droppacket": "N/A", @@ -874,96 +1007,816 @@ "totalpacket": "N/A" }, "MC10": { - "dropbytes": "73", - "droppacket": "76", - "totalbytes": "63", - "totalpacket": "81" + "dropbytes": "9", + "droppacket": "74", + "totalbytes": "96", + "totalpacket": "83" }, "MC11": { - "dropbytes": "66", - "droppacket": "29", - "totalbytes": "16", - "totalpacket": "29" + "dropbytes": "31", + "droppacket": "61", + "totalbytes": "60", + "totalpacket": "15" }, "MC12": { - "dropbytes": "35", - "droppacket": "61", - "totalbytes": "12", - "totalpacket": "32" + "dropbytes": "94", + "droppacket": "82", + "totalbytes": "52", + "totalpacket": "45" }, "MC13": { - "dropbytes": "93", - "droppacket": "72", - "totalbytes": "17", - "totalpacket": "79" + "dropbytes": "52", + "droppacket": "89", + "totalbytes": "88", + "totalpacket": "55" }, "MC14": { - "dropbytes": "50", - "droppacket": "67", - "totalbytes": "21", - "totalpacket": "23" + "dropbytes": "79", + "droppacket": "95", + "totalbytes": "70", + "totalpacket": "14" }, "MC15": { - "dropbytes": "14", - "droppacket": "97", - "totalbytes": "10", - "totalpacket": "37" + "dropbytes": "81", + "droppacket": "66", + "totalbytes": "60", + "totalpacket": "68" }, "MC16": { - "dropbytes": "43", - "droppacket": "74", - "totalbytes": "17", - "totalpacket": "30" + "dropbytes": "76", + "droppacket": "48", + "totalbytes": "4", + "totalpacket": "63" }, "MC17": { - "dropbytes": "84", - "droppacket": "54", - "totalbytes": "63", - "totalpacket": "0" + "dropbytes": "74", + "droppacket": "77", + "totalbytes": "73", + "totalpacket": "41" }, "MC18": { - "dropbytes": "79", - "droppacket": "24", - "totalbytes": "88", - "totalpacket": "69" + "dropbytes": "54", + "droppacket": "56", + "totalbytes": "21", + "totalpacket": "60" }, "MC19": { - "dropbytes": "3", - "droppacket": "84", - "totalbytes": "12", - "totalpacket": "20" - }, - "UC0": { - "dropbytes": "56", - "droppacket": "36", - "totalbytes": "5", - "totalpacket": "19" + "dropbytes": "39", + "droppacket": "12", + "totalbytes": "31", + "totalpacket": "57" }, "UC1": { - "dropbytes": "91", - "droppacket": "68", - "totalbytes": "17", - "totalpacket": "38" + "dropbytes": "1", + "droppacket": "39", + "totalbytes": "43", + "totalpacket": "60" }, "UC2": { - "dropbytes": "51", - "droppacket": "79", - "totalbytes": "65", - "totalpacket": "16" + "dropbytes": "21", + "droppacket": "39", + "totalbytes": "7", + "totalpacket": "82" }, "UC3": { - "dropbytes": "72", - "droppacket": "63", - "totalbytes": "97", - "totalpacket": "11" + "dropbytes": "76", + "droppacket": "19", + "totalbytes": "70", + "totalpacket": "52" }, "UC4": { - "dropbytes": "62", - "droppacket": "62", - "totalbytes": "89", - "totalpacket": "54" - }, - "UC5": { + "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_counters_port_json_nz = """\ +{ + "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", @@ -996,10 +1849,46 @@ } }""" + show_queue_voq_counters = """\ Port Voq Counter/pkts Counter/bytes Drop/pkts Drop/bytes ---------------- ----- -------------- --------------- ----------- ------------ -testsw|Ethernet0 VOQ0 68 30 56 74 +testsw|Ethernet0 VOQ0 0 0 0 0 +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_nz = """\ + Port Voq Counter/pkts Counter/bytes Drop/pkts Drop/bytes +---------------- ----- -------------- --------------- ----------- ------------ testsw|Ethernet0 VOQ1 60 43 39 1 testsw|Ethernet0 VOQ2 82 7 39 21 testsw|Ethernet0 VOQ3 11 59 12 94 @@ -1071,7 +1960,20 @@ show_queue_port_voq_counters = """\ Port Voq Counter/pkts Counter/bytes Drop/pkts Drop/bytes ---------------- ----- -------------- --------------- ----------- ------------ -testsw|Ethernet0 VOQ0 68 30 56 74 +testsw|Ethernet0 VOQ0 0 0 0 0 +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_port_voq_counters_nz = """\ + Port Voq Counter/pkts Counter/bytes Drop/pkts Drop/bytes +---------------- ----- -------------- --------------- ----------- ------------ testsw|Ethernet0 VOQ1 60 43 39 1 testsw|Ethernet0 VOQ2 82 7 39 21 testsw|Ethernet0 VOQ3 11 59 12 94 @@ -1086,10 +1988,10 @@ { "testsw|Ethernet0": { "VOQ0": { - "dropbytes": "74", - "droppacket": "56", - "totalbytes": "30", - "totalpacket": "68" + "dropbytes": "0", + "droppacket": "0", + "totalbytes": "0", + "totalpacket": "0" }, "VOQ1": { "dropbytes": "1", @@ -1240,10 +2142,10 @@ { "testsw|Ethernet0": { "VOQ0": { - "dropbytes": "74", - "droppacket": "56", - "totalbytes": "30", - "totalpacket": "68" + "dropbytes": "0", + "droppacket": "0", + "totalbytes": "0", + "totalpacket": "0" }, "VOQ1": { "dropbytes": "1", @@ -1307,6 +2209,16 @@ def test_queue_counters(self): 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_nz + def test_queue_counters_with_clear(self): runner = CliRunner() result = runner.invoke(clear.cli.commands['queuecounters'], []) @@ -1335,6 +2247,16 @@ def test_queue_counters_port(self): assert result.exit_code == 0 assert result.output == show_queue_counters_port + def test_queue_counters_port_nz(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_nz + def test_queue_counters_json(self): runner = CliRunner() result = runner.invoke( @@ -1348,7 +2270,22 @@ def test_queue_counters_json(self): # remove "time" from the output for _, v in json_output.items(): del v["time"] - assert json_dump(json_output) == show_queue_counters_json + assert json_dump(json_output) == show_queue_counters_json + + def test_queue_counters_json_nz(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_nz def test_queue_counters_port_json(self): runner = CliRunner() @@ -1363,7 +2300,22 @@ 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_counters_port_json + + def test_queue_counters_port_json_nz(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_nz def test_queue_voq_counters(self): runner = CliRunner() @@ -1375,6 +2327,16 @@ def test_queue_voq_counters(self): assert result.exit_code == 0 assert result.output == show_queue_voq_counters + def test_queue_voq_counters_nz(self): + runner = CliRunner() + result = runner.invoke( + show.cli.commands["queue"].commands["counters"], + ["--voq", "--nonzero"] + ) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_queue_voq_counters_nz + def test_queue_voq_counters_with_clear(self): runner = CliRunner() result = runner.invoke(clear.cli.commands['queuecounters'], []) @@ -1403,6 +2365,16 @@ def test_queue_port_voq_counters(self): assert result.exit_code == 0 assert result.output == show_queue_port_voq_counters + def test_queue_port_voq_counters_nz(self): + runner = CliRunner() + result = runner.invoke( + show.cli.commands["queue"].commands["counters"], + ["testsw|Ethernet0", "--voq", "--nonzero"] + ) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_queue_port_voq_counters_nz + def test_queue_voq_counters_json(self): runner = CliRunner() result = runner.invoke( From ff6f8f32f708bac41f13383ca08d56936aa78d21 Mon Sep 17 00:00:00 2001 From: mihirpat1 <112018033+mihirpat1@users.noreply.github.com> Date: Thu, 14 Sep 2023 12:41:33 -0700 Subject: [PATCH 16/75] Include /var/log.tmpfs in techsupport (#2979) Signed-off-by: Mihir Patel --- scripts/generate_dump | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/scripts/generate_dump b/scripts/generate_dump index dd98302a27..ac9528ff35 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -1441,8 +1441,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 @@ -1450,9 +1468,9 @@ 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 + save_file $file $dest_dir false else - save_file $file log true + save_file $file $dest_dir true fi done From 572902878cf4bb3345de37791d231456b9df95cb Mon Sep 17 00:00:00 2001 From: Mai Bui Date: Fri, 15 Sep 2023 10:19:38 -0400 Subject: [PATCH 17/75] Fix del vlan command (#2982) Resolves https://github.com/sonic-net/sonic-buildimage/issues/16542 #### What I did Update str -> list[str] commands which were missed in https://github.com/sonic-net/sonic-utilities/pull/2718 #### How I did it #### How to verify it Pass UT. Manual test, issue resolved, tested in internal.79435802-3bbd91c86e version Signed-off-by: Mai Bui --- config/vlan.py | 14 +++++++------- tests/vlan_test.py | 8 ++++---- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/config/vlan.py b/config/vlan.py index 7206868db7..fd70b027cb 100644 --- a/config/vlan.py +++ b/config/vlan.py @@ -176,21 +176,21 @@ def del_vlan(db, vid, multiple, no_restart_dhcp_relay): 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) + docker_exec_cmd = ['docker', 'exec', '-i', 'swss'] + _, rc = clicommon.run_command(docker_exec_cmd + ['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) + clicommon.run_command(docker_exec_cmd + ['supervisorctl', 'stop', 'ndppd'], ignore_error=True, return_cmd=True) + clicommon.run_command(docker_exec_cmd + ['rm', '-f', '/etc/supervisor/conf.d/ndppd.conf'], ignore_error=True, return_cmd=True) + clicommon.run_command(docker_exec_cmd + ['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_config_gen_cmd = ['sonic-cfggen', '-d', '-t', '/usr/share/sonic/templates/ndppd.conf.j2,/etc/ndppd.conf'] - ndppd_restart_cmd =['supervisorctl', 'restart', 'ndppd'] - ndppd_status_cmd= ["supervisorctl", "status", "ndppd"] + ndppd_restart_cmd = ['supervisorctl', 'restart', 'ndppd'] + 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'] diff --git a/tests/vlan_test.py b/tests/vlan_test.py index e00d3c40a8..456bb5dd11 100644 --- a/tests/vlan_test.py +++ b/tests/vlan_test.py @@ -630,10 +630,10 @@ def test_config_vlan_del_last_vlan(self): 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) + 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 From 701994f5dea8e380810a7d94d902095ab6baae93 Mon Sep 17 00:00:00 2001 From: mihirpat1 <112018033+mihirpat1@users.noreply.github.com> Date: Mon, 18 Sep 2023 21:53:50 -0700 Subject: [PATCH 18/75] Handle NotImplementedError exception while changing optoe write max (#2985) * Handle NotImplementedError exception while changing optoe write max Signed-off-by: Mihir Patel * Added unit test for more coverage * Removed unused import --------- Signed-off-by: Mihir Patel --- sfputil/main.py | 10 ++++++++-- tests/sfputil_test.py | 17 +++++++++++++++++ 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/sfputil/main.py b/sfputil/main.py index 51d5af4895..af16ddcff5 100644 --- a/sfputil/main.py +++ b/sfputil/main.py @@ -1325,7 +1325,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 @@ -1351,7 +1354,10 @@ 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) diff --git a/tests/sfputil_test.py b/tests/sfputil_test.py index f8917d9c44..0de4a46026 100644 --- a/tests/sfputil_test.py +++ b/tests/sfputil_test.py @@ -825,6 +825,23 @@ def test_show_fwversion_Rj45(self, mock_chassis): 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)) def test_run_firmwre(self, mock_chassis): From 3df1f18b0a339ab9d92cd8c28ad703a491b30b85 Mon Sep 17 00:00:00 2001 From: Yaqiang Zhu Date: Wed, 20 Sep 2023 17:20:33 +0800 Subject: [PATCH 19/75] [vlan][dhcp_relay] Fix error while delete vlan (#2987) Why I did Use static str to run_command would encounter error because change in this PR: #2718. How I did it Change command from static str to list. How to verify it UT passed. Build whl and install in testbed. Signed-off-by: Yaqiang Zhu --- config/vlan.py | 3 ++- tests/mock_tables/config_db.json | 5 +++++ tests/vlan_test.py | 34 +++++++++++++++++++++++++++++ utilities_common/dhcp_relay_util.py | 6 ++--- 4 files changed, 44 insertions(+), 4 deletions(-) diff --git a/config/vlan.py b/config/vlan.py index fd70b027cb..2f99f3ccfe 100644 --- a/config/vlan.py +++ b/config/vlan.py @@ -30,7 +30,8 @@ def set_dhcp_relay_table(table, config_db, vlan_name, value): def is_dhcp_relay_running(): - out, _ = clicommon.run_command("systemctl show dhcp_relay.service --property ActiveState --value", return_cmd=True) + out, _ = clicommon.run_command(["systemctl", "show", "dhcp_relay.service", "--property", "ActiveState", "--value"], + return_cmd=True) return out.strip() == "active" def is_dhcpv6_relay_config_exist(db, vlan_name): diff --git a/tests/mock_tables/config_db.json b/tests/mock_tables/config_db.json index 07fc66db9e..f622184e26 100644 --- a/tests/mock_tables/config_db.json +++ b/tests/mock_tables/config_db.json @@ -2723,5 +2723,10 @@ "alias": "Fabric2", "isolateStatus": "False", "lanes": "2" + }, + "DHCP_RELAY|Vlan1000": { + "dhcpv6_servers": [ + "fc02:2000::1" + ] } } diff --git a/tests/vlan_test.py b/tests/vlan_test.py index 456bb5dd11..5212a7b026 100644 --- a/tests/vlan_test.py +++ b/tests/vlan_test.py @@ -1377,3 +1377,37 @@ def teardown_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "0" bgp_util.run_bgp_command = cls._old_run_bgp_command print("TEARDOWN") + + def test_config_vlan_del_dhcp_relay_restart(self): + runner = CliRunner() + db = Db() + obj = {"config_db": db.cfgdb} + + # remove vlan IP`s + result = runner.invoke(config.config.commands["interface"].commands["ip"].commands["remove"], + ["Vlan1000", "192.168.0.1/21"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + + result = runner.invoke(config.config.commands["interface"].commands["ip"].commands["remove"], + ["Vlan1000", "fc02:1000::1/64"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + + # remove vlan members + vlan_member = db.cfgdb.get_table("VLAN_MEMBER") + keys = [(k, v) for k, v in vlan_member if k == "Vlan{}".format(1000)] + for _, v in keys: + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["del"], ["1000", v], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + origin_run_command_func = config.vlan.clicommon.run_command + config.vlan.clicommon.run_command = mock.MagicMock(return_value=("active", 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 + + config.vlan.clicommon.run_command = origin_run_command_func diff --git a/utilities_common/dhcp_relay_util.py b/utilities_common/dhcp_relay_util.py index b9c0b4e20f..4a0ab5a2e4 100644 --- a/utilities_common/dhcp_relay_util.py +++ b/utilities_common/dhcp_relay_util.py @@ -7,9 +7,9 @@ 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) + 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(): From d82a4900790dd662fe261a2f8d0e218da4f6c995 Mon Sep 17 00:00:00 2001 From: Zhijian Li Date: Sat, 23 Sep 2023 07:11:42 -0700 Subject: [PATCH 20/75] [acl-loader] Identity ICMP v4/v6 based on IP_PROTOCOL for custom ACL table types (#2994) What is the motivation for this PR? When adding ICMPv6 ACL rules in custom ACL table type, current acl-loader will incorrectly treat the ACL table as IPv4. I open this PR to fix this bug and let acl-loader identify ICMP v4 or v6 based on IP_PROTOCOL. Also fixed some typo in UT of acl-loader to avoid confusion. How did you do it? In function convert_icmp, add one step to identify the rule is v4 or v6 based on IP_PROTOCOL. How did you verify/test it? Verified by UT. Signed-off-by: Zhijian Li --- acl_loader/main.py | 8 +++++++ tests/acl_input/acl1.json | 44 ++++++++++++++++++++++++++++++++++++++- tests/acl_loader_test.py | 27 ++++++++++++++++++++++-- 3 files changed, 76 insertions(+), 3 deletions(-) diff --git a/acl_loader/main.py b/acl_loader/main.py index 5bacfe7d8f..e81e05d9b7 100644 --- a/acl_loader/main.py +++ b/acl_loader/main.py @@ -598,6 +598,14 @@ def convert_icmp(self, table_name, rule_idx, rule): 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" diff --git a/tests/acl_input/acl1.json b/tests/acl_input/acl1.json index 4bcd8049be..586661bbc8 100644 --- a/tests/acl_input/acl1.json +++ b/tests/acl_input/acl1.json @@ -235,7 +235,7 @@ } } }, - "2": { + "100": { "config": { "sequence-id": 100 }, @@ -285,6 +285,27 @@ } } } + }, + "2": { + "actions": { + "config": { + "forwarding-action": "ACCEPT" + } + }, + "config": { + "sequence-id": 2 + }, + "ip": { + "config": { + "protocol": "1" + } + }, + "icmp": { + "config": { + "type": "136", + "code": "0" + } + } } } }, @@ -310,6 +331,27 @@ "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" + } + } } } }, diff --git a/tests/acl_loader_test.py b/tests/acl_loader_test.py index c4d2e0b9ea..599e47461a 100644 --- a/tests/acl_loader_test.py +++ b/tests/acl_loader_test.py @@ -150,7 +150,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, @@ -171,6 +170,30 @@ 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") @@ -250,7 +273,7 @@ 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") From 7d7a971e5d9f63f529694dc773ae4a77625990f3 Mon Sep 17 00:00:00 2001 From: Alpesh Patel Date: Sat, 23 Sep 2023 20:10:01 -0400 Subject: [PATCH 21/75] mmuconfig to set threshold for profiles (#2775) Extended the mmuconfig utility with a "-s / --staticth" keyword to configure the threshold configured via pg_profile_lookup.ini The utility had ability to configure "-a/alpha" for dynamic threshold --- config/main.py | 16 ++ mmuconfig | 199 ++++++++++++++++++ scripts/mmuconfig | 45 ++-- tests/buffer_input/buffer_test_vectors.py | 14 ++ .../mmuconfig_input/mmuconfig_test_vectors.py | 112 ++++++++++ tests/mmuconfig_test.py | 86 ++++++++ tests/mock_tables/config_db.json | 10 + 7 files changed, 467 insertions(+), 15 deletions(-) create mode 100755 mmuconfig create mode 100644 tests/mmuconfig_input/mmuconfig_test_vectors.py create mode 100644 tests/mmuconfig_test.py diff --git a/config/main.py b/config/main.py index 5f7e41a36f..f49773be7c 100644 --- a/config/main.py +++ b/config/main.py @@ -5984,6 +5984,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', str(p)] + if a is not None: command += ['-a', str(a)] + if s is not None: command += ['-s', str(s)] + clicommon.run_command(command) + + # # 'pfc' group ('config interface pfc ...') # diff --git a/mmuconfig b/mmuconfig new file mode 100755 index 0000000000..f9dc178625 --- /dev/null +++ b/mmuconfig @@ -0,0 +1,199 @@ +#!/usr/bin/python3 + +""" +mmuconfig is the utility to show and change mmu configuration + +usage: mmuconfig [-h] [-v] [-l] [-p PROFILE] [-a ALPHA] [-s staticth] [-vv] + +optional arguments: + -h --help show this help message and exit + -v --version show program's version number and exit + -vv --verbose verbose output + -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 + +""" + +import os +import sys +import argparse +import tabulate +import traceback + +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, + "staticth": STATIC_THRESHOLD +} + +# mock the redis for unit test purposes # +try: + if 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 + +except KeyError: + pass + +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): + self.verbose = verbose + self.config = config + + # Set up db connections + if self.config: + self.db = ConfigDBConnector() + self.db.connect() + else: + self.db = SonicV2Connector(use_unix_socket_path=False) + self.db.connect(self.db.STATE_DB, False) + + def get_table(self, tablename): + if self.config: + return self.db.get_table(tablename) + + entries = {} + keys = self.db.keys(self.db.STATE_DB, tablename + '*') + + if not keys: + return None + + for key in keys: + entries[key.split('|')[1]] = self.db.get_all(self.db.STATE_DB, key) + + return entries + + def list(self): + lossless_traffic_pattern = self.get_table(DEFAULT_LOSSLESS_BUFFER_PARAMETER_NAME) + if lossless_traffic_pattern: + for _, pattern in lossless_traffic_pattern.items(): + config = [] + + print("Lossless traffic pattern:") + for field, value in pattern.items(): + config.append([field, value]) + print(tabulate.tabulate(config) + "\n") + + buf_pools = self.get_table(BUFFER_POOL_TABLE_NAME) + if buf_pools: + for pool_name, pool_data in buf_pools.items(): + config = [] + + print("Pool: " + pool_name) + for field, value in pool_data.items(): + config.append([field, value]) + print(tabulate.tabulate(config) + "\n") + if self.verbose: + print("Total pools: %d\n\n" % len(buf_pools)) + else: + print("No buffer pool information available") + + buf_profs = self.get_table(BUFFER_PROFILE_TABLE_NAME) + if buf_profs: + for prof_name, prof_data in buf_profs.items(): + config = [] + + print("Profile: " + prof_name) + for field, value in prof_data.items(): + config.append([field, value]) + print(tabulate.tabulate(config) + "\n") + if self.verbose: + print("Total profiles: %d" % len(buf_profs)) + else: + print("No buffer profile information available") + + def set(self, profile, field_alias, value): + if os.geteuid() != 0: + 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: + if v < -8 or v > 8: + sys.exit("Invalid alpha value: 2^(%s)" % (value)) + + 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)) + + buf_profs = self.db.get_table(BUFFER_PROFILE_TABLE_NAME) + 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}) + + +def main(config): + if config: + parser = argparse.ArgumentParser(description='Show and change: mmu configuration', + formatter_class=argparse.RawTextHelpFormatter) + + 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 n for static threshold', default=None) + parser.add_argument('-v', '--version', action='version', version='%(prog)s 1.0') + else: + parser = argparse.ArgumentParser(description='Show buffer state', + formatter_class=argparse.RawTextHelpFormatter) + + parser.add_argument('-l', '--list', action='store_true', help='show buffer state') + 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) + + args = parser.parse_args() + + try: + mmu_cfg = MmuConfig(args.verbose, config) + if args.list: + mmu_cfg.list() + elif config and args.profile: + import pdb; pdb.set_trace() + 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) + + except Exception as e: + print("Exception caught: ", str(e), file=sys.stderr) + traceback.print_exc() + sys.exit(1) + +if __name__ == "__main__": + if sys.argv[0].split('/')[-1] == "mmuconfig": + main(True) + else: + main(False) diff --git a/scripts/mmuconfig b/scripts/mmuconfig index c0338a1762..ebeb74fdaf 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/tests/buffer_input/buffer_test_vectors.py b/tests/buffer_input/buffer_test_vectors.py index b94d428a39..baa99608a1 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/mmuconfig_input/mmuconfig_test_vectors.py b/tests/mmuconfig_input/mmuconfig_test_vectors.py new file mode 100644 index 0000000000..c20a964516 --- /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 0000000000..7218270e36 --- /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_tables/config_db.json b/tests/mock_tables/config_db.json index f622184e26..ae5d7f97df 100644 --- a/tests/mock_tables/config_db.json +++ b/tests/mock_tables/config_db.json @@ -1934,11 +1934,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", From 7a12424b2fc22e9981758e07a06312e40a580ffa Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak <38952541+stepanblyschak@users.noreply.github.com> Date: Sun, 24 Sep 2023 03:57:22 +0300 Subject: [PATCH 22/75] [sonic-installer] print output from spm migrate (#2960) ### What I did Don't capture output from migrate command for better debugging. #### How I did it Added ```nocapture``` flag to ```run_command_or_raise```. Pass ```nocapture``` when running ```spm migrate```. #### How to verify it Run sonic to sonic upgrade and observe the output of migrate command. --- sonic_installer/common.py | 10 +++++++--- sonic_installer/main.py | 2 +- tests/test_sonic_installer.py | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/sonic_installer/common.py b/sonic_installer/common.py index f220a4b57e..50b736901f 100644 --- a/sonic_installer/common.py +++ b/sonic_installer/common.py @@ -41,16 +41,20 @@ def run_command(command, stdout=subprocess.PIPE, env=None, shell=False): sys.exit(proc.returncode) # Run bash command and return output, raise if it fails -def run_command_or_raise(argv, raise_exception=True): +def run_command_or_raise(argv, raise_exception=True, capture=True): click.echo(click.style("Command: ", fg='cyan') + click.style(' '.join(argv), fg='green')) - proc = subprocess.Popen(argv, text=True, stdout=subprocess.PIPE) + stdout = subprocess.PIPE if capture else None + proc = subprocess.Popen(argv, text=True, stdout=stdout) out, _ = proc.communicate() if proc.returncode != 0 and raise_exception: raise SonicRuntimeException("Failed to run command '{0}'".format(argv)) - return out.rstrip("\n") + if out is not None: + out = out.rstrip("\n") + + return out # Needed to prevent "broken pipe" error messages when piping # output of multiple commands using subprocess.Popen() diff --git a/sonic_installer/main.py b/sonic_installer/main.py index 9737e57de7..341111f265 100644 --- a/sonic_installer/main.py +++ b/sonic_installer/main.py @@ -384,7 +384,7 @@ def migrate_sonic_packages(bootloader, binary_image_version): 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), - "-y"]) + "-y"], capture=False) finally: if docker_started: run_command_or_raise(["chroot", new_image_mount, DOCKER_CTL_SCRIPT, "stop"], raise_exception=False) diff --git a/tests/test_sonic_installer.py b/tests/test_sonic_installer.py index 3e257ae3b0..e9cb727d37 100644 --- a/tests/test_sonic_installer.py +++ b/tests/test_sonic_installer.py @@ -91,7 +91,7 @@ def rootfs_path_mock(path): 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, "sonic-package-manager", "migrate", "/tmp/packages.json", "--dockerd-socket", "/tmp/docker.sock", "-y"], capture=False), 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), From 6ba6ddf6d559e7f0c6f3cfd3d9918eeab9ab3b52 Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Tue, 26 Sep 2023 14:40:25 +0800 Subject: [PATCH 23/75] Remove syslog service validator in GCU (#2991) ### What I did Remove rsyslog related service validator in GCU because it has been supported in latest image #### How I did it Remove related code #### How to verify it Unit test --- .../gcu_services_validator.conf.json | 6 ------ generic_config_updater/services_validator.py | 8 -------- .../service_validator_test.py | 18 +----------------- 3 files changed, 1 insertion(+), 31 deletions(-) diff --git a/generic_config_updater/gcu_services_validator.conf.json b/generic_config_updater/gcu_services_validator.conf.json index 852b587286..b504cf5d26 100644 --- a/generic_config_updater/gcu_services_validator.conf.json +++ b/generic_config_updater/gcu_services_validator.conf.json @@ -31,9 +31,6 @@ "PORT": { "services_to_validate": [ "port_service" ] }, - "SYSLOG_SERVER":{ - "services_to_validate": [ "rsyslog" ] - }, "DHCP_RELAY": { "services_to_validate": [ "dhcp-relay" ] }, @@ -60,9 +57,6 @@ "port_service": { "validate_commands": [ ] }, - "rsyslog": { - "validate_commands": [ "generic_config_updater.services_validator.rsyslog_validator" ] - }, "dhcp-relay": { "validate_commands": [ "generic_config_updater.services_validator.dhcp_validator" ] }, diff --git a/generic_config_updater/services_validator.py b/generic_config_updater/services_validator.py index 497cb4ee74..29a887da89 100644 --- a/generic_config_updater/services_validator.py +++ b/generic_config_updater/services_validator.py @@ -48,14 +48,6 @@ def _service_restart(svc_name): return rc == 0 -def rsyslog_validator(old_config, upd_config, keys): - rc = os.system("/usr/bin/rsyslog-config.sh") - if rc != 0: - return _service_restart("rsyslog") - else: - return True - - def dhcp_validator(old_config, upd_config, keys): return _service_restart("dhcp_relay") diff --git a/tests/generic_config_updater/service_validator_test.py b/tests/generic_config_updater/service_validator_test.py index f14a3ad7b0..802bc2dc15 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, vlanintf_validator +from generic_config_updater.services_validator import vlan_validator, caclmgrd_validator, vlanintf_validator import generic_config_updater.gu_common @@ -142,16 +142,6 @@ def mock_time_sleep_call(sleep_time): }, ] -test_rsyslog_fail = [ - # Fail the calls, to get the entire fail path calls invoked - # - { "cmd": "/usr/bin/rsyslog-config.sh", "rc": 1 }, # config update; fails - { "cmd": "systemctl restart rsyslog", "rc": 1 }, # rsyslog restart; fails - { "cmd": "systemctl reset-failed rsyslog", "rc": 1 }, # reset; failure here just logs - { "cmd": "systemctl restart rsyslog", "rc": 1 }, # restart again; fails - { "cmd": "systemctl restart rsyslog", "rc": 1 }, # restart again; fails - ] - test_vlanintf_data = [ { "old": {}, "upd": {}, "cmd": "" }, { @@ -211,12 +201,6 @@ def test_change_apply_os_system(self, mock_os_sys): # Test failure case # - os_system_calls = test_rsyslog_fail - os_system_call_index = 0 - - 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: From ba179fb5194b051a02668a1363cbb2b625b67d09 Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak <38952541+stepanblyschak@users.noreply.github.com> Date: Mon, 2 Oct 2023 19:46:05 +0300 Subject: [PATCH 24/75] [warm-reboot] remove ISSU bank check (#2958) ### What I did I removed issu bank check: 1. The file in which SDK holds ISSU bank information has changed and is no longer issu_bank.txt 2. We shouldn't check the SDK dump content from SONiC as that information and its format is constantly changing. Overwriting it might be risky when SONiC and SDK are out of sync regarding the format of the file 3. ISSU bank information is written by pre_shutdown request anyway. Verifying whether the information was indeed written right after that seems redundant 4. The check is made after ```set +e```, so at the moment we "detect" a problem it is already too late #### How I did it Removed the relevant code. #### How to verify it Run warm-reboot on device. --- scripts/fast-reboot | 42 +++--------------------------------------- 1 file changed, 3 insertions(+), 39 deletions(-) diff --git a/scripts/fast-reboot b/scripts/fast-reboot index 1c47664e09..922d217e3f 100755 --- a/scripts/fast-reboot +++ b/scripts/fast-reboot @@ -193,7 +193,7 @@ 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} + ${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) @@ -202,34 +202,6 @@ function request_pre_shutdown() fi } -function recover_issu_bank_file() -{ - debug "Recovering the (${ISSU_BANK_FILE}) file" - docker exec -i syncd sx_api_dbg_generate_dump.py - issu_bank_value=`docker exec -i syncd cat /tmp/sdkdump | grep 'ISSU Bank' | grep -o -E '[0-9]+'` - printf $issu_bank_value > /host/warmboot/issu_bank.txt -} - -function check_issu_bank_file() -{ - ISSU_BANK_FILE=/host/warmboot/issu_bank.txt - - if [[ ! -s "$ISSU_BANK_FILE" ]]; then - error "(${ISSU_BANK_FILE}) does NOT exist or empty ..." - recover_issu_bank_file - return - fi - - issu_file_chars_count=`stat -c %s ${ISSU_BANK_FILE}`; - issu_file_content=`awk '{print $0}' ${ISSU_BANK_FILE}` - - if [[ $issu_file_chars_count != 1 ]] || - [[ "$issu_file_content" != "0" && "$issu_file_content" != "1" ]]; then - error "(${ISSU_BANK_FILE}) is broken ..." - recover_issu_bank_file - fi -} - function wait_for_pre_shutdown_complete_or_fail() { debug "Waiting for pre-shutdown ..." @@ -464,7 +436,7 @@ function invoke_kexec() { function load_kernel() { # Load kernel into the memory - invoke_kexec -a + invoke_kexec -a } function load_kernel_secure() { @@ -630,7 +602,7 @@ fi if is_secureboot && grep -q aboot_machine= /host/machine.conf; then load_aboot_secureboot_kernel else - # check if secure boot is enable in UEFI + # check if secure boot is enable in UEFI CHECK_SECURE_UPGRADE_ENABLED=0 SECURE_UPGRADE_ENABLED=$(bootctl status 2>/dev/null | grep -c "Secure Boot: enabled") || CHECK_SECURE_UPGRADE_ENABLED=$? if [[ CHECK_SECURE_UPGRADE_ENABLED -ne 0 ]]; then @@ -773,17 +745,9 @@ for service in ${SERVICES_TO_STOP}; do # Pre-shutdown syncd initialize_pre_shutdown - if [[ "x$sonic_asic_type" == x"mellanox" ]]; then - check_issu_bank_file - fi - request_pre_shutdown wait_for_pre_shutdown_complete_or_fail - - if [[ "x$sonic_asic_type" == x"mellanox" ]]; then - check_issu_bank_file - fi fi if [[ "$REBOOT_TYPE" = "fastfast-reboot" || "$REBOOT_TYPE" = "fast-reboot" ]]; then From 4f26a4dff9ea34045287d973093f0346d0ef4aee Mon Sep 17 00:00:00 2001 From: Sudharsan Dhamal Gopalarathnam Date: Tue, 3 Oct 2023 12:52:49 -0700 Subject: [PATCH 25/75] [portconfig]Auto FEC initial changes (#2965) * Auto FEC initial changes * Enhancing show interface command to handle auto FEC * Revert "Enhancing show interface command to handle auto FEC" This reverts commit 63461722deedbd3274a5700ce3394d4361c5e325. * Adding new CLI for show FEC status * Updating command reference * Update Command-Reference.md --- doc/Command-Reference.md | 24 +++++++++++++ scripts/intfutil | 60 ++++++++++++++++++++++++++++++++ show/interfaces/__init__.py | 34 +++++++++++++++++- tests/config_an_test.py | 2 +- tests/intfutil_test.py | 24 ++++++++++++- tests/mock_tables/appl_db.json | 2 +- tests/mock_tables/config_db.json | 3 +- tests/mock_tables/state_db.json | 8 ++++- utilities_common/constants.py | 2 +- 9 files changed, 152 insertions(+), 7 deletions(-) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 429fe39bbf..9cb0cfbb54 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -456,6 +456,7 @@ The same syntax applies to all subgroups of `show` which themselves contain subc Commands: counters Show interface counters description Show interface status, protocol and... + fec Show interface fec information link-training Show interface link-training information naming_mode Show interface naming_mode status neighbor Show neighbor related information @@ -4450,6 +4451,29 @@ This command displays the key fields of the interfaces such as Operational Statu Ethernet4 down up hundredGigE1/2 T0-2:hundredGigE1/30 ``` +**show interfaces fec status (Versions >= 202311)** + +This command is to display the FEC status of the selected interfaces. If **interface_name** is not specicied, this command shows the FEC status of all interfaces. + +- Usage: + ``` + show interfaces fec status [] + ``` + +- Example: +``` + admin@sonic:~$ show interfaces fec status + Interface FEC Oper FEC Admin + ----------- ---------- ----------- + Ethernet0 N/A rs + Ethernet32 N/A rs + Ethernet36 N/A N/A +Ethernet112 N/A rs +Ethernet116 N/A rs +Ethernet120 N/A rs +Ethernet124 rs auto +``` + **show interfaces link-training (Versions >= 202211)** This command is to display the link-training status of the selected interfaces. If **interface_name** is not specicied, this command shows the link-training status of all interfaces. diff --git a/scripts/intfutil b/scripts/intfutil index 5988b7f43d..f80523c0c4 100755 --- a/scripts/intfutil +++ b/scripts/intfutil @@ -806,6 +806,63 @@ class IntfLinkTrainingStatus(object): appl_db_port_status_get(self.db, key, PORT_ADMIN_STATUS))) return table +# ========================== FEC logic ========================== +header_fec = ['Interface', 'FEC Oper', 'FEC Admin'] + +class IntfFecStatus(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_fec_status(self): + self.get_intf_fec_status() + # Sorting and tabulating the result table. + sorted_table = natsorted(self.table) + print(tabulate(sorted_table, header_fec, tablefmt="simple", stralign='right')) + + @multi_asic_util.run_on_multi_asic + def get_intf_fec_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_fec_status() + + def generate_fec_status(self): + """ + Generate FEC 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 + admin_fec = appl_db_port_status_get(self.db, key, PORT_FEC) + oper_fec = self.db.get(self.db.STATE_DB, PORT_STATE_TABLE_PREFIX + key, PORT_FEC) + oper_status = self.db.get(self.db.APPL_DB, PORT_STATUS_TABLE_PREFIX + key, PORT_OPER_STATUS) + if oper_status != "up" or oper_fec is None: + oper_fec= "N/A" + oper_status = self.db.get(self.db.APPL_DB, PORT_STATUS_TABLE_PREFIX + key, PORT_OPER_STATUS) + table.append((key, oper_fec, admin_fec)) + return table + def main(): parser = argparse.ArgumentParser(description='Display Interface information', formatter_class=argparse.RawTextHelpFormatter) @@ -829,6 +886,9 @@ def main(): elif args.command == "link_training": interface_lt_status = IntfLinkTrainingStatus(args.interface, args.namespace, args.display) interface_lt_status.display_link_training_status() + elif args.command == "fec": + interface_fec_status = IntfFecStatus(args.interface, args.namespace, args.display) + interface_fec_status.display_fec_status() sys.exit(0) diff --git a/show/interfaces/__init__.py b/show/interfaces/__init__.py index 8757d23aec..b1d3c69b6f 100644 --- a/show/interfaces/__init__.py +++ b/show/interfaces/__init__.py @@ -764,7 +764,39 @@ def link_training_status(interfacename, namespace, display, verbose): cmd += ['-n', str(namespace)] clicommon.run_command(cmd, display_cmd=verbose) +# +# fec group (show interfaces fec ...) +# +@interfaces.group(name='fec', cls=clicommon.AliasedGroup) +def fec(): + """Show interface fec information""" + pass + + +# 'fec status' subcommand ("show interfaces fec status") +@fec.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 fec_status(interfacename, namespace, display, verbose): + """Show interface fec status""" + + ctx = click.get_current_context() + + cmd = ['intfutil', '-c', 'fec'] + #ignore the display option when interface name is passed + if interfacename is not None: + interfacename = try_convert_interfacename_from_alias(ctx, interfacename) + + cmd += ['-i', str(interfacename)] + else: + cmd += ['-d', str(display)] + + if namespace is not None: + cmd += ['-n', str(namespace)] + + clicommon.run_command(cmd, display_cmd=verbose) # # switchport group (show interfaces switchport ...) @@ -830,4 +862,4 @@ def tablelize(keys): return table header = ['Interface', 'Mode'] - click.echo(tabulate(tablelize(keys), header,tablefmt="simple", stralign='left')) \ No newline at end of file + click.echo(tabulate(tablelize(keys), header,tablefmt="simple", stralign='left')) diff --git a/tests/config_an_test.py b/tests/config_an_test.py index 0af19898c6..210b66d846 100644 --- a/tests/config_an_test.py +++ b/tests/config_an_test.py @@ -110,7 +110,7 @@ def test_config_fec(self, ctx): 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 + assert "fec test is not in ['rs', 'fc', 'none', 'auto']" 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 diff --git a/tests/intfutil_test.py b/tests/intfutil_test.py index bb83dd31df..6e48c9724b 100644 --- a/tests/intfutil_test.py +++ b/tests/intfutil_test.py @@ -22,7 +22,7 @@ Ethernet112 93,94,95,96 40G 9100 rs etp29 PortChannel0001 up up N/A off Ethernet116 89,90,91,92 40G 9100 rs etp30 PortChannel0002 up up N/A off Ethernet120 101,102,103,104 40G 9100 rs etp31 PortChannel0003 up up N/A off - Ethernet124 97,98,99,100 40G 9100 rs etp32 PortChannel0004 up up N/A off + Ethernet124 97,98,99,100 40G 9100 auto etp32 PortChannel0004 up up N/A off PortChannel0001 N/A 40G 9100 N/A N/A routed down up N/A N/A PortChannel0002 N/A 40G 9100 N/A N/A routed up up N/A N/A PortChannel0003 N/A 40G 9100 N/A N/A routed up up N/A N/A @@ -112,6 +112,21 @@ Ethernet124 N/A N/A up up """ +show_interface_fec_status_output = """\ + Interface FEC Oper FEC Admin +----------- ---------- ----------- + Ethernet0 N/A rs + Ethernet16 N/A N/A + Ethernet24 N/A N/A + Ethernet28 N/A N/A + Ethernet32 N/A rs + Ethernet36 N/A N/A +Ethernet112 N/A rs +Ethernet116 N/A rs +Ethernet120 N/A rs +Ethernet124 rs auto +""" + class TestIntfutil(TestCase): @classmethod def setup_class(cls): @@ -338,6 +353,13 @@ def test_show_interfaces_link_training_status(self): assert result.exit_code == 0 assert result.output == show_interface_link_training_status_output + def test_show_interfaces_fec_status(self): + result = self.runner.invoke(show.cli.commands["interfaces"].commands["fec"].commands["status"], []) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_interface_fec_status_output + @classmethod def teardown_class(cls): print("TEARDOWN") diff --git a/tests/mock_tables/appl_db.json b/tests/mock_tables/appl_db.json index 71b9e7f249..2c3d14da1e 100644 --- a/tests/mock_tables/appl_db.json +++ b/tests/mock_tables/appl_db.json @@ -155,7 +155,7 @@ "pfc_asym": "off", "mtu": "9100", "tpid": "0x8100", - "fec": "rs", + "fec": "auto", "admin_status": "up" }, "PORT_TABLE:Ethernet200": { diff --git a/tests/mock_tables/config_db.json b/tests/mock_tables/config_db.json index ae5d7f97df..8786051e36 100644 --- a/tests/mock_tables/config_db.json +++ b/tests/mock_tables/config_db.json @@ -399,7 +399,8 @@ "tpid": "0x8100", "mode": "routed", "pfc_asym": "off", - "speed": "40000" + "speed": "40000", + "fec" : "auto" }, "VLAN_SUB_INTERFACE|Ethernet0.10": { "admin_status": "up" diff --git a/tests/mock_tables/state_db.json b/tests/mock_tables/state_db.json index 8d7f27f7ca..993e05c480 100644 --- a/tests/mock_tables/state_db.json +++ b/tests/mock_tables/state_db.json @@ -1356,7 +1356,8 @@ "speed" : "100000", "supported_speeds": "10000,25000,40000,100000", "supported_fecs": "rs,none,test", - "link_training_status": "not_trained" + "link_training_status": "not_trained", + "fec": "rs" }, "PORT_TABLE|Ethernet32": { "link_training_status": "trained" @@ -1366,6 +1367,11 @@ "supported_fecs": "N/A", "link_training_status": "off" }, + "PORT_TABLE|Ethernet124": { + "speed": "40000", + "supported_fecs": "rs,none,fc,auto", + "fec": "rs" + }, "PCIE_DEVICE|00:01.0": { "correctable|BadDLLP": "0", "correctable|BadTLP": "0", diff --git a/utilities_common/constants.py b/utilities_common/constants.py index f5c157941c..25858b785e 100644 --- a/utilities_common/constants.py +++ b/utilities_common/constants.py @@ -1,7 +1,7 @@ #All the constant used in sonic-utilities DEFAULT_NAMESPACE = '' -DEFAULT_SUPPORTED_FECS_LIST = [ 'rs', 'fc', 'none'] +DEFAULT_SUPPORTED_FECS_LIST = [ 'rs', 'fc', 'none', 'auto'] DISPLAY_ALL = 'all' DISPLAY_EXTERNAL = 'frontend' BGP_NEIGH_OBJ = 'BGP_NEIGH' From 583b4987b925e1ddd69fe53378381255f19ac644 Mon Sep 17 00:00:00 2001 From: Mai Bui Date: Thu, 5 Oct 2023 16:08:31 -0400 Subject: [PATCH 26/75] Update str -> list[str] in config/main and fast-reboot-filter-routes script (#3005) ### What I did Update str -> list[str] in config/main and fast-reboot-filter-routes script ### How to verify it Add UT --- config/main.py | 2 +- scripts/fast-reboot-filter-routes.py | 2 +- tests/config_test.py | 8 ++++++++ tests/fast_reboot_filter_routes_test.py | 19 +++++++++++++++++++ 4 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 tests/fast_reboot_filter_routes_test.py diff --git a/config/main.py b/config/main.py index f49773be7c..30d004b520 100644 --- a/config/main.py +++ b/config/main.py @@ -7243,7 +7243,7 @@ def clock(): def get_tzs(ctx, args, incomplete): - ret = clicommon.run_command('timedatectl list-timezones', + ret = clicommon.run_command(['timedatectl', 'list-timezones'], display_cmd=False, ignore_error=False, return_cmd=True) if len(ret) == 0: diff --git a/scripts/fast-reboot-filter-routes.py b/scripts/fast-reboot-filter-routes.py index 9328b79ed2..c66972bf48 100755 --- a/scripts/fast-reboot-filter-routes.py +++ b/scripts/fast-reboot-filter-routes.py @@ -12,7 +12,7 @@ ROUTE_IDX = 1 def get_connected_routes(): - cmd = 'sudo vtysh -c "show ip route connected json"' + cmd = ['sudo', 'vtysh', '-c', "show ip route connected json"] connected_routes = [] try: output, ret = clicommon.run_command(cmd, return_cmd=True) diff --git a/tests/config_test.py b/tests/config_test.py index 332bfe14ec..81c4e404d4 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -2314,6 +2314,14 @@ def setup_class(cls): import config.main importlib.reload(config.main) + @patch('utilities_common.cli.run_command') + def test_get_tzs(self, mock_run_command): + runner = CliRunner() + obj = {'db': Db().cfgdb} + + runner.invoke(config.config.commands['clock'].commands['timezone'], ['Atlantis'], obj=obj) + mock_run_command.assert_called_with(['timedatectl', 'list-timezones'], display_cmd=False, ignore_error=False, return_cmd=True) + @patch('config.main.get_tzs', mock.Mock(return_value=timezone_test_val)) def test_timezone_good(self): runner = CliRunner() diff --git a/tests/fast_reboot_filter_routes_test.py b/tests/fast_reboot_filter_routes_test.py new file mode 100644 index 0000000000..5da0862881 --- /dev/null +++ b/tests/fast_reboot_filter_routes_test.py @@ -0,0 +1,19 @@ +import pytest +import importlib +from unittest import mock +from mock import patch +fast_reboot_filter_routes = importlib.import_module("scripts.fast-reboot-filter-routes") + +class TestFastRebootFilterRoutes(object): + def setup(self): + print("SETUP") + + @patch('utilities_common.cli.run_command') + def test_get_connected_routes(self, mock_run_command): + mock_run_command.return_value = (None, 0) + output = fast_reboot_filter_routes.get_connected_routes() + mock_run_command.assert_called_with(['sudo', 'vtysh', '-c', "show ip route connected json"], return_cmd=True) + assert output == [] + + def teardown(self): + print("TEAR DOWN") From 1c1620cc7b182f6497cd60673870586113763018 Mon Sep 17 00:00:00 2001 From: Qi Luo Date: Fri, 6 Oct 2023 17:54:37 -0700 Subject: [PATCH 27/75] Revert "Switch Port Modes and VLAN CLI Enhancement (#2419)" (#3007) #### What I did Revert "Switch Port Modes and VLAN CLI Enhancement (#2419)". The reason is PORT/mode is not yang modelled. --- config/main.py | 38 +- config/switchport.py | 138 ---- config/vlan.py | 370 ++++------ doc/Command-Reference.md | 180 +---- scripts/db_migrator.py | 47 +- scripts/intfutil | 2 +- show/interfaces/__init__.py | 66 -- .../config_db/port-an-expected.json | 3 - .../config_db/portchannel-expected.json | 5 - .../config_db/switchport-expected.json | 144 ---- .../config_db/switchport-input.json | 138 ---- tests/db_migrator_test.py | 24 - tests/interfaces_test.py | 97 --- tests/intfutil_test.py | 2 +- tests/ipv6_link_local_test.py | 2 +- tests/mock_tables/asic0/config_db.json | 1 - tests/mock_tables/config_db.json | 32 - tests/vlan_test.py | 631 +----------------- utilities_common/cli.py | 269 ++------ 19 files changed, 208 insertions(+), 1981 deletions(-) delete mode 100644 config/switchport.py delete mode 100644 tests/db_migrator_input/config_db/switchport-expected.json delete mode 100644 tests/db_migrator_input/config_db/switchport-input.json diff --git a/config/main.py b/config/main.py index 30d004b520..1d2c33605f 100644 --- a/config/main.py +++ b/config/main.py @@ -56,7 +56,6 @@ from .config_mgmt import ConfigMgmtDPB, ConfigMgmt from . import mclag from . import syslog -from . import switchport from . import dns # mock masic APIs for unit test @@ -102,8 +101,6 @@ CFG_PORTCHANNEL_NO="<0-9999>" PORT_MTU = "mtu" -PORT_MODE= "switchport_mode" - PORT_SPEED = "speed" PORT_TPID = "tpid" DEFAULT_TPID = "0x8100" @@ -1193,7 +1190,6 @@ def config(ctx): config.add_command(nat.nat) config.add_command(vlan.vlan) config.add_command(vxlan.vxlan) -config.add_command(switchport.switchport) #add mclag commands config.add_command(mclag.mclag) @@ -4503,39 +4499,19 @@ def add(ctx, interface_name, ip_addr, gw): if interface_name is None: ctx.fail("'interface_name' is None!") + # Add a validation to check this interface is not a member in vlan before + # changing it to a router port + vlan_member_table = config_db.get_table('VLAN_MEMBER') + if (interface_is_in_vlan(vlan_member_table, interface_name)): + 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)) - - - # Add a validation to check this interface is in routed mode before - # assigning an IP address to it - - sub_intf = False - if clicommon.is_valid_port(config_db, interface_name): - is_port = True - elif clicommon.is_valid_portchannel(config_db, interface_name): - is_port = False - else: - sub_intf = True - - if not sub_intf: - interface_mode = "routed" - if is_port: - interface_data = config_db.get_entry('PORT',interface_name) - elif not is_port: - interface_data = config_db.get_entry('PORTCHANNEL',interface_name) - - if "mode" in interface_data: - interface_mode = interface_data["mode"] - - if interface_mode != "routed": - ctx.fail("Interface {} is not in routed mode!".format(interface_name)) - return - try: ip_address = ipaddress.ip_interface(ip_addr) except ValueError as err: diff --git a/config/switchport.py b/config/switchport.py deleted file mode 100644 index fe51ccaf79..0000000000 --- a/config/switchport.py +++ /dev/null @@ -1,138 +0,0 @@ -import click -from .utils import log -import utilities_common.cli as clicommon - -# -# 'switchport' mode ('config switchport ...') -# - - -@click.group(cls=clicommon.AbbreviationGroup, name='switchport') -def switchport(): - """Switchport mode configuration tasks""" - pass - - -@switchport.command("mode") -@click.argument("type", metavar="", required=True, type=click.Choice(["access", "trunk", "routed"])) -@click.argument("port", metavar="port", required=True) -@clicommon.pass_db -def switchport_mode(db, type, port): - """switchport mode help commands.Mode_type can be access or trunk or routed""" - - ctx = click.get_current_context() - - log.log_info("'switchport mode {} {}' executing...".format(type, port)) - mode_exists_status = True - - # checking if port name with alias exists - if clicommon.get_interface_naming_mode() == "alias": - alias = port - iface_alias_converter = clicommon.InterfaceAliasConverter(db) - port = iface_alias_converter.alias_to_name(port) - if port is None: - ctx.fail("cannot find port name for alias {}".format(alias)) - - if clicommon.is_port_mirror_dst_port(db.cfgdb, port): - ctx.fail("{} is configured as mirror destination port".format(port)) - - - if clicommon.is_valid_port(db.cfgdb, port): - is_port = True - elif clicommon.is_valid_portchannel(db.cfgdb, port): - is_port = False - else: - ctx.fail("{} does not exist".format(port)) - - portchannel_member_table = db.cfgdb.get_table('PORTCHANNEL_MEMBER') - - if (is_port and clicommon.interface_is_in_portchannel(portchannel_member_table, port)): - ctx.fail("{} is part of portchannel!".format(port)) - - if is_port: - port_data = db.cfgdb.get_entry('PORT',port) - else: - port_data = db.cfgdb.get_entry('PORTCHANNEL',port) - - # mode type is either access or trunk - if type != "routed": - - if "mode" in port_data: - existing_mode = port_data["mode"] - else: - existing_mode = "routed" - mode_exists_status = False - if (is_port and clicommon.is_port_router_interface(db.cfgdb, port)) or \ - (not is_port and clicommon.is_pc_router_interface(db.cfgdb, port)): - ctx.fail("Remove IP from {} to change mode!".format(port)) - - if existing_mode == "routed": - if mode_exists_status: - # if the port in an interface - if is_port: - db.cfgdb.mod_entry("PORT", port, {"mode": "{}".format(type)}) - # if not port then is a port channel - elif not is_port: - db.cfgdb.mod_entry("PORTCHANNEL", port, {"mode": "{}".format(type)}) - - if not mode_exists_status: - port_data["mode"] = type - if is_port: - db.cfgdb.set_entry("PORT", port, port_data) - # if not port then is a port channel - elif not is_port: - db.cfgdb.set_entry("PORTCHANNEL", port, port_data) - - if existing_mode == type: - ctx.fail("{} is already in the {} mode".format(port,type)) - else: - if existing_mode == "access" and type == "trunk": - pass - if existing_mode == "trunk" and type == "access": - if clicommon.interface_is_tagged_member(db.cfgdb,port): - ctx.fail("{} is in {} mode and have tagged member(s).\nRemove tagged member(s) from {} to switch to {} mode".format(port,existing_mode,port,type)) - if is_port: - db.cfgdb.mod_entry("PORT", port, {"mode": "{}".format(type)}) - # if not port then is a port channel - elif not is_port: - db.cfgdb.mod_entry("PORTCHANNEL", port, {"mode": "{}".format(type)}) - - click.echo("{} switched from {} to {} mode".format(port, existing_mode, type)) - - # if mode type is routed - else: - - if clicommon.interface_is_tagged_member(db.cfgdb,port): - ctx.fail("{} has tagged member(s). \nRemove them to change mode to {}".format(port,type)) - - if clicommon.interface_is_untagged_member(db.cfgdb,port): - ctx.fail("{} has untagged member. \nRemove it to change mode to {}".format(port,type)) - - if "mode" in port_data: - existing_mode = port_data["mode"] - else: - existing_mode = "routed" - mode_exists_status = False - - if not mode_exists_status: - port_data["mode"] = type - if is_port: - db.cfgdb.set_entry("PORT", port, port_data) - - # if not port then is a port channel - elif not is_port: - db.cfgdb.set_entry("PORTCHANNEL", port, port_data) - pass - - elif mode_exists_status and existing_mode == type: - ctx.fail("{} is already in {} mode".format(port,type)) - - else: - if is_port: - db.cfgdb.mod_entry("PORT", port, {"mode": "{}".format(type)}) - # if not port then is a port channel - elif not is_port: - db.cfgdb.mod_entry("PORTCHANNEL", port, {"mode": "{}".format(type)}) - - click.echo("{} switched from {} to {} mode".format(port,existing_mode,type)) - diff --git a/config/vlan.py b/config/vlan.py index 2f99f3ccfe..6cc3193ec0 100644 --- a/config/vlan.py +++ b/config/vlan.py @@ -12,19 +12,15 @@ DHCP_RELAY_TABLE = "DHCP_RELAY" DHCPV6_SERVERS = "dhcpv6_servers" - # # 'vlan' group ('config vlan ...') # - - @click.group(cls=clicommon.AbbreviationGroup, name='vlan') 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) @@ -34,68 +30,41 @@ def is_dhcp_relay_running(): return_cmd=True) return out.strip() == "active" -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", vlan_name) - dhcpv6_servers = table.get(DHCPV6_SERVERS, []) - if len(dhcpv6_servers) > 0: - return True - @vlan.command('add') -@click.argument('vid', metavar='', required=True) -@click.option('-m', '--multiple', is_flag=True, help="Add Multiple Vlan(s) in Range or in Comma separated list") +@click.argument('vid', metavar='', required=True, type=int) @clicommon.pass_db -def add_vlan(db, vid, multiple): +def add_vlan(db, vid): """Add VLAN""" ctx = click.get_current_context() - - config_db = ValidatedConfigDBConnector(db.cfgdb) - - vid_list = [] - # parser will parse the vid input if there are syntax errors it will throw error - if multiple: - vid_list = clicommon.multiple_vlan_parser(ctx, vid) - else: - if not vid.isdigit(): - ctx.fail("{} is not integer".format(vid)) - vid_list.append(int(vid)) + vlan = 'Vlan{}'.format(vid) + config_db = ValidatedConfigDBConnector(db.cfgdb) if ADHOC_VALIDATION: + if not clicommon.is_vlanid_in_range(vid): + ctx.fail("Invalid VLAN ID {} (1-4094)".format(vid)) - # loop will execute till an exception occurs - for vid in vid_list: - - vlan = 'Vlan{}'.format(vid) - - # default vlan checker - if vid == 1: - # TODO: MISSING CONSTRAINT IN YANG MODEL - ctx.fail("{} is default VLAN.".format(vlan)) + if vid == 1: + ctx.fail("{} is default VLAN".format(vlan)) # TODO: MISSING CONSTRAINT IN YANG MODEL - log.log_info("'vlan add {}' executing...".format(vid)) + if clicommon.check_if_vlanid_exist(db.cfgdb, vlan): # TODO: MISSING CONSTRAINT IN YANG MODEL + ctx.fail("{} already exists".format(vlan)) + 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', config_db, vlan, {'vlanid': str(vid)}) - if not clicommon.is_vlanid_in_range(vid): - ctx.fail("Invalid VLAN ID {} (2-4094)".format(vid)) - # TODO: MISSING CONSTRAINT IN YANG MODEL - if clicommon.check_if_vlanid_exist(db.cfgdb, vlan): - log.log_info("{} already exists".format(vlan)) - ctx.fail("{} already exists, Aborting!!!".format(vlan)) - - if clicommon.check_if_vlanid_exist(db.cfgdb, vlan, "DHCP_RELAY"): - ctx.fail("DHCPv6 relay config for {} already exists".format(vlan)) - - try: - # set dhcpv4_relay / VLAN table - config_db.set_entry('VLAN', 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 - except ValueError: - ctx.fail("Invalid VLAN ID {} (2-4094)".format(vid)) + table = db.cfgdb.get_entry("DHCP_RELAY", vlan_name) + dhcpv6_servers = table.get(DHCPV6_SERVERS, []) + if len(dhcpv6_servers) > 0: + return True def delete_state_db_entry(entry_name): @@ -107,74 +76,57 @@ def delete_state_db_entry(entry_name): @vlan.command('del') -@click.argument('vid', metavar='', required=True) -@click.option('-m', '--multiple', is_flag=True, help="Add Multiple Vlan(s) in Range or in Comma separated list") +@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") + require dhcpv6 relay of this is empty") @clicommon.pass_db -def del_vlan(db, vid, multiple, no_restart_dhcp_relay): +def del_vlan(db, vid, no_restart_dhcp_relay): """Delete VLAN""" + log.log_info("'vlan del {}' executing...".format(vid)) + ctx = click.get_current_context() + vlan = 'Vlan{}'.format(vid) + 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)) + config_db = ValidatedConfigDBConnector(db.cfgdb) + if ADHOC_VALIDATION: + if not clicommon.is_vlanid_in_range(vid): + ctx.fail("Invalid VLAN ID {} (1-4094)".format(vid)) - vid_list = [] - # parser will parse the vid input if there are syntax errors it will throw error - if multiple: - vid_list = clicommon.multiple_vlan_parser(ctx, vid) - else: - if not vid.isdigit(): - ctx.fail("{} is not integer".format(vid)) - vid_list.append(int(vid)) + if clicommon.check_if_vlanid_exist(db.cfgdb, vlan) == False: + ctx.fail("{} does not 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 # TODO: MISSING CONSTRAINT IN YANG MODEL + (type(intf_key) is tuple and intf_key[0] == 'Vlan{}'.format(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: # TODO: MISSING CONSTRAINT IN YANG MODEL + ctx.fail("VLAN ID {} can not be removed. First remove all members assigned to this VLAN.".format(vid)) + + 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', config_db, 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', config_db, 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) - if ADHOC_VALIDATION: - # loop will execute till an exception occurs - for vid in vid_list: - - log.log_info("'vlan del {}' executing...".format(vid)) - - if not clicommon.is_vlanid_in_range(vid): - ctx.fail("Invalid VLAN ID {} (2-4094)".format(vid)) - - vlan = 'Vlan{}'.format(vid) - - 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)) - - if clicommon.check_if_vlanid_exist(db.cfgdb, vlan) == False: - log.log_info("{} does not exist".format(vlan)) - ctx.fail("{} does not exist, Aborting!!!".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 # TODO: MISSING CONSTRAINT IN YANG MODEL - (type(intf_key) is tuple and intf_key[0] == 'Vlan{}'.format(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: # TODO: MISSING CONSTRAINT IN YANG MODEL - ctx.fail("VLAN ID {} can not be removed. First remove all members assigned to this VLAN.".format(vid)) - - 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 / VLAN table - config_db.set_entry('VLAN', 'Vlan{}'.format(vid), 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', config_db, 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'] @@ -184,7 +136,6 @@ def del_vlan(db, vid, multiple, no_restart_dhcp_relay): clicommon.run_command(docker_exec_cmd + ['supervisorctl', 'stop', 'ndppd'], ignore_error=True, return_cmd=True) clicommon.run_command(docker_exec_cmd + ['rm', '-f', '/etc/supervisor/conf.d/ndppd.conf'], ignore_error=True, return_cmd=True) clicommon.run_command(docker_exec_cmd + ['supervisorctl', 'update'], return_cmd=True) - def restart_ndppd(): verify_swss_running_cmd = ['docker', 'container', 'inspect', '-f', '{{.State.Status}}', 'swss'] @@ -231,162 +182,103 @@ def config_proxy_arp(db, vid, mode): db.cfgdb.mod_entry('VLAN_INTERFACE', vlan, {"proxy_arp": mode}) click.echo('Proxy ARP setting saved to ConfigDB') restart_ndppd() - - # # 'member' group ('config vlan member ...') # - - @vlan.group(cls=clicommon.AbbreviationGroup, name='member') def vlan_member(): pass - @vlan_member.command('add') -@click.argument('vid', metavar='', required=True) +@click.argument('vid', metavar='', required=True, type=int) @click.argument('port', metavar='port', required=True) -@click.option('-u', '--untagged', is_flag=True, help="Untagged status") -@click.option('-m', '--multiple', is_flag=True, help="Add Multiple Vlan(s) in Range or in Comma separated list") -@click.option('-e', '--except_flag', is_flag=True, help="Skips the given vlans and adds all other existing vlans.") +@click.option('-u', '--untagged', is_flag=True) @clicommon.pass_db -def add_vlan_member(db, vid, port, untagged, multiple, except_flag): +def add_vlan_member(db, vid, port, untagged): """Add VLAN member""" ctx = click.get_current_context() + + log.log_info("'vlan member add {} {}' executing...".format(vid, port)) + + vlan = 'Vlan{}'.format(vid) + config_db = ValidatedConfigDBConnector(db.cfgdb) + if ADHOC_VALIDATION: + if not clicommon.is_vlanid_in_range(vid): + ctx.fail("Invalid VLAN ID {} (1-4094)".format(vid)) - # parser will parse the vid input if there are syntax errors it will throw error + if clicommon.check_if_vlanid_exist(db.cfgdb, vlan) == False: + ctx.fail("{} does not exist".format(vlan)) - vid_list = clicommon.vlan_member_input_parser(ctx, "add", db, except_flag, multiple, vid, port) + if clicommon.get_interface_naming_mode() == "alias": # TODO: MISSING CONSTRAINT IN YANG MODEL + alias = port + iface_alias_converter = clicommon.InterfaceAliasConverter(db) + port = iface_alias_converter.alias_to_name(alias) + if port is None: + ctx.fail("cannot find port name for alias {}".format(alias)) - # multiple vlan command cannot be used to add multiple untagged vlan members - if untagged and (multiple or except_flag or vid == "all"): - ctx.fail("{} cannot have more than one untagged Vlan.".format(port)) + if clicommon.is_port_mirror_dst_port(db.cfgdb, port): # TODO: MISSING CONSTRAINT IN YANG MODEL + ctx.fail("{} is configured as mirror destination port".format(port)) - if ADHOC_VALIDATION: - for vid in vid_list: - - # default vlan checker - if vid == 1: - ctx.fail("{} is default VLAN".format(vlan)) - - log.log_info("'vlan member add {} {}' executing...".format(vid, port)) - - if not clicommon.is_vlanid_in_range(vid): - ctx.fail("Invalid VLAN ID {} (2-4094)".format(vid)) - - vlan = 'Vlan{}'.format(vid) - if clicommon.check_if_vlanid_exist(db.cfgdb, vlan) == False: - log.log_info("{} does not exist".format(vlan)) - ctx.fail("{} does not exist".format(vlan)) - - if clicommon.get_interface_naming_mode() == "alias": # TODO: MISSING CONSTRAINT IN YANG MODEL - alias = port - iface_alias_converter = clicommon.InterfaceAliasConverter(db) - port = iface_alias_converter.alias_to_name(alias) - if port is None: - ctx.fail("cannot find port name for alias {}".format(alias)) - - # TODO: MISSING CONSTRAINT IN YANG MODEL - if clicommon.is_port_mirror_dst_port(db.cfgdb, port): - ctx.fail("{} is configured as mirror destination port".format(port)) - - # TODO: MISSING CONSTRAINT IN YANG MODEL - if clicommon.is_port_vlan_member(db.cfgdb, port, vlan): - log.log_info("{} is already a member of {}, Aborting!!!".format(port, vlan)) - ctx.fail("{} is already a member of {}, Aborting!!!".format(port, vlan)) - - - if clicommon.is_valid_port(db.cfgdb, port): - is_port = True - elif clicommon.is_valid_portchannel(db.cfgdb, port): - is_port = False - else: - ctx.fail("{} does not exist".format(port)) - - portchannel_member_table = db.cfgdb.get_table('PORTCHANNEL_MEMBER') - - # TODO: MISSING CONSTRAINT IN YANG MODEL - if (is_port and clicommon.interface_is_in_portchannel(portchannel_member_table, port)): - ctx.fail("{} is part of portchannel!".format(port)) - - # TODO: MISSING CONSTRAINT IN YANG MODEL - if (clicommon.interface_is_untagged_member(db.cfgdb, port) and untagged): - ctx.fail("{} is already untagged member!".format(port)) - - # checking mode status of port if its access, trunk or routed - if is_port: - port_data = config_db.get_entry('PORT',port) - - # if not port then is a port channel - elif not is_port: - port_data = config_db.get_entry('PORTCHANNEL',port) - - if "mode" not in port_data: - ctx.fail("{} is in routed mode!\nUse switchport mode command to change port mode".format(port)) - else: - existing_mode = port_data["mode"] - - if existing_mode == "routed": - ctx.fail("{} is in routed mode!\nUse switchport mode command to change port mode".format(port)) - - mode_type = "access" if untagged else "trunk" - if existing_mode == "access" and mode_type == "trunk": # TODO: MISSING CONSTRAINT IN YANG MODEL - ctx.fail("{} is in access mode! Tagged Members cannot be added".format(port)) - - elif existing_mode == mode_type or (existing_mode == "trunk" and mode_type == "access"): - pass - - # in case of exception in list last added member will be shown to user - try: - config_db.set_entry('VLAN_MEMBER', (vlan, port), {'tagging_mode': "untagged" if untagged else "tagged"}) - except ValueError: - ctx.fail("{} invalid or does not exist, or {} invalid or does not exist".format(vlan, port)) + if clicommon.is_port_vlan_member(db.cfgdb, port, vlan): # TODO: MISSING CONSTRAINT IN YANG MODEL + ctx.fail("{} is already a member of {}".format(port, vlan)) + + if clicommon.is_valid_port(db.cfgdb, port): + is_port = True + elif clicommon.is_valid_portchannel(db.cfgdb, port): + is_port = False + else: + ctx.fail("{} does not exist".format(port)) + + if (is_port and clicommon.is_port_router_interface(db.cfgdb, port)) or \ + (not is_port and clicommon.is_pc_router_interface(db.cfgdb, port)): # TODO: MISSING CONSTRAINT IN YANG MODEL + ctx.fail("{} is a router interface!".format(port)) + + portchannel_member_table = db.cfgdb.get_table('PORTCHANNEL_MEMBER') + + if (is_port and clicommon.interface_is_in_portchannel(portchannel_member_table, port)): # TODO: MISSING CONSTRAINT IN YANG MODEL + ctx.fail("{} is part of portchannel!".format(port)) + + if (clicommon.interface_is_untagged_member(db.cfgdb, port) and untagged): # TODO: MISSING CONSTRAINT IN YANG MODEL + ctx.fail("{} is already untagged member!".format(port)) + try: + config_db.set_entry('VLAN_MEMBER', (vlan, port), {'tagging_mode': "untagged" if untagged else "tagged" }) + except ValueError: + ctx.fail("{} invalid or does not exist, or {} invalid or does not exist".format(vlan, port)) @vlan_member.command('del') -@click.argument('vid', metavar='', required=True) +@click.argument('vid', metavar='', required=True, type=int) @click.argument('port', metavar='', required=True) -@click.option('-m', '--multiple', is_flag=True, help="Add Multiple Vlan(s) in Range or in Comma separated list") -@click.option('-e', '--except_flag', is_flag=True, help="Skips the given vlans and adds all other existing vlans.") @clicommon.pass_db -def del_vlan_member(db, vid, port, multiple, except_flag): +def del_vlan_member(db, vid, port): """Delete VLAN member""" ctx = click.get_current_context() + log.log_info("'vlan member del {} {}' executing...".format(vid, port)) + vlan = 'Vlan{}'.format(vid) + config_db = ValidatedConfigDBConnector(db.cfgdb) - - # parser will parse the vid input if there are syntax errors it will throw error - - vid_list = clicommon.vlan_member_input_parser(ctx,"del", db, except_flag, multiple, vid, port) - if ADHOC_VALIDATION: - for vid in vid_list: - - log.log_info("'vlan member del {} {}' executing...".format(vid, port)) - - if not clicommon.is_vlanid_in_range(vid): - ctx.fail("Invalid VLAN ID {} (2-4094)".format(vid)) + if not clicommon.is_vlanid_in_range(vid): + ctx.fail("Invalid VLAN ID {} (1-4094)".format(vid)) - vlan = 'Vlan{}'.format(vid) - if clicommon.check_if_vlanid_exist(db.cfgdb, vlan) == False: - log.log_info("{} does not exist, Aborting!!!".format(vlan)) - ctx.fail("{} does not exist, Aborting!!!".format(vlan)) + if clicommon.check_if_vlanid_exist(db.cfgdb, vlan) == False: + ctx.fail("{} does not exist".format(vlan)) - if clicommon.get_interface_naming_mode() == "alias": # TODO: MISSING CONSTRAINT IN YANG MODEL - alias = port - iface_alias_converter = clicommon.InterfaceAliasConverter(db) - port = iface_alias_converter.alias_to_name(alias) - if port is None: - ctx.fail("cannot find port name for alias {}".format(alias)) + if clicommon.get_interface_naming_mode() == "alias": # TODO: MISSING CONSTRAINT IN YANG MODEL + alias = port + iface_alias_converter = clicommon.InterfaceAliasConverter(db) + port = iface_alias_converter.alias_to_name(alias) + if port is None: + ctx.fail("cannot find port name for alias {}".format(alias)) - # TODO: MISSING CONSTRAINT IN YANG MODEL - if not clicommon.is_port_vlan_member(db.cfgdb, port, vlan): - ctx.fail("{} is not a member of {}".format(port, vlan)) + if not clicommon.is_port_vlan_member(db.cfgdb, port, vlan): # TODO: MISSING CONSTRAINT IN YANG MODEL + ctx.fail("{} is not a member of {}".format(port, vlan)) - try: - config_db.set_entry('VLAN_MEMBER', (vlan, port), None) + try: + config_db.set_entry('VLAN_MEMBER', (vlan, port), None) + except JsonPatchConflict: + ctx.fail("{} invalid or does not exist, or {} is not a member of {}".format(vlan, port, vlan)) - except JsonPatchConflict: - ctx.fail("{} invalid or does not exist, or {} is not a member of {}".format(vlan, port, vlan)) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 9cb0cfbb54..019499b0c9 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -158,8 +158,6 @@ * [Subinterfaces](#subinterfaces) * [Subinterfaces Show Commands](#subinterfaces-show-commands) * [Subinterfaces Config Commands](#subinterfaces-config-commands) -* [Switchport Modes](#switchport-modes) - * [Switchport Mode config commands](#switchport modes-config-commands) * [Syslog](#syslog) * [Syslog show commands](#syslog-show-commands) * [Syslog config commands](#syslog-config-commands) @@ -2844,23 +2842,23 @@ This command is used to show ipv6 dhcp_relay counters. - Example: ``` admin@sonic:~$ sudo sonic-clear dhcp_relay counters - Message Type Vlan1000 - ------------------- ---------- - Unknown 0 - Solicit 0 - Advertise 0 - Request 5 - Confirm 0 - Renew 0 - Rebind 0 - Reply 0 - Release 0 - Decline 0 - Reconfigure 0 - Information-Request 0 - Relay-Forward 0 - Relay-Reply 0 - Malformed 0 +      Message Type    Vlan1000 + -------------------  ---------- +             Unknown           0 +             Solicit           0 +           Advertise           0 +             Request           5 +             Confirm           0 +               Renew           0 +              Rebind           0 +               Reply           0 +             Release           0 +             Decline           0 +         Reconfigure           0 + Information-Request           0 +       Relay-Forward           0 +         Relay-Reply           0 +           Malformed           0 ``` ### DHCP Relay clear commands @@ -4215,7 +4213,6 @@ Subsequent pages explain each of these commands in detail. neighbor Show neighbor related information portchannel Show PortChannel information status Show Interface status information - switchport Show Interface switchport information tpid Show Interface tpid information transceiver Show SFP Transceiver information ``` @@ -4681,50 +4678,6 @@ This command displays some more fields such as Lanes, Speed, MTU, Type, Asymmetr Ethernet180 105,106,107,108 100G 9100 hundredGigE46 down down N/A N/A ``` - -**show interface switchport status** - -This command displays switchport modes status of the interfaces - -- Usage: - ``` - show interfaces switchport status - ``` - -- Example (show interface switchport status of all interfaces): - ``` - admin@sonic:~$ show interfaces switchport status - Interface Mode - ----------- -------- - Ethernet0 access - Ethernet4 trunk - Ethernet8 routed - - ``` - -**show interface switchport config** - -This command displays switchport modes configuration of the interfaces - -- Usage: - ``` - show interfaces switchport config - ``` - -- Example (show interface switchport config of all interfaces): - ``` - admin@sonic:~$ show interfaces switchport config - Interface Mode Untagged Tagged - ----------- -------- -------- ------- - Ethernet0 access 2 - Ethernet4 trunk 3 4,5,6 - Ethernet8 routed - - ``` - - -For details please refer [Switchport Mode HLD](https://github.com/sonic-net/SONiC/pull/912/files#diff-03597c34684d527192f76a6e975792fcfc83f54e20dde63f159399232d148397) to know more about this command. - **show interfaces transceiver** This command is already explained [here](#Transceivers) @@ -9831,40 +9784,6 @@ This sub-section explains how to configure subinterfaces. Go Back To [Beginning of the document](#) or [Beginning of this section](#subinterfaces) -## Switchport Modes - -### Switchport Modes Config Commands - -This subsection explains how to configure switchport modes on Port/PortChannel. - -**config switchport** -mode -Usage: - ``` - config switchport mode - ``` - -- Example (Config switchport mode access on "Ethernet0): - ``` - admin@sonic:~$ sudo config switchport mode access Ethernet0 - ``` - -- Example (Config switchport mode trunk on "Ethernet4"): - ``` - admin@sonic:~$ sudo config switchport mode trunk Ethernet4 - ``` - -- Example (Config switchport mode routed on "Ethernet12"): - ``` - admin@sonic:~$ sudo config switchport mode routed Ethernet12 - ``` - - - -Go Back To [Beginning of the document](#) or [Beginning of this section](#switchport-modes) - - - ## Syslog ### Syslog Show Commands @@ -10550,29 +10469,6 @@ This command is used to add or delete the vlan. admin@sonic:~$ sudo config vlan add 100 ``` -**config vlan add/del -m** - -This command is used to add or delete multiple vlans via single command. - -- Usage: - ``` - config vlan (add | del) -m - ``` - -- Example01 (Create the VLAN "Vlan100, Vlan101, Vlan102, Vlan103" if these does not already exist) - - ``` - admin@sonic:~$ sudo config vlan add -m 100-103 - ``` - - -- Example02 (Create the VLAN "Vlan105, Vlan106, Vlan107, Vlan108" if these does not already exist): - - ``` - admin@sonic:~$ sudo config vlan add -m 105,106,107,108 - ``` - - **config vlan member add/del** This command is to add or delete a member port into the already created vlan. @@ -10594,48 +10490,6 @@ This command is to add or delete a member port into the already created vlan. This command will add Ethernet4 as member of the vlan 100. ``` - -**config vlan member add/del -m -e** - -This command is to add or delete a member port into multiple already created vlans. - -- Usage: - ``` - config vlan member add/del [-m] [-e] - ``` - -*NOTE: -m flag multiple Vlans in range or comma separted list can be added as a member port.* - - -*NOTE: -e is used as an except flag as explaied with examples below.* - - -- Example: - ``` - admin@sonic:~$ sudo config vlan member add -m 100-103 Ethernet0 - This command will add Ethernet0 as member of the vlan 100, vlan 101, vlan 102, vlan 103 - ``` - - ``` - admin@sonic:~$ sudo config vlan member add -m 100,101,102 Ethernet4 - This command will add Ethernet4 as member of the vlan 100, vlan 101, vlan 102 - ``` - - ``` - admin@sonic:~$ sudo config vlan member add -e -m 104,105 Ethernet8 - Suppose vlan 100, vlan 101, vlan 102, vlan 103, vlan 104, vlan 105 are exisiting vlans. This command will add Ethernet8 as member of vlan 100, vlan 101, vlan 102, vlan 103 - ``` - - ``` - admin@sonic:~$ sudo config vlan member add -e 100 Ethernet12 - Suppose vlan 100, vlan 101, vlan 102, vlan 103, vlan 104, vlan 105 are exisiting vlans. This command will add Ethernet12 as member of vlan 101, vlan 102, vlan 103, vlan 104, vlan 105 - ``` - - ``` - admin@sonic:~$ sudo config vlan member add all Ethernet20 - Suppose vlan 100, vlan 101, vlan 102, vlan 103, vlan 104, vlan 105 are exisiting vlans. This command will add Ethernet20 as member of vlan 100, vlan 101, vlan 102, vlan 103, vlan 104, vlan 105 - ``` - **config proxy_arp enabled/disabled** This command is used to enable or disable proxy ARP for a VLAN interface diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index 8df892b2d7..00f2d7cc0a 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -456,39 +456,6 @@ def migrate_config_db_port_table_for_auto_neg(self): elif value['autoneg'] == '0': self.configDB.set(self.configDB.CONFIG_DB, '{}|{}'.format(table_name, key), 'autoneg', 'off') - - def migrate_config_db_switchport_mode(self): - port_table = self.configDB.get_table('PORT') - portchannel_table = self.configDB.get_table('PORTCHANNEL') - vlan_member_table = self.configDB.get_table('VLAN_MEMBER') - - vlan_member_keys= [] - for _,key in vlan_member_table: - vlan_member_keys.append(key) - - for p_key, p_value in port_table.items(): - if 'mode' in p_value: - self.configDB.set(self.configDB.CONFIG_DB, '{}|{}'.format("PORT", p_key), 'mode', p_value['mode']) - else: - if p_key in vlan_member_keys: - p_value["mode"] = "trunk" - self.configDB.set_entry("PORT", p_key, p_value) - else: - p_value["mode"] = "routed" - self.configDB.set_entry("PORT", p_key, p_value) - - for pc_key, pc_value in portchannel_table.items(): - if 'mode' in pc_value: - self.configDB.set(self.configDB.CONFIG_DB, '{}|{}'.format("PORTCHANNEL", pc_key), 'mode', pc_value['mode']) - else: - if pc_key in vlan_member_keys: - pc_value["mode"] = "trunk" - self.configDB.set_entry("PORTCHANNEL", pc_key, pc_value) - else: - pc_value["mode"] = "routed" - self.configDB.set_entry("PORTCHANNEL", pc_key, pc_value) - - def migrate_qos_db_fieldval_reference_remove(self, table_list, db, db_num, db_delimeter): for pair in table_list: table_name, fields_list = pair @@ -1054,7 +1021,7 @@ def version_4_0_1(self): self.migrate_feature_timer() self.set_version('version_4_0_2') return 'version_4_0_2' - + def version_4_0_2(self): """ Version 4_0_2. @@ -1080,19 +1047,9 @@ def version_4_0_3(self): def version_4_0_4(self): """ Version 4_0_4. - """ - log.log_info('Handling version_4_0_4') - - self.migrate_config_db_switchport_mode() - self.set_version('version_4_0_4') - return 'version_4_0_5' - - def version_4_0_5(self): - """ - Version 4_0_5. This is the latest version for master branch """ - log.log_info('Handling version_4_0_5') + log.log_info('Handling version_4_0_4') return None def get_version(self): diff --git a/scripts/intfutil b/scripts/intfutil index f80523c0c4..eb40a49186 100755 --- a/scripts/intfutil +++ b/scripts/intfutil @@ -893,4 +893,4 @@ def main(): sys.exit(0) if __name__ == "__main__": - main() \ No newline at end of file + main() diff --git a/show/interfaces/__init__.py b/show/interfaces/__init__.py index b1d3c69b6f..a5a3734664 100644 --- a/show/interfaces/__init__.py +++ b/show/interfaces/__init__.py @@ -797,69 +797,3 @@ def fec_status(interfacename, namespace, display, verbose): cmd += ['-n', str(namespace)] clicommon.run_command(cmd, display_cmd=verbose) - -# -# switchport group (show interfaces switchport ...) -# -@interfaces.group(name='switchport', cls=clicommon.AliasedGroup) -def switchport(): - """Show interface switchport information""" - pass - - -@switchport.command(name="config") -@clicommon.pass_db -def switchport_mode_config(db): - """Show interface switchport config information""" - - port_data = list(db.cfgdb.get_table('PORT').keys()) - portchannel_data = list(db.cfgdb.get_table('PORTCHANNEL').keys()) - - portchannel_member_table = db.cfgdb.get_table('PORTCHANNEL_MEMBER') - - for interface in port_data: - if clicommon.interface_is_in_portchannel(portchannel_member_table,interface): - port_data.remove(interface) - - - keys = port_data + portchannel_data - - def tablelize(keys): - table = [] - - for key in natsorted(keys): - r = [clicommon.get_interface_name_for_display(db, key), clicommon.get_interface_switchport_mode(db,key), clicommon.get_interface_untagged_vlan_members(db,key), clicommon.get_interface_tagged_vlan_members(db,key)] - table.append(r) - - return table - - header = ['Interface', 'Mode', 'Untagged', 'Tagged'] - click.echo(tabulate(tablelize(keys), header, tablefmt="simple", stralign='left')) - -@switchport.command(name="status") -@clicommon.pass_db -def switchport_mode_status(db): - """Show interface switchport status information""" - - port_data = list(db.cfgdb.get_table('PORT').keys()) - portchannel_data = list(db.cfgdb.get_table('PORTCHANNEL').keys()) - - portchannel_member_table = db.cfgdb.get_table('PORTCHANNEL_MEMBER') - - for interface in port_data: - if clicommon.interface_is_in_portchannel(portchannel_member_table,interface): - port_data.remove(interface) - - keys = port_data + portchannel_data - - def tablelize(keys): - table = [] - - for key in natsorted(keys): - r = [clicommon.get_interface_name_for_display(db, key), clicommon.get_interface_switchport_mode(db,key)] - table.append(r) - - return table - - header = ['Interface', 'Mode'] - click.echo(tabulate(tablelize(keys), header,tablefmt="simple", stralign='left')) 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 19fb6a80dd..1ef2cf4916 100644 --- a/tests/db_migrator_input/config_db/port-an-expected.json +++ b/tests/db_migrator_input/config_db/port-an-expected.json @@ -3,7 +3,6 @@ "index": "0", "lanes": "0,1", "description": "etp1a", - "mode": "routed", "mtu": "9100", "alias": "etp1a", "pfc_asym": "off", @@ -17,7 +16,6 @@ "lanes": "2,3", "description": "Servers0:eth0", "admin_status": "up", - "mode": "routed", "mtu": "9100", "alias": "etp1b", "pfc_asym": "off", @@ -30,7 +28,6 @@ "lanes": "4,5", "description": "Servers1:eth0", "admin_status": "up", - "mode": "routed", "mtu": "9100", "alias": "etp2a", "pfc_asym": "off", diff --git a/tests/db_migrator_input/config_db/portchannel-expected.json b/tests/db_migrator_input/config_db/portchannel-expected.json index da97ad3f3d..2644e5f4e9 100644 --- a/tests/db_migrator_input/config_db/portchannel-expected.json +++ b/tests/db_migrator_input/config_db/portchannel-expected.json @@ -3,7 +3,6 @@ "admin_status": "up", "members@": "Ethernet0,Ethernet4", "min_links": "2", - "mode": "routed", "mtu": "9100", "lacp_key": "auto" }, @@ -11,7 +10,6 @@ "admin_status": "up", "members@": "Ethernet8,Ethernet12", "min_links": "2", - "mode": "routed", "mtu": "9100", "lacp_key": "auto" }, @@ -19,7 +17,6 @@ "admin_status": "up", "members@": "Ethernet16", "min_links": "1", - "mode": "routed", "mtu": "9100", "lacp_key": "auto" }, @@ -27,13 +24,11 @@ "admin_status": "up", "members@": "Ethernet20,Ethernet24", "min_links": "2", - "mode": "routed", "mtu": "9100", "lacp_key": "auto" }, "PORTCHANNEL|PortChannel9999": { "admin_status": "up", - "mode": "routed", "mtu": "9100", "lacp_key": "auto" }, diff --git a/tests/db_migrator_input/config_db/switchport-expected.json b/tests/db_migrator_input/config_db/switchport-expected.json deleted file mode 100644 index 0f49b5edf3..0000000000 --- a/tests/db_migrator_input/config_db/switchport-expected.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "PORT|Ethernet0": { - "admin_status": "up", - "alias": "fortyGigE0/0", - "index": "0", - "lanes": "25,26,27,28", - "mode": "trunk", - "mtu": "9100", - "speed": "40000" - }, - "PORT|Ethernet4": { - "admin_status": "up", - "alias": "fortyGigE0/4", - "index": "1", - "lanes": "29,30,31,32", - "mode": "routed", - "mtu": "9100", - "speed": "40000" - }, - "PORT|Ethernet8": { - "admin_status": "up", - "alias": "fortyGigE0/8", - "index": "2", - "lanes": "33,34,35,36", - "mode": "trunk", - "mtu": "9100", - "speed": "40000" - }, - "PORT|Ethernet12": { - "admin_status": "up", - "alias": "fortyGigE0/12", - "index": "3", - "lanes": "37,38,39,40", - "mode": "access", - "mtu": "9100", - "speed": "40000" - }, - "PORT|Ethernet16": { - "admin_status": "up", - "alias": "fortyGigE0/16", - "index": "4", - "lanes": "45,46,47,48", - "mode": "routed", - "mtu": "9100", - "speed": "40000" - }, - "PORT|Ethernet20": { - "admin_status": "up", - "alias": "fortyGigE0/20", - "index": "5", - "lanes": "41,42,43,44", - "mode": "trunk", - "mtu": "9100", - "speed": "40000" - }, - - "VLAN|Vlan2": { - "vlanid": "2" - }, - "VLAN|Vlan3": { - "vlanid": "3" - }, - "VLAN|Vlan4": { - "vlanid": "4" - }, - "VLAN|Vlan5": { - "vlanid": "5" - }, - "VLAN|Vlan6": { - "vlanid": "6" - }, - "VLAN|Vlan7": { - "vlanid": "7" - }, - - - "VLAN_MEMBER|Vlan2|Ethernet0": { - "tagging_mode": "tagged" - }, - "VLAN_MEMBER|Vlan3|Ethernet8": { - "tagging_mode": "tagged" - }, - "VLAN_MEMBER|Vlan4|Ethernet0": { - "tagging_mode": "tagged" - }, - "VLAN_MEMBER|Vlan6|Ethernet0": { - "tagging_mode": "tagged" - }, - "VLAN_MEMBER|Vlan6|Ethernet8": { - "tagging_mode": "untagged" - }, - "VLAN_MEMBER|Vlan7|Ethernet8": { - "tagging_mode": "tagged" - }, - "VLAN_MEMBER|Vlan5|Ethernet8": { - "tagging_mode": "untagged" - }, - "VLAN_MEMBER|Vlan3|PortChannel0003": { - "tagging_mode": "untagged" - }, - "VLAN_MEMBER|Vlan8|PortChannel0002": { - "tagging_mode": "tagged" - }, - "VLAN_MEMBER|Vlan9|PortChannel0002": { - "tagging_mode": "tagged" - }, - - "PORTCHANNEL|PortChannel0001": { - "admin_status": "up", - "fast_rate": "false", - "lacp_key": "auto", - "min_links": "1", - "mode": "access", - "mtu": "9100" - }, - "PORTCHANNEL|PortChannel0002": { - "admin_status": "up", - "fast_rate": "false", - "lacp_key": "auto", - "min_links": "1", - "mode": "trunk", - "mtu": "9100" - }, - "PORTCHANNEL|PortChannel0003": { - "admin_status": "up", - "fast_rate": "false", - "lacp_key": "auto", - "min_links": "1", - "mode": "trunk", - "mtu": "9100" - }, - "PORTCHANNEL|PortChannel0004": { - "admin_status": "up", - "fast_rate": "false", - "lacp_key": "auto", - "min_links": "1", - "mode": "routed", - "mtu": "9100" - }, - - "VERSIONS|DATABASE": { - "VERSION": "version_4_0_1" - } -} \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/switchport-input.json b/tests/db_migrator_input/config_db/switchport-input.json deleted file mode 100644 index 9613f29e75..0000000000 --- a/tests/db_migrator_input/config_db/switchport-input.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "PORT|Ethernet0": { - "admin_status": "up", - "alias": "fortyGigE0/0", - "index": "0", - "lanes": "25,26,27,28", - "mtu": "9100", - "speed": "40000" - }, - "PORT|Ethernet4": { - "admin_status": "up", - "alias": "fortyGigE0/4", - "index": "1", - "lanes": "29,30,31,32", - "mode": "routed", - "mtu": "9100", - "speed": "40000" - }, - "PORT|Ethernet8": { - "admin_status": "up", - "alias": "fortyGigE0/8", - "index": "2", - "lanes": "33,34,35,36", - "mtu": "9100", - "speed": "40000" - }, - "PORT|Ethernet12": { - "admin_status": "up", - "alias": "fortyGigE0/12", - "index": "3", - "lanes": "37,38,39,40", - "mode": "access", - "mtu": "9100", - "speed": "40000" - }, - "PORT|Ethernet16": { - "admin_status": "up", - "alias": "fortyGigE0/16", - "index": "4", - "lanes": "45,46,47,48", - "mtu": "9100", - "speed": "40000" - }, - "PORT|Ethernet20": { - "admin_status": "up", - "alias": "fortyGigE0/20", - "index": "5", - "lanes": "41,42,43,44", - "mode": "trunk", - "mtu": "9100", - "speed": "40000" - }, - "VLAN|Vlan2": { - "vlanid": "2" - }, - "VLAN|Vlan3": { - "vlanid": "3" - }, - "VLAN|Vlan4": { - "vlanid": "4" - }, - "VLAN|Vlan5": { - "vlanid": "5" - }, - "VLAN|Vlan6": { - "vlanid": "6" - }, - "VLAN|Vlan7": { - "vlanid": "7" - }, - - "VLAN_MEMBER|Vlan2|Ethernet0": { - "tagging_mode": "tagged" - }, - "VLAN_MEMBER|Vlan3|Ethernet8": { - "tagging_mode": "tagged" - }, - "VLAN_MEMBER|Vlan4|Ethernet0": { - "tagging_mode": "tagged" - }, - "VLAN_MEMBER|Vlan6|Ethernet0": { - "tagging_mode": "tagged" - }, - "VLAN_MEMBER|Vlan6|Ethernet8": { - "tagging_mode": "untagged" - }, - "VLAN_MEMBER|Vlan7|Ethernet8": { - "tagging_mode": "tagged" - }, - "VLAN_MEMBER|Vlan5|Ethernet8": { - "tagging_mode": "untagged" - }, - "VLAN_MEMBER|Vlan3|PortChannel0003": { - "tagging_mode": "untagged" - }, - "VLAN_MEMBER|Vlan8|PortChannel0002": { - "tagging_mode": "tagged" - }, - "VLAN_MEMBER|Vlan9|PortChannel0002": { - "tagging_mode": "tagged" - }, - - - "PORTCHANNEL|PortChannel0001": { - "admin_status": "up", - "fast_rate": "false", - "lacp_key": "auto", - "min_links": "1", - "mode": "access", - "mtu": "9100" - }, - "PORTCHANNEL|PortChannel0002": { - "admin_status": "up", - "fast_rate": "false", - "lacp_key": "auto", - "min_links": "1", - "mode": "trunk", - "mtu": "9100" - }, - "PORTCHANNEL|PortChannel0003": { - "admin_status": "up", - "fast_rate": "false", - "lacp_key": "auto", - "min_links": "1", - "mtu": "9100" - }, - "PORTCHANNEL|PortChannel0004": { - "admin_status": "up", - "fast_rate": "false", - "lacp_key": "auto", - "min_links": "1", - "mtu": "9100" - }, - - "VERSIONS|DATABASE": { - "VERSION": "version_4_0_0" - } -} \ No newline at end of file diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index 3f15f2c2e0..e75f758947 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -246,30 +246,6 @@ def test_port_autoneg_migrator(self): assert dbmgtr.configDB.get_table('PORT') == expected_db.cfgdb.get_table('PORT') assert dbmgtr.configDB.get_table('VERSIONS') == expected_db.cfgdb.get_table('VERSIONS') -class TestSwitchPortMigrator(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_switchport_mode_migrator(self): - dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'switchport-input') - import db_migrator - dbmgtr = db_migrator.DBMigrator(None) - dbmgtr.migrate() - - dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'switchport-expected') - expected_db = Db() - advance_version_for_expected_database(dbmgtr.configDB, expected_db.cfgdb, 'version_4_0_1') - - assert dbmgtr.configDB.get_table('PORT') == expected_db.cfgdb.get_table('PORT') - assert dbmgtr.configDB.get_table('PORTCHANNEL') == expected_db.cfgdb.get_table('PORTCHANNEL') - assert dbmgtr.configDB.get_table('VERSIONS') == expected_db.cfgdb.get_table('VERSIONS') - class TestInitConfigMigrator(object): @classmethod def setup_class(cls): diff --git a/tests/interfaces_test.py b/tests/interfaces_test.py index 84940f0bca..c3246ba026 100644 --- a/tests/interfaces_test.py +++ b/tests/interfaces_test.py @@ -144,85 +144,6 @@ 1001 PortChannel1001 N/A """ -show_interfaces_switchport_status_output="""\ -Interface Mode ---------------- ------ -Ethernet0 routed -Ethernet4 trunk -Ethernet8 routed -Ethernet12 routed -Ethernet16 trunk -Ethernet20 routed -Ethernet24 trunk -Ethernet28 trunk -Ethernet36 routed -Ethernet40 routed -Ethernet44 routed -Ethernet48 routed -Ethernet52 access -Ethernet56 access -Ethernet60 routed -Ethernet64 routed -Ethernet68 routed -Ethernet72 routed -Ethernet76 routed -Ethernet80 routed -Ethernet84 routed -Ethernet88 routed -Ethernet92 routed -Ethernet96 routed -Ethernet100 routed -Ethernet104 routed -Ethernet108 routed -Ethernet116 routed -Ethernet124 routed -PortChannel0001 routed -PortChannel0002 routed -PortChannel0003 routed -PortChannel0004 routed -PortChannel1001 trunk -""" - -show_interfaces_switchport_config_output = """\ -Interface Mode Untagged Tagged ---------------- ------ ---------- -------- -Ethernet0 routed -Ethernet4 trunk 1000 -Ethernet8 routed 1000 -Ethernet12 routed 1000 -Ethernet16 trunk 1000 -Ethernet20 routed -Ethernet24 trunk 2000 -Ethernet28 trunk 2000 -Ethernet36 routed -Ethernet40 routed -Ethernet44 routed -Ethernet48 routed -Ethernet52 access -Ethernet56 access -Ethernet60 routed -Ethernet64 routed -Ethernet68 routed -Ethernet72 routed -Ethernet76 routed -Ethernet80 routed -Ethernet84 routed -Ethernet88 routed -Ethernet92 routed -Ethernet96 routed -Ethernet100 routed -Ethernet104 routed -Ethernet108 routed -Ethernet116 routed -Ethernet124 routed -PortChannel0001 routed -PortChannel0002 routed -PortChannel0003 routed -PortChannel0004 routed -PortChannel1001 trunk 4000 -""" - - class TestInterfaces(object): @classmethod def setup_class(cls): @@ -416,24 +337,6 @@ def test_parse_interface_in_filter(self): assert len(intf_list) == 3 assert intf_list == ["Ethernet-BP10", "Ethernet-BP11", "Ethernet-BP12"] - def test_show_interfaces_switchport_status(self): - runner = CliRunner() - result = runner.invoke(show.cli.commands["interfaces"].commands["switchport"].commands["status"]) - print(result.exit_code) - print(result.output) - - assert result.exit_code == 0 - assert result.output == show_interfaces_switchport_status_output - - def test_show_interfaces_switchport_config(self): - runner = CliRunner() - result = runner.invoke(show.cli.commands["interfaces"].commands["switchport"].commands["config"]) - print(result.exit_code) - print(result.output) - - assert result.exit_code == 0 - assert result.output == show_interfaces_switchport_config_output - @classmethod def teardown_class(cls): print("TEARDOWN") diff --git a/tests/intfutil_test.py b/tests/intfutil_test.py index 6e48c9724b..469c73e071 100644 --- a/tests/intfutil_test.py +++ b/tests/intfutil_test.py @@ -364,4 +364,4 @@ def test_show_interfaces_fec_status(self): 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" \ No newline at end of file + os.environ["UTILITIES_UNIT_TESTING"] = "0" diff --git a/tests/ipv6_link_local_test.py b/tests/ipv6_link_local_test.py index bb9e53ac1a..50b691be6b 100644 --- a/tests/ipv6_link_local_test.py +++ b/tests/ipv6_link_local_test.py @@ -232,7 +232,7 @@ def test_vlan_member_add_on_link_local_interface(self): 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 in routed mode!\nUse switchport mode command to change port mode' in result.output + assert 'Error: Ethernet40 is a router interface!' in result.output @classmethod def teardown_class(cls): diff --git a/tests/mock_tables/asic0/config_db.json b/tests/mock_tables/asic0/config_db.json index 023e70299c..de20194a64 100644 --- a/tests/mock_tables/asic0/config_db.json +++ b/tests/mock_tables/asic0/config_db.json @@ -75,7 +75,6 @@ "admin_status": "up", "members@": "Ethernet0,Ethernet4", "min_links": "2", - "mode": "trunk", "mtu": "9100" }, "PORTCHANNEL|PortChannel4001": { diff --git a/tests/mock_tables/config_db.json b/tests/mock_tables/config_db.json index 8786051e36..e58119d905 100644 --- a/tests/mock_tables/config_db.json +++ b/tests/mock_tables/config_db.json @@ -29,7 +29,6 @@ "lanes": "25,26,27,28", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -41,7 +40,6 @@ "lanes": "29,30,31,32", "mtu": "9100", "tpid": "0x8100", - "mode": "trunk", "pfc_asym": "off", "speed": "40000" }, @@ -53,7 +51,6 @@ "lanes": "33,34,35,36", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -65,7 +62,6 @@ "lanes": "37,38,39,40", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -77,7 +73,6 @@ "lanes": "16", "mtu": "9100", "tpid": "0x8100", - "mode": "trunk", "pfc_asym": "off", "speed": "100" }, @@ -89,7 +84,6 @@ "lanes": "41,42,43,44", "mtu": "9100", "tpid": "0x9200", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -101,7 +95,6 @@ "lanes": "1,2,3,4", "mtu": "9100", "tpid": "0x8100", - "mode": "trunk", "pfc_asym": "off", "speed": "1000" }, @@ -113,7 +106,6 @@ "lanes": "5,6,7,8", "mtu": "9100", "tpid": "0x8100", - "mode": "trunk", "pfc_asym": "off", "speed": "1000" }, @@ -125,7 +117,6 @@ "lanes": "13,14,15,16", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -137,7 +128,6 @@ "lanes": "9,10,11,12", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "10" }, @@ -149,7 +139,6 @@ "lanes": "17,18,19,20", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -161,7 +150,6 @@ "lanes": "21,22,23,24", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -173,7 +161,6 @@ "lanes": "53,54,55,56", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -185,7 +172,6 @@ "lanes": "49,50,51,52", "mtu": "9100", "tpid": "0x8100", - "mode": "access", "pfc_asym": "off", "speed": "40000" }, @@ -197,7 +183,6 @@ "lanes": "57,58,59,60", "mtu": "9100", "tpid": "0x8100", - "mode": "access", "pfc_asym": "off", "speed": "40000" }, @@ -209,7 +194,6 @@ "lanes": "61,62,63,64", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -232,7 +216,6 @@ "lanes": "65,66,67,68", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -244,7 +227,6 @@ "lanes": "73,74,75,76", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -256,7 +238,6 @@ "lanes": "77,78,79,80", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -268,7 +249,6 @@ "lanes": "109,110,111,112", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -280,7 +260,6 @@ "lanes": "105,106,107,108", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -292,7 +271,6 @@ "lanes": "113,114,115,116", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -304,7 +282,6 @@ "lanes": "117,118,119,120", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -316,7 +293,6 @@ "lanes": "125,126,127,128", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -327,7 +303,6 @@ "lanes": "121,122,123,124", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -338,7 +313,6 @@ "lanes": "81,82,83,84", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -349,7 +323,6 @@ "lanes": "85,86,87,88", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -361,7 +334,6 @@ "lanes": "93,94,95,96", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -373,7 +345,6 @@ "lanes": "89,90,91,92", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -385,7 +356,6 @@ "lanes": "101,102,103,104", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000" }, @@ -397,7 +367,6 @@ "lanes": "97,98,99,100", "mtu": "9100", "tpid": "0x8100", - "mode": "routed", "pfc_asym": "off", "speed": "40000", "fec" : "auto" @@ -700,7 +669,6 @@ "admin_status": "up", "members@": "Ethernet32", "min_links": "1", - "mode":"trunk", "tpid": "0x8100", "mtu": "9100" }, diff --git a/tests/vlan_test.py b/tests/vlan_test.py index 5212a7b026..6dae8be86d 100644 --- a/tests/vlan_test.py +++ b/tests/vlan_test.py @@ -134,124 +134,6 @@ +-----------+-----------------+-----------------+----------------+-------------+ """ -test_config_add_del_multiple_vlan_and_vlan_member_output="""\ -+-----------+-----------------+-----------------+----------------+-------------+ -| VLAN ID | IP Address | Ports | Port Tagging | Proxy ARP | -+===========+=================+=================+================+=============+ -| 1000 | 192.168.0.1/21 | Ethernet4 | untagged | disabled | -| | fc02:1000::1/64 | Ethernet8 | untagged | | -| | | Ethernet12 | untagged | | -| | | Ethernet16 | untagged | | -+-----------+-----------------+-----------------+----------------+-------------+ -| 1001 | | Ethernet20 | tagged | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -| 1002 | | Ethernet20 | tagged | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -| 1003 | | Ethernet20 | tagged | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -| 2000 | 192.168.0.10/21 | Ethernet24 | untagged | enabled | -| | fc02:1011::1/64 | Ethernet28 | untagged | | -+-----------+-----------------+-----------------+----------------+-------------+ -| 3000 | | | | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -| 4000 | | PortChannel1001 | tagged | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -""" - -test_config_add_del_add_vlans_and_add_all_vlan_member_output="""\ -+-----------+-----------------+-----------------+----------------+-------------+ -| VLAN ID | IP Address | Ports | Port Tagging | Proxy ARP | -+===========+=================+=================+================+=============+ -| 1000 | 192.168.0.1/21 | Ethernet4 | untagged | disabled | -| | fc02:1000::1/64 | Ethernet8 | untagged | | -| | | Ethernet12 | untagged | | -| | | Ethernet16 | untagged | | -| | | Ethernet20 | tagged | | -+-----------+-----------------+-----------------+----------------+-------------+ -| 1001 | | Ethernet20 | tagged | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -| 1002 | | Ethernet20 | tagged | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -| 1003 | | Ethernet20 | tagged | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -| 2000 | 192.168.0.10/21 | Ethernet20 | tagged | enabled | -| | fc02:1011::1/64 | Ethernet24 | untagged | | -| | | Ethernet28 | untagged | | -+-----------+-----------------+-----------------+----------------+-------------+ -| 3000 | | Ethernet20 | tagged | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -| 4000 | | Ethernet20 | tagged | disabled | -| | | PortChannel1001 | tagged | | -+-----------+-----------------+-----------------+----------------+-------------+ -""" - -test_config_add_del_add_vlans_and_add_vlans_member_except_vlan_output = """\ -+-----------+-----------------+-----------------+----------------+-------------+ -| VLAN ID | IP Address | Ports | Port Tagging | Proxy ARP | -+===========+=================+=================+================+=============+ -| 1000 | 192.168.0.1/21 | Ethernet4 | untagged | disabled | -| | fc02:1000::1/64 | Ethernet8 | untagged | | -| | | Ethernet12 | untagged | | -| | | Ethernet16 | untagged | | -+-----------+-----------------+-----------------+----------------+-------------+ -| 1001 | | Ethernet20 | tagged | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -| 1002 | | Ethernet20 | tagged | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -| 2000 | 192.168.0.10/21 | Ethernet20 | tagged | enabled | -| | fc02:1011::1/64 | Ethernet24 | untagged | | -| | | Ethernet28 | untagged | | -+-----------+-----------------+-----------------+----------------+-------------+ -| 3000 | | Ethernet20 | tagged | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -| 4000 | | PortChannel1001 | tagged | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -""" - -test_config_add_del_add_vlans_and_add_vlans_member_except_vlan__after_del_member_output = """\ -+-----------+-----------------+-----------------+----------------+-------------+ -| VLAN ID | IP Address | Ports | Port Tagging | Proxy ARP | -+===========+=================+=================+================+=============+ -| 1000 | 192.168.0.1/21 | Ethernet4 | untagged | disabled | -| | fc02:1000::1/64 | Ethernet8 | untagged | | -| | | Ethernet12 | untagged | | -| | | Ethernet16 | untagged | | -+-----------+-----------------+-----------------+----------------+-------------+ -| 1001 | | Ethernet20 | tagged | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -| 1002 | | Ethernet20 | tagged | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -| 2000 | 192.168.0.10/21 | Ethernet24 | untagged | enabled | -| | fc02:1011::1/64 | Ethernet28 | untagged | | -+-----------+-----------------+-----------------+----------------+-------------+ -| 3000 | | | | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -| 4000 | | PortChannel1001 | tagged | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -""" - -test_config_add_del_vlan_and_vlan_member_with_switchport_modes_output = """\ -+-----------+-----------------+-----------------+----------------+-------------+ -| VLAN ID | IP Address | Ports | Port Tagging | Proxy ARP | -+===========+=================+=================+================+=============+ -| 1000 | 192.168.0.1/21 | Ethernet4 | untagged | disabled | -| | fc02:1000::1/64 | Ethernet8 | untagged | | -| | | Ethernet12 | untagged | | -| | | Ethernet16 | untagged | | -| | | Ethernet20 | tagged | | -+-----------+-----------------+-----------------+----------------+-------------+ -| 1001 | | Ethernet20 | untagged | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -| 2000 | 192.168.0.10/21 | Ethernet24 | untagged | enabled | -| | fc02:1011::1/64 | Ethernet28 | untagged | | -+-----------+-----------------+-----------------+----------------+-------------+ -| 3000 | | | | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -| 4000 | | PortChannel1001 | tagged | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -""" - - config_add_del_vlan_and_vlan_member_in_alias_mode_output="""\ +-----------+-----------------+-----------------+----------------+-------------+ | VLAN ID | IP Address | Ports | Port Tagging | Proxy ARP | @@ -272,27 +154,6 @@ +-----------+-----------------+-----------------+----------------+-------------+ """ -test_config_add_del_vlan_and_vlan_member_with_switchport_modes_and_change_mode_types_output = """\ -+-----------+-----------------+-----------------+----------------+-------------+ -| VLAN ID | IP Address | Ports | Port Tagging | Proxy ARP | -+===========+=================+=================+================+=============+ -| 1000 | 192.168.0.1/21 | Ethernet4 | untagged | disabled | -| | fc02:1000::1/64 | Ethernet8 | untagged | | -| | | Ethernet12 | untagged | | -| | | Ethernet16 | untagged | | -+-----------+-----------------+-----------------+----------------+-------------+ -| 1001 | | | | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -| 2000 | 192.168.0.10/21 | Ethernet24 | untagged | enabled | -| | fc02:1011::1/64 | Ethernet28 | untagged | | -+-----------+-----------------+-----------------+----------------+-------------+ -| 3000 | | | | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -| 4000 | | PortChannel1001 | tagged | disabled | -+-----------+-----------------+-----------------+----------------+-------------+ -""" - - class TestVlan(object): _old_run_bgp_command = None @@ -375,7 +236,7 @@ def test_config_vlan_add_vlan_with_invalid_vlanid(self): print(result.exit_code) print(result.output) assert result.exit_code != 0 - assert "Error: Invalid VLAN ID 4096 (2-4094)" in result.output + assert "Error: Invalid VLAN ID 4096 (1-4094)" in result.output def test_config_vlan_add_vlan_with_exist_vlanid(self): runner = CliRunner() @@ -391,7 +252,7 @@ def test_config_vlan_del_vlan_with_invalid_vlanid(self): print(result.exit_code) print(result.output) assert result.exit_code != 0 - assert "Error: Invalid VLAN ID 4096 (2-4094)" in result.output + assert "Error: Invalid VLAN ID 4096 (1-4094)" in result.output def test_config_vlan_del_vlan_with_nonexist_vlanid(self): runner = CliRunner() @@ -401,79 +262,13 @@ def test_config_vlan_del_vlan_with_nonexist_vlanid(self): assert result.exit_code != 0 assert "Error: Vlan1001 does not exist" in result.output - def test_config_vlan_add_vlan_with_multiple_vlanids(self, mock_restart_dhcp_relay_service): - runner = CliRunner() - result = runner.invoke(config.config.commands["vlan"].commands["add"], ["10,20,30,40", "--multiple"]) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - - def test_config_vlan_add_vlan_with_multiple_vlanids_with_range(self, mock_restart_dhcp_relay_service): - runner = CliRunner() - result = runner.invoke(config.config.commands["vlan"].commands["add"], ["10-20", "--multiple"]) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - - def test_config_vlan_add_vlan_with_multiple_vlanids_with_range_and_multiple_ids(self, mock_restart_dhcp_relay_service): - runner = CliRunner() - result = runner.invoke(config.config.commands["vlan"].commands["add"], ["10-15,20,25,30", "--multiple"]) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - - def test_config_vlan_add_vlan_with_wrong_range(self): - runner = CliRunner() - result = runner.invoke(config.config.commands["vlan"].commands["add"], ["15-10", "--multiple"]) - print(result.exit_code) - print(result.output) - assert result.exit_code != 0 - assert "15 is greater than 10. List cannot be generated" in result.output - - def test_config_vlan_add_vlan_range_with_default_vlan(self): - runner = CliRunner() - result = runner.invoke(config.config.commands["vlan"].commands["add"], ["1-10", "--multiple"]) - print(result.exit_code) - print(result.output) - assert result.exit_code != 0 - assert "Vlan1 is default vlan" in result.output - - def test_config_vlan_add_vlan_is_digit_fail(self): - runner = CliRunner() - vid = "test_fail_case" - result = runner.invoke(config.config.commands["vlan"].commands["add"], [vid]) - print(result.exit_code) - print(result.output) - assert result.exit_code != 0 - assert "{} is not integer".format(vid) in result.output - - def test_config_vlan_add_vlan_is_default_vlan(self): - runner = CliRunner() - default_vid = "1" - vlan = "Vlan{}".format(default_vid) - result = runner.invoke(config.config.commands["vlan"].commands["add"], [default_vid]) - print(result.exit_code) - print(result.output) - assert result.exit_code != 0 - assert "{} is default VLAN.".format(vlan) in result.output - - def test_config_vlan_del_vlan_does_not_exist(self): - runner = CliRunner() - vid = "3010" - vlan = "Vlan{}".format(vid) - result = runner.invoke(config.config.commands["vlan"].commands["del"], [vid]) - print(result.exit_code) - print(result.output) - assert result.exit_code != 0 - assert "{} does not exist".format(vlan) in result.output - def test_config_vlan_add_member_with_invalid_vlanid(self): runner = CliRunner() result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], ["4096", "Ethernet4"]) print(result.exit_code) print(result.output) assert result.exit_code != 0 - assert "Error: Invalid VLAN ID 4096 (2-4094)" in result.output + assert "Error: Invalid VLAN ID 4096 (1-4094)" in result.output def test_config_vlan_add_member_with_nonexist_vlanid(self): runner = CliRunner() @@ -501,13 +296,6 @@ def test_config_vlan_add_nonexist_port_member(self): def test_config_vlan_add_nonexist_portchannel_member(self): runner = CliRunner() - #switch port mode for PortChannel1011 to trunk mode - result = runner.invoke(config.config.commands["switchport"].commands["mode"],["trunk", "PortChannel1011"]) - print(result.exit_code) - print(result.output) - assert result.exit_code != 0 - assert "Error: PortChannel1011 does not exist" in result.output - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], \ ["1000", "PortChannel1011"]) print(result.exit_code) @@ -518,6 +306,7 @@ def test_config_vlan_add_nonexist_portchannel_member(self): def test_config_vlan_add_portchannel_member(self): runner = CliRunner() db = Db() + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], \ ["1000", "PortChannel1001", "--untagged"], obj=db) print(result.exit_code) @@ -540,7 +329,7 @@ def test_config_vlan_add_rif_portchannel_member(self): print(result.exit_code) print(result.output) assert result.exit_code != 0 - assert "Error: PortChannel0001 is in routed mode!\nUse switchport mode command to change port mode" in result.output + assert "Error: PortChannel0001 is a router interface!" in result.output def test_config_vlan_with_vxlanmap_del_vlan(self, mock_restart_dhcp_relay_service): runner = CliRunner() @@ -657,22 +446,6 @@ def test_config_add_del_vlan_and_vlan_member(self, mock_restart_dhcp_relay_servi print(result.output) assert result.exit_code == 0 - # add Ethernet20 to vlan 1001 but Ethernet20 is in routed mode will give error - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], - ["1001", "Ethernet20", "--untagged"], obj=db) - print(result.exit_code) - print(result.output) - traceback.print_tb(result.exc_info[2]) - assert result.exit_code != 0 - assert "Ethernet20 is in routed mode!\nUse switchport mode command to change port mode" in result.output - - # configure Ethernet20 from routed to access mode - result = runner.invoke(config.config.commands["switchport"].commands["mode"],["access", "Ethernet20"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - assert "Ethernet20 switched from routed to access mode" in result.output - # add Ethernet20 to vlan 1001 result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], ["1001", "Ethernet20", "--untagged"], obj=db) @@ -718,22 +491,6 @@ def test_config_add_del_vlan_and_vlan_member_in_alias_mode(self, mock_restart_dh print(result.output) assert result.exit_code == 0 - # add etp6 to vlan 1001 but etp6 is in routed mode will give error - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], - ["1001", "etp6", "--untagged"], obj=db) - print(result.exit_code) - print(result.output) - traceback.print_tb(result.exc_info[2]) - assert result.exit_code != 0 - assert "Ethernet20 is in routed mode!\nUse switchport mode command to change port mode" in result.output - - # configure etp6 from routed to access mode - result = runner.invoke(config.config.commands["switchport"].commands["mode"],["access", "etp6"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - assert "Ethernet20 switched from routed to access mode" in result.output - # add etp6 to vlan 1001 result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], ["1001", "etp6", "--untagged"], obj=db) @@ -770,380 +527,6 @@ def test_config_add_del_vlan_and_vlan_member_in_alias_mode(self, mock_restart_dh os.environ['SONIC_CLI_IFACE_MODE'] = "default" - def test_config_add_del_multiple_vlan_and_vlan_member(self,mock_restart_dhcp_relay_service): - runner = CliRunner() - db = Db() - - # add vlan 1001 - result = runner.invoke(config.config.commands["vlan"].commands["add"], ["1001,1002,1003","--multiple"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - - # add Ethernet20 to vlan1001, vlan1002, vlan1003 multiple flag but Ethernet20 is in routed mode will give error - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], - ["1001,1002,1003", "Ethernet20", "--multiple"], obj=db) - print(result.exit_code) - print(result.output) - traceback.print_tb(result.exc_info[2]) - assert result.exit_code != 0 - assert "Ethernet20 is in routed mode!\nUse switchport mode command to change port mode" in result.output - - # configure Ethernet20 from routed to access mode - result = runner.invoke(config.config.commands["switchport"].commands["mode"],["trunk", "Ethernet20"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - assert "Ethernet20 switched from routed to trunk mode" in result.output - - # add Ethernet20 to vlan 1001 - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], - ["1001,1002,1003", "Ethernet20", "--multiple"], obj=db) - print(result.exit_code) - print(result.output) - traceback.print_tb(result.exc_info[2]) - assert result.exit_code == 0 - - # show output - result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) - print(result.output) - assert result.output == test_config_add_del_multiple_vlan_and_vlan_member_output - - # remove vlan member - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["del"], - ["1001-1003", "Ethernet20", "--multiple"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - - # add del 1001 - result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1001-1003","--multiple"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - - # show output - result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - assert result.output == show_vlan_brief_output - - def test_config_add_del_add_vlans_and_add_vlans_member_except_vlan(self, mock_restart_dhcp_relay_service): - runner = CliRunner() - db = Db() - - # add vlan 1001 - result = runner.invoke(config.config.commands["vlan"].commands["add"], ["1001,1002","--multiple"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - - # add Ethernet20 to vlan1001, vlan1002, vlan1003 multiple flag but Ethernet20 is in routed mode will give error - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], - ["1000,4000", "Ethernet20", "--multiple", "--except_flag"], obj=db) - print(result.exit_code) - print(result.output) - traceback.print_tb(result.exc_info[2]) - assert result.exit_code != 0 - assert "Ethernet20 is in routed mode!\nUse switchport mode command to change port mode" in result.output - - # configure Ethernet20 from routed to access mode - result = runner.invoke(config.config.commands["switchport"].commands["mode"],["trunk", "Ethernet20"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - assert "Ethernet20 switched from routed to trunk mode" in result.output - - # add Ethernet20 to vlan 1001 - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], - ["1000,4000", "Ethernet20", "--multiple", "--except_flag"], obj=db) - print(result.exit_code) - print(result.output) - traceback.print_tb(result.exc_info[2]) - assert result.exit_code == 0 - - # show output - result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) - print(result.output) - assert result.output == test_config_add_del_add_vlans_and_add_vlans_member_except_vlan_output - - # remove vlan member except some - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["del"], - ["1001,1002", "Ethernet20", "--multiple", "--except_flag"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - - # show output - result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - assert result.output == test_config_add_del_add_vlans_and_add_vlans_member_except_vlan__after_del_member_output - - # remove vlan member - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["del"], - ["1001,1002", "Ethernet20", "--multiple"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - - # add del 1001 - result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1001-1002","--multiple"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - - # show output - result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - assert result.output == show_vlan_brief_output - - - def test_config_add_del_add_vlans_and_add_all_vlan_member(self, mock_restart_dhcp_relay_service): - runner = CliRunner() - db = Db() - - # add vlan 1001 - result = runner.invoke(config.config.commands["vlan"].commands["add"], ["1001,1002,1003","--multiple"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - - # add Ethernet20 to vlan1001, vlan1002, vlan1003 multiple flag but Ethernet20 is in routed mode will give error - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], - ["all", "Ethernet20"], obj=db) - print(result.exit_code) - print(result.output) - traceback.print_tb(result.exc_info[2]) - assert result.exit_code != 0 - assert "Ethernet20 is in routed mode!\nUse switchport mode command to change port mode" in result.output - - # configure Ethernet20 from routed to access mode - result = runner.invoke(config.config.commands["switchport"].commands["mode"],["trunk", "Ethernet20"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - assert "Ethernet20 switched from routed to trunk mode" in result.output - - # add Ethernet20 to vlan 1001 - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], - ["all", "Ethernet20"], obj=db) - print(result.exit_code) - print(result.output) - traceback.print_tb(result.exc_info[2]) - assert result.exit_code == 0 - - # show output - result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) - print(result.output) - assert result.output == test_config_add_del_add_vlans_and_add_all_vlan_member_output - - # remove vlan member - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["del"], - ["all", "Ethernet20"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - - # add del 1001 - result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1001-1003","--multiple"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - - # show output - result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - assert result.output == show_vlan_brief_output - - def test_config_add_del_vlan_and_vlan_member_with_switchport_modes(self, 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 - - # add Ethernet20 to vlan 1001 but Ethernet20 is in routed mode will give error - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], - ["1001", "Ethernet20", "--untagged"], obj=db) - print(result.exit_code) - print(result.output) - traceback.print_tb(result.exc_info[2]) - assert result.exit_code != 0 - assert "Ethernet20 is in routed mode!\nUse switchport mode command to change port mode" in result.output - - - # configure Ethernet20 from routed to access mode - result = runner.invoke(config.config.commands["switchport"].commands["mode"],["access", "Ethernet20"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - assert "Ethernet20 switched from routed to access mode" in result.output - - # add Ethernet20 to vlan 1001 - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], - ["1001", "Ethernet20", "--untagged"], obj=db) - print(result.exit_code) - print(result.output) - traceback.print_tb(result.exc_info[2]) - assert result.exit_code == 0 - - # add Ethernet20 to vlan 1001 as tagged member - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], - ["1000", "Ethernet20"], obj=db) - print(result.exit_code) - print(result.output) - traceback.print_tb(result.exc_info[2]) - assert result.exit_code != 0 - assert "Ethernet20 is in access mode! Tagged Members cannot be added" in result.output - - # configure Ethernet20 from access to trunk mode - result = runner.invoke(config.config.commands["switchport"].commands["mode"],["trunk", "Ethernet20"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - assert "Ethernet20 switched from access to trunk mode" in result.output - - # add Ethernet20 to vlan 1001 as tagged member - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], - ["1000", "Ethernet20"], obj=db) - print(result.exit_code) - print(result.output) - traceback.print_tb(result.exc_info[2]) - assert result.exit_code == 0 - - # show output - result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) - print(result.output) - assert result.output == test_config_add_del_vlan_and_vlan_member_with_switchport_modes_output - - # configure Ethernet20 from trunk to routed mode - result = runner.invoke(config.config.commands["switchport"].commands["mode"],["routed", "Ethernet20"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code != 0 - assert "Ethernet20 has tagged member(s). \nRemove them to change mode to routed" in result.output - - # remove vlan member - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["del"], - ["1000", "Ethernet20"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - - # configure Ethernet20 from trunk to routed mode - result = runner.invoke(config.config.commands["switchport"].commands["mode"],["routed", "Ethernet20"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code != 0 - assert "Ethernet20 has untagged member. \nRemove it to change mode to routed" in result.output - - # remove vlan member - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["del"], - ["1001", "Ethernet20"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - - # configure Ethernet20 from trunk to routed mode - result = runner.invoke(config.config.commands["switchport"].commands["mode"],["routed", "Ethernet20"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - assert "Ethernet20 switched from trunk to routed mode" in result.output - - # add del 1001 - result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1001"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - - # show output - result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - assert result.output == show_vlan_brief_output - - - def test_config_add_del_vlan_and_vlan_member_with_switchport_modes_and_change_mode_types(self, 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 - - - # configure Ethernet64 to routed mode - result = runner.invoke(config.config.commands["switchport"].commands["mode"],["routed", "Ethernet64"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - - # add Ethernet64 to vlan 1001 but Ethernet64 is in routed mode will give error - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], - ["1001", "Ethernet64"], obj=db) - print(result.exit_code) - print(result.output) - traceback.print_tb(result.exc_info[2]) - assert result.exit_code != 0 - assert "Ethernet64 is in routed mode!\nUse switchport mode command to change port mode" in result.output - - # configure Ethernet64 from routed to trunk mode - result = runner.invoke(config.config.commands["switchport"].commands["mode"],["trunk", "Ethernet64"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - assert "Ethernet64 switched from routed to trunk mode" in result.output - - # add Ethernet64 to vlan 1001 - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["add"], - ["1001", "Ethernet64"], obj=db) - print(result.exit_code) - print(result.output) - traceback.print_tb(result.exc_info[2]) - assert result.exit_code == 0 - - # configure Ethernet64 from routed to access mode - result = runner.invoke(config.config.commands["switchport"].commands["mode"],["access", "Ethernet64"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code != 0 - assert "Ethernet64 is in trunk mode and have tagged member(s).\nRemove tagged member(s) from Ethernet64 to switch to access mode" in result.output - - # remove vlan member - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["del"], - ["1001", "Ethernet64"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - - # configure Ethernet64 from routed to access mode - result = runner.invoke(config.config.commands["switchport"].commands["mode"],["access", "Ethernet64"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - assert "Ethernet64 switched from trunk to access mode" in result.output - - # show output - result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 - assert result.output == test_config_add_del_vlan_and_vlan_member_with_switchport_modes_and_change_mode_types_output - def test_config_vlan_proxy_arp_with_nonexist_vlan_intf_table(self): modes = ["enabled", "disabled"] runner = CliRunner() @@ -1232,8 +615,8 @@ def test_config_set_router_port_on_member_interface(self): result = runner.invoke(config.config.commands["interface"].commands["ip"].commands["add"], ["Ethernet4", "10.10.10.1/24"], obj=obj) print(result.exit_code, result.output) - assert result.exit_code != 0 - assert 'Interface Ethernet4 is not in routed mode!' in result.output + assert result.exit_code == 0 + assert 'Interface Ethernet4 is a member of vlan' in result.output def test_config_vlan_add_member_of_portchannel(self): runner = CliRunner() diff --git a/utilities_common/cli.py b/utilities_common/cli.py index 54e867c610..9d3cdae710 100644 --- a/utilities_common/cli.py +++ b/utilities_common/cli.py @@ -20,7 +20,6 @@ pass_db = click.make_pass_decorator(Db, ensure=True) - class AbbreviationGroup(click.Group): """This subclass of click.Group supports abbreviated subgroup/subcommand names """ @@ -77,11 +76,9 @@ def read_config(self, filename): except configparser.NoSectionError: pass - # Global Config object _config = None - class AliasedGroup(click.Group): """This subclass of click.Group supports abbreviations and looking up aliases in a config file with a bit of magic. @@ -120,7 +117,6 @@ def get_command(self, ctx, cmd_name): return click.Group.get_command(self, ctx, matches[0]) ctx.fail('Too many matches: %s' % ', '.join(sorted(matches))) - class InterfaceAliasConverter(object): """Class which handles conversion between interface name and alias""" @@ -135,6 +131,7 @@ def __init__(self, db=None): self.port_dict = self.config_db.get_table('PORT') self.alias_max_length = 0 + if not self.port_dict: self.port_dict = {} @@ -142,7 +139,7 @@ def __init__(self, db=None): try: if self.alias_max_length < len( self.port_dict[port_name]['alias']): - self.alias_max_length = len( + self.alias_max_length = len( self.port_dict[port_name]['alias']) except KeyError: break @@ -154,8 +151,7 @@ def name_to_alias(self, interface_name): vlan_id = '' sub_intf_sep_idx = -1 if interface_name is not None: - sub_intf_sep_idx = interface_name.find( - VLAN_SUB_INTERFACE_SEPARATOR) + sub_intf_sep_idx = interface_name.find(VLAN_SUB_INTERFACE_SEPARATOR) if sub_intf_sep_idx != -1: vlan_id = interface_name[sub_intf_sep_idx + 1:] # interface_name holds the parent port name @@ -164,7 +160,7 @@ def name_to_alias(self, interface_name): for port_name in self.port_dict: if interface_name == port_name: return self.port_dict[port_name]['alias'] if sub_intf_sep_idx == -1 \ - else self.port_dict[port_name]['alias'] + VLAN_SUB_INTERFACE_SEPARATOR + vlan_id + else self.port_dict[port_name]['alias'] + VLAN_SUB_INTERFACE_SEPARATOR + vlan_id # interface_name not in port_dict. Just return interface_name return interface_name if sub_intf_sep_idx == -1 else interface_name + VLAN_SUB_INTERFACE_SEPARATOR + vlan_id @@ -176,8 +172,7 @@ def alias_to_name(self, interface_alias): vlan_id = '' sub_intf_sep_idx = -1 if interface_alias is not None: - sub_intf_sep_idx = interface_alias.find( - VLAN_SUB_INTERFACE_SEPARATOR) + sub_intf_sep_idx = interface_alias.find(VLAN_SUB_INTERFACE_SEPARATOR) if sub_intf_sep_idx != -1: vlan_id = interface_alias[sub_intf_sep_idx + 1:] # interface_alias holds the parent port alias @@ -190,11 +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 - # Lazy global class instance for SONiC interface name to alias conversion -iface_alias_converter = lazy_object_proxy.Proxy( - lambda: InterfaceAliasConverter()) - +iface_alias_converter = lazy_object_proxy.Proxy(lambda: InterfaceAliasConverter()) def get_interface_naming_mode(): mode = os.getenv('SONIC_CLI_IFACE_MODE') @@ -202,7 +194,6 @@ def get_interface_naming_mode(): mode = "default" return mode - def is_ipaddress(val): """ Validate if an entry is a valid IP """ import netaddr @@ -214,7 +205,6 @@ def is_ipaddress(val): return False return True - def ipaddress_type(val): """ Return the IP address type """ if not val: @@ -227,7 +217,6 @@ def ipaddress_type(val): return ip_version.version - def is_ip_prefix_in_key(key): ''' Function to check if IP address is present in the key. If it @@ -236,7 +225,6 @@ def is_ip_prefix_in_key(key): ''' return (isinstance(key, tuple)) - def is_valid_port(config_db, port): """Check if port is in PORT table""" @@ -246,7 +234,6 @@ def is_valid_port(config_db, port): return False - def is_valid_portchannel(config_db, port): """Check if port is in PORT_CHANNEL table""" @@ -256,7 +243,6 @@ def is_valid_portchannel(config_db, port): return False - def is_vlanid_in_range(vid): """Check if vlan id is valid or not""" @@ -265,7 +251,6 @@ def is_vlanid_in_range(vid): return False - def check_if_vlanid_exist(config_db, vlan, table_name='VLAN'): """Check if vlan id exits in the config db or ot""" @@ -274,7 +259,6 @@ def check_if_vlanid_exist(config_db, vlan, table_name='VLAN'): return False - def is_port_vlan_member(config_db, port, vlan): """Check if port is a member of vlan""" @@ -285,134 +269,26 @@ def is_port_vlan_member(config_db, port, vlan): return False - -def vlan_range_list(ctx, vid_range: str) -> list: - - vid1, vid2 = map(int, vid_range.split("-")) - - if vid1 == 1 or vid2 == 1: - ctx.fail("Vlan1 is default vlan") - - if vid1 >= vid2: - ctx.fail("{} is greater than {}. List cannot be generated".format(vid1,vid2)) - - if is_vlanid_in_range(vid1) and is_vlanid_in_range(vid2): - return list(range(vid1, vid2+1)) - else: - ctx.fail("Invalid VLAN ID must be in (2-4094)") - - -def multiple_vlan_parser(ctx, s_input: str) -> list: - - vlan_list = [] - - vlan_map = map(str, s_input.replace(" ", "").split(",")) - for vlan in vlan_map: - if "-" in vlan: - vlan_list += vlan_range_list(ctx, vlan) - elif vlan.isdigit() and int(vlan) not in vlan_list: - vlan_list.append(int(vlan)) - elif not vlan.isdigit(): - ctx.fail("{} is not integer".format(vlan)) - - vlan_list.sort() - return vlan_list - - -def get_existing_vlan_id(db) -> list: - existing_vlans = [] - vlan_data = db.cfgdb.get_table('VLAN') - - for i in vlan_data.keys(): - existing_vlans.append(int(i.strip("Vlan"))) - - return sorted(existing_vlans) - -def get_existing_vlan_id_on_interface(db,port) -> list: - intf_vlans = [] - vlan_member_data = db.cfgdb.get_table('VLAN_MEMBER') - - for (k,v) in vlan_member_data.keys(): - if v == port: - intf_vlans.append(int(k.strip("Vlan"))) - - return sorted(intf_vlans) - - -def vlan_member_input_parser(ctx, command_mode, db, except_flag, multiple, vid, port) -> list: - vid_list = [] - if vid == "all": - if command_mode == "add": - return get_existing_vlan_id(db) # config vlan member add - if command_mode == "del": - return get_existing_vlan_id_on_interface(db,port) # config vlan member del - - if multiple: - vid_list = multiple_vlan_parser(ctx, vid) - - if except_flag: - if command_mode == "add": - comp_list = get_existing_vlan_id(db) # config vlan member add - - elif command_mode == "del": - comp_list = get_existing_vlan_id_on_interface(db,port) # config vlan member del - - if multiple: - for i in vid_list: - if i in comp_list: - comp_list.remove(i) - - else: - if not vid.isdigit(): - ctx.fail("Vlan is not integer.") - vid = int(vid) - if vid in comp_list: - comp_list.remove(vid) - vid_list = comp_list - - elif not multiple: - # if entered vlan is not a integer - if not vid.isdigit(): - ctx.fail("Vlan is not integer.") - vid_list.append(int(vid)) - - # sorting the vid_list - vid_list.sort() - return vid_list - -def interface_is_tagged_member(db, interface_name): - """ Check if interface has tagged members i.e. is in trunk mode""" - vlan_member_table = db.get_table('VLAN_MEMBER') - - for key, val in vlan_member_table.items(): - if(key[1] == interface_name): - if (val['tagging_mode'] == 'tagged'): - return True - return False - def interface_is_in_vlan(vlan_member_table, interface_name): """ Check if an interface is in a vlan """ - for _, intf in vlan_member_table: + for _,intf in vlan_member_table: if intf == interface_name: return True return False - def is_valid_vlan_interface(config_db, interface): """ Check an interface is a valid VLAN interface """ return interface in config_db.get_table("VLAN_INTERFACE") - def interface_is_in_portchannel(portchannel_member_table, interface_name): """ Check if an interface is part of portchannel """ - for _, intf in portchannel_member_table: + for _,intf in portchannel_member_table: if intf == interface_name: return True return False - def is_port_router_interface(config_db, port): """Check if port is a router interface""" @@ -423,7 +299,6 @@ def is_port_router_interface(config_db, port): return False - def is_pc_router_interface(config_db, pc): """Check if portchannel is a router interface""" @@ -434,65 +309,15 @@ def is_pc_router_interface(config_db, pc): return False -def get_vlan_id(vlan): - vlan_prefix, vid = vlan.split('Vlan') - return vid - -def get_interface_name_for_display(db ,interface): - interface_naming_mode = get_interface_naming_mode() - iface_alias_converter = InterfaceAliasConverter(db) - if interface_naming_mode == "alias" and interface: - return iface_alias_converter.name_to_alias(interface) - return interface - -def get_interface_untagged_vlan_members(db,interface): - untagged_vlans = [] - vlan_member = db.cfgdb.get_table('VLAN_MEMBER') - - for member in natsorted(list(vlan_member.keys())): - interface_vlan, interface_name = member - - if interface == interface_name and vlan_member[member]['tagging_mode'] == 'untagged': - untagged_vlans.append(get_vlan_id(interface_vlan)) - - return "\n".join(untagged_vlans) - -def get_interface_tagged_vlan_members(db,interface): - tagged_vlans = [] - formatted_tagged_vlans = [] - vlan_member = db.cfgdb.get_table('VLAN_MEMBER') - - for member in natsorted(list(vlan_member.keys())): - interface_vlan, interface_name = member - - if interface == interface_name and vlan_member[member]['tagging_mode'] == 'tagged': - tagged_vlans.append(get_vlan_id(interface_vlan)) - - for i in range(len(tagged_vlans)//5+1): - formatted_tagged_vlans.append(" ,".join([str(x) for x in tagged_vlans[i*5:(i+1)*5]])) - - return "\n".join(formatted_tagged_vlans) - -def get_interface_switchport_mode(db, interface): - port = db.cfgdb.get_entry('PORT',interface) - portchannel = db.cfgdb.get_entry('PORTCHANNEL',interface) - switchport_mode = 'routed' - if "mode" in port: - switchport_mode = port['mode'] - elif "mode" in portchannel: - switchport_mode = portchannel['mode'] - return switchport_mode - def is_port_mirror_dst_port(config_db, port): """Check if port is already configured as mirror destination port """ mirror_table = config_db.get_table('MIRROR_SESSION') - for _, v in mirror_table.items(): + for _,v in mirror_table.items(): if 'dst_port' in v and v['dst_port'] == port: return True return False - def vni_id_is_valid(vni): """Check if the vni id is in acceptable range (between 1 and 2^24) """ @@ -502,7 +327,6 @@ def vni_id_is_valid(vni): return True - def is_vni_vrf_mapped(db, vni): """Check if the vni is mapped to vrf """ @@ -511,22 +335,20 @@ def is_vni_vrf_mapped(db, vni): vrf_table = db.cfgdb.get_table('VRF') vrf_keys = vrf_table.keys() if vrf_keys is not None: - for vrf_key in vrf_keys: - if ('vni' in vrf_table[vrf_key] and vrf_table[vrf_key]['vni'] == vni): - found = 1 - break + for vrf_key in vrf_keys: + if ('vni' in vrf_table[vrf_key] and vrf_table[vrf_key]['vni'] == vni): + found = 1 + break if (found == 1): - print("VNI {} mapped to Vrf {}, Please remove VRF VNI mapping".format( - vni, vrf_key)) + print("VNI {} mapped to Vrf {}, Please remove VRF VNI mapping".format(vni, vrf_key)) return False return True - def interface_has_mirror_config(mirror_table, interface_name): """Check if port is already configured with mirror config """ - for _, v in mirror_table.items(): + for _,v in mirror_table.items(): if 'src_port' in v and v['src_port'] == interface_name: return True if 'dst_port' in v and v['dst_port'] == interface_name: @@ -534,7 +356,6 @@ def interface_has_mirror_config(mirror_table, interface_name): return False - def print_output_in_alias_mode(output, index): """Convert and print all instances of SONiC interface name to vendor-sepecific interface aliases. @@ -560,12 +381,12 @@ def print_output_in_alias_mode(output, index): interface_name = word[index] interface_name = interface_name.replace(':', '') for port_name in natsorted(list(iface_alias_converter.port_dict.keys())): - if interface_name == port_name: - alias_name = iface_alias_converter.port_dict[port_name]['alias'] + if interface_name == port_name: + alias_name = iface_alias_converter.port_dict[port_name]['alias'] if alias_name: if len(alias_name) < iface_alias_converter.alias_max_length: alias_name = alias_name.rjust( - iface_alias_converter.alias_max_length) + iface_alias_converter.alias_max_length) output = output.replace(interface_name, alias_name, 1) click.echo(output.rstrip('\n')) @@ -595,7 +416,7 @@ def run_command_in_alias_mode(command, shell=False): index = 0 if output.startswith("IFACE"): output = output.replace("IFACE", "IFACE".rjust( - iface_alias_converter.alias_max_length)) + iface_alias_converter.alias_max_length)) print_output_in_alias_mode(output, index) elif command_str.startswith("intfstat"): @@ -603,7 +424,7 @@ def run_command_in_alias_mode(command, shell=False): index = 0 if output.startswith("IFACE"): output = output.replace("IFACE", "IFACE".rjust( - iface_alias_converter.alias_max_length)) + iface_alias_converter.alias_max_length)) print_output_in_alias_mode(output, index) elif command_str == "pfcstat": @@ -611,11 +432,11 @@ def run_command_in_alias_mode(command, shell=False): index = 0 if output.startswith("Port Tx"): output = output.replace("Port Tx", "Port Tx".rjust( - iface_alias_converter.alias_max_length)) + iface_alias_converter.alias_max_length)) elif output.startswith("Port Rx"): output = output.replace("Port Rx", "Port Rx".rjust( - iface_alias_converter.alias_max_length)) + iface_alias_converter.alias_max_length)) print_output_in_alias_mode(output, index) elif (command_str.startswith("sudo sfputil show eeprom")): @@ -630,7 +451,7 @@ def run_command_in_alias_mode(command, shell=False): index = 0 if output.startswith("Port"): output = output.replace("Port", "Port".rjust( - iface_alias_converter.alias_max_length)) + iface_alias_converter.alias_max_length)) print_output_in_alias_mode(output, index) elif command_str == "sudo lldpshow": @@ -638,7 +459,7 @@ def run_command_in_alias_mode(command, shell=False): index = 0 if output.startswith("LocalPort"): output = output.replace("LocalPort", "LocalPort".rjust( - iface_alias_converter.alias_max_length)) + iface_alias_converter.alias_max_length)) print_output_in_alias_mode(output, index) elif command_str.startswith("queuestat"): @@ -646,7 +467,7 @@ def run_command_in_alias_mode(command, shell=False): index = 0 if output.startswith("Port"): output = output.replace("Port", "Port".rjust( - iface_alias_converter.alias_max_length)) + iface_alias_converter.alias_max_length)) print_output_in_alias_mode(output, index) elif command_str == "fdbshow": @@ -655,7 +476,7 @@ def run_command_in_alias_mode(command, shell=False): if output.startswith("No."): output = " " + output output = re.sub( - 'Type', ' Type', output) + 'Type', ' Type', output) elif output[0].isdigit(): output = " " + output print_output_in_alias_mode(output, index) @@ -670,8 +491,8 @@ def run_command_in_alias_mode(command, shell=False): """Show ip(v6) int""" index = 0 if output.startswith("Interface"): - output = output.replace("Interface", "Interface".rjust( - iface_alias_converter.alias_max_length)) + output = output.replace("Interface", "Interface".rjust( + iface_alias_converter.alias_max_length)) print_output_in_alias_mode(output, index) else: @@ -684,9 +505,8 @@ def run_command_in_alias_mode(command, shell=False): converted_output = raw_output for port_name in iface_alias_converter.port_dict: converted_output = re.sub(r"(^|\s){}($|,{{0,1}}\s)".format(port_name), - r"\1{}\2".format( - iface_alias_converter.name_to_alias(port_name)), - converted_output) + r"\1{}\2".format(iface_alias_converter.name_to_alias(port_name)), + converted_output) click.echo(converted_output.rstrip('\n')) rc = process.poll() @@ -721,7 +541,7 @@ def run_command(command, display_cmd=False, ignore_error=False, return_cmd=False if get_interface_naming_mode() == "alias" and not command_str.startswith("intfutil") and not re.search("show ip|ipv6 route", command_str): run_command_in_alias_mode(command, shell=shell) sys.exit(0) - + proc = subprocess.Popen(command, shell=shell, text=True, stdout=subprocess.PIPE) if return_cmd: @@ -773,21 +593,20 @@ def interface_is_untagged_member(db, interface_name): """ Check if interface is already untagged member""" vlan_member_table = db.get_table('VLAN_MEMBER') - for key, val in vlan_member_table.items(): + for key,val in vlan_member_table.items(): if(key[1] == interface_name): if (val['tagging_mode'] == 'untagged'): return True return False - def is_interface_in_config_db(config_db, interface_name): """ Check if an interface is in CONFIG DB """ 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 + not interface_name == 'null'): + return False return True @@ -804,11 +623,9 @@ def __init__(self, *args, **kwargs): def get_help_record(self, ctx): """Return help string with mutually_exclusive list added.""" - help_record = list( - super(MutuallyExclusiveOption, self).get_help_record(ctx)) + help_record = list(super(MutuallyExclusiveOption, self).get_help_record(ctx)) if self.mutually_exclusive: - mutually_exclusive_str = 'NOTE: this argument is mutually exclusive with arguments: %s' % ', '.join( - self.mutually_exclusive) + mutually_exclusive_str = 'NOTE: this argument is mutually exclusive with arguments: %s' % ', '.join(self.mutually_exclusive) if help_record[-1]: help_record[-1] += ' ' + mutually_exclusive_str else: @@ -820,9 +637,8 @@ def handle_parse_result(self, ctx, opts, args): for opt_name in self.mutually_exclusive: if opt_name in opts and opts[opt_name] is not None: raise click.UsageError( - "Illegal usage: %s is mutually exclusive with arguments %s" % ( - self.name, ', '.join(self.mutually_exclusive)) - ) + "Illegal usage: %s is mutually exclusive with arguments %s" % (self.name, ', '.join(self.mutually_exclusive)) + ) return super(MutuallyExclusiveOption, self).handle_parse_result(ctx, opts, args) @@ -871,10 +687,8 @@ def __init__(self, app_name=None, tag=None): 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.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) @@ -883,8 +697,7 @@ def __init__(self, app_name=None, tag=None): finally: os.umask(prev_umask) - self.cache_directory = os.path.join( - self.cache_directory_app, self.cache_directory_suffix) + 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): From 0e43e4dc441dd6bb545de2c767da05fa448fbaa7 Mon Sep 17 00:00:00 2001 From: Rajkumar-Marvell <54936542+rajkumar38@users.noreply.github.com> Date: Thu, 12 Oct 2023 02:42:14 +0530 Subject: [PATCH 28/75] [sflow] Added egress Sflow support. (#2790) ### What I did Added egress Sflow support. HLD : https://github.com/sonic-net/SONiC/pull/1268 #### How I did it New commands and migrator scripts are updated as per HLD. #### How to verify it Run UT and validate the commands. #### Previous command output (if the output of a command-line utility has changed) ``` show sflow sFlow Global Information: sFlow Admin State: up sFlow Polling Interval: 0 sFlow AgentID: default 2 Collectors configured: Name: prod IP addr: fe80::6e82:6aff:fe1e:cd8e UDP port: 6343 VRF: mgmt Name: ser5 IP addr: 172.21.35.15 UDP port: 6343 VRF: default show sflow interface +-------------+---------------+-----------------+ | Interface | Admin State | Sampling Rate | +=============+===============+=================+ | Ethernet0 | up | 2500 | +-------------+---------------+-----------------+ | Ethernet4 | up | 1000 | +-------------+---------------+-----------------+ | Ethernet112 | up | 1000 | +-------------+---------------+-----------------+ | Ethernet116 | up | 5000 | +-------------+---------------+-----------------+ ```` #### New command output (if the output of a command-line utility has changed) ``` show sflow sFlow Global Information: sFlow Admin State: up sFlow Sample Direction: both sFlow Polling Interval: 0 sFlow AgentID: default 2 Collectors configured: Name: prod IP addr: fe80::6e82:6aff:fe1e:cd8e UDP port: 6343 VRF: mgmt Name: ser5 IP addr: 172.21.35.15 UDP port: 6343 VRF: default show sflow interface +-------------+---------------+-----------------+----------------------+ | Interface | Admin State | Sampling Rate | Sampling Direction | +=============+===============+=================+======================+ | Ethernet0 | up | 2500 | both | +-------------+---------------+-----------------+----------------------+ | Ethernet4 | up | 1000 | tx | +-------------+---------------+-----------------+----------------------+ | Ethernet112 | up | 1000 | both | +-------------+---------------+-----------------+----------------------+ | Ethernet116 | up | 5000 | rx | +-------------+---------------+-----------------+----------------------+ ``` --- config/main.py | 69 +++++++++++++ doc/Command-Reference.md | 60 +++++++++--- show/sflow.py | 7 +- tests/mock_tables/appl_db.json | 12 ++- tests/mock_tables/config_db.json | 1 + tests/sflow_test.py | 161 ++++++++++++++++++++++++++++--- 6 files changed, 279 insertions(+), 31 deletions(-) diff --git a/config/main.py b/config/main.py index 1d2c33605f..f336fb5818 100644 --- a/config/main.py +++ b/config/main.py @@ -6662,6 +6662,41 @@ def polling_int(ctx, interval): except ValueError as e: ctx.fail("Invalid ConfigDB. Error: {}".format(e)) +def is_port_egress_sflow_supported(): + state_db = SonicV2Connector(use_unix_socket_path=True) + state_db.connect(state_db.STATE_DB, False) + entry_name="SWITCH_CAPABILITY|switch" + supported = state_db.get(state_db.STATE_DB, entry_name,"PORT_EGRESS_SAMPLE_CAPABLE") + return supported + +# +# 'sflow' command ('config sflow sample-direction ...') +# +@sflow.command('sample-direction') +@click.argument('direction', metavar='', required=True, type=str) +@click.pass_context +def global_sample_direction(ctx, direction): + """Set sampling direction """ + if ADHOC_VALIDATION: + if direction: + if direction not in ['rx', 'tx', 'both']: + ctx.fail("Error: Direction {} is invalid".format(direction)) + + if ((direction == 'tx' or direction == 'both') and (is_port_egress_sflow_supported() == 'false')): + ctx.fail("Sample direction {} is not supported on this platform".format(direction)) + + config_db = ValidatedConfigDBConnector(ctx.obj['db']) + sflow_tbl = config_db.get_table('SFLOW') + + if not sflow_tbl: + sflow_tbl = {'global': {'admin_state': 'down'}} + + sflow_tbl['global']['sample_direction'] = direction + try: + config_db.mod_entry('SFLOW', 'global', sflow_tbl['global']) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) + def is_valid_sample_rate(rate): return rate.isdigit() and int(rate) in range(256, 8388608 + 1) @@ -6771,6 +6806,40 @@ def sample_rate(ctx, ifname, rate): except ValueError as e: ctx.fail("Invalid ConfigDB. Error: {}".format(e)) +# +# 'sflow' command ('config sflow interface sample-direction ...') +# +@interface.command('sample-direction') +@click.argument('ifname', metavar='', required=True, type=str) +@click.argument('direction', metavar='', required=True, type=str) +@click.pass_context +def interface_sample_direction(ctx, ifname, direction): + config_db = ValidatedConfigDBConnector(ctx.obj['db']) + if ADHOC_VALIDATION: + if not interface_name_is_valid(config_db, ifname) and ifname != 'all': + click.echo('Invalid interface name') + return + if direction: + if direction not in ['rx', 'tx', 'both']: + ctx.fail("Error: Direction {} is invalid".format(direction)) + + if (direction == 'tx' or direction == 'both') and (is_port_egress_sflow_supported() == 'false'): + ctx.fail("Sample direction {} is not supported on this platform".format(direction)) + + sess_dict = config_db.get_table('SFLOW_SESSION') + + if sess_dict and ifname in sess_dict.keys(): + sess_dict[ifname]['sample_direction'] = direction + try: + config_db.mod_entry('SFLOW_SESSION', ifname, sess_dict[ifname]) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) + else: + try: + config_db.mod_entry('SFLOW_SESSION', ifname, {'sample_direction': direction}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) + # # 'sflow collector' group diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 019499b0c9..35e221ddc8 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -8988,6 +8988,7 @@ This command displays the global sFlow configuration that includes the admin sta admin@sonic:~# show sflow sFlow Global Information: sFlow Admin State: up + sFlow Sample Direction: both sFlow Polling Interval: default sFlow AgentID: lo @@ -9011,24 +9012,23 @@ This command displays the per-interface sflow admin status and the sampling rate admin@sonic:~# show sflow interface sFlow interface configurations - +-------------+---------------+-----------------+ - | Interface | Admin State | Sampling Rate | - +=============+===============+=================+ - | Ethernet0 | up | 4000 | - +-------------+---------------+-----------------+ - | Ethernet1 | up | 4000 | - +-------------+---------------+-----------------+ + +-------------+---------------+-----------------+----------------------+ + | Interface | Admin State | Sampling Rate | Sampling Direction | + +=============+===============+=================+======================+ + | Ethernet0 | up | 4000 | both | + +-------------+---------------+-----------------+----------------------| + | Ethernet1 | up | 4000 | tx | + +-------------+---------------+-----------------+----------------------+ ... - +-------------+---------------+-----------------+ - | Ethernet61 | up | 4000 | - +-------------+---------------+-----------------+ - | Ethernet62 | up | 4000 | - +-------------+---------------+-----------------+ - | Ethernet63 | up | 4000 | - +-------------+---------------+-----------------+ + +-------------+---------------+-----------------+----------------------+ + | Ethernet61 | up | 4000 | rx | + +-------------+---------------+-----------------+----------------------+ + | Ethernet62 | up | 4000 | tx | + +-------------+---------------+-----------------+----------------------+ + | Ethernet63 | up | 4000 | both | + +-------------+---------------+-----------------+----------------------+ ``` - ### sFlow Config commands **config sflow collector add** @@ -9097,6 +9097,18 @@ Globally, sFlow is disabled by default. When sFlow is enabled globally, the sflo ``` admin@sonic:~# sudo config sflow enable ``` +**config sflow sample-direction** + +This command takes global sflow sample direction. If not configured, default is "rx" for backward compatibility. Based on the direction, the sFlow is enabled at all the interface level at rx or tx or both. + +- Usage: + ``` + config sflow sample-direction + ``` +- Example: + ``` + admin@sonic:~# sudo config sflow sample-direction tx + ``` **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. @@ -9114,6 +9126,24 @@ Enable/disable sflow at an interface level. By default, sflow is enabled on all admin@sonic:~# sudo config sflow interface disable Ethernet40 ``` +**config sflow interface sample-direction** + +Set sample direction to determine ingress sampling or egress sampling or both. If not configured, default is "rx". + +- Usage: + ``` + config sflow sample-direction + ``` + + - Parameters: + - interface-name: specify the interface for which sFlow flow sample-direction has to be set. The “all” keyword is used as a convenience to set sflow sample-direction at the interface level for all the interfaces. + +- Example: + ``` + admin@sonic:~# sudo config sflow interface sample-direction Ethernet40 tx + ``` +Note: The local configuration applied to an interface has higher precedence over the global configuration provided through the "all" keyword. + **config sflow interface sample-rate** Configure the sample-rate for a specific interface. diff --git a/show/sflow.py b/show/sflow.py index a84a4bdff1..0cbc8c7c70 100644 --- a/show/sflow.py +++ b/show/sflow.py @@ -45,7 +45,7 @@ def show_sflow_interface(config_db): return click.echo("\nsFlow interface configurations") - header = ['Interface', 'Admin State', 'Sampling Rate'] + header = ['Interface', 'Admin State', 'Sampling Rate', 'Sampling Direction'] body = [] for pname in natsorted(list(port_tbl.keys())): intf_key = 'SFLOW_SESSION_TABLE:' + pname @@ -56,6 +56,7 @@ def show_sflow_interface(config_db): body_info = [pname] body_info.append(sess_info.get('admin_state')) body_info.append(sess_info.get('sample_rate')) + body_info.append(sess_info.get('sample_direction')) body.append(body_info) click.echo(tabulate(body, header, tablefmt='grid')) @@ -63,11 +64,15 @@ def show_sflow_interface(config_db): def show_sflow_global(config_db): sflow_info = config_db.get_table('SFLOW') global_admin_state = 'down' + global_sample_dir = 'rx' if sflow_info: global_admin_state = sflow_info['global']['admin_state'] + if ('sample_direction' in sflow_info['global']): + global_sample_dir = sflow_info['global']['sample_direction'] click.echo("\nsFlow Global Information:") click.echo(" sFlow Admin State:".ljust(30) + "{}".format(global_admin_state)) + click.echo(" sFlow Sample Direction:".ljust(30) + "{}".format(global_sample_dir)) click.echo(" sFlow Polling Interval:".ljust(30), nl=False) if (sflow_info and 'polling_interval' in sflow_info['global']): diff --git a/tests/mock_tables/appl_db.json b/tests/mock_tables/appl_db.json index 2c3d14da1e..2889e6b202 100644 --- a/tests/mock_tables/appl_db.json +++ b/tests/mock_tables/appl_db.json @@ -1,19 +1,23 @@ { "SFLOW_SESSION_TABLE:Ethernet0": { "admin_state": "up", - "sample_rate": "2500" + "sample_rate": "2500", + "sample_direction": "both" }, "SFLOW_SESSION_TABLE:Ethernet4": { "admin_state": "up", - "sample_rate": "1000" + "sample_rate": "1000", + "sample_direction": "tx" }, "SFLOW_SESSION_TABLE:Ethernet112": { "admin_state": "up", - "sample_rate": "1000" + "sample_rate": "1000", + "sample_direction": "both" }, "SFLOW_SESSION_TABLE:Ethernet116": { "admin_state": "up", - "sample_rate": "5000" + "sample_rate": "5000", + "sample_direction": "rx" }, "SFLOW_SESSION_TABLE:Ethernet8": { "BAD": "BAD" diff --git a/tests/mock_tables/config_db.json b/tests/mock_tables/config_db.json index e58119d905..24a250536a 100644 --- a/tests/mock_tables/config_db.json +++ b/tests/mock_tables/config_db.json @@ -1,6 +1,7 @@ { "SFLOW|global": { "admin_state": "up", + "sample_direction": "both", "polling_interval": "0" }, "SFLOW_COLLECTOR|prod": { diff --git a/tests/sflow_test.py b/tests/sflow_test.py index ecd622655e..4ee298dfca 100644 --- a/tests/sflow_test.py +++ b/tests/sflow_test.py @@ -18,6 +18,7 @@ show_sflow_output = """ sFlow Global Information: sFlow Admin State: up + sFlow Sample Direction: both sFlow Polling Interval: 0 sFlow AgentID: default @@ -29,17 +30,17 @@ # Expected output for 'show sflow interface' show_sflow_intf_output = """ sFlow interface configurations -+-------------+---------------+-----------------+ -| Interface | Admin State | Sampling Rate | -+=============+===============+=================+ -| Ethernet0 | up | 2500 | -+-------------+---------------+-----------------+ -| Ethernet4 | up | 1000 | -+-------------+---------------+-----------------+ -| Ethernet112 | up | 1000 | -+-------------+---------------+-----------------+ -| Ethernet116 | up | 5000 | -+-------------+---------------+-----------------+ ++-------------+---------------+-----------------+----------------------+ +| Interface | Admin State | Sampling Rate | Sampling Direction | ++=============+===============+=================+======================+ +| Ethernet0 | up | 2500 | both | ++-------------+---------------+-----------------+----------------------+ +| Ethernet4 | up | 1000 | tx | ++-------------+---------------+-----------------+----------------------+ +| Ethernet112 | up | 1000 | both | ++-------------+---------------+-----------------+----------------------+ +| Ethernet116 | up | 5000 | rx | ++-------------+---------------+-----------------+----------------------+ """ class TestShowSflow(object): @@ -425,6 +426,144 @@ def test_config_sflow_intf_sample_rate_default(self): return + def test_config_sflow_sample_direction(self): + # config sflow sample-direction + db = Db() + runner = CliRunner() + obj = {'db':db.cfgdb} + + #Sample direction : Invalid + result = runner.invoke(config.config.commands["sflow"].commands["sample-direction"], ["NA"], obj=obj) + print(result.output) + expected = "Error: Direction NA is invalid" + assert expected in result.output + + #disable + result = runner.invoke(config.config.commands["sflow"].commands["sample-direction"], ["tx"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + + # change the output + global show_sflow_output + show_sflow_output_tx = show_sflow_output.replace( + 'Sample Direction: both', + 'Sample Direction: tx') + + show_sflow_output_rx = show_sflow_output.replace( + 'Sample Direction: both', + 'Sample Direction: rx') + + # run show and check + result = runner.invoke(show.cli.commands["sflow"], [], obj=db) + print(result.exit_code, result.output, show_sflow_output_tx) + assert result.exit_code == 0 + assert result.output == show_sflow_output_tx + + # sample-direction rx + with mock.patch("utilities_common.cli.run_command", mock.MagicMock()) as mock_run_command: + result = runner.invoke(config.config.commands["sflow"].commands["sample-direction"], ["rx"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + + # run show and check + result = runner.invoke(show.cli.commands["sflow"], [], obj=db) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert result.output == show_sflow_output_rx + + return + + def test_config_all_intf_sample_direction(self): + db = Db() + runner = CliRunner() + obj = {'db':db.cfgdb} + + # set all direction to both + result = runner.invoke(config.config.commands["sflow"]. + commands["interface"].commands["sample-direction"], ["all","both"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + + # verify in configDb + sflowSession = db.cfgdb.get_table('SFLOW_SESSION') + assert sflowSession["all"]["sample_direction"] == "both" + + # set all direction to tx + result = runner.invoke(config.config.commands["sflow"]. + commands["interface"].commands["sample-direction"], ["all","tx"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + + # verify in configDb + sflowSession = db.cfgdb.get_table('SFLOW_SESSION') + assert sflowSession["all"]["sample_direction"] == "tx" + + # set all direction to rx + result = runner.invoke(config.config.commands["sflow"]. + commands["interface"].commands["sample-direction"], ["all","rx"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + + # verify in configDb + sflowSession = db.cfgdb.get_table('SFLOW_SESSION') + assert sflowSession["all"]["sample_direction"] == "rx" + + return + + def test_config_sflow_intf_sample_direction(self): + db = Db() + runner = CliRunner() + obj = {'db':db.cfgdb} + + # mock interface_name_is_valid + config.interface_name_is_valid = mock.MagicMock(return_value = True) + + # set sample-direction to Invalid + result = runner.invoke(config.config.commands["sflow"]. + commands["interface"].commands["sample-direction"], + ["Ethernet2", "NA"], obj=obj) + print(result.exit_code, result.output) + expected = "Error: Direction NA is invalid" + assert result.exit_code == 2 + assert expected in result.output + + # set sample-direction to both + result = runner.invoke(config.config.commands["sflow"]. + commands["interface"].commands["sample-direction"], + ["Ethernet2", "both"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + + # we can not use 'show sflow interface', becasue 'show sflow interface' + # gets data from appDB, we need to fetch data from configDB for verification + sflowSession = db.cfgdb.get_table('SFLOW_SESSION') + assert sflowSession["Ethernet2"]["sample_direction"] == "both" + + # set sample-direction to tx + result = runner.invoke(config.config.commands["sflow"]. + commands["interface"].commands["sample-direction"], + ["Ethernet2", "tx"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + + # we can not use 'show sflow interface', becasue 'show sflow interface' + # gets data from appDB, we need to fetch data from configDB for verification + sflowSession = db.cfgdb.get_table('SFLOW_SESSION') + assert sflowSession["Ethernet2"]["sample_direction"] == "tx" + + # set sample-direction to rx + result = runner.invoke(config.config.commands["sflow"]. + commands["interface"].commands["sample-direction"], + ["Ethernet2", "rx"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + + # we can not use 'show sflow interface', becasue 'show sflow interface' + # gets data from appDB, we need to fetch data from configDB for verification + sflowSession = db.cfgdb.get_table('SFLOW_SESSION') + assert sflowSession["Ethernet2"]["sample_direction"] == "rx" + + return @classmethod def teardown_class(cls): From bf9c07c4f57989cf9811ae596d59ec61a5c607ae Mon Sep 17 00:00:00 2001 From: Anoop Kamath <115578705+AnoopKamath@users.noreply.github.com> Date: Thu, 12 Oct 2023 12:31:54 -0700 Subject: [PATCH 29/75] Add target mode to sfputil firmware (#3002) * Add target mode to sfputil firmware * Remove duplicate code * Address review comments 1. Add int range to CLI arg 2. update port name to error messages * Add UT cases for sfputil * Update sfputil_test.py * Update Command-Reference.md Add CMIS firmware upgrade command * Update Command-Reference.md * Update main.py * Update Command-Reference.md * Update Command-Reference.md --- doc/Command-Reference.md | 137 +++++++++++++++++++++++++++++++++++++++ sfputil/main.py | 37 +++++++++++ tests/sfputil_test.py | 33 ++++++++++ 3 files changed, 207 insertions(+) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 35e221ddc8..6784b8faf6 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -39,6 +39,10 @@ * [Console config commands](#console-config-commands) * [Console connect commands](#console-connect-commands) * [Console clear commands](#console-clear-commands) +* [CMIS firmware upgrade](#cmis-firmware-upgrade) + * [CMIS firmware version show commands](#cmis-firmware-version-show-commands) + * [CMIS firmware upgrade commands](#cmis-firmware-upgrade-commands) + * [CMIS firmware target mode commands](#cmis-firmware-target-mode-commands) * [DHCP Relay](#dhcp-relay) * [DHCP Relay show commands](#dhcp-relay-show-commands) * [DHCP Relay clear commands](#dhcp-relay-clear-commands) @@ -206,6 +210,7 @@ | Version | Modification Date | Details | | --- | --- | --- | +| v8 | Oct-09-2023 | Add CMIS firmware upgrade commands | | v7 | Jun-22-2023 | Add static DNS show and config commands | | v6 | May-06-2021 | Add SNMP show and config commands | | v5 | Nov-05-2020 | Add document for console commands | @@ -2785,6 +2790,138 @@ Optionally, you can clear with a remote device name by specifying the `-d` or `- Go Back To [Beginning of the document](#) or [Beginning of this section](#console) +## CMIS firmware upgrade + +### CMIS firmware version show commands + +The sfputil command shows the current major and minor versions of active/inactive firmware, running Image details. The output may vary based on the single vs dual bank supported modules. + +**sfputil show fwversion** + +- Usage: + ``` + sfputil show fwversion PORT_NAME + ``` + +- Example: + ``` + admin@sonic:~$ sfputil show fwversion Ethernet180 + Image A Version: 0.3.5 + Image B Version: 0.3.5 + Factory Image Version: 0.0.0 + Running Image: A + Committed Image: A + Active Firmware: 0.3.5 + Inactive Firmware: 0.3.5 + ``` + +### CMIS firmware upgrade commands + +The sfputil commands are used to download/upgrade firmware on transciver modules. The download/upgrade actually happens using set of CMIS CDB commands. The module may replace the exisiting image or copy into the inactive bank of the module. The host issues a download complete CDB command when the entire firmware image has been written to LPL or EPL pages. Each steps can be verified using the 'sfputil show fwversion PORT_NAME' + +**sfputil firmware download** + +This command is used for downloading firmware tp upgrade the transciever module. + +- Usage: + ``` + sfputil firmware download PORT_NAME FILE_PATH + ``` + +- Example: + ``` + admin@sonic:~$ sfputil firmware download Ethernet180 AEC_Camano_YCable__0.3.6_20230905.bin + CDB: Starting firmware download + Downloading ... [####################################] 100% + CDB: firmware download complete + Firmware download complete success + Total download Time: 0:01:55.731397 + + admin@sonic:~$ sfputil show fwversion Ethernet180 + Image A Version: 0.3.5 + Image B Version: 0.3.6 + Factory Image Version: 0.0.0 + Running Image: A + Committed Image: A + Active Firmware: 0.3.5 + Inactive Firmware: 0.3.6 + ``` +**sfputil firmware run** + +This command is used to start and run a downloaded image. This command transfers control from the currently running firmware to a new firmware. + +- Usage: + ``` + sfputil firmware run PORT_NAME + ``` + +- Example: + ``` + admin@sonic:~$ sfputil firmware run Ethernet180 + Running firmware: Non-hitless Reset to Inactive Image + Firmware run in mode=0 success + + admin@sonic:~$ sfputil show fwversion Ethernet180 + Image A Version: 0.3.5 + Image B Version: 0.3.6 + Factory Image Version: 0.0.0 + Running Image: B + Committed Image: A + Active Firmware: 0.3.6 + Inactive Firmware: 0.3.5 + ``` + +**sfputil firmware commit** + +This command to commit the running image so that the module will boot from it on future boots. + +- Usage: + ``` + sfputil firmware commit PORT_NAME + ``` + +- Example: + ``` + admin@sonic:~$ sfputil firmware commit Ethernet180 + Firmware commit successful + + admin@sonic:~$ sfputil show fwversion Ethernet180 + Image A Version: 0.3.5 + Image B Version: 0.3.6 + Factory Image Version: 0.0.0 + Running Image: B + Committed Image: B + Active Firmware: 0.3.6 + Inactive Firmware: 0.3.5 + ``` + +### CMIS firmware target mode commands + +This command is vendor-specific and supported on the modules to set the target mode to perform remote firmware upgrades. The target modes can be set as 0 (local- E0), 1 (remote end E1), or 2 (remote end E2). Depending on the mode set, the remote or local end will respond to CDB/I2C commands from host's E0 end. After setting the target mode, we can use **sfputil** firmware upgrade commands, will be executed on the module for which target mode is set. + +Example of the module supporting target mode + +![RMT_UPGRD](https://github.com/AnoopKamath/sonic-utilities_remote_upgrade/assets/115578705/c3b0bb62-eb14-4b05-b0a8-96b8c082455a) + +**sfputil firmware target** + +- Usage: + ``` + sfputil firmware target [OPTIONS] PORT_NAME TARGET + + Select target end for firmware download + 0-(local) + + 1-(remote-A) + + 2-(remote-B) + ``` + +- Example: + ``` + admin@sonic:~$ sfputil firmware target Ethernet180 1 + Target Mode set to 1 + ``` ## DHCP Relay diff --git a/sfputil/main.py b/sfputil/main.py index af16ddcff5..454287cae2 100644 --- a/sfputil/main.py +++ b/sfputil/main.py @@ -1526,6 +1526,43 @@ def version(): """Display version info""" click.echo("sfputil version {0}".format(VERSION)) +# 'target' subcommand +@firmware.command() +@click.argument('port_name', required=True, default=None) +@click.argument('target', type=click.IntRange(0, 2), required=True, default=None) +def target(port_name, target): + """Select target end for firmware download 0-(local) \n + 1-(remote-A) \n + 2-(remote-B) + """ + 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) + + try: + api = sfp.get_xcvr_api() + except NotImplementedError: + click.echo("{}: This functionality is currently not implemented for this module".format(port_name)) + sys.exit(ERROR_NOT_IMPLEMENTED) + + try: + status = api.set_firmware_download_target_end(target) + except AttributeError: + click.echo("{}: This functionality is not applicable for this module".format(port_name)) + sys.exit(ERROR_NOT_IMPLEMENTED) + + if status: + click.echo("Target Mode set to {}". format(target)) + else: + click.echo("Target Mode set failed!") + sys.exit(EXIT_FAIL) if __name__ == '__main__': cli() diff --git a/tests/sfputil_test.py b/tests/sfputil_test.py index 0de4a46026..bed8e994d7 100644 --- a/tests/sfputil_test.py +++ b/tests/sfputil_test.py @@ -967,3 +967,36 @@ def test_update_firmware_info_to_state_db(self, mock_chassis): mock_sfp.get_transceiver_info_firmware_versions.return_value = ['a.b.c', 'd.e.f'] sfputil.update_firmware_info_to_state_db("Ethernet0") + + @patch('sfputil.main.platform_chassis') + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + def test_target_firmware(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) + mock_api.set_firmware_download_target_end.return_value = 1 + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['firmware'].commands['target'], ["Ethernet0", "2"]) + assert result.output == 'Target Mode set to 2\n' + assert result.exit_code == 0 + + mock_sfp.get_presence.return_value = False + result = runner.invoke(sfputil.cli.commands['firmware'].commands['target'], ["Ethernet0", "2"]) + assert result.output == 'Ethernet0: SFP EEPROM not detected\n\n' + + mock_sfp.get_presence.return_value = True + mock_sfp.get_xcvr_api = MagicMock(side_effect=NotImplementedError) + result = runner.invoke(sfputil.cli.commands['firmware'].commands['target'], ["Ethernet0", "2"]) + assert result.output == 'Ethernet0: This functionality is currently not implemented for this module\n' + assert result.exit_code == ERROR_NOT_IMPLEMENTED + + mock_sfp.get_xcvr_api = MagicMock(return_value=mock_api) + mock_sfp.get_presence.return_value = True + mock_api.set_firmware_download_target_end.return_value = 0 + result = runner.invoke(sfputil.cli.commands['firmware'].commands['target'], ["Ethernet0", "1"]) + assert result.output == 'Target Mode set failed!\n' + assert result.exit_code == EXIT_FAIL + + From 424be9ca9f950f0d04996e291f5b3dac1fb02346 Mon Sep 17 00:00:00 2001 From: Kebo Liu Date: Thu, 19 Oct 2023 12:29:51 +0800 Subject: [PATCH 30/75] [fwutil] Fix python SyntaxWarning for 'is' with literals (#3013) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix python SyntaxWarning for ‘is’ with literals Signed-off-by: Kebo Liu * add unit test Signed-off-by: Kebo Liu --------- Signed-off-by: Kebo Liu --- fwutil/lib.py | 2 +- tests/fwutil_test.py | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/fwutil/lib.py b/fwutil/lib.py index d4f686bec1..95cced330e 100755 --- a/fwutil/lib.py +++ b/fwutil/lib.py @@ -899,7 +899,7 @@ def is_capable_auto_update(self, boot): if status_file is not None: data = self.read_au_status_file_if_exists(FW_AU_STATUS_FILE_PATH) if data is not None: - if boot is "none" or boot in data: + if boot == "none" or boot in data: click.echo("Allow firmware auto-update with boot_type {} again".format(boot)) return True diff --git a/tests/fwutil_test.py b/tests/fwutil_test.py index e7e192ee21..5dd68348b4 100644 --- a/tests/fwutil_test.py +++ b/tests/fwutil_test.py @@ -76,3 +76,21 @@ def test_unmount_next_image_fs(self, mock_check_call, mock_exists, mock_rmdir): def teardown(self): print('TEARDOWN') + + +class TestComponentUpdateProvider(object): + def setup(self): + print('SETUP') + + @patch("glob.glob", MagicMock(side_effect=[[], ['abc'], [], ['abc']])) + @patch("fwutil.lib.ComponentUpdateProvider.read_au_status_file_if_exists", MagicMock(return_value=['def'])) + @patch("fwutil.lib.ComponentUpdateProvider._ComponentUpdateProvider__validate_platform_schema", MagicMock()) + @patch("fwutil.lib.PlatformComponentsParser.parse_platform_components", MagicMock()) + @patch("os.mkdir", MagicMock()) + def test_is_capable_auto_update(self): + CUProvider = fwutil_lib.ComponentUpdateProvider() + assert CUProvider.is_capable_auto_update('none') == True + assert CUProvider.is_capable_auto_update('def') == True + + def teardown(self): + print('TEARDOWN') From d857eb0978d94bf24c5a32f5d0d3e679ddf94202 Mon Sep 17 00:00:00 2001 From: Vivek Date: Thu, 19 Oct 2023 09:22:09 -0700 Subject: [PATCH 31/75] [db_migrator] Fix the broken version chain (#3014) Signed-off-by: Vivek Reddy Karri Why I did Warm Reboot from 202205 -> latest labels is failing because of an extra version that was added to 202205 and that was missing in later branches. How I did it Add a placeholder for version 3_0_7 in latest labels How to verify it WR from 202205 to 202305 and try running db_migrator --- scripts/db_migrator.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index 00f2d7cc0a..a4240eac4d 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -984,10 +984,19 @@ def version_3_0_5(self): def version_3_0_6(self): """ Version 3_0_6 - This is the latest version for 202211 branch """ log.log_info('Handling version_3_0_6') + self.set_version('version_3_0_7') + return 'version_3_0_7' + + def version_3_0_7(self): + """ + Version 3_0_7 + This is the latest version for 202205 branch + """ + + log.log_info('Handling version_3_0_7') self.set_version('version_4_0_0') return 'version_4_0_0' From 244ad2d63d0bb7d4e2e3928e53f8574f010c8d24 Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Fri, 20 Oct 2023 09:09:42 +0800 Subject: [PATCH 32/75] Revert "Remove syslog service validator in GCU (#2991)" (#3015) This reverts commit 6ba6ddf6d559e7f0c6f3cfd3d9918eeab9ab3b52. --- .../gcu_services_validator.conf.json | 6 ++++++ generic_config_updater/services_validator.py | 8 ++++++++ .../service_validator_test.py | 18 +++++++++++++++++- 3 files changed, 31 insertions(+), 1 deletion(-) diff --git a/generic_config_updater/gcu_services_validator.conf.json b/generic_config_updater/gcu_services_validator.conf.json index b504cf5d26..852b587286 100644 --- a/generic_config_updater/gcu_services_validator.conf.json +++ b/generic_config_updater/gcu_services_validator.conf.json @@ -31,6 +31,9 @@ "PORT": { "services_to_validate": [ "port_service" ] }, + "SYSLOG_SERVER":{ + "services_to_validate": [ "rsyslog" ] + }, "DHCP_RELAY": { "services_to_validate": [ "dhcp-relay" ] }, @@ -57,6 +60,9 @@ "port_service": { "validate_commands": [ ] }, + "rsyslog": { + "validate_commands": [ "generic_config_updater.services_validator.rsyslog_validator" ] + }, "dhcp-relay": { "validate_commands": [ "generic_config_updater.services_validator.dhcp_validator" ] }, diff --git a/generic_config_updater/services_validator.py b/generic_config_updater/services_validator.py index 29a887da89..497cb4ee74 100644 --- a/generic_config_updater/services_validator.py +++ b/generic_config_updater/services_validator.py @@ -48,6 +48,14 @@ def _service_restart(svc_name): return rc == 0 +def rsyslog_validator(old_config, upd_config, keys): + rc = os.system("/usr/bin/rsyslog-config.sh") + if rc != 0: + return _service_restart("rsyslog") + else: + return True + + def dhcp_validator(old_config, upd_config, keys): return _service_restart("dhcp_relay") diff --git a/tests/generic_config_updater/service_validator_test.py b/tests/generic_config_updater/service_validator_test.py index 802bc2dc15..f14a3ad7b0 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, caclmgrd_validator, vlanintf_validator +from generic_config_updater.services_validator import vlan_validator, rsyslog_validator, caclmgrd_validator, vlanintf_validator import generic_config_updater.gu_common @@ -142,6 +142,16 @@ def mock_time_sleep_call(sleep_time): }, ] +test_rsyslog_fail = [ + # Fail the calls, to get the entire fail path calls invoked + # + { "cmd": "/usr/bin/rsyslog-config.sh", "rc": 1 }, # config update; fails + { "cmd": "systemctl restart rsyslog", "rc": 1 }, # rsyslog restart; fails + { "cmd": "systemctl reset-failed rsyslog", "rc": 1 }, # reset; failure here just logs + { "cmd": "systemctl restart rsyslog", "rc": 1 }, # restart again; fails + { "cmd": "systemctl restart rsyslog", "rc": 1 }, # restart again; fails + ] + test_vlanintf_data = [ { "old": {}, "upd": {}, "cmd": "" }, { @@ -201,6 +211,12 @@ def test_change_apply_os_system(self, mock_os_sys): # Test failure case # + os_system_calls = test_rsyslog_fail + os_system_call_index = 0 + + 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: From 1eb3158f6ac2a4058ff9d7040329750027ca6a70 Mon Sep 17 00:00:00 2001 From: Stephen Sun <5379172+stephenxs@users.noreply.github.com> Date: Tue, 24 Oct 2023 07:44:40 +0800 Subject: [PATCH 33/75] [CMIS] Use the block size advertised by the xSFP to download the image if it is less than the default block size (#2999) * Use the size advertised by the module when downloading the image if it is less Signed-off-by: Stephen Sun * Add unit test Signed-off-by: Stephen Sun * Address comments Signed-off-by: Stephen Sun --------- Signed-off-by: Stephen Sun --- sfputil/main.py | 5 ++++- tests/sfputil_test.py | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/sfputil/main.py b/sfputil/main.py index 454287cae2..e324963e82 100644 --- a/sfputil/main.py +++ b/sfputil/main.py @@ -1332,7 +1332,10 @@ def download_firmware(port_name, filepath): with click.progressbar(length=file_size, label="Downloading ...") as bar: address = 0 - BLOCK_SIZE = MAX_LPL_FIRMWARE_BLOCK_SIZE if lplonly_flag else maxblocksize + if lplonly_flag: + BLOCK_SIZE = min(MAX_LPL_FIRMWARE_BLOCK_SIZE, maxblocksize) + else: + BLOCK_SIZE = maxblocksize remaining = file_size - startLPLsize while remaining > 0: count = BLOCK_SIZE if remaining >= BLOCK_SIZE else remaining diff --git a/tests/sfputil_test.py b/tests/sfputil_test.py index bed8e994d7..0e1f8b9969 100644 --- a/tests/sfputil_test.py +++ b/tests/sfputil_test.py @@ -841,6 +841,9 @@ def test_download_firmware(self, mock_chassis, mock_file): mock_sfp.set_optoe_write_max = MagicMock(side_effect=NotImplementedError) status = sfputil.download_firmware("Ethernet0", "test.bin") assert status == 1 + mock_api.get_module_fw_mgmt_feature.return_value = {'status': True, 'feature': (0, 64, True, False, 0)} + 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)) From 0ae5d2d28e12bb4ed94c9cdf77bb1b924fec72d0 Mon Sep 17 00:00:00 2001 From: Liu Shilong Date: Tue, 24 Oct 2023 17:22:05 +0800 Subject: [PATCH 34/75] [ci] Use correct bullseye docker image according to source branch. What I did Use master branch's sonic-slave docker image will lead to build issue on release branches. How I did it Use correct docker image according to source branch. How to verify it --- azure-pipelines.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 1f0f354436..9688eb2d5d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -13,6 +13,13 @@ resources: name: sonic-net/sonic-swss endpoint: sonic-net +variables: + - name: BUILD_BRANCH + ${{ if eq(variables['Build.Reason'], 'PullRequest') }}: + value: $(System.PullRequest.TargetBranch) + ${{ else }}: + value: $(Build.SourceBranchName) + stages: - stage: Build @@ -26,7 +33,7 @@ stages: vmImage: ubuntu-20.04 container: - image: sonicdev-microsoft.azurecr.io:443/sonic-slave-bullseye:latest + image: sonicdev-microsoft.azurecr.io:443/sonic-slave-bullseye:$(BUILD_BRANCH) steps: - script: | From ae22a176b5df2c97a4108b71ccf17aa8618eb754 Mon Sep 17 00:00:00 2001 From: Stephen Sun <5379172+stephenxs@users.noreply.github.com> Date: Wed, 1 Nov 2023 06:40:39 +0800 Subject: [PATCH 35/75] Remove QoS configurations of single indexed tables before regenerating default configuration in config qos reload --ports (#3017) Signed-off-by: Stephen Sun --- config/main.py | 7 ++++++- tests/buffer_test.py | 8 ++++---- tests/mock_tables/config_db.json | 3 ++- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/config/main.py b/config/main.py index f336fb5818..24c56cfac0 100644 --- a/config/main.py +++ b/config/main.py @@ -2909,7 +2909,12 @@ def _qos_update_ports(ctx, ports, dry_run, json_data): click.secho("QoS definition template not found at {}".format(qos_template_file), fg="yellow") ctx.abort() - # Remove multi indexed entries first + # Remove entries first + for table_name in tables_single_index: + for port in portset_to_handle: + if config_db.get_entry(table_name, port): + config_db.set_entry(table_name, port, None) + for table_name in tables_multi_index: entries = config_db.get_keys(table_name) for key in entries: diff --git a/tests/buffer_test.py b/tests/buffer_test.py index 13c0157b05..d74152f944 100644 --- a/tests/buffer_test.py +++ b/tests/buffer_test.py @@ -348,7 +348,7 @@ def test_config_int_buffer_pg_lossless_add(self, get_cmd_module): print(result.exit_code, result.output) assert result.exit_code == 0 assert {'profile': 'NULL'} == db.cfgdb.get_entry('BUFFER_PG', 'Ethernet0|5') - assert {'pfc_enable': '3,4,5'} == db.cfgdb.get_entry('PORT_QOS_MAP', 'Ethernet0') + assert {'pfc_enable': '3,4,5', 'scheduler': 'port_scheduler'} == db.cfgdb.get_entry('PORT_QOS_MAP', 'Ethernet0') # Try to add an existing entry with mock.patch('utilities_common.cli.run_command') as mock_run_command: @@ -433,7 +433,7 @@ def test_config_int_buffer_pg_lossless_add(self, get_cmd_module): assert result.exit_code == 0 keys = db.cfgdb.get_keys('BUFFER_PG') assert keys == [('Ethernet0', '0')] - assert {'pfc_enable': ''} == db.cfgdb.get_entry('PORT_QOS_MAP', 'Ethernet0') + assert {'pfc_enable': '', 'scheduler': 'port_scheduler'} == db.cfgdb.get_entry('PORT_QOS_MAP', 'Ethernet0') def test_config_int_buffer_pg_lossless_set(self, get_cmd_module): (config, show) = get_cmd_module @@ -456,7 +456,7 @@ def test_config_int_buffer_pg_lossless_set(self, get_cmd_module): print(result.exit_code, result.output) assert result.exit_code == 0 assert {'profile': 'headroom_profile'} == db.cfgdb.get_entry('BUFFER_PG', 'Ethernet0|3-4') - assert {'pfc_enable': '3,4'} == db.cfgdb.get_entry('PORT_QOS_MAP', 'Ethernet0') + assert {'pfc_enable': '3,4', 'scheduler': 'port_scheduler'} == db.cfgdb.get_entry('PORT_QOS_MAP', 'Ethernet0') def test_config_int_buffer_pg_lossless_remove(self, get_cmd_module): (config, show) = get_cmd_module @@ -490,7 +490,7 @@ def test_config_int_buffer_pg_lossless_remove(self, get_cmd_module): print(result.exit_code, result.output) assert result.exit_code == 0 assert [('Ethernet0', '0')] == db.cfgdb.get_keys('BUFFER_PG') - assert {'pfc_enable': ''} == db.cfgdb.get_entry('PORT_QOS_MAP', 'Ethernet0') + assert {'pfc_enable': '', 'scheduler': 'port_scheduler'} == db.cfgdb.get_entry('PORT_QOS_MAP', 'Ethernet0') # Remove all lossless PGs is tested in the 'add' test case to avoid repeating adding PGs diff --git a/tests/mock_tables/config_db.json b/tests/mock_tables/config_db.json index 24a250536a..2a81f96bfa 100644 --- a/tests/mock_tables/config_db.json +++ b/tests/mock_tables/config_db.json @@ -1951,7 +1951,8 @@ "profile": "egress_lossless_profile" }, "PORT_QOS_MAP|Ethernet0": { - "pfc_enable": "3,4" + "pfc_enable": "3,4", + "scheduler": "port_scheduler" }, "PORT_QOS_MAP|Ethernet4": { "pfc_enable": "3,4" From 6833e6cac8ca0879fde6f5462a994abfa685716d Mon Sep 17 00:00:00 2001 From: Stephen Sun <5379172+stephenxs@users.noreply.github.com> Date: Wed, 1 Nov 2023 06:41:10 +0800 Subject: [PATCH 36/75] Support Mellanox Spectrum4 ASIC in generic configuration update (#3018) * Support Mellanox Spectrum4 ASIC in generic configuration update --------- Signed-off-by: Stephen Sun --- generic_config_updater/field_operation_validators.py | 4 ++++ .../gcu_field_operation_validators.conf.json | 8 +++++++- .../field_operation_validator_test.py | 8 ++++++++ 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/generic_config_updater/field_operation_validators.py b/generic_config_updater/field_operation_validators.py index fc7c14464e..1aae399ade 100644 --- a/generic_config_updater/field_operation_validators.py +++ b/generic_config_updater/field_operation_validators.py @@ -34,6 +34,7 @@ def get_asic_name(): 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 @@ -43,6 +44,9 @@ def get_asic_name(): 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(): diff --git a/generic_config_updater/gcu_field_operation_validators.conf.json b/generic_config_updater/gcu_field_operation_validators.conf.json index 4398f96abd..50d3ebb478 100644 --- a/generic_config_updater/gcu_field_operation_validators.conf.json +++ b/generic_config_updater/gcu_field_operation_validators.conf.json @@ -19,7 +19,8 @@ "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" ] + "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" ], @@ -47,6 +48,7 @@ "spc1": "20181100", "spc2": "20191100", "spc3": "20220500", + "spc4": "20221100", "td2": "20181100", "th": "20181100", "th2": "20181100", @@ -72,6 +74,7 @@ "spc1": "20191100", "spc2": "20191100", "spc3": "20220500", + "spc4": "20221100", "td2": "", "th": "20221100", "th2": "20221100", @@ -95,6 +98,7 @@ "spc1": "20181100", "spc2": "20191100", "spc3": "20220500", + "spc4": "20221100", "td2": "20181100", "th": "20181100", "th2": "20181100", @@ -111,6 +115,7 @@ "spc1": "20191100", "spc2": "20191100", "spc3": "20220500", + "spc4": "20221100", "td2": "", "th": "20221100", "th2": "20221100", @@ -136,6 +141,7 @@ "spc1": "20181100", "spc2": "20191100", "spc3": "20220500", + "spc4": "20221100", "td2": "20181100", "th": "20181100", "th2": "20181100", diff --git a/tests/generic_config_updater/field_operation_validator_test.py b/tests/generic_config_updater/field_operation_validator_test.py index f69955fc28..8874a4026d 100644 --- a/tests/generic_config_updater/field_operation_validator_test.py +++ b/tests/generic_config_updater/field_operation_validator_test.py @@ -214,6 +214,14 @@ def test_get_asic_spc3(self, mock_popen, mock_get_sonic_version_info): 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): From e01fc891d800cbb8acdaecb19d5816fd21c7b9d0 Mon Sep 17 00:00:00 2001 From: ganglv <88995770+ganglyu@users.noreply.github.com> Date: Wed, 1 Nov 2023 14:53:17 +0800 Subject: [PATCH 37/75] Run yang validation in unit test (#3025) What I did Add unit test for db_migrator.py: ConfigDB passing yang validation. Microsoft ADO: 24657445 Pending on sonic-net/sonic-buildimage#16974 How I did it Add yang validation for unit test, and fix test data to pass yang validation. How to verify it Run sonic-utilities end to end test. --- scripts/db_migrator.py | 28 +++++++++++++++++++ ...ross_branch_upgrade_to_4_0_3_expected.json | 6 ++-- .../cross_branch_upgrade_to_4_0_3_input.json | 6 ++-- .../config_db/portchannel-expected.json | 4 --- .../config_db/portchannel-input.json | 4 --- .../config_db/qos_map_table_expected.json | 10 ++++++- .../config_db/qos_map_table_input.json | 10 ++++++- ...-buffer-dynamic-double-pools-expected.json | 12 +++++++- ...ing-buffer-dynamic-double-pools-input.json | 12 +++++++- ...g-buffer-dynamic-single-pool-expected.json | 12 +++++++- ...ming-buffer-dynamic-single-pool-input.json | 12 +++++++- 11 files changed, 96 insertions(+), 20 deletions(-) diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index a4240eac4d..f15f27bae8 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -6,6 +6,8 @@ import sys import traceback import re +import sonic_yang +import syslog from sonic_py_common import device_info, logger from swsscommon.swsscommon import SonicV2Connector, ConfigDBConnector, SonicDBConfig @@ -13,6 +15,7 @@ INIT_CFG_FILE = '/etc/sonic/init_cfg.json' MINIGRAPH_FILE = '/etc/sonic/minigraph.xml' +YANG_MODELS_DIR = "/usr/local/yang-models" # mock the redis for unit test purposes # try: @@ -1122,6 +1125,31 @@ def migrate(self): version = next_version # Perform common migration ops self.common_migration_ops() + config = self.configDB.get_config() + # Fix table key in tuple + for table_name, table in config.items(): + new_table = {} + hit = False + for table_key, table_val in table.items(): + if isinstance(table_key, tuple): + new_key = "|".join(table_key) + new_table[new_key] = table_val + hit = True + else: + new_table[table_key] = table_val + if hit: + config[table_name] = new_table + # Run yang validation + yang_parser = sonic_yang.SonicYang(YANG_MODELS_DIR) + yang_parser.loadYangModel() + try: + yang_parser.loadData(configdbJson=config) + yang_parser.validate_data_tree() + except sonic_yang.SonicYangException as e: + syslog.syslog(syslog.LOG_CRIT, "Yang validation failed: " + str(e)) + if os.environ["UTILITIES_UNIT_TESTING"] == "2": + raise + def main(): try: diff --git a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_expected.json b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_expected.json index 1ebfbc6afe..a64d38bc51 100644 --- a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_expected.json +++ b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_expected.json @@ -3,17 +3,17 @@ "VERSION": "version_4_0_3" }, "FLEX_COUNTER_TABLE|ACL": { - "FLEX_COUNTER_STATUS": "true", + "FLEX_COUNTER_STATUS": "enable", "FLEX_COUNTER_DELAY_STATUS": "true", "POLL_INTERVAL": "10000" }, "FLEX_COUNTER_TABLE|QUEUE": { - "FLEX_COUNTER_STATUS": "true", + "FLEX_COUNTER_STATUS": "enable", "FLEX_COUNTER_DELAY_STATUS": "true", "POLL_INTERVAL": "10000" }, "FLEX_COUNTER_TABLE|PG_WATERMARK": { - "FLEX_COUNTER_STATUS": "false", + "FLEX_COUNTER_STATUS": "disable", "FLEX_COUNTER_DELAY_STATUS": "true" } } diff --git a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_input.json b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_input.json index 07ce763683..e2d8d04588 100644 --- a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_input.json +++ b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_input.json @@ -3,16 +3,16 @@ "VERSION": "version_1_0_1" }, "FLEX_COUNTER_TABLE|ACL": { - "FLEX_COUNTER_STATUS": "true", + "FLEX_COUNTER_STATUS": "enable", "FLEX_COUNTER_DELAY_STATUS": "true", "POLL_INTERVAL": "10000" }, "FLEX_COUNTER_TABLE|QUEUE": { - "FLEX_COUNTER_STATUS": "true", + "FLEX_COUNTER_STATUS": "enable", "FLEX_COUNTER_DELAY_STATUS": "false", "POLL_INTERVAL": "10000" }, "FLEX_COUNTER_TABLE|PG_WATERMARK": { - "FLEX_COUNTER_STATUS": "false" + "FLEX_COUNTER_STATUS": "disable" } } diff --git a/tests/db_migrator_input/config_db/portchannel-expected.json b/tests/db_migrator_input/config_db/portchannel-expected.json index 2644e5f4e9..f380c75363 100644 --- a/tests/db_migrator_input/config_db/portchannel-expected.json +++ b/tests/db_migrator_input/config_db/portchannel-expected.json @@ -1,28 +1,24 @@ { "PORTCHANNEL|PortChannel0": { "admin_status": "up", - "members@": "Ethernet0,Ethernet4", "min_links": "2", "mtu": "9100", "lacp_key": "auto" }, "PORTCHANNEL|PortChannel1": { "admin_status": "up", - "members@": "Ethernet8,Ethernet12", "min_links": "2", "mtu": "9100", "lacp_key": "auto" }, "PORTCHANNEL|PortChannel0123": { "admin_status": "up", - "members@": "Ethernet16", "min_links": "1", "mtu": "9100", "lacp_key": "auto" }, "PORTCHANNEL|PortChannel0011": { "admin_status": "up", - "members@": "Ethernet20,Ethernet24", "min_links": "2", "mtu": "9100", "lacp_key": "auto" diff --git a/tests/db_migrator_input/config_db/portchannel-input.json b/tests/db_migrator_input/config_db/portchannel-input.json index 753a88601d..43a9fabdb5 100644 --- a/tests/db_migrator_input/config_db/portchannel-input.json +++ b/tests/db_migrator_input/config_db/portchannel-input.json @@ -1,25 +1,21 @@ { "PORTCHANNEL|PortChannel0": { "admin_status": "up", - "members@": "Ethernet0,Ethernet4", "min_links": "2", "mtu": "9100" }, "PORTCHANNEL|PortChannel1": { "admin_status": "up", - "members@": "Ethernet8,Ethernet12", "min_links": "2", "mtu": "9100" }, "PORTCHANNEL|PortChannel0123": { "admin_status": "up", - "members@": "Ethernet16", "min_links": "1", "mtu": "9100" }, "PORTCHANNEL|PortChannel0011": { "admin_status": "up", - "members@": "Ethernet20,Ethernet24", "min_links": "2", "mtu": "9100" }, 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 47381ec550..f84c1a900b 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 @@ -29,6 +29,14 @@ "pfc_to_queue_map": "AZURE", "tc_to_pg_map": "AZURE", "tc_to_queue_map": "AZURE" - } + }, + "TC_TO_QUEUE_MAP|AZURE": {"0": "0"}, + "TC_TO_PRIORITY_GROUP_MAP|AZURE": {"0": "0"}, + "MAP_PFC_PRIORITY_TO_QUEUE|AZURE": {"0": "0"}, + "DSCP_TO_TC_MAP|AZURE": {"0": "0"}, + "PORT|Ethernet0": {"lanes": "0", "speed": "1000"}, + "PORT|Ethernet92": {"lanes": "92", "speed": "1000"}, + "PORT|Ethernet96": {"lanes": "96", "speed": "1000"}, + "PORT|Ethernet100": {"lanes": "100", "speed": "1000"} } 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 c62e293daf..3c288b9534 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 @@ -27,5 +27,13 @@ "pfc_to_queue_map": "AZURE", "tc_to_pg_map": "AZURE", "tc_to_queue_map": "AZURE" - } + }, + "TC_TO_QUEUE_MAP|AZURE": {"0": "0"}, + "TC_TO_PRIORITY_GROUP_MAP|AZURE": {"0": "0"}, + "MAP_PFC_PRIORITY_TO_QUEUE|AZURE": {"0": "0"}, + "DSCP_TO_TC_MAP|AZURE": {"0": "0"}, + "PORT|Ethernet0": {"lanes": "0", "speed": "1000"}, + "PORT|Ethernet92": {"lanes": "92", "speed": "1000"}, + "PORT|Ethernet96": {"lanes": "96", "speed": "1000"}, + "PORT|Ethernet100": {"lanes": "100", "speed": "1000"} } 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 5181daa057..decf997d67 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 @@ -12,7 +12,7 @@ "profile": "NULL" }, "BUFFER_PG|Ethernet8|3-4": { - "profile": "customized_lossless_profile" + "profile": "customized_ingress_lossless_profile" }, "BUFFER_PG|Ethernet12|0": { "profile": "ingress_lossy_profile" @@ -103,6 +103,11 @@ "BUFFER_PORT_INGRESS_PROFILE_LIST|Ethernet24": { "profile_list": "ingress_lossless_profile,ingress_lossy_profile" }, + "BUFFER_PROFILE|customized_egress_lossless_profile": { + "dynamic_th": "7", + "pool": "egress_lossless_pool", + "size": "0" + }, "BUFFER_PROFILE|egress_lossless_profile": { "dynamic_th": "7", "pool": "egress_lossless_pool", @@ -113,6 +118,11 @@ "pool": "egress_lossy_pool", "size": "9216" }, + "BUFFER_PROFILE|customized_ingress_lossless_profile": { + "dynamic_th": "7", + "pool": "ingress_lossless_pool", + "size": "0" + }, "BUFFER_PROFILE|ingress_lossless_profile": { "dynamic_th": "7", "pool": "ingress_lossless_pool", 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 d8deef194f..d3337ccadb 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 @@ -3,7 +3,7 @@ "profile": "NULL" }, "BUFFER_PG|Ethernet8|3-4": { - "profile": "customized_lossless_profile" + "profile": "customized_ingress_lossless_profile" }, "BUFFER_PG|Ethernet12|0": { "profile": "ingress_lossy_profile" @@ -55,6 +55,11 @@ "BUFFER_PORT_INGRESS_PROFILE_LIST|Ethernet24": { "profile_list": "ingress_lossless_profile,ingress_lossy_profile" }, + "BUFFER_PROFILE|customized_egress_lossless_profile": { + "dynamic_th": "7", + "pool": "egress_lossless_pool", + "size": "0" + }, "BUFFER_PROFILE|egress_lossless_profile": { "dynamic_th": "7", "pool": "egress_lossless_pool", @@ -65,6 +70,11 @@ "pool": "egress_lossy_pool", "size": "9216" }, + "BUFFER_PROFILE|customized_ingress_lossless_profile": { + "dynamic_th": "7", + "pool": "ingress_lossless_pool", + "size": "0" + }, "BUFFER_PROFILE|ingress_lossless_profile": { "dynamic_th": "7", "pool": "ingress_lossless_pool", 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 278a40bc0a..3572be8b69 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 @@ -12,7 +12,7 @@ "profile": "NULL" }, "BUFFER_PG|Ethernet8|3-4": { - "profile": "customized_lossless_profile" + "profile": "customized_ingress_lossless_profile" }, "BUFFER_PG|Ethernet12|0": { "profile": "ingress_lossy_profile" @@ -99,6 +99,11 @@ "BUFFER_PORT_INGRESS_PROFILE_LIST|Ethernet24": { "profile_list": "ingress_lossless_profile" }, + "BUFFER_PROFILE|customized_egress_lossless_profile": { + "dynamic_th": "7", + "pool": "egress_lossless_pool", + "size": "0" + }, "BUFFER_PROFILE|egress_lossless_profile": { "dynamic_th": "7", "pool": "egress_lossless_pool", @@ -109,6 +114,11 @@ "pool": "egress_lossy_pool", "size": "9216" }, + "BUFFER_PROFILE|customized_ingress_lossless_profile": { + "dynamic_th": "7", + "pool": "ingress_lossless_pool", + "size": "0" + }, "BUFFER_PROFILE|ingress_lossless_profile": { "dynamic_th": "7", "pool": "ingress_lossless_pool", 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 b3bda32f23..60f4455cad 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 @@ -3,7 +3,7 @@ "profile": "NULL" }, "BUFFER_PG|Ethernet8|3-4": { - "profile": "customized_lossless_profile" + "profile": "customized_ingress_lossless_profile" }, "BUFFER_PG|Ethernet12|0": { "profile": "ingress_lossy_profile" @@ -51,6 +51,11 @@ "BUFFER_PORT_INGRESS_PROFILE_LIST|Ethernet24": { "profile_list": "ingress_lossless_profile" }, + "BUFFER_PROFILE|customized_egress_lossless_profile": { + "dynamic_th": "7", + "pool": "egress_lossless_pool", + "size": "0" + }, "BUFFER_PROFILE|egress_lossless_profile": { "dynamic_th": "7", "pool": "egress_lossless_pool", @@ -61,6 +66,11 @@ "pool": "egress_lossy_pool", "size": "9216" }, + "BUFFER_PROFILE|customized_ingress_lossless_profile": { + "dynamic_th": "7", + "pool": "ingress_lossless_pool", + "size": "0" + }, "BUFFER_PROFILE|ingress_lossless_profile": { "dynamic_th": "7", "pool": "ingress_lossless_pool", From a4eeb698391caef0534f495eaaae655aa8af555c Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Thu, 2 Nov 2023 11:04:07 +0800 Subject: [PATCH 38/75] [config] config reload should generate sysinfo if missing (#3031) What I did Missing platform and mac in CONFIG_DB will result in container failure. We should make the config reload generate those info if missing. How I did it Add missing sys info if config_db.json doesn't contain it. How to verify it Unit test --- config/main.py | 35 +++++++++++++++ tests/config_test.py | 102 ++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 136 insertions(+), 1 deletion(-) diff --git a/config/main.py b/config/main.py index 24c56cfac0..c7250e8a6f 100644 --- a/config/main.py +++ b/config/main.py @@ -14,6 +14,7 @@ import time import itertools import copy +import tempfile from jsonpatch import JsonPatchConflict from jsonpointer import JsonPointerException @@ -142,6 +143,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 = [] @@ -1525,6 +1534,12 @@ def reload(db, filename, yes, load_sysinfo, no_service_restart, force, file_form # 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: @@ -1540,6 +1555,19 @@ def reload(db, filename, yes, load_sysinfo, no_service_restart, force, file_form 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("localhost", {}).get("platform") + mac = file_input.get("DEVICE_METADATA", {}).\ + get("localhost", {}).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 = [SONIC_CFGGEN_PATH, "-j", file, '-v', "DEVICE_METADATA.localhost.hwsku"] @@ -1598,6 +1626,13 @@ def reload(db, filename, yes, load_sysinfo, no_service_restart, force, file_form 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): diff --git a/tests/config_test.py b/tests/config_test.py index 81c4e404d4..c773ad29cb 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -8,6 +8,7 @@ import sys import unittest import ipaddress +import shutil from unittest import mock from jsonpatch import JsonPatchConflict @@ -261,6 +262,46 @@ def test_config_reload(self, get_cmd_module, setup_single_broadcom_asic): assert "\n".join([l.rstrip() for l in result.output.split('\n')][:1]) == reload_config_with_sys_info_command_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): print("TEARDOWN") @@ -464,9 +505,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) @@ -486,6 +584,7 @@ def test_reload_config(self, get_cmd_module, setup_single_broadcom_asic): == 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) @@ -505,6 +604,7 @@ def test_config_reload_disabled_service(self, get_cmd_module, setup_single_broad 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) From ced094043ca200095eb46a87de45c92646b28eb7 Mon Sep 17 00:00:00 2001 From: Longxiang Lyu <35479537+lolyu@users.noreply.github.com> Date: Tue, 7 Nov 2023 06:42:56 +0800 Subject: [PATCH 39/75] [dualtor_neighbor_check] Adjust zero-mac check condition (#3034) * [dualtor_neighbor_check] Adjust zero-mac check condition --- scripts/dualtor_neighbor_check.py | 15 ++++--- tests/dualtor_neighbor_check_test.py | 66 ++++++++++++++++++++++++++++ 2 files changed, 75 insertions(+), 6 deletions(-) diff --git a/scripts/dualtor_neighbor_check.py b/scripts/dualtor_neighbor_check.py index 161177008a..39de3c676f 100755 --- a/scripts/dualtor_neighbor_check.py +++ b/scripts/dualtor_neighbor_check.py @@ -155,7 +155,7 @@ 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", "TUNNERL_IN_ASIC", "HWSTATUS"] +NEIGHBOR_ATTRIBUTES = ["NEIGHBOR", "MAC", "PORT", "MUX_STATE", "IN_MUX_TOGGLE", "NEIGHBOR_IN_ASIC", "TUNNEL_IN_ASIC", "HWSTATUS"] NOT_AVAILABLE = "N/A" @@ -400,9 +400,12 @@ def check_neighbor_consistency(neighbors, mux_states, hw_mux_states, mac_to_port continue check_result["NEIGHBOR_IN_ASIC"] = neighbor_ip in asic_neighs - check_result["TUNNERL_IN_ASIC"] = neighbor_ip in asic_route_destinations + check_result["TUNNEL_IN_ASIC"] = neighbor_ip in asic_route_destinations if is_zero_mac: - check_result["HWSTATUS"] = ((not check_result["NEIGHBOR_IN_ASIC"]) and check_result["TUNNERL_IN_ASIC"]) + # 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 @@ -415,9 +418,9 @@ def check_neighbor_consistency(neighbors, mux_states, hw_mux_states, mac_to_port 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["TUNNERL_IN_ASIC"])) + 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["TUNNERL_IN_ASIC"]) + check_result["HWSTATUS"] = ((not check_result["NEIGHBOR_IN_ASIC"]) and check_result["TUNNEL_IN_ASIC"]) else: # skip as unknown mux state continue @@ -442,7 +445,7 @@ def parse_check_results(check_results): 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["TUNNERL_IN_ASIC"] = bool_to_yes_no[check_result["TUNNERL_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: diff --git a/tests/dualtor_neighbor_check_test.py b/tests/dualtor_neighbor_check_test.py index 1a0a7f5f5a..5916a183a0 100644 --- a/tests/dualtor_neighbor_check_test.py +++ b/tests/dualtor_neighbor_check_test.py @@ -611,3 +611,69 @@ def test_check_neighbor_consistency_zero_mac_neighbor(self, mock_log_functions): 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) From 62fcd77a0e7e4e0b8a5474fb7545b128aad4f0be Mon Sep 17 00:00:00 2001 From: Yevhen Fastiuk Date: Thu, 9 Nov 2023 15:59:24 +0200 Subject: [PATCH 40/75] Configure NTP according to extended configuration (#2835) - What I did Fix NTP CLI according to new extended configuration abilities - How I did it Additionally configure association_type and resolve_as when adding new NTP servers. - How to verify it 1. Add a new server 2. Show NTP sync show ntp. It should show you are sync with new server 3. Delete NTP server 4. Show NTP sync show ntp. It should show you are unsync Signed-off-by: Yevhen Fastiuk --- config/main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/main.py b/config/main.py index c7250e8a6f..630facb453 100644 --- a/config/main.py +++ b/config/main.py @@ -6581,7 +6581,9 @@ def add_ntp_server(ctx, ntp_ip_address): return else: try: - db.set_entry('NTP_SERVER', ntp_ip_address, {'NULL': 'NULL'}) + db.set_entry('NTP_SERVER', ntp_ip_address, + {'resolve_as': ntp_ip_address, + 'association_type': 'server'}) except ValueError as e: ctx.fail("Invalid ConfigDB. Error: {}".format(e)) click.echo("NTP server {} added to configuration".format(ntp_ip_address)) From 177dd8e8c67e169c223f626a24113a1488fa908d Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak <38952541+stepanblyschak@users.noreply.github.com> Date: Thu, 9 Nov 2023 20:37:19 +0200 Subject: [PATCH 41/75] [sonic-package-manager] add generated service to /etc/sonic/generated_services.conf (#3037) What I did Fixed an issue that after install new image the extension service isn't started immidetally at boot but when hostcfgd starts it. How I did it There is systemd-sonic-generator that enables services listed in /etc/sonic/generated_services.conf. Add extension service to the list as well. How to verify it Build image and run, verify extension starts at boot and not by hostcfgd. Signed-off-by: Stepan Blyschak --- .../service_creator/creator.py | 36 +++++++++++++++++++ tests/sonic_package_manager/conftest.py | 1 + .../test_service_creator.py | 2 ++ 3 files changed, 39 insertions(+) diff --git a/sonic_package_manager/service_creator/creator.py b/sonic_package_manager/service_creator/creator.py index 4b547b0578..583d0c2575 100644 --- a/sonic_package_manager/service_creator/creator.py +++ b/sonic_package_manager/service_creator/creator.py @@ -3,8 +3,10 @@ import contextlib import os import sys +import shutil import stat import subprocess +import tempfile from collections import defaultdict from typing import Dict, Type, List @@ -32,6 +34,8 @@ SYSTEMD_LOCATION = '/usr/lib/systemd/system' +GENERATED_SERVICES_CONF_FILE = '/etc/sonic/generated_services.conf' + SERVICE_MGMT_SCRIPT_TEMPLATE = 'service_mgmt.sh.j2' SERVICE_MGMT_SCRIPT_LOCATION = '/usr/local/bin' @@ -163,6 +167,7 @@ def create(self, self.generate_service_mgmt(package) self.update_dependent_list_file(package) self.generate_systemd_service(package) + self.update_generated_services_conf_file(package) self.generate_dump_script(package) self.generate_service_reconciliation_file(package) self.install_yang_module(package) @@ -199,6 +204,7 @@ def remove(self, remove_if_exists(os.path.join(DEBUG_DUMP_SCRIPT_LOCATION, f'{name}')) remove_if_exists(os.path.join(ETC_SONIC_PATH, f'{name}_reconcile')) self.update_dependent_list_file(package, remove=True) + self.update_generated_services_conf_file(package, remove=True) if deregister_feature and not keep_config: self.remove_config(package) @@ -320,6 +326,36 @@ def generate_systemd_service(self, package: Package): render_template(template, output_file, template_vars) log.info(f'generated {output_file}') + def update_generated_services_conf_file(self, package: Package, remove=False): + """ Updates generated_services.conf file. + + Args: + package: Package to update generated_services.conf with. + remove: True if update for removal process. + Returns: + None. + """ + name = package.manifest['service']['name'] + asic_service= package.manifest['service']['asic-service'] + + with open(GENERATED_SERVICES_CONF_FILE, 'r') as generated_services_conf_file: + list_of_services = set(generated_services_conf_file.read().split()) + + if not remove: + list_of_services.add(f'{name}.service') + if asic_service: + list_of_services.add(f'{name}@.service') + else: + list_of_services.discard(f'{name}.service') + list_of_services.discard(f'{name}@.service') + + # Write to tmp file and replace the original file with it + with tempfile.NamedTemporaryFile('w', delete=False) as tmp: + tmp.write('\n'.join(list_of_services)) + tmp.flush() + + shutil.move(tmp.name, GENERATED_SERVICES_CONF_FILE) + def update_dependent_list_file(self, package: Package, remove=False): """ This function updates dependent list file for packages listed in "dependent-of" (path: /etc/sonic/_dependent file). diff --git a/tests/sonic_package_manager/conftest.py b/tests/sonic_package_manager/conftest.py index 1ec067657c..10fe72cac1 100644 --- a/tests/sonic_package_manager/conftest.py +++ b/tests/sonic_package_manager/conftest.py @@ -408,6 +408,7 @@ def sonic_fs(fs): fs.create_dir(SYSTEMD_LOCATION) fs.create_dir(DOCKER_CTL_SCRIPT_LOCATION) fs.create_dir(SERVICE_MGMT_SCRIPT_LOCATION) + fs.create_file(GENERATED_SERVICES_CONF_FILE) fs.create_file(os.path.join(TEMPLATES_PATH, SERVICE_FILE_TEMPLATE)) fs.create_file(os.path.join(TEMPLATES_PATH, TIMER_UNIT_TEMPLATE)) fs.create_file(os.path.join(TEMPLATES_PATH, SERVICE_MGMT_SCRIPT_TEMPLATE)) diff --git a/tests/sonic_package_manager/test_service_creator.py b/tests/sonic_package_manager/test_service_creator.py index 657e4aacdb..c4bc157f10 100644 --- a/tests/sonic_package_manager/test_service_creator.py +++ b/tests/sonic_package_manager/test_service_creator.py @@ -95,6 +95,7 @@ def service_creator(mock_feature_registry, def test_service_creator(sonic_fs, manifest, service_creator, package_manager): entry = PackageEntry('test', 'azure/sonic-test') + manifest['service']['asic-service'] = True package = Package(entry, Metadata(manifest)) installed_packages = package_manager._get_installed_packages_and(package) service_creator.create(package) @@ -112,6 +113,7 @@ def read_file(name): assert read_file('warm-reboot_order') == 'swss teamd test syncd' assert read_file('fast-reboot_order') == 'teamd test swss syncd' assert read_file('test_reconcile') == 'test-process test-process-3' + assert set(read_file('generated_services.conf').split()) == set(['test.service', 'test@.service']) def test_service_creator_with_timer_unit(sonic_fs, manifest, service_creator): From 253b7975df061a69a52a87fbd98ec6430a728339 Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak <38952541+stepanblyschak@users.noreply.github.com> Date: Thu, 9 Nov 2023 20:40:50 +0200 Subject: [PATCH 42/75] [sonic-package-manager] do not modify config_db.json (#3032) What I did Installing an app.ext currently inserts app.ext specific init config into redis CONFIG_DB, /etc/sonic/config_db.json and /etc/sonic/init_cfg.json. Since on configuration reload and boot the configuration file is merged with /etc/sonic/init_cfg.json there is no point in modifying config_db.json. This can cause issues when config_db.json is not up-to-date. This is not a problem to configuration reload due to config migration, but it is not a valid JSON according to YANG model which does not validate old schema. How I did it Removed the relevant part of the code. How to verify it Verified by ONIE installing SONiC and installing an extension. Previosuly it failed and complaining about config_db.json not being valid: Leafref "../../LOOPBACK_INTERFACE_LIST/name" of value "Loopback0" points to a non-existing leaf. This is due to missing "Loopback0": {} in the LOOPBACK_INTERFACE table. This is not a problem since db_migrator can deal with it. With this change, this is fixed - config_db.json is not modified, however app.ext initial configuration is inserted into redis CONFIG_DB after configuration reload or reboot. Signed-off-by: Stepan Blyschak --- sonic_package_manager/service_creator/sonic_db.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/sonic_package_manager/service_creator/sonic_db.py b/sonic_package_manager/service_creator/sonic_db.py index 83c2558c93..842834fe84 100644 --- a/sonic_package_manager/service_creator/sonic_db.py +++ b/sonic_package_manager/service_creator/sonic_db.py @@ -12,7 +12,6 @@ from sonic_package_manager.service_creator.utils import in_chroot CONFIG_DB = 'CONFIG_DB' -CONFIG_DB_JSON = os.path.join(ETC_SONIC_PATH, 'config_db.json') INIT_CFG_JSON = os.path.join(ETC_SONIC_PATH, 'init_cfg.json') @@ -99,12 +98,9 @@ def get_connectors(cls): """ Yields available DBs connectors. """ initial_db_conn = cls.get_initial_db_connector() - persistent_db_conn = cls.get_persistent_db_connector() running_db_conn = cls.get_running_db_connector() yield initial_db_conn - if persistent_db_conn is not None: - yield persistent_db_conn if running_db_conn is not None: yield running_db_conn @@ -127,15 +123,6 @@ def get_running_db_connector(cls): return cls._running_db_conn - @classmethod - def get_persistent_db_connector(cls): - """ Returns persistent DB connector. """ - - if not os.path.exists(CONFIG_DB_JSON): - return None - - return PersistentConfigDbConnector(CONFIG_DB_JSON) - @classmethod def get_initial_db_connector(cls): """ Returns initial DB connector. """ From 67e1c3dc1cd95a75e44ffb1555675a8a3aa5186d Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Mon, 13 Nov 2023 13:32:39 +0800 Subject: [PATCH 43/75] Update GCU rsyslog validator (#3012) What I did In the privous PR #2991, we removed the rsyslog validator because the background daemon can now react(reset-failed & restart) the rsyslog service when the configuration changes. However, this change introduced an issue found in nightly tests. The problem is that there is a chance that the rsyslog service is not refreshed promptly after modification. We have two potential solutions: we can either modify the sonic-mgmt syslog test to wait more time for the completion of the rsyslog update or reintroduce the syslog validator with enhancements. As the update for rsyslog happens after the completion of the GCU apply-patch, I choose to modify in GCU to ensure that it accurately reflects the completion of the rsyslog change when the apply-patch process is finished. Now the behavior in this pull request aligns with the SONiC CLI when updating rsyslog settings. How I did it Add back and update GCU rsyslog validator and align it with syslog CLI. How to verify it Unit test and E2E test --- generic_config_updater/services_validator.py | 14 +++-- .../service_validator_test.py | 55 ++++++++++++++----- 2 files changed, 50 insertions(+), 19 deletions(-) diff --git a/generic_config_updater/services_validator.py b/generic_config_updater/services_validator.py index 497cb4ee74..25501f759f 100644 --- a/generic_config_updater/services_validator.py +++ b/generic_config_updater/services_validator.py @@ -49,11 +49,15 @@ def _service_restart(svc_name): def rsyslog_validator(old_config, upd_config, keys): - rc = os.system("/usr/bin/rsyslog-config.sh") - if rc != 0: - return _service_restart("rsyslog") - else: - return True + old_syslog = old_config.get("SYSLOG_SERVER", {}) + upd_syslog = upd_config.get("SYSLOG_SERVER", {}) + + if old_syslog != upd_syslog: + os.system("systemctl reset-failed rsyslog-config rsyslog") + rc = os.system("systemctl restart rsyslog-config") + if rc != 0: + return False + return True def dhcp_validator(old_config, upd_config, keys): diff --git a/tests/generic_config_updater/service_validator_test.py b/tests/generic_config_updater/service_validator_test.py index f14a3ad7b0..fff7fa20bc 100644 --- a/tests/generic_config_updater/service_validator_test.py +++ b/tests/generic_config_updater/service_validator_test.py @@ -142,14 +142,39 @@ def mock_time_sleep_call(sleep_time): }, ] -test_rsyslog_fail = [ - # Fail the calls, to get the entire fail path calls invoked - # - { "cmd": "/usr/bin/rsyslog-config.sh", "rc": 1 }, # config update; fails - { "cmd": "systemctl restart rsyslog", "rc": 1 }, # rsyslog restart; fails - { "cmd": "systemctl reset-failed rsyslog", "rc": 1 }, # reset; failure here just logs - { "cmd": "systemctl restart rsyslog", "rc": 1 }, # restart again; fails - { "cmd": "systemctl restart rsyslog", "rc": 1 }, # restart again; fails + +test_rsyslog_data = [ + { "old": {}, "upd": {}, "cmd": "" }, + { + "old": { "SYSLOG_SERVER": { + "10.13.14.17": {}, + "2001:aa:aa::aa": {} } }, + "upd": { "SYSLOG_SERVER": { + "10.13.14.17": {}, + "2001:aa:aa::aa": {} } }, + "cmd": "" + }, + { + "old": { "SYSLOG_SERVER": { + "10.13.14.17": {} } }, + "upd": { "SYSLOG_SERVER": { + "10.13.14.18": {} } }, + "cmd": "systemctl reset-failed rsyslog-config rsyslog,systemctl restart rsyslog-config" + }, + { + "old": { "SYSLOG_SERVER": { + "10.13.14.17": {} } }, + "upd": { "SYSLOG_SERVER": { + "10.13.14.17": {}, + "2001:aa:aa::aa": {} } }, + "cmd": "systemctl reset-failed rsyslog-config rsyslog,systemctl restart rsyslog-config" + }, + { + "old": { "SYSLOG_SERVER": { + "10.13.14.17": {} } }, + "upd": {}, + "cmd": "systemctl reset-failed rsyslog-config rsyslog,systemctl restart rsyslog-config" + } ] test_vlanintf_data = [ @@ -208,14 +233,16 @@ def test_change_apply_os_system(self, mock_os_sys): vlan_validator(entry["old"], entry["upd"], None) - - # Test failure case - # - os_system_calls = test_rsyslog_fail + os_system_calls = [] os_system_call_index = 0 + for entry in test_rsyslog_data: + if entry["cmd"]: + for c in entry["cmd"].split(","): + os_system_calls.append({"cmd": c, "rc": 0}) + msg = "case failed: {}".format(str(entry)) + + rsyslog_validator(entry["old"], entry["upd"], None) - rc = rsyslog_validator("", "", "") - assert not rc, "rsyslog_validator expected to fail" os_system_calls = [] os_system_call_index = 0 From f1e24ae548cce62d70ab760d086481a0b78c5fd9 Mon Sep 17 00:00:00 2001 From: rbpittman Date: Tue, 14 Nov 2023 20:35:28 -0500 Subject: [PATCH 44/75] GCU support for Cisco-8000 features (#3010) * GCU support for Cisco-8000 for shared/headroom pool size, dynamic th change, xoff change. * Support ECN GCU. --- .../gcu_field_operation_validators.conf.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/generic_config_updater/gcu_field_operation_validators.conf.json b/generic_config_updater/gcu_field_operation_validators.conf.json index 50d3ebb478..95be9bd8cb 100644 --- a/generic_config_updater/gcu_field_operation_validators.conf.json +++ b/generic_config_updater/gcu_field_operation_validators.conf.json @@ -79,7 +79,7 @@ "th": "20221100", "th2": "20221100", "td3": "20221100", - "cisco-8000": "" + "cisco-8000": "20201200" } } } @@ -103,7 +103,7 @@ "th": "20181100", "th2": "20181100", "td3": "20201200", - "cisco-8000": "" + "cisco-8000": "20201200" } }, "PG headroom modification": { @@ -120,7 +120,7 @@ "th": "20221100", "th2": "20221100", "td3": "20221100", - "cisco-8000": "" + "cisco-8000": "20201200" } } } @@ -146,7 +146,7 @@ "th": "20181100", "th2": "20181100", "td3": "20201200", - "cisco-8000": "" + "cisco-8000": "20201200" } } } From cd855698c345a5c2f95e19ac6a7701259085cb27 Mon Sep 17 00:00:00 2001 From: JunhongMao <134556118+JunhongMao@users.noreply.github.com> Date: Wed, 15 Nov 2023 11:02:55 -0500 Subject: [PATCH 45/75] [VOQ][saidump] Modify generate_dump: replace save_saidump with save_saidump_by_route_size (#2972) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * * [saidump] • Saidump for DNX-SAI https://github.com/sonic-net/sonic-buildimage/issues/13561 Solution and modification: To use the redis-db SAVE option to save the snapshot of DB each time and recover later, instead of looping through each entry in the table and saving it. (1) Updated sonic-buildimage/build_debian.sh, to install Python library rdbtools into the host. (2) Updated sonic-buildimage/src/sonic-sairedis/saidump/saidump.cpp, add a new option -r, which updates the rdbtools's output-JSON files' format. (3) Add a new script file: files/scripts/saidump.sh, to do the below steps For each ASIC0, such as ASIC0, #1. Save the Redis data. sudo sonic-db-cli -n asic$1 SAVE > /dev/null #2. Move dump files to /var/run/redisX/ docker exec database$1 sh -c "mv /var/lib/redis/dump.rdb /var/run/redis$1/" #3. Run rdb command to convert the dump files into JSON files sudo python /usr/local/bin/rdb --command json /var/run/redis$1/dump.rdb | sudo tee /var/run/redis$1/dump.json > /dev/null #4. Run saidump -r to update the JSON files' format as same as the saidump before. Then we can get the saidump result in standard output. docker exec syncd$1 sh -c "saidump -r /var/run/redis$1/dump.json" #5. clear sudo rm -f /var/run/redis$1/dump.rdb sudo rm -f /var/run/redis$1/dump.json (4) Update sonic-buildimage/src/sonic-utilities/scripts/generate_dump, replace saidump with saidump.sh * * [saidump] • Saidump for DNX-SAI https://github.com/sonic-net/sonic-buildimage/issues/13561 --- scripts/generate_dump | 115 +++++++++++++++++++++++++++++++++++++----- 1 file changed, 102 insertions(+), 13 deletions(-) diff --git a/scripts/generate_dump b/scripts/generate_dump index ac9528ff35..2179c17ca8 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -50,6 +50,7 @@ SKIP_BCMCMD=0 SAVE_STDERR=true RETURN_CODE=$EXT_SUCCESS DEBUG_DUMP=false +ROUTE_TAB_LIMIT_DIRECT_ITERATION=24000 # lock dirs/files LOCKDIR="/tmp/techsupport-lock" @@ -863,24 +864,114 @@ save_redis() { } ############################################################################### -# SAI DUMP from syncd +# GET ROUTE table size by ASIC id and ip version +# Globals: +# TIMEOUT_MIN +# TIMEOUT_EXIT_CODE +# Arguments: +# asic id +# IP version +# Returns: +# Status: 0 success, otherwise failure +############################################################################### +get_route_table_size_by_asic_id_and_ipver() { + local asic_id="$1" + local ip_ver="$2" + local filepath="/tmp/route_summary.txt" + local ns="" + RC=0 + + if [[ $NUM_ASICS -gt 1 ]] ; then + ns="-n ${asic_id}" + fi + + if [ $ip_ver = "ipv4" ]; then + cmd="vtysh ${ns} -c 'show ip route summary json'" + elif [ $ip_ver = "ipv6" ]; then + cmd="vtysh ${ns} -c 'show ipv6 route summary json'" + else + echo "Wrong argument $ip_ver." + return 255 + fi + + local timeout_cmd="timeout --foreground ${TIMEOUT_MIN}m" + local cmds="$cmd > '$filepath'" + + eval "${timeout_cmd} bash -c \"${cmds}\"" || RC=$? + + if [ $RC -eq $TIMEOUT_EXIT_CODE ]; then + echo "Command: $cmds timedout after ${TIMEOUT_MIN} minutes." + return $RC + elif [ $RC -ne 0 ]; then + echo "Command: $cmds failed with RC $RC" + return $RC + fi + + local route_tab_size=$(python3 -c "\ +import json +with open('$filepath') as json_file: + data = json.load(json_file) + print(data['routesTotal'])") + rm $filepath + echo "$route_tab_size" +} + +############################################################################### +# SAI DUMP based on the route table size +# if the route table has more than ROUTE_TAB_LIMIT_DIRECT_ITERATION +# then dump by Redis Save command, +# otherwize, dump it by directly iteration the Redis +# # Globals: # NUM_ASICS +# ROUTE_TAB_LIMIT_DIRECT_ITERATION # Arguments: # None # Returns: # None ############################################################################### -save_saidump() { +save_saidump_by_route_size() { trap 'handle_error $? $LINENO' ERR - if [[ ( "$NUM_ASICS" == 1 ) ]] ; then - save_cmd "docker exec syncd saidump" "saidump" - else - for (( i=0; i<$NUM_ASICS; i++ )) - do - save_cmd "docker exec syncd$i saidump" "saidump$i" - done - fi + + for (( i=0; i<$NUM_ASICS; i++ )) + do + route_size_ipv4=`get_route_table_size_by_asic_id_and_ipver $i ipv4` + ret=$? + + if [ $ret -ne 0 ]; then + echo "Get route table's size by asicid $i and ipv4 failed." + return $ret + fi + + route_size_ipv6=`get_route_table_size_by_asic_id_and_ipver $i ipv6` + ret=$? + + if [ $ret -ne 0 ]; then + echo "Get route table's size by asicid $i and ipv6 failed." + return $ret + fi + + route_size=`expr $route_size_ipv4 + $route_size_ipv6` + echo "The route table's size is $route_size(ipv4 $route_size_ipv4, ipv6 $route_size_ipv6)" + + if [[ $route_size -gt $ROUTE_TAB_LIMIT_DIRECT_ITERATION ]]; then + echo "Dump by using Redis SAVE." + + if [[ ( "$NUM_ASICS" == 1 ) ]] ; then + save_cmd "docker exec syncd saidump.sh" "saidump" + else + save_cmd "docker exec syncd$i saidump.sh" "saidump$i" + fi + else + echo "Dump by using direct iteration of Redis DB." + + if [[ ( "$NUM_ASICS" == 1 ) ]] ; then + save_cmd "docker exec syncd saidump" "saidump" + else + save_cmd "docker exec syncd$i saidump" "saidump$i" + fi + fi + done } ############################################################################### @@ -1807,9 +1898,7 @@ main() { save_cmd "ps -AwwL -o user,pid,lwp,ppid,nlwp,pcpu,pri,nice,vsize,rss,tty,stat,wchan:12,start,bsdtime,command" "ps.extended" & wait - if [[ "$device_type" != "SpineRouter" ]]; then - save_saidump - fi + save_saidump_by_route_size if [ "$asic" = "barefoot" ]; then collect_barefoot From 75199c0f9661fb3ff5a1967373003c16c4911d05 Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak <38952541+stepanblyschak@users.noreply.github.com> Date: Thu, 16 Nov 2023 00:05:13 +0200 Subject: [PATCH 46/75] [sonic-package-manager] insert newline in /etc/sonic/generated_services.conf (#3040) This issue is seen during upgrade from older branches to 202305 with PR https://github.com/sonic-net/sonic-utilities/pull/3037. When sonic-package-manager installs an extension it re-generates /etc/sonic/generated_services.conf. The file does not contain newline at the end. If packages are installed at runtime everything is ok, but when they are installed at build time, /etc/sonic/generated_services.conf gets later appended with new services: ``` echo "{{service}}" | sudo tee -a $GENERATED_SERVICE_FILE ``` This pattern is used multiple times in sonic_debian_extension.j2 script, thus fixing it in sonic-utilities. Signed-off-by: Stepan Blyschak --- sonic_package_manager/service_creator/creator.py | 1 + tests/sonic_package_manager/test_service_creator.py | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/sonic_package_manager/service_creator/creator.py b/sonic_package_manager/service_creator/creator.py index 583d0c2575..15d3aedd76 100644 --- a/sonic_package_manager/service_creator/creator.py +++ b/sonic_package_manager/service_creator/creator.py @@ -352,6 +352,7 @@ def update_generated_services_conf_file(self, package: Package, remove=False): # Write to tmp file and replace the original file with it with tempfile.NamedTemporaryFile('w', delete=False) as tmp: tmp.write('\n'.join(list_of_services)) + tmp.write('\n') tmp.flush() shutil.move(tmp.name, GENERATED_SERVICES_CONF_FILE) diff --git a/tests/sonic_package_manager/test_service_creator.py b/tests/sonic_package_manager/test_service_creator.py index c4bc157f10..8e6edcd0f0 100644 --- a/tests/sonic_package_manager/test_service_creator.py +++ b/tests/sonic_package_manager/test_service_creator.py @@ -113,7 +113,10 @@ def read_file(name): assert read_file('warm-reboot_order') == 'swss teamd test syncd' assert read_file('fast-reboot_order') == 'teamd test swss syncd' assert read_file('test_reconcile') == 'test-process test-process-3' - assert set(read_file('generated_services.conf').split()) == set(['test.service', 'test@.service']) + + generated_services_conf_content = read_file('generated_services.conf') + assert generated_services_conf_content.endswith('\n') + assert set(generated_services_conf_content.split()) == set(['test.service', 'test@.service']) def test_service_creator_with_timer_unit(sonic_fs, manifest, service_creator): From a8d236c8e3eee097a19e216a4c6a03ad56d6d734 Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak <38952541+stepanblyschak@users.noreply.github.com> Date: Thu, 16 Nov 2023 23:26:45 +0200 Subject: [PATCH 47/75] [fast-reboot-filter-routes.py] Remove click and improve error reporting (#3030) * [fast-reboot-filter-routes.py] Remove click and improve error reporting 1. Removed click usage from a script since there is no active click context therefore we saw these error messages: ``` ERR fast-reboot-filter-routes: Got an exception There is no active click context.: Traceback: Traceback (most recent call last):#012 File "/usr/local/bin/fast-reboot-filter-routes.py", line 18, in get_connected_routes#012 output, ret = clicommon.run_command(cmd, return_cmd=True)#012 File "/usr/local/lib/python3.9/dist-packages/utilities_common/cli.py", line 545, in run_command#012 proc = subprocess.Popen(command, shell=shell, text=True, stdout=subprocess.PIPE)#012 File "/usr/lib/python3.9/subprocess.py", line 951, in __init__#012 self._execute_child(args, executable, preexec_fn, close_fds,#012 File "/usr/lib/python3.9/subprocess.py", line 1823, in _execute_child#012 raise child_exception_type(errno_num, err_msg, err_filename)#012FileNotFoundError: [Errno 2] No such file or directory: 'sudo vtysh -c "show ip route connected json"'#012#012During handling of the above exception, another exception occurred:#012#012Traceback (most recent call last):#012 File "/usr/local/lib/python3.9/dist-packages/click/globals.py", line 23, in get_current_context#012 return getattr(_local, 'stack')[-1]#012AttributeError: '_thread._local' object has no attribute 'stack'#012#012During handling of the above exception, another exception occurred:#012#012Traceback (most recent call last):#012 File "/usr/local/bin/fast-reboot-filter-routes.py", line 79, in #012 res = main()#012 File "/usr/local/bin/fast-reboot-filter-routes.py", line 70, in main#012 connected_routes = get_connected_routes()#012 File "/usr/local/bin/fast-reboot-filter-routes.py", line 27, in get_connected_routes#012 ctx = click.get_current_context()#012 File "/usr/local/lib/python3.9/dist-packages/click/globals.py", line 26, in get_current_context#012 raise RuntimeError('There is no active click context.')#012RuntimeError: There is no active click context. ``` 2. Improved error reporting so that when an error occurs when we run a command it will report it via terminal and syslog: stdout: ``` Failed to execute sudo vtysh -c show ip route connected jsson: % Unknown command: show ip route connected jsson ``` syslog: ``` Oct 17 11:53:10.620788 arc-switch1025 ERR fast-reboot-filter-routes: Got an exception: Failed to execute sudo vtysh -c show ip route connected jsson: % Unknown command: show ip route connected jsson: Traceback: Traceback (most recent call last):#012 File "/home/admin/fast-reboot-filter-routes.py", line 73, in #012 res = main()#012 File "/home/admin/fast-reboot-filter-routes.py", line 64, in main#012 connected_routes = get_connected_routes()#012 File "/home/admin/fast-reboot-filter-routes.py", line 18, in get_connected_routes#012 raise Exception("Failed to execute {}: {}".format(" ".join(cmd), output.rstrip('\n')))#012Exception: Failed to execute sudo vtysh -c show ip route connected jsson: % Unknown command: show ip route connected jsson ``` Signed-off-by: Stepan Blyschak * add a test for command failure Signed-off-by: Stepan Blyschak * Increase coverage Signed-off-by: Stepan Blyschak --------- Signed-off-by: Stepan Blyschak --- scripts/fast-reboot-filter-routes.py | 23 +++++++++-------------- tests/fast_reboot_filter_routes_test.py | 11 +++++++++-- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/scripts/fast-reboot-filter-routes.py b/scripts/fast-reboot-filter-routes.py index c66972bf48..1e0bcbeca2 100755 --- a/scripts/fast-reboot-filter-routes.py +++ b/scripts/fast-reboot-filter-routes.py @@ -6,7 +6,6 @@ import utilities_common.cli as clicommon import syslog import traceback -import click from swsscommon.swsscommon import ConfigDBConnector ROUTE_IDX = 1 @@ -14,19 +13,14 @@ 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") - + output, ret = clicommon.run_command(cmd, return_cmd=True) + if ret != 0: + raise Exception("Failed to execute {}: {}".format(" ".join(cmd), output.rstrip('\n'))) + if output is not None: + route_info = json.loads(output) + for route in route_info.keys(): + connected_routes.append(route) + return connected_routes def get_route(db, route): @@ -81,6 +75,7 @@ def main(): syslog.syslog(syslog.LOG_NOTICE, "SIGINT received. Quitting") res = 1 except Exception as e: + print(e) syslog.syslog(syslog.LOG_ERR, "Got an exception %s: Traceback: %s" % (str(e), traceback.format_exc())) res = 2 finally: diff --git a/tests/fast_reboot_filter_routes_test.py b/tests/fast_reboot_filter_routes_test.py index 5da0862881..3227fa8314 100644 --- a/tests/fast_reboot_filter_routes_test.py +++ b/tests/fast_reboot_filter_routes_test.py @@ -10,10 +10,17 @@ def setup(self): @patch('utilities_common.cli.run_command') def test_get_connected_routes(self, mock_run_command): - mock_run_command.return_value = (None, 0) + mock_run_command.return_value = ('{"1.1.0.0/16": {}}', 0) output = fast_reboot_filter_routes.get_connected_routes() mock_run_command.assert_called_with(['sudo', 'vtysh', '-c', "show ip route connected json"], return_cmd=True) - assert output == [] + assert output == ['1.1.0.0/16'] + + @patch('utilities_common.cli.run_command') + def test_get_connected_routes_command_failed(self, mock_run_command): + mock_run_command.return_value = ('{"1.1.0.0/16": {}}', 1) + with pytest.raises(Exception): + fast_reboot_filter_routes.get_connected_routes() + mock_run_command.assert_called_with(['sudo', 'vtysh', '-c', "show ip route connected json"], return_cmd=True) def teardown(self): print("TEAR DOWN") From c4b078287c2a1fb7bc144eaa69c0173c3a482571 Mon Sep 17 00:00:00 2001 From: Stephen Sun <5379172+stephenxs@users.noreply.github.com> Date: Fri, 17 Nov 2023 08:00:44 +0800 Subject: [PATCH 48/75] Support new platform in generic configuration update (#3038) Signed-off-by: Stephen Sun --- .../gcu_field_operation_validators.conf.json | 3 ++- .../field_operation_validator_test.py | 8 ++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/generic_config_updater/gcu_field_operation_validators.conf.json b/generic_config_updater/gcu_field_operation_validators.conf.json index 95be9bd8cb..f447b0d851 100644 --- a/generic_config_updater/gcu_field_operation_validators.conf.json +++ b/generic_config_updater/gcu_field_operation_validators.conf.json @@ -17,7 +17,8 @@ "helper_data": { "rdma_config_update_validator": { "mellanox_asics": { - "spc1": [ "ACS-MSN2700", "ACS-MSN2740", "ACS-MSN2100", "ACS-MSN2410", "ACS-MSN2010", "Mellanox-SN2700", "Mellanox-SN2700-D48C8" ], + "spc1": [ "ACS-MSN2700", "ACS-MSN2740", "ACS-MSN2100", "ACS-MSN2410", "ACS-MSN2010", "Mellanox-SN2700", "Mellanox-SN2700-D48C8", + "ACS-MSN2700-A1", "Mellanox-SN2700-A1", "Mellanox-SN2700-A1-C28D8", "Mellanox-SN2700-A1-D40C8S8", "Mellanox-SN2700-A1-D44C10", "Mellanox-SN2700-A1-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"] diff --git a/tests/generic_config_updater/field_operation_validator_test.py b/tests/generic_config_updater/field_operation_validator_test.py index 8874a4026d..1bc396740c 100644 --- a/tests/generic_config_updater/field_operation_validator_test.py +++ b/tests/generic_config_updater/field_operation_validator_test.py @@ -222,6 +222,14 @@ def test_get_asic_spc4(self, mock_popen, mock_get_sonic_version_info): 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_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 = ["Mellanox-SN2700-A1", 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_th(self, mock_popen, mock_get_sonic_version_info): From cfd2dd3977e3a1619171763925f4589028d2e9ff Mon Sep 17 00:00:00 2001 From: Vivek Date: Sat, 18 Nov 2023 19:27:06 -0800 Subject: [PATCH 49/75] Add container rsyslog.conf to the sys dump (#3039) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit What I did Added a new directory to generate_dump for collecting any container specific config files etc to the sys dump. For now only the rsyslog.conf is added How I did it How to verify it Run the dump and see if the rsyslogd files are present root@r-leopard-41:/home/admin# tree -a sonic_dump_r-leopard-41_20230815_013600/dump/container_dumps/ sonic_dump_r-leopard-41_20230815_013600/dump/container_dumps/ ├── bgp │ └── rsyslog.conf ├── database │ └── rsyslog.conf ├── dhcp_relay │ └── rsyslog.conf ├── eventd │ └── rsyslog.conf ├── lldp │ └── rsyslog.conf ├── mgmt-framework │ └── rsyslog.conf ├── pmon │ └── rsyslog.conf ├── radv │ └── rsyslog.conf ├── snmp │ └── rsyslog.conf ├── swss │ └── rsyslog.conf ├── syncd │ └── rsyslog.conf ├── teamd │ └── rsyslog.conf └── telemetry └── rsyslog.conf 13 directories, 13 files --- scripts/generate_dump | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/scripts/generate_dump b/scripts/generate_dump index 2179c17ca8..5fa0f605d3 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -1745,6 +1745,22 @@ save_dump_state_all_ns() { done } +############################################################################### +# Save important files that are present in container storage for better debugging +# Files will be saved under dump// +# Types of Files Saved: +# 1) rsyslogd.conf +############################################################################### +save_container_files() { + trap 'handle_error $? $LINENO' ERR + local CONTAINER_FDUMP="container_dumps" + # Get the running container names + container_names=$(docker ps --format '{{.Names}}' --filter status=running) + for name in $container_names; do + $MKDIR $V -p $LOGDIR/$CONTAINER_FDUMP/$name + copy_from_docker $name "/etc/rsyslog.conf" $LOGDIR/$CONTAINER_FDUMP/$name/rsyslog.conf + done +} ############################################################################### # Main generate_dump routine @@ -1872,6 +1888,8 @@ main() { wait save_redis_info & + save_container_files & + if $DEBUG_DUMP then save_dump_state_all_ns & From 3610ce9360ed6dbbdc42bd6d10849adf111bcad9 Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak <38952541+stepanblyschak@users.noreply.github.com> Date: Mon, 20 Nov 2023 18:59:44 +0200 Subject: [PATCH 50/75] [sonic-package-manager] Fix YANG validation failure on upgrade when feature has constraints in YANG model on FEATURE table (#2933) * [sonic-package-manager] Fix YANG validation failure on upgrade when feature has constraints in YANG model on FEATURE table Signed-off-by: Stepan Blyschak --- sonic_package_manager/manager.py | 36 ++++++++++++++------- tests/sonic_package_manager/test_manager.py | 5 +++ 2 files changed, 30 insertions(+), 11 deletions(-) diff --git a/sonic_package_manager/manager.py b/sonic_package_manager/manager.py index d01ed9cb44..e41bb00e8f 100644 --- a/sonic_package_manager/manager.py +++ b/sonic_package_manager/manager.py @@ -44,7 +44,10 @@ from sonic_package_manager.reference import PackageReference from sonic_package_manager.registry import RegistryResolver from sonic_package_manager.service_creator import SONIC_CLI_COMMANDS -from sonic_package_manager.service_creator.creator import ServiceCreator +from sonic_package_manager.service_creator.creator import ( + ServiceCreator, + run_command +) from sonic_package_manager.service_creator.feature import FeatureRegistry from sonic_package_manager.service_creator.sonic_db import ( INIT_CFG_JSON, @@ -483,7 +486,7 @@ def uninstall(self, name: str, # After all checks are passed we proceed to actual uninstallation try: - self._stop_feature(package) + self._disable_feature(package) self._uninstall_cli_plugins(package) self.service_creator.remove(package, keep_config=keep_config) self.service_creator.generate_shutdown_sequence_files( @@ -934,18 +937,29 @@ def _get_installed_packages_except(self, package: Package) -> Dict[str, Package] packages.pop(package.name) return packages - def _start_feature(self, package: Package, block: bool = True): - """ Starts the feature and blocks till operation is finished if - block argument is set to True. + def _stop_feature(self, package: Package): + self._systemctl_action(package, 'stop') - Args: - package: Package object of the feature that will be started. - block: Whether to block for operation completion. - """ + def _start_feature(self, package: Package): + self._systemctl_action(package, 'start') + + def _systemctl_action(self, package: Package, action: str): + """ Execute systemctl action for a service. """ + + name = package.manifest['service']['name'] + log.info('Execute systemctl action {} on {} service'.format(action, name)) - self._set_feature_state(package, 'enabled', block) + host_service = package.manifest['service']['host-service'] + asic_service = package.manifest['service']['asic-service'] + single_instance = host_service or (asic_service and not self.is_multi_npu) + multi_instance = asic_service and self.is_multi_npu + if single_instance: + run_command(['systemctl', action, name]) + if multi_instance: + for npu in range(self.num_npus): + run_command(['systemctl', action, f'{name}@{npu}']) - def _stop_feature(self, package: Package, block: bool = True): + def _disable_feature(self, package: Package, block: bool = True): """ Stops the feature and blocks till operation is finished if block argument is set to True. diff --git a/tests/sonic_package_manager/test_manager.py b/tests/sonic_package_manager/test_manager.py index db9a79b309..46ea3f6acb 100644 --- a/tests/sonic_package_manager/test_manager.py +++ b/tests/sonic_package_manager/test_manager.py @@ -9,6 +9,11 @@ from sonic_package_manager.errors import * from sonic_package_manager.version import Version +@pytest.fixture(autouse=True) +def mock_run_command(): + with patch('sonic_package_manager.manager.run_command') as run_command: + yield run_command + def test_installation_not_installed(package_manager): package_manager.install('test-package') From 8ebc56a09f018a70ef4890ea37330cd79e2c0ff8 Mon Sep 17 00:00:00 2001 From: Nazarii Hnydyn Date: Mon, 20 Nov 2023 20:01:17 +0200 Subject: [PATCH 51/75] [sonic_installer]: Improve exception handling: introduce notes. (#3029) Signed-off-by: Nazarii Hnydyn --- sonic_installer/common.py | 9 +++++++-- sonic_installer/exception.py | 13 ++++++++++++- tests/test_sonic_installer.py | 15 +++++++++++++++ 3 files changed, 34 insertions(+), 3 deletions(-) diff --git a/sonic_installer/common.py b/sonic_installer/common.py index 50b736901f..2551fe8e85 100644 --- a/sonic_installer/common.py +++ b/sonic_installer/common.py @@ -46,10 +46,15 @@ def run_command_or_raise(argv, raise_exception=True, capture=True): stdout = subprocess.PIPE if capture else None proc = subprocess.Popen(argv, text=True, stdout=stdout) - out, _ = proc.communicate() + out, err = proc.communicate() if proc.returncode != 0 and raise_exception: - raise SonicRuntimeException("Failed to run command '{0}'".format(argv)) + sre = SonicRuntimeException("Failed to run command '{0}'".format(argv)) + if out: + sre.add_note("\nSTDOUT:\n{}".format(out.rstrip("\n"))) + if err: + sre.add_note("\nSTDERR:\n{}".format(err.rstrip("\n"))) + raise sre if out is not None: out = out.rstrip("\n") diff --git a/sonic_installer/exception.py b/sonic_installer/exception.py index 08eab7d2ff..c9e15c9bbd 100644 --- a/sonic_installer/exception.py +++ b/sonic_installer/exception.py @@ -5,4 +5,15 @@ class SonicRuntimeException(Exception): """SONiC Runtime Excpetion class used to report SONiC related errors """ - pass + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + self.notes = [] + + def __str__(self): + msg = super().__str__() + if self.notes: + msg += "\n" + "\n".join(self.notes) + return msg + + def add_note(self, note): + self.notes.append(note) diff --git a/tests/test_sonic_installer.py b/tests/test_sonic_installer.py index e9cb727d37..9e8438a7fc 100644 --- a/tests/test_sonic_installer.py +++ b/tests/test_sonic_installer.py @@ -129,3 +129,18 @@ def test_set_fips(get_bootloader): 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 + +@patch("sonic_installer.common.subprocess.Popen") +def test_runtime_exception(mock_popen): + """ This test covers the "sonic-installer" exception handling. """ + + mock_popen.return_value.returncode = 1 + mock_popen.return_value.communicate.return_value = ('Running', 'Failed') + + with pytest.raises(sonic_installer_common.SonicRuntimeException) as sre: + sonic_installer_common.run_command_or_raise(["test.sh"]) + + assert '\nSTDOUT:\nRunning' in sre.value.notes, "Invalid STDOUT" + assert '\nSTDERR:\nFailed' in sre.value.notes, "Invalid STDERR" + + assert all(v in str(sre.value) for v in ['test.sh', 'Running', 'Failed']), "Invalid message" From 1e8131050a5d49aadcfe9dafbc10fadba3e61752 Mon Sep 17 00:00:00 2001 From: Zhijian Li Date: Wed, 22 Nov 2023 18:19:27 +0800 Subject: [PATCH 52/75] [wol] Implement wol command line utility (#3048) What is the motivation for this PR? Implement wol command-line utility based on Wake-on-LAN-HLD.md. How did you verify/test it? Add unittest to verify code. Signed-off-by: Zhijian Li --- doc/Command-Reference.md | 41 +++++++ setup.py | 2 + tests/wol_test.py | 229 +++++++++++++++++++++++++++++++++++++++ wol/__init__.py | 0 wol/main.py | 202 ++++++++++++++++++++++++++++++++++ 5 files changed, 474 insertions(+) create mode 100644 tests/wol_test.py create mode 100644 wol/__init__.py create mode 100644 wol/main.py diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 6784b8faf6..d39e64ec82 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -205,6 +205,8 @@ * [Static DNS Commands](#static-dns-commands) * [Static DNS config command](#static-dns-config-command) * [Static DNS show command](#static-dns-show-command) +* [Wake-on-LAN Commands](#wake-on-lan-commands) + * [Send Wake-on-LAN Magic Packet command](#send-wake-on-lan-magic-packet-command) ## Document History @@ -12844,3 +12846,42 @@ admin@sonic:~$ show dns nameserver 8.8.8.8 ``` + +# Wake-on-LAN Commands + +## Send Wake-on-LAN Magic Packet command + +The `wol` command is used to send magic packet to target device. + +### Usage + +``` +wol [-b] [-p password] [-c count] [-i interval] [-v] +``` + +- `interface`: SONiC interface name. +- `target_mac`: a list of target devices' MAC address, separated by comma. +- `-b`: Use broadcast MAC address instead of target device's MAC address as **Destination MAC Address in Ethernet Frame Header**. +- `-p password`: An optional 4 or 6 byte password, in ethernet hex format or quad-dotted decimal[^3]. +- `-c count`: For each target MAC address, the `count` of magic packets to send. `count` must between 1 and 5. Default value is 1. This param must use with `-i`. +- `-i interval`: Wait `interval` milliseconds between sending each magic packet. `interval` must between 0 and 2000. Default value is 0. This param must use with `-c`. +- `-v`: Verbose output. + +### Example + +``` +admin@sonic:~$ wol Ethernet10 00:11:22:33:44:55 +admin@sonic:~$ wol Ethernet10 00:11:22:33:44:55 -b +admin@sonic:~$ wol Vlan1000 00:11:22:33:44:55,11:33:55:77:99:bb -p 00:22:44:66:88:aa +admin@sonic:~$ wol Vlan1000 00:11:22:33:44:55,11:33:55:77:99:bb -p 192.168.1.1 -c 3 -i 2000 -v +Sending 3 magic packet to 00:11:22:33:44:55 via interface Vlan1000 +1st magic packet sent to 00:11:22:33:44:55 +2nd magic packet sent to 00:11:22:33:44:55 +3rd magic packet sent to 00:11:22:33:44:55 +Sending 3 magic packet to 11:33:55:77:99:bb via interface Vlan1000 +1st magic packet sent to 11:33:55:77:99:bb +2nd magic packet sent to 11:33:55:77:99:bb +3rd magic packet sent to 11:33:55:77:99:bb +``` + +For the 4th example, it specifise 2 target MAC addresses and `count` is 3. So it'll send 6 magic packets in total. diff --git a/setup.py b/setup.py index 6888d3405d..3b7e4c17e0 100644 --- a/setup.py +++ b/setup.py @@ -88,6 +88,7 @@ 'utilities_common', 'watchdogutil', 'sonic_cli_gen', + 'wol', ], package_data={ 'generic_config_updater': ['gcu_services_validator.conf.json', 'gcu_field_operation_validators.conf.json'], @@ -222,6 +223,7 @@ 'undebug = undebug.main:cli', 'watchdogutil = watchdogutil.main:watchdogutil', 'sonic-cli-gen = sonic_cli_gen.main:cli', + 'wol = wol.main:wol', ] }, install_requires=[ diff --git a/tests/wol_test.py b/tests/wol_test.py new file mode 100644 index 0000000000..011676eeac --- /dev/null +++ b/tests/wol_test.py @@ -0,0 +1,229 @@ +import click +import io +import pytest +import wol.main as wol +from click.testing import CliRunner +from unittest.mock import patch, MagicMock + +ETHER_TYPE_WOL = b'\x08\x42' +BROADCAST_MAC = wol.MacAddress('ff:ff:ff:ff:ff:ff') + +SAMPLE_INTERFACE_ETH0 = "Ethernet0" +SAMPLE_INTERFACE_VLAN1000 = "Vlan1000" +SAMPLE_INTERFACE_PO100 = "PortChannel100" + +SAMPLE_ETH0_MAC = wol.MacAddress('11:33:55:77:99:bb') +SAMPLE_VLAN1000_MAC = wol.MacAddress('22:44:66:88:aa:cc') +SAMPLE_PO100_MAC = wol.MacAddress('33:55:77:99:bb:dd') +SAMPLE_TARGET_MAC = wol.MacAddress('44:66:88:aa:cc:ee') +SAMPLE_TARGET_MAC_LIST = [wol.MacAddress('44:66:88:aa:cc:ee'), wol.MacAddress('55:77:99:bb:dd:ff')] + +SAMPLE_MAGIC_PACKET_UNICAST = SAMPLE_TARGET_MAC.to_bytes() + SAMPLE_ETH0_MAC.to_bytes() + ETHER_TYPE_WOL + b'\xff' * 6 + SAMPLE_TARGET_MAC.to_bytes() * 16 +SAMPLE_MAGIC_PACKET_BROADCAST = BROADCAST_MAC.to_bytes() + SAMPLE_ETH0_MAC.to_bytes() + ETHER_TYPE_WOL + b'\xff' * 6 + SAMPLE_TARGET_MAC.to_bytes() * 16 + + +class TestMacAddress(): + def test_init(self): + # Test Case 1: Test with a valid MAC address + assert wol.MacAddress('00:11:22:33:44:55').address == b'\x00\x11\x22\x33\x44\x55' + # Test Case 2: Test with an invalid MAC address + with pytest.raises(ValueError) as exc_info: + wol.MacAddress('INVALID_MAC_ADDRESS') + assert exc_info.value.message == "invalid MAC address" + with pytest.raises(ValueError) as exc_info: + wol.MacAddress('00:11:22:33:44') + assert exc_info.value.message == "invalid MAC address" + + def test_str(self): + assert str(wol.MacAddress('00:01:0a:a0:aa:ee')) == '00:01:0a:a0:aa:ee' + assert str(wol.MacAddress('ff:ff:ff:ff:ff:ff')) == 'ff:ff:ff:ff:ff:ff' + + def test_eq(self): + # Test Case 1: Test with two equal MAC addresses + assert wol.MacAddress('00:11:22:33:44:55') == wol.MacAddress('00:11:22:33:44:55') + # Test Case 2: Test with two unequal MAC addresses + assert wol.MacAddress('00:11:22:33:44:55') != wol.MacAddress('55:44:33:22:11:00') + + def test_to_bytes(self): + assert wol.MacAddress('00:11:22:33:44:55').to_bytes() == b'\x00\x11\x22\x33\x44\x55' + + +@patch('wol.main.get_interface_mac', MagicMock(return_value=SAMPLE_ETH0_MAC)) +def test_build_magic_packet(): + # Test Case 1: Test build magic packet basic + expected_output = SAMPLE_TARGET_MAC.to_bytes() + SAMPLE_ETH0_MAC.to_bytes() + ETHER_TYPE_WOL \ + + b'\xff' * 6 + SAMPLE_TARGET_MAC.to_bytes() * 16 + assert wol.build_magic_packet(SAMPLE_INTERFACE_ETH0, SAMPLE_TARGET_MAC, broadcast=False, password=b'') == expected_output + # Test Case 2: Test build magic packet with broadcast flag + expected_output = BROADCAST_MAC.to_bytes() + SAMPLE_ETH0_MAC.to_bytes() + ETHER_TYPE_WOL \ + + b'\xff' * 6 + SAMPLE_TARGET_MAC.to_bytes() * 16 + assert wol.build_magic_packet(SAMPLE_INTERFACE_ETH0, SAMPLE_TARGET_MAC, broadcast=True, password=b'') == expected_output + # Test Case 3: Test build magic packet with 4-byte password + password = b'\x12\x34' + expected_output = SAMPLE_TARGET_MAC.to_bytes() + SAMPLE_ETH0_MAC.to_bytes() + ETHER_TYPE_WOL \ + + b'\xff' * 6 + SAMPLE_TARGET_MAC.to_bytes() * 16 + password + assert wol.build_magic_packet(SAMPLE_INTERFACE_ETH0, SAMPLE_TARGET_MAC, broadcast=False, password=password) == expected_output + # Test Case 4: Test build magic packet with 6-byte password + password = b'\x12\x34\x56\x78\x9a\xbc' + expected_output = SAMPLE_TARGET_MAC.to_bytes() + SAMPLE_ETH0_MAC.to_bytes() + ETHER_TYPE_WOL \ + + b'\xff' * 6 + SAMPLE_TARGET_MAC.to_bytes() * 16 + password + assert wol.build_magic_packet(SAMPLE_INTERFACE_ETH0, SAMPLE_TARGET_MAC, broadcast=False, password=password) == expected_output + + +def test_send_magic_packet(): + # Test Case 1: Test send magic packet with count is 1 + with patch('socket.socket') as mock_socket: + wol.send_magic_packet(SAMPLE_INTERFACE_ETH0, SAMPLE_TARGET_MAC, SAMPLE_MAGIC_PACKET_UNICAST, count=1, interval=0, verbose=False) + mock_socket.return_value.bind.assert_called_once_with((SAMPLE_INTERFACE_ETH0, 0)) + mock_socket.return_value.send.assert_called_once_with(SAMPLE_MAGIC_PACKET_UNICAST) + # Test Case 2: Test send magic packet with count is 3 + with patch('socket.socket') as mock_socket: + wol.send_magic_packet(SAMPLE_INTERFACE_ETH0, SAMPLE_TARGET_MAC, SAMPLE_MAGIC_PACKET_UNICAST, count=3, interval=0, verbose=False) + assert mock_socket.return_value.bind.call_count == 1 + assert mock_socket.return_value.send.call_count == 3 + # Test Case 3: Test send magic packet with interval is 1000 + with patch('socket.socket') as mock_socket, \ + patch('time.sleep') as mock_sleep: + wol.send_magic_packet(SAMPLE_INTERFACE_ETH0, SAMPLE_TARGET_MAC, SAMPLE_MAGIC_PACKET_UNICAST, count=3, interval=1000, verbose=False) + assert mock_socket.return_value.bind.call_count == 1 + assert mock_socket.return_value.send.call_count == 3 + assert mock_sleep.call_count == 2 # sleep twice between 3 packets + mock_sleep.assert_called_with(1) + # Test Case 4: Test send magic packet with verbose is True + expected_verbose_output = f"Sending 5 magic packet to {SAMPLE_TARGET_MAC} via interface {SAMPLE_INTERFACE_ETH0}\n" + \ + f"1st magic packet sent to {SAMPLE_TARGET_MAC}\n" + \ + f"2nd magic packet sent to {SAMPLE_TARGET_MAC}\n" + \ + f"3rd magic packet sent to {SAMPLE_TARGET_MAC}\n" + \ + f"4th magic packet sent to {SAMPLE_TARGET_MAC}\n" + \ + f"5th magic packet sent to {SAMPLE_TARGET_MAC}\n" + with patch('socket.socket') as mock_socket, patch('time.sleep'), patch('sys.stdout', new_callable=io.StringIO) as mock_stdout: + wol.send_magic_packet(SAMPLE_INTERFACE_ETH0, SAMPLE_TARGET_MAC, SAMPLE_MAGIC_PACKET_UNICAST, count=5, interval=1000, verbose=True) + assert mock_socket.return_value.bind.call_count == 1 + assert mock_socket.return_value.send.call_count == 5 + assert mock_stdout.getvalue() == expected_verbose_output + + +@patch('netifaces.interfaces', MagicMock(return_value=[SAMPLE_INTERFACE_ETH0])) +@patch('wol.main.get_interface_operstate', MagicMock(return_value="up")) +def test_validate_interface(): + # Test Case 1: Test with a valid SONiC interface name + assert wol.validate_interface(None, None, SAMPLE_INTERFACE_ETH0) == SAMPLE_INTERFACE_ETH0 + # Test Case 2: Test with an invalid SONiC interface name + with pytest.raises(click.BadParameter) as exc_info: + wol.validate_interface(None, None, "INVALID_SONIC_INTERFACE") + assert exc_info.value.message == "invalid SONiC interface name INVALID_SONIC_INTERFACE" + # Test Case 3: Test with an valid SONiC interface name, but the interface operstat is down + with patch('wol.main.get_interface_operstate', MagicMock(return_value="down")): + with pytest.raises(click.BadParameter) as exc_info: + wol.validate_interface(None, None, SAMPLE_INTERFACE_ETH0) + assert exc_info.value.message == f"interface {SAMPLE_INTERFACE_ETH0} is not up" + + +def test_parse_target_mac(): + # Test Case 1: Test with a single valid target MAC address + wol.parse_target_mac(None, None, str(SAMPLE_TARGET_MAC)) == [SAMPLE_TARGET_MAC] + # Test Case 2: Test with a list of valid target MAC addresses + mac_list = [SAMPLE_ETH0_MAC, SAMPLE_VLAN1000_MAC, SAMPLE_PO100_MAC] + assert wol.parse_target_mac(None, None, ",".join([str(x) for x in mac_list])) == mac_list + # Test Case 3: Test with a single invalid target MAC address + with pytest.raises(click.BadParameter) as exc_info: + wol.parse_target_mac(None, None, "INVALID_MAC_ADDRESS") + assert exc_info.value.message == "invalid MAC address INVALID_MAC_ADDRESS" + # Test Case 4: Test with a list of target MAC addresses, one of them is invalid + with pytest.raises(click.BadParameter) as exc_info: + wol.parse_target_mac(None, None, ",".join([str(SAMPLE_ETH0_MAC), "INVALID_MAC_ADDRESS"])) + assert exc_info.value.message == "invalid MAC address INVALID_MAC_ADDRESS" + + +def test_parse_password(): + # Test Case 1: Test with an empty password + assert wol.parse_password(None, None, "") == b'' + # Test Case 2: Test with a valid 4-byte password + assert wol.parse_password(None, None, "1.2.3.4") == b'\x01\x02\x03\x04' + # Test Case 3: Test with an invalid 4-byte password + with pytest.raises(click.BadParameter) as exc_info: + wol.parse_password(None, None, "1.2.3.999") + assert exc_info.value.message == "invalid password 1.2.3.999" + # Test Case 4: Test with a valid 6-byte password + assert wol.parse_password(None, None, str(SAMPLE_TARGET_MAC)) == SAMPLE_TARGET_MAC.to_bytes() + # Test Case 5: Test with an invalid 6-byte password + with pytest.raises(click.BadParameter) as exc_info: + wol.parse_password(None, None, "11:22:33:44:55:999") + assert exc_info.value.message == "invalid password 11:22:33:44:55:999" + # Test Case 6: Test with an invalid password string + with pytest.raises(click.BadParameter) as exc_info: + wol.parse_password(None, None, "INVALID_PASSWORD") + assert exc_info.value.message == "invalid password INVALID_PASSWORD" + + +def test_validate_count_interval(): + # Test Case 1: input valid count and interval + assert wol.validate_count_interval(1, 1000) == (1, 1000) + # Test Case 2: Test with both count and interval are not provided + assert wol.validate_count_interval(None, None) == (1, 0) + # Test Case 3: Test count and interval not provided together + with pytest.raises(click.BadParameter) as exc_info: + wol.validate_count_interval(3, None) + assert exc_info.value.message == "count and interval must be used together" + with pytest.raises(click.BadParameter) as exc_info: + wol.validate_count_interval(None, 1000) + assert exc_info.value.message == "count and interval must be used together" + # Test Case 4: Test with count or interval not in valid range + # This restriction is validated by click.IntRange(), so no need to call the command line function + runner = CliRunner() + result = runner.invoke(wol.wol, [SAMPLE_INTERFACE_ETH0, str(SAMPLE_TARGET_MAC), '-c', '100', '-i', '1000']) + assert 'Invalid value for "-c": 100 is not in the valid range of 1 to 5.' in result.stdout + result = runner.invoke(wol.wol, [SAMPLE_INTERFACE_ETH0, str(SAMPLE_TARGET_MAC), '-c', '3', '-i', '100000']) + assert 'Invalid value for "-i": 100000 is not in the valid range of 0 to 2000.' in result.stdout + + +@patch('netifaces.interfaces', MagicMock(return_value=[SAMPLE_INTERFACE_ETH0])) +@patch('wol.main.is_root', MagicMock(return_value=True)) +@patch('wol.main.get_interface_operstate', MagicMock(return_value="up")) +@patch('wol.main.get_interface_mac', MagicMock(return_value=SAMPLE_ETH0_MAC)) +def test_wol_send_magic_packet_call_count(): + """ + Test the count of send_magic_packet() function call in wol is correct. + """ + runner = CliRunner() + # Test Case 1: Test with only required arguments + # 1.1 Single Target Mac + with patch('wol.main.send_magic_packet') as mock_send_magic_packet: + result = runner.invoke(wol.wol, [SAMPLE_INTERFACE_ETH0, str(SAMPLE_TARGET_MAC)]) + assert result.exit_code == 0 + mock_send_magic_packet.assert_called_once_with(SAMPLE_INTERFACE_ETH0, SAMPLE_TARGET_MAC, SAMPLE_MAGIC_PACKET_UNICAST, 1, 0, False) + # 1.2 Multiple Target Mac + with patch('wol.main.send_magic_packet') as mock_send_magic_packet: + result = runner.invoke(wol.wol, [SAMPLE_INTERFACE_ETH0, ','.join([str(v) for v in SAMPLE_TARGET_MAC_LIST])]) + assert result.exit_code == 0 + assert mock_send_magic_packet.call_count == 2 + # Test Case 2: Test with specified count and interval + # 2.1 Single Target Mac + with patch('wol.main.send_magic_packet') as mock_send_magic_packet: + result = runner.invoke(wol.wol, [SAMPLE_INTERFACE_ETH0, str(SAMPLE_TARGET_MAC), '-c', '5', '-i', '1000']) + assert result.exit_code == 0 + mock_send_magic_packet.assert_called_once_with(SAMPLE_INTERFACE_ETH0, SAMPLE_TARGET_MAC, SAMPLE_MAGIC_PACKET_UNICAST, 5, 1000, False) + # 2.2 Multiple Target Mac + with patch('wol.main.send_magic_packet') as mock_send_magic_packet: + result = runner.invoke(wol.wol, [SAMPLE_INTERFACE_ETH0, ','.join([str(v) for v in SAMPLE_TARGET_MAC_LIST]), '-c', '5', '-i', '1000']) + assert result.exit_code == 0 + assert mock_send_magic_packet.call_count == 2 + + +@patch('netifaces.interfaces', MagicMock(return_value=[SAMPLE_INTERFACE_ETH0])) +@patch('wol.main.is_root', MagicMock(return_value=True)) +@patch('wol.main.get_interface_operstate', MagicMock(return_value="up")) +@patch('wol.main.get_interface_mac', MagicMock(return_value=SAMPLE_ETH0_MAC)) +def test_wol_send_magic_packet_throw_exception(): + """ + Test the exception handling of send_magic_packet() function in wol. + """ + runner = CliRunner() + # Test Case 1: Test with OSError exception (interface flap) + with patch('wol.main.send_magic_packet', MagicMock(side_effect=OSError("[Errno 100] Network is down"))): + result = runner.invoke(wol.wol, [SAMPLE_INTERFACE_ETH0, str(SAMPLE_TARGET_MAC)]) + assert "Exception: [Errno 100] Network is down" in result.stdout + # Test Case 2: Test with other exception + with patch('wol.main.send_magic_packet', MagicMock(side_effect=Exception("Exception message"))): + result = runner.invoke(wol.wol, [SAMPLE_INTERFACE_ETH0, str(SAMPLE_TARGET_MAC)]) + assert "Exception: Exception message" in result.stdout diff --git a/wol/__init__.py b/wol/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/wol/main.py b/wol/main.py new file mode 100644 index 0000000000..3b569a3a4f --- /dev/null +++ b/wol/main.py @@ -0,0 +1,202 @@ +#!/usr/bin/env python3 + +""" +use wol to generate and send Wake-On-LAN (WOL) "Magic Packet" to specific interface + +Usage: wol_click [OPTIONS] INTERFACE TARGET_MAC + + Generate and send Wake-On-LAN (WOL) "Magic Packet" to specific interface + +Options: + -b Use broadcast MAC address instead of target device's MAC + address as Destination MAC Address in Ethernet Frame Header. + [default: False] + -p password An optional 4 or 6 byte password, in ethernet hex format or + quad-dotted decimal [default: ] + -c count For each target MAC address, the count of magic packets to + send. count must between 1 and 5. This param must use with -i. + [default: 1] + -i interval Wait interval milliseconds between sending each magic packet. + interval must between 0 and 2000. This param must use with -c. + [default: 0] + -v Verbose output [default: False] + -h, --help Show this message and exit. + +Examples: + wol Ethernet10 00:11:22:33:44:55 + wol Ethernet10 00:11:22:33:44:55 -b + wol Vlan1000 00:11:22:33:44:55,11:33:55:77:99:bb -p 00:22:44:66:88:aa + wol Vlan1000 00:11:22:33:44:55,11:33:55:77:99:bb -p 192.168.1.1 -c 3 -i 2000 +""" + +import binascii +import click +import copy +import netifaces +import os +import socket +import time + +CONTEXT_SETTINGS = dict(help_option_names=['-h', '--help']) +EPILOG = """\b +Examples: + wol Ethernet10 00:11:22:33:44:55 + wol Ethernet10 00:11:22:33:44:55 -b + wol Vlan1000 00:11:22:33:44:55,11:33:55:77:99:bb -p 00:22:44:66:88:aa + wol Vlan1000 00:11:22:33:44:55,11:33:55:77:99:bb -p 192.168.1.1 -c 3 -i 2000 +""" +ORDINAL_NUMBER = ["0", "1st", "2nd", "3rd", "4th", "5th"] +ETHER_TYPE_WOL = b'\x08\x42' + + +class MacAddress(object): + """ + Class to handle MAC addresses and perform operations on them. + + Attributes: + - address: bytes + """ + + def __init__(self, address: str): + """ + Constructor to instantiate the MacAddress class. + + Parameters: + - address: str + The MAC address in the format '01:23:45:67:89:AB' or '01-23-45-67-89-AB'. + + Raises: + - ValueError: + Throws an error if the provided address is not in the correct format. + """ + try: + self.address = binascii.unhexlify(address.replace(':', '').replace('-', '')) + except binascii.Error: + raise ValueError("invalid MAC address") + if len(self.address) != 6: + raise ValueError("invalid MAC address") + + def __str__(self): + return ":".join(["%02x" % v for v in self.address]) + + def __eq__(self, other): + return self.address == other.address + + def to_bytes(self): + return copy.copy(self.address) + + +BROADCAST_MAC = MacAddress('ff:ff:ff:ff:ff:ff') + + +def is_root(): + return os.geteuid() == 0 + + +def get_interface_operstate(interface): + with open('/sys/class/net/{}/operstate'.format(interface), 'r') as f: + return f.read().strip().lower() + + +def get_interface_mac(interface): + return MacAddress(netifaces.ifaddresses(interface)[netifaces.AF_LINK][0].get('addr')) + + +def build_magic_packet(interface, target_mac, broadcast, password): + dst_mac = BROADCAST_MAC if broadcast else target_mac + src_mac = get_interface_mac(interface) + return dst_mac.to_bytes() + src_mac.to_bytes() + ETHER_TYPE_WOL \ + + b'\xff' * 6 + target_mac.to_bytes() * 16 + password + + +def send_magic_packet(interface, target_mac, pkt, count, interval, verbose): + if verbose: + print("Sending {} magic packet to {} via interface {}".format(count, target_mac, interface)) + sock = socket.socket(socket.AF_PACKET, socket.SOCK_RAW) + sock.bind((interface, 0)) + for i in range(count): + sock.send(pkt) + if verbose: + print("{} magic packet sent to {}".format(ORDINAL_NUMBER[i + 1], target_mac)) + if i + 1 != count: + time.sleep(interval / 1000) + sock.close() + + +def validate_interface(ctx, param, value): + if value not in netifaces.interfaces(): + raise click.BadParameter("invalid SONiC interface name {}".format(value)) + if get_interface_operstate(value) != 'up': + raise click.BadParameter("interface {} is not up".format(value)) + return value + + +def parse_target_mac(ctx, param, value): + mac_list = [] + for mac in value.split(','): + try: + mac_list.append(MacAddress(mac)) + except ValueError: + raise click.BadParameter("invalid MAC address {}".format(mac)) + return mac_list + + +def parse_password(ctx, param, value): + if len(value) == 0: + return b'' # Empty password is valid. + elif len(value) <= 15: # The length of a valid IPv4 address is less or equal to 15. + try: + password = socket.inet_aton(value) + except OSError: + raise click.BadParameter("invalid password format") + else: # The length of a valid MAC address is 17. + try: + password = MacAddress(value).to_bytes() + except ValueError: + raise click.BadParameter("invalid password format") + if len(password) not in [4, 6]: + raise click.BadParameter("password must be 4 or 6 bytes or empty") + return password + + +def validate_count_interval(count, interval): + if count is None and interval is None: + return 1, 0 # By default, count=1 and interval=0. + if count is None or interval is None: + raise click.BadParameter("count and interval must be used together") + # The values are confirmed in valid range by click.IntRange(). + return count, interval + + +@click.command(context_settings=CONTEXT_SETTINGS, epilog=EPILOG) +@click.argument('interface', type=click.STRING, callback=validate_interface) +@click.argument('target_mac', type=click.STRING, callback=parse_target_mac) +@click.option('-b', 'broadcast', is_flag=True, show_default=True, default=False, + help="Use broadcast MAC address instead of target device's MAC address as Destination MAC Address in Ethernet Frame Header.") +@click.option('-p', 'password', type=click.STRING, show_default=True, default='', callback=parse_password, metavar='password', + help='An optional 4 or 6 byte password, in ethernet hex format or quad-dotted decimal') +@click.option('-c', 'count', type=click.IntRange(1, 5), metavar='count', show_default=True, # default=1, + help='For each target MAC address, the count of magic packets to send. count must between 1 and 5. This param must use with -i.') +@click.option('-i', 'interval', type=click.IntRange(0, 2000), metavar='interval', # show_default=True, default=0, + help="Wait interval milliseconds between sending each magic packet. interval must between 0 and 2000. This param must use with -c.") +@click.option('-v', 'verbose', is_flag=True, show_default=True, default=False, + help='Verbose output') +def wol(interface, target_mac, broadcast, password, count, interval, verbose): + """ + Generate and send Wake-On-LAN (WOL) "Magic Packet" to specific interface + """ + count, interval = validate_count_interval(count, interval) + + if not is_root(): + raise click.ClickException("root priviledge is required to run this script") + + for mac in target_mac: + pkt = build_magic_packet(interface, mac, broadcast, password) + try: + send_magic_packet(interface, mac, pkt, count, interval, verbose) + except Exception as e: + raise click.ClickException(f'Exception: {e}') + + +if __name__ == '__main__': + wol() From 61c44e801d82936a3a5cb0ac58c9d1237a223b86 Mon Sep 17 00:00:00 2001 From: Saikrishna Arcot Date: Wed, 6 Sep 2023 11:44:30 -0700 Subject: [PATCH 53/75] Update python packages Update tabulate to 0.9.0, deepdiff to 6.2.2, newer cryptography, and six. Signed-off-by: Saikrishna Arcot Co-authored-by: Vivek Reddy Karri --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 3b7e4c17e0..5ff294159c 100644 --- a/setup.py +++ b/setup.py @@ -229,7 +229,7 @@ install_requires=[ 'bcrypt==3.2.2', 'click==7.0', - 'cryptography==3.3.2', + 'cryptography>=3.3.2', 'urllib3>=2', 'click-log>=0.3.2', 'docker>=4.4.4', @@ -251,11 +251,12 @@ 'prettyprinter>=0.18.0', 'pyroute2>=0.5.14, <0.6.1', 'requests>=2.25.0', - 'tabulate==0.8.2', + 'tabulate==0.9.0', 'toposort==1.6', 'www-authenticate==0.9.2', 'xmltodict==0.12.0', 'lazy-object-proxy', + 'six==1.16.0', ] + sonic_dependencies, setup_requires= [ 'pytest-runner', @@ -266,7 +267,7 @@ 'responses', 'pytest', 'mockredispy>=2.9.3', - 'deepdiff==5.2.3' + 'deepdiff==6.2.2' ], classifiers=[ 'Development Status :: 3 - Alpha', From ef8f6f8386fdec031b0100ba5aa3884452073420 Mon Sep 17 00:00:00 2001 From: Saikrishna Arcot Date: Wed, 6 Sep 2023 11:45:03 -0700 Subject: [PATCH 54/75] Specify test dependencies under extra_requires Newer versions of pip/setuptools don't support test_requires, and the current standard is to specify any extra dependencies (such as those required for testing) under extra_requires. Therefore, specify the testing dependencies under extra_requires. These can be installed via pip using `pip install '.[testing]'`. Signed-off-by: Saikrishna Arcot --- setup.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/setup.py b/setup.py index 5ff294159c..196777d0e3 100644 --- a/setup.py +++ b/setup.py @@ -269,6 +269,15 @@ 'mockredispy>=2.9.3', 'deepdiff==6.2.2' ], + extras_require = { + 'testing': [ + 'pyfakefs', + 'responses', + 'pytest', + 'mockredispy>=2.9.3', + 'deepdiff==6.2.2' + ], + }, classifiers=[ 'Development Status :: 3 - Alpha', 'Environment :: Console', From 0ab3ab91e20c823f3d0de3bbbcda021ebdad19d9 Mon Sep 17 00:00:00 2001 From: Saikrishna Arcot Date: Wed, 6 Sep 2023 11:46:39 -0700 Subject: [PATCH 55/75] Fix test execution on Bookworm (#3041) * Fix test execution on Bookworm Running tests with `python3 -m pytest` instead of `python setup.py test` causes some breakages on Bookworm. Some of this has to do with what module searc paths get added, while others appear to be related to changes in the `mock` module between Python 3.9 and Python 3.11. Fix this and make sure it works on both Bullseye and Bookworm. * Fix mclag_test.py having different results for some test cases The test_mclag_add_mclag_member_to_nonexisting_domain test case passes when run on Bullseye, but fails on Bookworm. This is because some test cases modify the value of `mclag.ADHOC_VALIDATION`, but this value may persist for other test cases as well, and if test cases happen to run in a different order, then it may unexpectedly fail. For now, fix `test_mclag_add_mclag_member_to_nonexisting_domain` by setting the value there. * Add check_output parameter to the setup function due to the patch Since there is a patched function specified as an attribute, newer versions of mock expect that the object can be passed in as a parameter to the function. However, the `setup` functions didn't accept it as a parameter. Modify the `setup` functions to accept a parameter for this object. Signed-off-by: Saikrishna Arcot --------- Signed-off-by: Saikrishna Arcot --- pytest.ini | 1 + tests/chassis_modules_test.py | 4 - tests/conftest.py | 7 + tests/debug_test.py | 4 +- tests/decode_syseeprom_test.py | 7 +- tests/mclag_test.py | 2 + tests/muxcable_test.py | 878 ++++++--------------------------- 7 files changed, 173 insertions(+), 730 deletions(-) diff --git a/pytest.ini b/pytest.ini index 4fb7432d5d..536299b8bf 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,2 +1,3 @@ [pytest] addopts = --cov-config=.coveragerc --cov --cov-report html --cov-report term --cov-report xml --junitxml=test-results.xml -vv +pythonpath = . diff --git a/tests/chassis_modules_test.py b/tests/chassis_modules_test.py index 8196b12f4f..940e30c04b 100644 --- a/tests/chassis_modules_test.py +++ b/tests/chassis_modules_test.py @@ -2,10 +2,6 @@ import os from click.testing import CliRunner -test_path = os.path.dirname(os.path.abspath(__file__)) -modules_path = os.path.dirname(test_path) -sys.path.insert(0, modules_path) - import show.main as show import config.main as config import tests.mock_tables.dbconnector diff --git a/tests/conftest.py b/tests/conftest.py index bfcae47179..1db272c1dc 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -60,6 +60,13 @@ 'snmp.timer', 'telemetry.timer'] +@pytest.fixture(autouse=True) +def setup_env(): + # This is needed because we call scripts from this module as a separate + # process when running tests, and so the PYTHONPATH needs to be set + # correctly for those scripts to run. + if "PYTHONPATH" not in os.environ: + os.environ["PYTHONPATH"] = os.getcwd() @pytest.fixture def get_cmd_module(): diff --git a/tests/debug_test.py b/tests/debug_test.py index 7ac182f434..178c8fe8e7 100644 --- a/tests/debug_test.py +++ b/tests/debug_test.py @@ -6,7 +6,7 @@ class TestDebugFrr(object): @patch('subprocess.check_output', MagicMock(return_value='FRRouting')) - def setup(self): + def setup(self, check_output = None): print('SETUP') import debug.main as debug import undebug.main as undebug @@ -379,7 +379,7 @@ def test_undebug_zebra_vxlan(self, run_command): class TestDebugQuagga(object): @patch('subprocess.check_output', MagicMock(return_value='quagga')) - def setup(self): + def setup(self, check_output = None): print('SETUP') import debug.main as debug import undebug.main as undebug diff --git a/tests/decode_syseeprom_test.py b/tests/decode_syseeprom_test.py index 50c7667453..286c59e33f 100644 --- a/tests/decode_syseeprom_test.py +++ b/tests/decode_syseeprom_test.py @@ -17,7 +17,7 @@ decode_syseeprom_path = os.path.join(scripts_path, 'decode-syseeprom') -decode_syseeprom = load_module_from_source('decode-syseeprom', decode_syseeprom_path) +decode_syseeprom = load_module_from_source('decode_syseeprom', decode_syseeprom_path) # Replace swsscommon objects with mocked objects decode_syseeprom.SonicV2Connector = dbconnector.SonicV2Connector @@ -195,8 +195,9 @@ def test_print_model(self, capsys): @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') + @mock.patch.object(sys, 'argv', ["decode-syseeprom"]) + @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 diff --git a/tests/mclag_test.py b/tests/mclag_test.py index 2401978e97..80f5f0e982 100644 --- a/tests/mclag_test.py +++ b/tests/mclag_test.py @@ -360,6 +360,8 @@ def test_mclag_session_timeout(self): def test_mclag_add_mclag_member_to_nonexisting_domain(self): + # This is required for the add command to fail; otherwise, it incorrectly passes + mclag.ADHOC_VALIDATION = True runner = CliRunner() db = Db() obj = {'db':db.cfgdb} diff --git a/tests/muxcable_test.py b/tests/muxcable_test.py index 571509ff91..5d962a15b1 100644 --- a/tests/muxcable_test.py +++ b/tests/muxcable_test.py @@ -1,5 +1,8 @@ import os import sys +import traceback +import pytest + import traceback import mock_tables.dbconnector @@ -7,16 +10,6 @@ from unittest import mock from utilities_common.db import Db -sys.modules['sonic_platform_base'] = mock.Mock() -sys.modules['sonic_platform_base.sonic_sfp'] = mock.Mock() -sys.modules['sonic_platform_base.sonic_sfp.sfputilhelper'] = mock.Mock() -sys.modules['sonic_y_cable'] = mock.Mock() -sys.modules['y_cable'] = mock.Mock() -sys.modules['sonic_y_cable.y_cable'] = mock.Mock() -sys.modules['platform_sfputil'] = mock.Mock() -sys.modules['platform_sfputil_helper'] = mock.Mock() -sys.modules['utilities_common.platform_sfputil_helper'] = mock.Mock() -sys.modules['show.muxcable.platform_sfputil'] = mock.Mock() #sys.modules['os'] = mock.Mock() #sys.modules['os.geteuid'] = mock.Mock() #sys.modules['platform_sfputil'] = mock.Mock() @@ -776,25 +769,23 @@ def test_muxcable_config_json_with_incorrect_port(self): @mock.patch('show.muxcable.get_hwmode_mux_direction_port', mock.MagicMock(return_value=({ 0 :"active", 1 :"standby", 2 : "True"}))) + @mock.patch('sonic_platform_base.sonic_sfp.sfputilhelper.SfpUtilHelper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) def test_muxcable_status_json_with_correct_port(self): runner = CliRunner() db = Db() - with mock.patch('sonic_platform_base.sonic_sfp.sfputilhelper') as patched_util: - patched_util.SfpUtilHelper.return_value.get_asic_id_for_logical_port.return_value = 0 - result = runner.invoke(show.cli.commands["muxcable"].commands["status"], ["Ethernet0", "--json"], obj=db) + result = runner.invoke(show.cli.commands["muxcable"].commands["status"], ["Ethernet0", "--json"], obj=db) assert result.exit_code == 0 @mock.patch('show.muxcable.get_hwmode_mux_direction_port', mock.MagicMock(return_value=({ 0 :"active", 1 :"standby", 2 : "True"}))) + @mock.patch('sonic_platform_base.sonic_sfp.sfputilhelper.SfpUtilHelper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) def test_muxcable_status_json_with_correct_port_alias(self): runner = CliRunner() db = Db() os.environ['SONIC_CLI_IFACE_MODE'] = "alias" - with mock.patch('sonic_platform_base.sonic_sfp.sfputilhelper') as patched_util: - patched_util.SfpUtilHelper.return_value.get_asic_id_for_logical_port.return_value = 0 - result = runner.invoke(show.cli.commands["muxcable"].commands["status"], ["Ethernet0", "--json"], obj=db) + result = runner.invoke(show.cli.commands["muxcable"].commands["status"], ["Ethernet0", "--json"], obj=db) os.environ['SONIC_CLI_IFACE_MODE'] = "default" assert result.exit_code == 0 @@ -803,12 +794,11 @@ def test_muxcable_status_json_with_correct_port_alias(self): @mock.patch('show.muxcable.get_hwmode_mux_direction_port', mock.MagicMock(return_value=({ 0 :"active", 1 :"standby", 2 : "True"}))) + @mock.patch('show.muxcable.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) def test_muxcable_status_json_port_incorrect_index(self): runner = CliRunner() db = Db() - with mock.patch('sonic_platform_base.sonic_sfp.sfputilhelper') as patched_util: - patched_util.SfpUtilHelper.return_value.get_asic_id_for_logical_port.return_value = 1 - result = runner.invoke(show.cli.commands["muxcable"].commands["status"], ["Ethernet0", "--json"], obj=db) + result = runner.invoke(show.cli.commands["muxcable"].commands["status"], ["Ethernet0", "--json"], obj=db) assert result.exit_code == 1 @@ -967,6 +957,7 @@ def test_config_muxcable_json_port_auto_Ethernet0(self): result = runner.invoke(config.config.commands["muxcable"].commands["mode"], [ "auto", "Ethernet0", "--json"], obj=db) + print(result.output) assert result.exit_code == 0 def test_config_muxcable_json_port_active_Ethernet0(self): @@ -1314,6 +1305,7 @@ def test_show_muxcable_cableinfo_invalid_port(self): 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, 1: "active"})) @@ -1321,8 +1313,8 @@ def test_show_muxcable_cableinfo_invalid_port(self): 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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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])) @@ -1345,8 +1337,8 @@ def test_show_muxcable_hwmode_muxdirection_port_active(self): 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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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])) @@ -1371,8 +1363,8 @@ def test_show_muxcable_hwmode_muxdirection_active_expected_output_alias(self): 1: "standby", 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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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])) @@ -1393,8 +1385,8 @@ def test_show_muxcable_hwmode_muxdirection_active(self): 1: "standby", 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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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])) @@ -1417,8 +1409,8 @@ def test_show_muxcable_hwmode_muxdirection_port_standby(self): 1: "standby", 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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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])) @@ -1443,8 +1435,8 @@ def test_show_muxcable_hwmode_muxdirection_port_standby_alias(self): 1: "sucess", 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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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])) @@ -1468,8 +1460,8 @@ def test_show_muxcable_hwmode_muxdirection_standby(self): @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.swsscommon.SubscriberStateTable', mock.MagicMock(return_value=0)) - @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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) @mock.patch('config.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])) @@ -1496,8 +1488,8 @@ def test_config_muxcable_hwmode_state_port_active(self): @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.swsscommon.SubscriberStateTable', mock.MagicMock(return_value=0)) - @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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) @mock.patch('config.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])) @@ -1524,8 +1516,8 @@ def test_config_muxcable_hwmode_state_active(self): @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.swsscommon.SubscriberStateTable', mock.MagicMock(return_value=0)) - @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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) @mock.patch('config.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])) @@ -1552,8 +1544,8 @@ def test_config_muxcable_hwmode_state_port_standby(self): @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.swsscommon.SubscriberStateTable', mock.MagicMock(return_value=0)) - @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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) @mock.patch('config.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])) @@ -1582,8 +1574,8 @@ def test_config_muxcable_hwmode_state_standby(self): "version_nic_active": "0.6MS", "version_nic_inactive": "0.6MS", "version_nic_next": "0.6MS"})) - @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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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])) @@ -1605,8 +1597,8 @@ def test_show_muxcable_firmware_version(self): @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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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"]})) @@ -1626,8 +1618,8 @@ def test_show_muxcable_firmware_version_all(self): @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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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"]})) @@ -1646,8 +1638,8 @@ def test_show_muxcable_firmware_version_all_active(self): @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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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"]})) @@ -1668,14 +1660,14 @@ def test_show_muxcable_firmware_version_all_bad_asic_index(self): @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.swsscommon.SubscriberStateTable', mock.MagicMock(return_value=0)) - @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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) @mock.patch('config.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('click.confirm', mock.MagicMock(return_value=("y"))) - @mock.patch('sonic_y_cable.y_cable.download_fimware', mock.MagicMock(return_value=(1))) + @mock.patch('sonic_y_cable.y_cable.download_firmware', mock.MagicMock(return_value=(1))) @mock.patch('sonic_y_cable.y_cable.FIRMWARE_DOWNLOAD_SUCCESS', mock.MagicMock(return_value=(1))) def test_config_muxcable_download_firmware(self): runner = CliRunner() @@ -1692,8 +1684,8 @@ def test_config_muxcable_download_firmware(self): @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.swsscommon.SubscriberStateTable', mock.MagicMock(return_value=0)) - @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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) @mock.patch('config.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])) @@ -1716,8 +1708,8 @@ def test_config_muxcable_activate_firmware(self): @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.swsscommon.SubscriberStateTable", mock.MagicMock(return_value=0)) - @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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) @mock.patch('config.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])) @@ -1733,8 +1725,8 @@ def test_config_muxcable_rollback_firmware(self): "Ethernet0"], obj=db) assert result.exit_code == 0 - @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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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_metrics_port(self): @@ -1746,8 +1738,8 @@ def test_show_muxcable_metrics_port(self): assert result.exit_code == 0 assert result.output == show_muxcable_metrics_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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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_metrics_port_alias(self): @@ -1762,8 +1754,8 @@ def test_show_muxcable_metrics_port_alias(self): assert result.exit_code == 0 assert result.output == show_muxcable_metrics_expected_output_alias - @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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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_metrics_port_json(self): @@ -1787,8 +1779,8 @@ def test_show_muxcable_metrics_port_json(self): "version_nic_active": "0.6MS", "version_nic_inactive": "0.6MS", "version_nic_next": "0.6MS"})) - @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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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])) @@ -1806,750 +1798,194 @@ def test_show_muxcable_firmware_active_version(self): assert result.exit_code == 0 assert result.output == show_muxcable_firmware_version_active_expected_output - @classmethod - def teardown_class(cls): - os.environ['UTILITIES_UNIT_TESTING'] = "0" - print("TEARDOWN") - @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('click.confirm', mock.MagicMock(return_value=("y"))) - def test_show_muxcable_ber_info(self): + @mock.patch('show.muxcable.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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_packetloss_port(self): runner = CliRunner() db = Db() - result = runner.invoke(show.cli.commands["muxcable"].commands["berinfo"], - ["Ethernet0", "NIC"], obj=db) - + result = runner.invoke(show.cli.commands["muxcable"].commands["packetloss"], + ["Ethernet0"], obj=db) assert result.exit_code == 0 + assert result.output == show_muxcable_packetloss_expected_output - @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: "active"})) - @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('utilities_common.platform_sfputil_helper.get_physical_to_logical', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + @mock.patch('show.muxcable.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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])) - @mock.patch('click.confirm', mock.MagicMock(return_value=("y"))) - def test_config_muxcable_enable_prbs(self): + def test_show_muxcable_packetloss_port_json(self): runner = CliRunner() db = Db() - result = runner.invoke(config.config.commands["muxcable"].commands["prbs"].commands["enable"], - ["Ethernet0", "NIC", "0", "0"], obj=db) - + result = runner.invoke(show.cli.commands["muxcable"].commands["packetloss"], + ["Ethernet0", "--json"], obj=db) assert result.exit_code == 0 + assert result.output == show_muxcable_packetloss_expected_output_json - @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: "active"})) - @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('utilities_common.platform_sfputil_helper.get_physical_to_logical', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + @mock.patch('show.muxcable.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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])) - @mock.patch('click.confirm', mock.MagicMock(return_value=("y"))) - def test_config_muxcable_enable_loopback(self): + def test_show_muxcable_tunnel_route(self): runner = CliRunner() db = Db() - result = runner.invoke(config.config.commands["muxcable"].commands["loopback"].commands["enable"], - ["Ethernet0", "NIC", "0"], obj=db) + result = runner.invoke(show.cli.commands["muxcable"].commands["tunnel-route"], obj=db) assert result.exit_code == 0 - - @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: "active"})) - @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('utilities_common.platform_sfputil_helper.get_physical_to_logical', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + assert result.output == show_muxcable_tunnel_route_expected_output + + @mock.patch('show.muxcable.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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])) - @mock.patch('click.confirm', mock.MagicMock(return_value=("y"))) - def test_config_muxcable_disble_prbs(self): + def test_show_muxcable_tunnel_route_json(self): runner = CliRunner() db = Db() - - result = runner.invoke(config.config.commands["muxcable"].commands["prbs"].commands["disable"], - ["Ethernet0", "NIC"], obj=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('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: "active"})) - @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('utilities_common.platform_sfputil_helper.get_physical_to_logical', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + @mock.patch('show.muxcable.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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])) - @mock.patch('click.confirm', mock.MagicMock(return_value=("y"))) - def test_config_muxcable_disable_loopback(self): + def test_show_muxcable_tunnel_route_port(self): runner = CliRunner() db = Db() - result = runner.invoke(config.config.commands["muxcable"].commands["loopback"].commands["disable"], - ["Ethernet0", "NIC"], obj=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('sonic_y_cable.y_cable.get_part_number', mock.MagicMock(return_value=("CACL1X321P2PA1M"))) - @mock.patch('sonic_y_cable.y_cable.get_vendor', mock.MagicMock(return_value=("Credo "))) - @mock.patch('show.muxcable.platform_sfputil', mock.MagicMock(return_value=1)) + @mock.patch('show.muxcable.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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_cableinfo(self): + def test_show_muxcable_tunnel_route_json_port(self): runner = CliRunner() db = Db() - result = runner.invoke(show.cli.commands["muxcable"].commands["cableinfo"], - ["Ethernet0"], obj=db) - + result = runner.invoke(show.cli.commands["muxcable"].commands["tunnel-route"], + ["Ethernet0", "--json"], obj=db) assert result.exit_code == 0 - assert result.output == expected_muxcable_cableinfo_output + assert result.output == show_muxcable_tunnel_route_expected_output_port_json - @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)) - @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=[0])) - def test_show_muxcable_cableinfo_incorrect_port(self): + @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(show.cli.commands["muxcable"].commands["cableinfo"], - ["Ethernet0"], obj=db) + result = runner.invoke(config.config.commands["muxcable"].commands["telemetry"], [ + "enable"], 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)) - @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=0)) - def test_show_muxcable_cableinfo_incorrect_port_return_value(self): + @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(show.cli.commands["muxcable"].commands["cableinfo"], - ["Ethernet0"], obj=db) + result = runner.invoke(config.config.commands["muxcable"].commands["telemetry"], [ + "disable"], 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)) - @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=[0, 1])) - def test_show_muxcable_cableinfo_incorrect_logical_port_return_value(self): + @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(show.cli.commands["muxcable"].commands["cableinfo"], - ["Ethernet0"], obj=db) - assert result.exit_code == 1 - + 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: "active"})) - @mock.patch('show.muxcable.get_hwmode_mux_direction_port', mock.MagicMock(return_value={0: 0, - 1: "active", - 2: "True"})) + 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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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('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_hwmode_muxdirection_port_active(self): + def test_show_muxcable_grpc_muxdirection_port_standby_with_patch(self): runner = CliRunner() db = Db() - result = runner.invoke(show.cli.commands["muxcable"].commands["hwmode"].commands["muxdirection"], + result = runner.invoke(show.cli.commands["muxcable"].commands["grpc"].commands["muxdirection"], ["Ethernet12"], obj=db) assert result.exit_code == 0 - assert result.output == show_muxcable_hwmode_muxdirection_active_expected_output + 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: "active"})) - @mock.patch('show.muxcable.get_hwmode_mux_direction_port', mock.MagicMock(return_value={0: 0, - 1: "active", - 2: "True"})) + 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", "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('show.muxcable.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet4"])) + @mock.patch('show.muxcable.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=(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_hwmode_muxdirection_active_expected_output_alias(self): + def test_show_muxcable_grpc_muxdirection_port_standby(self): runner = CliRunner() db = Db() - os.environ['SONIC_CLI_IFACE_MODE'] = "alias" - result = runner.invoke(show.cli.commands["muxcable"].commands["hwmode"].commands["muxdirection"], - ["etp4"], obj=db) - os.environ['SONIC_CLI_IFACE_MODE'] = "default" - assert result.exit_code == 0 - assert result.output == show_muxcable_hwmode_muxdirection_active_expected_output_alias + 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.get_hwmode_mux_direction_port', mock.MagicMock(return_value={0: 0, - 1: "standby", - 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('show.muxcable.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet4"])) + @mock.patch('show.muxcable.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=(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_hwmode_muxdirection_active(self): + def test_show_muxcable_grpc_muxdirection_port_standby_json(self): runner = CliRunner() db = Db() - result = runner.invoke(show.cli.commands["muxcable"].commands["hwmode"].commands["muxdirection"], obj=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.get_hwmode_mux_direction_port', mock.MagicMock(return_value={0: 0, - 1: "standby", - 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=(2))) - @mock.patch('re.match', mock.MagicMock(return_value=(True))) - def test_show_muxcable_hwmode_muxdirection_port_standby(self): - runner = CliRunner() - db = Db() - - result = runner.invoke(show.cli.commands["muxcable"].commands["hwmode"].commands["muxdirection"], - ["Ethernet12"], obj=db) - assert result.exit_code == 0 - assert result.output == show_muxcable_hwmode_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.get_hwmode_mux_direction_port', mock.MagicMock(return_value={0: 0, - 1: "standby", - 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=(2))) - @mock.patch('re.match', mock.MagicMock(return_value=(True))) - def test_show_muxcable_hwmode_muxdirection_port_standby_alias(self): - runner = CliRunner() - db = Db() - - os.environ['SONIC_CLI_IFACE_MODE'] = "alias" - result = runner.invoke(show.cli.commands["muxcable"].commands["hwmode"].commands["muxdirection"], - ["etp4"], obj=db) - os.environ['SONIC_CLI_IFACE_MODE'] = "default" - assert result.exit_code == 0 - assert result.output == show_muxcable_hwmode_muxdirection_standby_expected_output_alias - - @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: "sucess"})) - @mock.patch('show.muxcable.get_hwmode_mux_direction_port', mock.MagicMock(return_value={0: 0, - 1: "sucess", - 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=(2))) - @mock.patch('re.match', mock.MagicMock(return_value=(True))) - def test_show_muxcable_hwmode_muxdirection_standby(self): - runner = CliRunner() - db = Db() - - result = runner.invoke(show.cli.commands["muxcable"].commands["hwmode"].commands["muxdirection"], obj=db) - assert result.exit_code == 0 - - @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"})) - @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.swsscommon.SubscriberStateTable', mock.MagicMock(return_value=0)) - @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('config.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('sonic_y_cable.y_cable.toggle_mux_to_torA', mock.MagicMock(return_value=(True))) - @mock.patch('sonic_y_cable.y_cable.toggle_mux_to_torB', mock.MagicMock(return_value=(True))) - @mock.patch('click.confirm', mock.MagicMock(return_value=("y"))) - def test_config_muxcable_hwmode_state_port_active(self): - runner = CliRunner() - db = Db() - - result = runner.invoke(config.config.commands["muxcable"].commands["hwmode"].commands["state"], - ["active", "Ethernet12"], obj=db) - assert result.exit_code == 0 - - @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"})) - @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.swsscommon.SubscriberStateTable', mock.MagicMock(return_value=0)) - @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('config.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('sonic_y_cable.y_cable.toggle_mux_to_torA', mock.MagicMock(return_value=(True))) - @mock.patch('sonic_y_cable.y_cable.toggle_mux_to_torB', mock.MagicMock(return_value=(True))) - @mock.patch('click.confirm', mock.MagicMock(return_value=("y"))) - def test_config_muxcable_hwmode_state_active(self): - runner = CliRunner() - db = Db() - - result = runner.invoke(config.config.commands["muxcable"].commands["hwmode"].commands["state"], - ["active", "all"], obj=db) - assert result.exit_code == 0 - - @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: "standby"})) - @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.swsscommon.SubscriberStateTable', mock.MagicMock(return_value=0)) - @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('config.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('sonic_y_cable.y_cable.toggle_mux_to_torA', mock.MagicMock(return_value=(True))) - @mock.patch('sonic_y_cable.y_cable.toggle_mux_to_torB', mock.MagicMock(return_value=(True))) - @mock.patch('click.confirm', mock.MagicMock(return_value=("y"))) - def test_config_muxcable_hwmode_state_port_standby(self): - runner = CliRunner() - db = Db() - - result = runner.invoke(config.config.commands["muxcable"].commands["hwmode"].commands["state"], - ["standby", "Ethernet12"], obj=db) - assert result.exit_code == 0 - - @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: "standby"})) - @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.swsscommon.SubscriberStateTable', mock.MagicMock(return_value=0)) - @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('config.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('sonic_y_cable.y_cable.toggle_mux_to_torA', mock.MagicMock(return_value=(True))) - @mock.patch('sonic_y_cable.y_cable.toggle_mux_to_torB', mock.MagicMock(return_value=(True))) - @mock.patch('click.confirm', mock.MagicMock(return_value=("y"))) - def test_config_muxcable_hwmode_state_standby(self): - runner = CliRunner() - db = Db() - - result = runner.invoke(config.config.commands["muxcable"].commands["hwmode"].commands["state"], - ["standby", "all"], 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: "True"})) - @mock.patch('show.muxcable.get_response_for_version', mock.MagicMock(return_value={"version_self_active": "0.6MS", - "version_self_inactive": "0.6MS", - "version_self_next": "0.6MS", - "version_peer_active": "0.6MS", - "version_peer_inactive": "0.6MS", - "version_peer_next": "0.6MS", - "version_nic_active": "0.6MS", - "version_nic_inactive": "0.6MS", - "version_nic_next": "0.6MS"})) - @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('click.confirm', mock.MagicMock(return_value=("y"))) - @mock.patch('sonic_y_cable.y_cable.get_firmware_version', mock.MagicMock(return_value={"version_active": "0.6MS", - "version_inactive": "0.6MS", - "version_next": "0.6MS"})) - def test_show_muxcable_firmware_version(self): - runner = CliRunner() - db = Db() - - result = runner.invoke(show.cli.commands["muxcable"].commands["firmware"].commands["version"], [ - "Ethernet0"], obj=db) - assert result.exit_code == 0 - assert result.output == show_muxcable_firmware_version_expected_output - - @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"})) - @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.swsscommon.SubscriberStateTable', mock.MagicMock(return_value=0)) - @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('config.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('click.confirm', mock.MagicMock(return_value=("y"))) - @mock.patch('sonic_y_cable.y_cable.download_fimware', mock.MagicMock(return_value=(1))) - @mock.patch('sonic_y_cable.y_cable.FIRMWARE_DOWNLOAD_SUCCESS', mock.MagicMock(return_value=(1))) - def test_config_muxcable_download_firmware(self): - runner = CliRunner() - db = Db() - - result = runner.invoke(config.config.commands["muxcable"].commands["firmware"].commands["download"], [ - "fwfile", "Ethernet0"], obj=db) - assert result.exit_code == 0 - - @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"})) - @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.swsscommon.SubscriberStateTable', mock.MagicMock(return_value=0)) - @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('config.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('click.confirm', mock.MagicMock(return_value=("y"))) - @mock.patch('sonic_y_cable.y_cable.activate_firmware', mock.MagicMock(return_value=(1))) - @mock.patch('sonic_y_cable.y_cable.FIRMWARE_ACTIVATE_SUCCESS', mock.MagicMock(return_value=(1))) - def test_config_muxcable_activate_firmware(self): - runner = CliRunner() - db = Db() - - result = runner.invoke(config.config.commands["muxcable"].commands["firmware"].commands["activate"], [ - "Ethernet0"], obj=db) - assert result.exit_code == 0 - - @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"})) - @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.swsscommon.SubscriberStateTable", mock.MagicMock(return_value=0)) - @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('config.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('click.confirm', mock.MagicMock(return_value=("y"))) - @mock.patch('sonic_y_cable.y_cable.rollback_firmware', mock.MagicMock(return_value=(1))) - @mock.patch('sonic_y_cable.y_cable.FIRMWARE_ROLLBACK_SUCCESS', mock.MagicMock(return_value=(1))) - def test_config_muxcable_rollback_firmware(self): - runner = CliRunner() - db = Db() - - result = runner.invoke(config.config.commands["muxcable"].commands["firmware"].commands["rollback"], [ - "Ethernet0"], obj=db) - assert result.exit_code == 0 - - @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_metrics_port(self): - runner = CliRunner() - db = Db() - - result = runner.invoke(show.cli.commands["muxcable"].commands["metrics"], - ["Ethernet0"], obj=db) - assert result.exit_code == 0 - assert result.output == show_muxcable_metrics_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_metrics_port_alias(self): - runner = CliRunner() - db = Db() - - os.environ['SONIC_CLI_IFACE_MODE'] = "alias" - result = runner.invoke(show.cli.commands["muxcable"].commands["metrics"], - ["etp1"], obj=db) - - os.environ['SONIC_CLI_IFACE_MODE'] = "default" - assert result.exit_code == 0 - assert result.output == show_muxcable_metrics_expected_output_alias - - @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_metrics_port_json(self): - runner = CliRunner() - db = Db() - - result = runner.invoke(show.cli.commands["muxcable"].commands["metrics"], - ["Ethernet0", "--json"], obj=db) - assert result.exit_code == 0 - assert result.output == show_muxcable_metrics_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_response_for_version', mock.MagicMock(return_value={"version_self_active": "0.6MS", - "version_self_inactive": "0.6MS", - "version_self_next": "0.6MS", - "version_peer_active": "0.6MS", - "version_peer_inactive": "0.6MS", - "version_peer_next": "0.6MS", - "version_nic_active": "0.6MS", - "version_nic_inactive": "0.6MS", - "version_nic_next": "0.6MS"})) - @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('click.confirm', mock.MagicMock(return_value=("y"))) - @mock.patch('sonic_y_cable.y_cable.get_firmware_version', mock.MagicMock(return_value={"version_active": "0.6MS", - "version_inactive": "0.6MS", - "version_next": "0.6MS"})) - def test_show_muxcable_firmware_active_version(self): - runner = CliRunner() - db = Db() - - result = runner.invoke(show.cli.commands["muxcable"].commands["firmware"].commands["version"], [ - "Ethernet0", "--active"], obj=db) - assert result.exit_code == 0 - assert result.output == show_muxcable_firmware_version_active_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_packetloss_port(self): - runner = CliRunner() - db = Db() - - result = runner.invoke(show.cli.commands["muxcable"].commands["packetloss"], - ["Ethernet0"], obj=db) - assert result.exit_code == 0 - assert result.output == show_muxcable_packetloss_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_packetloss_port_json(self): - runner = CliRunner() - db = Db() - - result = runner.invoke(show.cli.commands["muxcable"].commands["packetloss"], - ["Ethernet0", "--json"], obj=db) - 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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet4"])) + @mock.patch('show.muxcable.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])) @@ -2568,8 +2004,8 @@ def test_show_muxcable_grpc_muxdirection_port_all(self): @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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet4"])) + @mock.patch('show.muxcable.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])) @@ -2591,15 +2027,15 @@ def test_show_muxcable_grpc_muxdirection_port_all_json(self): 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_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('show.muxcable.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): + def test_show_muxcable_hwmode_muxdirection_port_active_json(self): runner = CliRunner() db = Db() From d7ec325123f2591cb6e283cd0ce64a5c9148ab7b Mon Sep 17 00:00:00 2001 From: Saikrishna Arcot Date: Wed, 6 Sep 2023 11:51:13 -0700 Subject: [PATCH 56/75] Fix error about having a mutable default for field headers in dataclass Newer versions of Python error out on mutable default fields in a dataclass, and the fix for that appears to be using the `default_factory` attribute in `field`. This appears to at least pass the tests. Signed-off-by: Saikrishna Arcot --- sonic_package_manager/constraint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonic_package_manager/constraint.py b/sonic_package_manager/constraint.py index 6965ad9cb3..599e1400fa 100644 --- a/sonic_package_manager/constraint.py +++ b/sonic_package_manager/constraint.py @@ -117,7 +117,7 @@ class PackageConstraint: name: str constraint: VersionConstraint - _components: ComponentConstraints = ComponentConstraints({}) + _components: ComponentConstraints = field(default_factory=ComponentConstraints) def __str__(self): return f'{self.name}{self.constraint}' From 02a588b7f5488b75c933e18313028bfb0664376c Mon Sep 17 00:00:00 2001 From: Saikrishna Arcot Date: Mon, 6 Nov 2023 00:02:44 -0800 Subject: [PATCH 57/75] Don't collect /proc/sched_debug Contents of this has been moved to /sys/kernel/debug/sched/debug. If needed, code can be added later to collect information from /sys/kernel/debug. Signed-off-by: Saikrishna Arcot --- scripts/generate_dump | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate_dump b/scripts/generate_dump index 5fa0f605d3..0ee63cc1fe 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -1796,7 +1796,7 @@ main() { /proc/interrupts /proc/iomem /proc/ioports /proc/kallsyms \ /proc/loadavg /proc/locks /proc/meminfo /proc/misc \ /proc/modules /proc/self/mounts /proc/self/net \ - /proc/pagetypeinfo /proc/partitions /proc/sched_debug /proc/slabinfo \ + /proc/pagetypeinfo /proc/partitions /proc/slabinfo \ /proc/softirqs /proc/stat /proc/swaps /proc/sysvipc /proc/timer_list \ /proc/uptime /proc/version /proc/vmallocinfo /proc/vmstat \ /proc/zoneinfo & From 6dfeee699bf85d74d0dfbbd02fc7697c7f1e8b11 Mon Sep 17 00:00:00 2001 From: Rajkumar-Marvell <54936542+rajkumar38@users.noreply.github.com> Date: Tue, 28 Nov 2023 22:38:40 +0530 Subject: [PATCH 58/75] [sflow][db_migrator] Egress Sflow support (#3020) * [sflow][db_migrator] Egress Sflow support --- scripts/db_migrator.py | 43 +++++++++++++- .../appl_db/sflow_table_expected.json | 21 +++++++ .../appl_db/sflow_table_input.json | 17 ++++++ .../config_db/sflow_table_expected.json | 57 ++++++++++++++++++ .../config_db/sflow_table_input.json | 53 +++++++++++++++++ tests/db_migrator_test.py | 58 +++++++++++++++++++ 6 files changed, 247 insertions(+), 2 deletions(-) create mode 100644 tests/db_migrator_input/appl_db/sflow_table_expected.json create mode 100644 tests/db_migrator_input/appl_db/sflow_table_input.json create mode 100644 tests/db_migrator_input/config_db/sflow_table_expected.json create mode 100644 tests/db_migrator_input/config_db/sflow_table_input.json diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index f15f27bae8..a82143957e 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -50,7 +50,7 @@ def __init__(self, namespace, socket=None): none-zero values. build: sequentially increase within a minor version domain. """ - self.CURRENT_VERSION = 'version_4_0_4' + self.CURRENT_VERSION = 'version_4_0_5' self.TABLE_NAME = 'VERSIONS' self.TABLE_KEY = 'DATABASE' @@ -726,6 +726,35 @@ def migrate_config_db_flex_counter_delay_status(self): flex_counter['FLEX_COUNTER_DELAY_STATUS'] = 'true' self.configDB.mod_entry('FLEX_COUNTER_TABLE', obj, flex_counter) + def migrate_sflow_table(self): + """ + Migrate "SFLOW_TABLE" and "SFLOW_SESSION_TABLE" to update default sample_direction + """ + + sflow_tbl = self.configDB.get_table('SFLOW') + for k, v in sflow_tbl.items(): + if 'sample_direction' not in v: + v['sample_direction'] = 'rx' + self.configDB.set_entry('SFLOW', k, v) + + sflow_sess_tbl = self.configDB.get_table('SFLOW_SESSION') + for k, v in sflow_sess_tbl.items(): + if 'sample_direction' not in v: + v['sample_direction'] = 'rx' + self.configDB.set_entry('SFLOW_SESSION', k, v) + + sflow_table = self.appDB.get_table("SFLOW_TABLE") + for key, value in sflow_table.items(): + if 'sample_direction' not in value: + sflow_key = "SFLOW_TABLE:{}".format(key) + self.appDB.set(self.appDB.APPL_DB, sflow_key, 'sample_direction','rx') + + sflow_sess_table = self.appDB.get_table("SFLOW_SESSION_TABLE") + for key, value in sflow_sess_table.items(): + if 'sample_direction' not in value: + sflow_key = "SFLOW_SESSION_TABLE:{}".format(key) + self.appDB.set(self.appDB.APPL_DB, sflow_key, 'sample_direction','rx') + def version_unknown(self): """ version_unknown tracks all SONiC versions that doesn't have a version @@ -1059,9 +1088,19 @@ def version_4_0_3(self): def version_4_0_4(self): """ Version 4_0_4. - This is the latest version for master branch """ log.log_info('Handling version_4_0_4') + + self.migrate_sflow_table() + self.set_version('version_4_0_5') + return 'version_4_0_5' + + def version_4_0_5(self): + """ + Version 4_0_5. + This is the latest version for master branch + """ + log.log_info('Handling version_4_0_5') return None def get_version(self): diff --git a/tests/db_migrator_input/appl_db/sflow_table_expected.json b/tests/db_migrator_input/appl_db/sflow_table_expected.json new file mode 100644 index 0000000000..7a786ae087 --- /dev/null +++ b/tests/db_migrator_input/appl_db/sflow_table_expected.json @@ -0,0 +1,21 @@ +{ + "SFLOW_TABLE:global": { + "admin_state": "up", + "sample_direction": "rx" + }, + "SFLOW_SESSION_TABLE:Ethernet6": { + "admin_state": "up", + "sample_direction": "rx", + "sample_rate": "1000" + }, + "SFLOW_SESSION_TABLE:Ethernet7": { + "admin_state": "up", + "sample_direction": "rx", + "sample_rate": "1000" + }, + "SFLOW_SESSION_TABLE:Ethernet8": { + "admin_state": "up", + "sample_direction": "rx", + "sample_rate": "1000" + } +} diff --git a/tests/db_migrator_input/appl_db/sflow_table_input.json b/tests/db_migrator_input/appl_db/sflow_table_input.json new file mode 100644 index 0000000000..4fcf7be5e5 --- /dev/null +++ b/tests/db_migrator_input/appl_db/sflow_table_input.json @@ -0,0 +1,17 @@ +{ + "SFLOW_TABLE:global": { + "admin_state": "up" + }, + "SFLOW_SESSION_TABLE:Ethernet6": { + "admin_state": "up", + "sample_rate": "1000" + }, + "SFLOW_SESSION_TABLE:Ethernet7": { + "admin_state": "up", + "sample_rate": "1000" + }, + "SFLOW_SESSION_TABLE:Ethernet8": { + "admin_state": "up", + "sample_rate": "1000" + } +} diff --git a/tests/db_migrator_input/config_db/sflow_table_expected.json b/tests/db_migrator_input/config_db/sflow_table_expected.json new file mode 100644 index 0000000000..66b45b4bb3 --- /dev/null +++ b/tests/db_migrator_input/config_db/sflow_table_expected.json @@ -0,0 +1,57 @@ +{ + "VERSIONS|DATABASE": { + "VERSION": "version_4_0_5" + }, + "SFLOW|global": { + "admin_state": "up", + "sample_direction": "rx" + }, + "SFLOW_SESSION|Ethernet0": { + "admin_state": "up", + "sample_direction": "rx", + "sample_rate": "1000" + }, + "SFLOW_SESSION|Ethernet2": { + "admin_state": "down", + "sample_direction": "rx", + "sample_rate": "2000" + }, + "SFLOW_SESSION|Ethernet4": { + "admin_state": "up", + "sample_direction": "rx", + "sample_rate": "4000" + }, + "PORT|Ethernet0": { + "admin_status": "up", + "alias": "Ethernet1/1", + "description": "", + "index": "1", + "lanes": "77,78", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet2": { + "admin_status": "up", + "alias": "Ethernet2/1", + "description": "", + "index": "2", + "lanes": "79,80", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet4": { + "admin_status": "up", + "alias": "Ethernet4/1", + "description": "", + "index": "3", + "lanes": "81,82", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + } +} diff --git a/tests/db_migrator_input/config_db/sflow_table_input.json b/tests/db_migrator_input/config_db/sflow_table_input.json new file mode 100644 index 0000000000..4c14c26225 --- /dev/null +++ b/tests/db_migrator_input/config_db/sflow_table_input.json @@ -0,0 +1,53 @@ +{ + "VERSIONS|DATABASE": { + "VERSION": "version_4_0_2" + }, + "SFLOW|global": { + "admin_state": "up" + }, + "SFLOW_SESSION|Ethernet0": { + "admin_state": "up", + "sample_rate": "1000" + }, + "SFLOW_SESSION|Ethernet2": { + "admin_state": "down", + "sample_rate": "2000" + }, + "SFLOW_SESSION|Ethernet4": { + "admin_state": "up", + "sample_rate": "4000" + }, + "PORT|Ethernet0": { + "admin_status": "up", + "alias": "Ethernet1/1", + "description": "", + "index": "1", + "lanes": "77,78", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet2": { + "admin_status": "up", + "alias": "Ethernet2/1", + "description": "", + "index": "2", + "lanes": "79,80", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet4": { + "admin_status": "up", + "alias": "Ethernet4/1", + "description": "", + "index": "3", + "lanes": "81,82", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + } +} diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index e75f758947..014b645532 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -740,3 +740,61 @@ def test_fast_reboot_upgrade_to_4_0_3(self): advance_version_for_expected_database(dbmgtr.configDB, expected_db.cfgdb, 'version_4_0_3') assert not self.check_config_db(dbmgtr.configDB, expected_db.cfgdb) assert dbmgtr.CURRENT_VERSION == expected_db.cfgdb.get_entry('VERSIONS', 'DATABASE')['VERSION'] + +class TestSflowSampleDirectionMigrator(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_sflow_migrator(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'sflow_table_input') + dbconnector.dedicated_dbs['APPL_DB'] = os.path.join(mock_db_path, 'appl_db', 'sflow_table_input') + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + dbmgtr.migrate() + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'sflow_table_expected') + dbconnector.dedicated_dbs['APPL_DB'] = os.path.join(mock_db_path, 'appl_db', 'sflow_table_expected') + expected_db = Db() + + # verify migrated config DB + resulting_table = dbmgtr.configDB.get_table('SFLOW') + expected_table = expected_db.cfgdb.get_table('SFLOW') + diff = DeepDiff(resulting_table, expected_table, ignore_order=True) + assert not diff + + resulting_table = dbmgtr.configDB.get_table('SFLOW_SESSION') + expected_table = expected_db.cfgdb.get_table('SFLOW_SESSION') + 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, "SFLOW_TABLE:global") + expected_keys.sort() + resulting_keys = dbmgtr.appDB.keys(dbmgtr.appDB.APPL_DB, "SFLOW_TABLE:global") + resulting_keys.sort() + 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 + + expected_keys = expected_appl_db.keys(expected_appl_db.APPL_DB, "SFLOW_SESSION_TABLE:*") + expected_keys.sort() + resulting_keys = dbmgtr.appDB.keys(dbmgtr.appDB.APPL_DB, "SFLOW_SESSION_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 From 96dd55596e2c24c48f7dfb01c6aa20f8c846845d Mon Sep 17 00:00:00 2001 From: Yaqiang Zhu Date: Wed, 29 Nov 2023 01:05:09 -0500 Subject: [PATCH 59/75] [dhcp_relay] Fix dhcp_relay counter display issue (#3054) Why I did it Fix issue: sonic-net/sonic-buildimage#15047 of after deleting vlan member and vlan, the counters for for vlan / vlan member are still seen. How I did it Delete related counter entry in state_db when deleting vlan and vlan members. How to verify it All UTs passed Manually test Signed-off-by: Yaqiang Zhu --- config/vlan.py | 13 +++++++------ tests/vlan_test.py | 29 ++++++++++++++++++++--------- 2 files changed, 27 insertions(+), 15 deletions(-) diff --git a/config/vlan.py b/config/vlan.py index 6cc3193ec0..7ace1d6d5f 100644 --- a/config/vlan.py +++ b/config/vlan.py @@ -67,12 +67,10 @@ def is_dhcpv6_relay_config_exist(db, vlan_name): 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)) +def delete_db_entry(entry_name, db_connector, db_name): + exists = db_connector.exists(db_name, entry_name) if exists: - state_db.delete(state_db.STATE_DB, 'DHCPv6_COUNTER_TABLE|{}'.format(entry_name)) + db_connector.delete(db_name, entry_name) @vlan.command('del') @@ -125,7 +123,8 @@ def del_vlan(db, vid, no_restart_dhcp_relay): # 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) + delete_db_entry("DHCPv6_COUNTER_TABLE|{}".format(vlan), db.db, db.db.STATE_DB) + delete_db_entry("DHCP_COUNTER_TABLE|{}".format(vlan), db.db, db.db.STATE_DB) vlans = db.cfgdb.get_keys('VLAN') if not vlans: @@ -279,6 +278,8 @@ def del_vlan_member(db, vid, port): try: config_db.set_entry('VLAN_MEMBER', (vlan, port), None) + delete_db_entry("DHCPv6_COUNTER_TABLE|{}".format(port), db.db, db.db.STATE_DB) + delete_db_entry("DHCP_COUNTER_TABLE|{}".format(port), db.db, db.db.STATE_DB) except JsonPatchConflict: ctx.fail("{} invalid or does not exist, or {} is not a member of {}".format(vlan, port, vlan)) diff --git a/tests/vlan_test.py b/tests/vlan_test.py index 6dae8be86d..436e309281 100644 --- a/tests/vlan_test.py +++ b/tests/vlan_test.py @@ -383,20 +383,31 @@ def test_config_vlan_del_vlan(self, mock_restart_dhcp_relay_service): assert result.exit_code != 0 assert "Error: VLAN ID 1000 can not be removed. First remove all members assigned to this VLAN." in result.output - vlan_member = db.cfgdb.get_table('VLAN_MEMBER') - keys = [ (k, v) for k, v in vlan_member if k == 'Vlan{}'.format(1000) ] - for k,v in keys: - result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["del"], ["1000", v], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 + with mock.patch("config.vlan.delete_db_entry") as delete_db_entry: + vlan_member = db.cfgdb.get_table('VLAN_MEMBER') + keys = [ (k, v) for k, v in vlan_member if k == 'Vlan{}'.format(1000) ] + for k,v in keys: + result = runner.invoke(config.config.commands["vlan"].commands["member"].commands["del"], ["1000", v], 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") + delete_db_entry.assert_has_calls([ + mock.call("DHCPv6_COUNTER_TABLE|Vlan1000", mock.ANY, db.db.STATE_DB), + mock.call("DHCPv6_COUNTER_TABLE|Ethernet4", mock.ANY, db.db.STATE_DB), + mock.call("DHCPv6_COUNTER_TABLE|Ethernet8", mock.ANY, db.db.STATE_DB), + mock.call("DHCPv6_COUNTER_TABLE|Ethernet12", mock.ANY, db.db.STATE_DB), + mock.call("DHCPv6_COUNTER_TABLE|Ethernet16", mock.ANY, db.db.STATE_DB), + mock.call("DHCP_COUNTER_TABLE|Vlan1000", mock.ANY, db.db.STATE_DB), + mock.call("DHCP_COUNTER_TABLE|Ethernet4", mock.ANY, db.db.STATE_DB), + mock.call("DHCP_COUNTER_TABLE|Ethernet8", mock.ANY, db.db.STATE_DB), + mock.call("DHCP_COUNTER_TABLE|Ethernet12", mock.ANY, db.db.STATE_DB), + mock.call("DHCP_COUNTER_TABLE|Ethernet16", mock.ANY, db.db.STATE_DB) + ], any_order=True) # show output result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) From 17e77fe28d947c3b7d333b6453e1569d9dc4558f Mon Sep 17 00:00:00 2001 From: Ying Xie Date: Wed, 29 Nov 2023 16:05:12 -0800 Subject: [PATCH 60/75] Revert "Run yang validation in unit test (#3025)" (#3055) This reverts commit e01fc891d800cbb8acdaecb19d5816fd21c7b9d0. --- scripts/db_migrator.py | 28 ------------------- ...ross_branch_upgrade_to_4_0_3_expected.json | 6 ++-- .../cross_branch_upgrade_to_4_0_3_input.json | 6 ++-- .../config_db/portchannel-expected.json | 4 +++ .../config_db/portchannel-input.json | 4 +++ .../config_db/qos_map_table_expected.json | 10 +------ .../config_db/qos_map_table_input.json | 10 +------ ...-buffer-dynamic-double-pools-expected.json | 12 +------- ...ing-buffer-dynamic-double-pools-input.json | 12 +------- ...g-buffer-dynamic-single-pool-expected.json | 12 +------- ...ming-buffer-dynamic-single-pool-input.json | 12 +------- 11 files changed, 20 insertions(+), 96 deletions(-) diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index a82143957e..0f813763b8 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -6,8 +6,6 @@ import sys import traceback import re -import sonic_yang -import syslog from sonic_py_common import device_info, logger from swsscommon.swsscommon import SonicV2Connector, ConfigDBConnector, SonicDBConfig @@ -15,7 +13,6 @@ INIT_CFG_FILE = '/etc/sonic/init_cfg.json' MINIGRAPH_FILE = '/etc/sonic/minigraph.xml' -YANG_MODELS_DIR = "/usr/local/yang-models" # mock the redis for unit test purposes # try: @@ -1164,31 +1161,6 @@ def migrate(self): version = next_version # Perform common migration ops self.common_migration_ops() - config = self.configDB.get_config() - # Fix table key in tuple - for table_name, table in config.items(): - new_table = {} - hit = False - for table_key, table_val in table.items(): - if isinstance(table_key, tuple): - new_key = "|".join(table_key) - new_table[new_key] = table_val - hit = True - else: - new_table[table_key] = table_val - if hit: - config[table_name] = new_table - # Run yang validation - yang_parser = sonic_yang.SonicYang(YANG_MODELS_DIR) - yang_parser.loadYangModel() - try: - yang_parser.loadData(configdbJson=config) - yang_parser.validate_data_tree() - except sonic_yang.SonicYangException as e: - syslog.syslog(syslog.LOG_CRIT, "Yang validation failed: " + str(e)) - if os.environ["UTILITIES_UNIT_TESTING"] == "2": - raise - def main(): try: diff --git a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_expected.json b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_expected.json index a64d38bc51..1ebfbc6afe 100644 --- a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_expected.json +++ b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_expected.json @@ -3,17 +3,17 @@ "VERSION": "version_4_0_3" }, "FLEX_COUNTER_TABLE|ACL": { - "FLEX_COUNTER_STATUS": "enable", + "FLEX_COUNTER_STATUS": "true", "FLEX_COUNTER_DELAY_STATUS": "true", "POLL_INTERVAL": "10000" }, "FLEX_COUNTER_TABLE|QUEUE": { - "FLEX_COUNTER_STATUS": "enable", + "FLEX_COUNTER_STATUS": "true", "FLEX_COUNTER_DELAY_STATUS": "true", "POLL_INTERVAL": "10000" }, "FLEX_COUNTER_TABLE|PG_WATERMARK": { - "FLEX_COUNTER_STATUS": "disable", + "FLEX_COUNTER_STATUS": "false", "FLEX_COUNTER_DELAY_STATUS": "true" } } diff --git a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_input.json b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_input.json index e2d8d04588..07ce763683 100644 --- a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_input.json +++ b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_input.json @@ -3,16 +3,16 @@ "VERSION": "version_1_0_1" }, "FLEX_COUNTER_TABLE|ACL": { - "FLEX_COUNTER_STATUS": "enable", + "FLEX_COUNTER_STATUS": "true", "FLEX_COUNTER_DELAY_STATUS": "true", "POLL_INTERVAL": "10000" }, "FLEX_COUNTER_TABLE|QUEUE": { - "FLEX_COUNTER_STATUS": "enable", + "FLEX_COUNTER_STATUS": "true", "FLEX_COUNTER_DELAY_STATUS": "false", "POLL_INTERVAL": "10000" }, "FLEX_COUNTER_TABLE|PG_WATERMARK": { - "FLEX_COUNTER_STATUS": "disable" + "FLEX_COUNTER_STATUS": "false" } } diff --git a/tests/db_migrator_input/config_db/portchannel-expected.json b/tests/db_migrator_input/config_db/portchannel-expected.json index f380c75363..2644e5f4e9 100644 --- a/tests/db_migrator_input/config_db/portchannel-expected.json +++ b/tests/db_migrator_input/config_db/portchannel-expected.json @@ -1,24 +1,28 @@ { "PORTCHANNEL|PortChannel0": { "admin_status": "up", + "members@": "Ethernet0,Ethernet4", "min_links": "2", "mtu": "9100", "lacp_key": "auto" }, "PORTCHANNEL|PortChannel1": { "admin_status": "up", + "members@": "Ethernet8,Ethernet12", "min_links": "2", "mtu": "9100", "lacp_key": "auto" }, "PORTCHANNEL|PortChannel0123": { "admin_status": "up", + "members@": "Ethernet16", "min_links": "1", "mtu": "9100", "lacp_key": "auto" }, "PORTCHANNEL|PortChannel0011": { "admin_status": "up", + "members@": "Ethernet20,Ethernet24", "min_links": "2", "mtu": "9100", "lacp_key": "auto" diff --git a/tests/db_migrator_input/config_db/portchannel-input.json b/tests/db_migrator_input/config_db/portchannel-input.json index 43a9fabdb5..753a88601d 100644 --- a/tests/db_migrator_input/config_db/portchannel-input.json +++ b/tests/db_migrator_input/config_db/portchannel-input.json @@ -1,21 +1,25 @@ { "PORTCHANNEL|PortChannel0": { "admin_status": "up", + "members@": "Ethernet0,Ethernet4", "min_links": "2", "mtu": "9100" }, "PORTCHANNEL|PortChannel1": { "admin_status": "up", + "members@": "Ethernet8,Ethernet12", "min_links": "2", "mtu": "9100" }, "PORTCHANNEL|PortChannel0123": { "admin_status": "up", + "members@": "Ethernet16", "min_links": "1", "mtu": "9100" }, "PORTCHANNEL|PortChannel0011": { "admin_status": "up", + "members@": "Ethernet20,Ethernet24", "min_links": "2", "mtu": "9100" }, 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 f84c1a900b..47381ec550 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 @@ -29,14 +29,6 @@ "pfc_to_queue_map": "AZURE", "tc_to_pg_map": "AZURE", "tc_to_queue_map": "AZURE" - }, - "TC_TO_QUEUE_MAP|AZURE": {"0": "0"}, - "TC_TO_PRIORITY_GROUP_MAP|AZURE": {"0": "0"}, - "MAP_PFC_PRIORITY_TO_QUEUE|AZURE": {"0": "0"}, - "DSCP_TO_TC_MAP|AZURE": {"0": "0"}, - "PORT|Ethernet0": {"lanes": "0", "speed": "1000"}, - "PORT|Ethernet92": {"lanes": "92", "speed": "1000"}, - "PORT|Ethernet96": {"lanes": "96", "speed": "1000"}, - "PORT|Ethernet100": {"lanes": "100", "speed": "1000"} + } } 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 3c288b9534..c62e293daf 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 @@ -27,13 +27,5 @@ "pfc_to_queue_map": "AZURE", "tc_to_pg_map": "AZURE", "tc_to_queue_map": "AZURE" - }, - "TC_TO_QUEUE_MAP|AZURE": {"0": "0"}, - "TC_TO_PRIORITY_GROUP_MAP|AZURE": {"0": "0"}, - "MAP_PFC_PRIORITY_TO_QUEUE|AZURE": {"0": "0"}, - "DSCP_TO_TC_MAP|AZURE": {"0": "0"}, - "PORT|Ethernet0": {"lanes": "0", "speed": "1000"}, - "PORT|Ethernet92": {"lanes": "92", "speed": "1000"}, - "PORT|Ethernet96": {"lanes": "96", "speed": "1000"}, - "PORT|Ethernet100": {"lanes": "100", "speed": "1000"} + } } 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 decf997d67..5181daa057 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 @@ -12,7 +12,7 @@ "profile": "NULL" }, "BUFFER_PG|Ethernet8|3-4": { - "profile": "customized_ingress_lossless_profile" + "profile": "customized_lossless_profile" }, "BUFFER_PG|Ethernet12|0": { "profile": "ingress_lossy_profile" @@ -103,11 +103,6 @@ "BUFFER_PORT_INGRESS_PROFILE_LIST|Ethernet24": { "profile_list": "ingress_lossless_profile,ingress_lossy_profile" }, - "BUFFER_PROFILE|customized_egress_lossless_profile": { - "dynamic_th": "7", - "pool": "egress_lossless_pool", - "size": "0" - }, "BUFFER_PROFILE|egress_lossless_profile": { "dynamic_th": "7", "pool": "egress_lossless_pool", @@ -118,11 +113,6 @@ "pool": "egress_lossy_pool", "size": "9216" }, - "BUFFER_PROFILE|customized_ingress_lossless_profile": { - "dynamic_th": "7", - "pool": "ingress_lossless_pool", - "size": "0" - }, "BUFFER_PROFILE|ingress_lossless_profile": { "dynamic_th": "7", "pool": "ingress_lossless_pool", 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 d3337ccadb..d8deef194f 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 @@ -3,7 +3,7 @@ "profile": "NULL" }, "BUFFER_PG|Ethernet8|3-4": { - "profile": "customized_ingress_lossless_profile" + "profile": "customized_lossless_profile" }, "BUFFER_PG|Ethernet12|0": { "profile": "ingress_lossy_profile" @@ -55,11 +55,6 @@ "BUFFER_PORT_INGRESS_PROFILE_LIST|Ethernet24": { "profile_list": "ingress_lossless_profile,ingress_lossy_profile" }, - "BUFFER_PROFILE|customized_egress_lossless_profile": { - "dynamic_th": "7", - "pool": "egress_lossless_pool", - "size": "0" - }, "BUFFER_PROFILE|egress_lossless_profile": { "dynamic_th": "7", "pool": "egress_lossless_pool", @@ -70,11 +65,6 @@ "pool": "egress_lossy_pool", "size": "9216" }, - "BUFFER_PROFILE|customized_ingress_lossless_profile": { - "dynamic_th": "7", - "pool": "ingress_lossless_pool", - "size": "0" - }, "BUFFER_PROFILE|ingress_lossless_profile": { "dynamic_th": "7", "pool": "ingress_lossless_pool", 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 3572be8b69..278a40bc0a 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 @@ -12,7 +12,7 @@ "profile": "NULL" }, "BUFFER_PG|Ethernet8|3-4": { - "profile": "customized_ingress_lossless_profile" + "profile": "customized_lossless_profile" }, "BUFFER_PG|Ethernet12|0": { "profile": "ingress_lossy_profile" @@ -99,11 +99,6 @@ "BUFFER_PORT_INGRESS_PROFILE_LIST|Ethernet24": { "profile_list": "ingress_lossless_profile" }, - "BUFFER_PROFILE|customized_egress_lossless_profile": { - "dynamic_th": "7", - "pool": "egress_lossless_pool", - "size": "0" - }, "BUFFER_PROFILE|egress_lossless_profile": { "dynamic_th": "7", "pool": "egress_lossless_pool", @@ -114,11 +109,6 @@ "pool": "egress_lossy_pool", "size": "9216" }, - "BUFFER_PROFILE|customized_ingress_lossless_profile": { - "dynamic_th": "7", - "pool": "ingress_lossless_pool", - "size": "0" - }, "BUFFER_PROFILE|ingress_lossless_profile": { "dynamic_th": "7", "pool": "ingress_lossless_pool", 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 60f4455cad..b3bda32f23 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 @@ -3,7 +3,7 @@ "profile": "NULL" }, "BUFFER_PG|Ethernet8|3-4": { - "profile": "customized_ingress_lossless_profile" + "profile": "customized_lossless_profile" }, "BUFFER_PG|Ethernet12|0": { "profile": "ingress_lossy_profile" @@ -51,11 +51,6 @@ "BUFFER_PORT_INGRESS_PROFILE_LIST|Ethernet24": { "profile_list": "ingress_lossless_profile" }, - "BUFFER_PROFILE|customized_egress_lossless_profile": { - "dynamic_th": "7", - "pool": "egress_lossless_pool", - "size": "0" - }, "BUFFER_PROFILE|egress_lossless_profile": { "dynamic_th": "7", "pool": "egress_lossless_pool", @@ -66,11 +61,6 @@ "pool": "egress_lossy_pool", "size": "9216" }, - "BUFFER_PROFILE|customized_ingress_lossless_profile": { - "dynamic_th": "7", - "pool": "ingress_lossless_pool", - "size": "0" - }, "BUFFER_PROFILE|ingress_lossless_profile": { "dynamic_th": "7", "pool": "ingress_lossless_pool", From 3037959da0db3639952d15c9cb0ba1b7a04c1e64 Mon Sep 17 00:00:00 2001 From: Nazarii Hnydyn Date: Fri, 1 Dec 2023 21:04:15 +0200 Subject: [PATCH 61/75] [hash]: Add ECMP/LAG hash algorithm CLI (#3036) **HLD:** https://github.com/sonic-net/SONiC/pull/1501 #### What I did * Implemented CLI for Generic Hash feature #### How I did it * Integrated Generic Hash interface into `config` and `show` CLI root #### How to verify it * Run Generic Hash CLI UTs #### Previous command output (if the output of a command-line utility has changed) ``` root@sonic:/home/admin# show switch-hash global ECMP HASH LAG HASH ----------------- ----------------- DST_MAC DST_MAC SRC_MAC SRC_MAC ETHERTYPE ETHERTYPE IP_PROTOCOL IP_PROTOCOL DST_IP DST_IP SRC_IP SRC_IP L4_DST_PORT L4_DST_PORT L4_SRC_PORT L4_SRC_PORT INNER_DST_MAC INNER_DST_MAC INNER_SRC_MAC INNER_SRC_MAC INNER_ETHERTYPE INNER_ETHERTYPE INNER_IP_PROTOCOL INNER_IP_PROTOCOL INNER_DST_IP INNER_DST_IP INNER_SRC_IP INNER_SRC_IP INNER_L4_DST_PORT INNER_L4_DST_PORT INNER_L4_SRC_PORT INNER_L4_SRC_PORT ``` #### New command output (if the output of a command-line utility has changed) ``` root@sonic:/home/admin# show switch-hash global +--------+-------------------------------------+ | Hash | Configuration | +========+=====================================+ | ECMP | +-------------------+-------------+ | | | | Hash Field | Algorithm | | | | |-------------------+-------------| | | | | DST_MAC | CRC | | | | | SRC_MAC | | | | | | ETHERTYPE | | | | | | IP_PROTOCOL | | | | | | DST_IP | | | | | | SRC_IP | | | | | | L4_DST_PORT | | | | | | L4_SRC_PORT | | | | | | INNER_DST_MAC | | | | | | INNER_SRC_MAC | | | | | | INNER_ETHERTYPE | | | | | | INNER_IP_PROTOCOL | | | | | | INNER_DST_IP | | | | | | INNER_SRC_IP | | | | | | INNER_L4_DST_PORT | | | | | | INNER_L4_SRC_PORT | | | | | +-------------------+-------------+ | +--------+-------------------------------------+ | LAG | +-------------------+-------------+ | | | | Hash Field | Algorithm | | | | |-------------------+-------------| | | | | DST_MAC | CRC | | | | | SRC_MAC | | | | | | ETHERTYPE | | | | | | IP_PROTOCOL | | | | | | DST_IP | | | | | | SRC_IP | | | | | | L4_DST_PORT | | | | | | L4_SRC_PORT | | | | | | INNER_DST_MAC | | | | | | INNER_SRC_MAC | | | | | | INNER_ETHERTYPE | | | | | | INNER_IP_PROTOCOL | | | | | | INNER_DST_IP | | | | | | INNER_SRC_IP | | | | | | INNER_L4_DST_PORT | | | | | | INNER_L4_SRC_PORT | | | | | +-------------------+-------------+ | +--------+-------------------------------------+ ``` --- config/plugins/sonic-hash.py | 159 ++++- doc/Command-Reference.md | 153 +++- show/plugins/sonic-hash.py | 167 ++++- tests/hash_input/assert_show_output.py | 673 ++++++++++++++---- tests/hash_input/mock_config/ecmp.json | 3 +- .../hash_input/mock_config/ecmp_and_lag.json | 4 +- tests/hash_input/mock_config/lag.json | 3 +- tests/hash_input/mock_state/ecmp.json | 6 +- tests/hash_input/mock_state/ecmp_and_lag.json | 6 +- tests/hash_input/mock_state/empty.json | 6 +- tests/hash_input/mock_state/lag.json | 6 +- .../mock_state/no_capabilities.json | 6 +- .../hash_input/mock_state/not_applicable.json | 6 +- tests/hash_test.py | 141 +++- utilities_common/switch_hash.py | 20 +- 15 files changed, 1158 insertions(+), 201 deletions(-) diff --git a/config/plugins/sonic-hash.py b/config/plugins/sonic-hash.py index 1d3c65c537..75a787722d 100644 --- a/config/plugins/sonic-hash.py +++ b/config/plugins/sonic-hash.py @@ -10,11 +10,16 @@ CFG_SWITCH_HASH, STATE_SWITCH_CAPABILITY, SW_CAP_HASH_FIELD_LIST_KEY, - SW_CAP_ECMP_HASH_KEY, - SW_CAP_LAG_HASH_KEY, + SW_CAP_ECMP_HASH_ALGORITHM_KEY, + SW_CAP_LAG_HASH_ALGORITHM_KEY, + SW_CAP_ECMP_HASH_CAPABLE_KEY, + SW_CAP_LAG_HASH_CAPABLE_KEY, + SW_CAP_ECMP_HASH_ALGORITHM_CAPABLE_KEY, + SW_CAP_LAG_HASH_ALGORITHM_CAPABLE_KEY, SW_HASH_KEY, SW_CAP_KEY, HASH_FIELD_LIST, + HASH_ALGORITHM, SYSLOG_IDENTIFIER, get_param, get_param_hint, @@ -47,6 +52,22 @@ def hash_field_validator(ctx, param, value): return list(value) +def hash_algorithm_validator(ctx, param, value): + """ + Check if hash algorithm argument is valid + Args: + ctx: click context + param: click parameter context + value: value of parameter + Returns: + str: validated parameter + """ + + click.Choice(HASH_ALGORITHM).convert(value, param, ctx) + + return value + + def ecmp_hash_validator(ctx, db, ecmp_hash): """ Check if ECMP hash argument is valid @@ -66,9 +87,9 @@ def ecmp_hash_validator(ctx, db, ecmp_hash): entry = db.get_all(db.STATE_DB, "{}|{}".format(STATE_SWITCH_CAPABILITY, SW_CAP_KEY)) entry.setdefault(SW_CAP_HASH_FIELD_LIST_KEY, 'N/A') - entry.setdefault(SW_CAP_ECMP_HASH_KEY, 'false') + entry.setdefault(SW_CAP_ECMP_HASH_CAPABLE_KEY, 'false') - if entry[SW_CAP_ECMP_HASH_KEY] == 'false': + if entry[SW_CAP_ECMP_HASH_CAPABLE_KEY] == 'false': raise click.UsageError("Failed to configure {}: operation is not supported".format( get_param_hint(ctx, "ecmp_hash")), ctx ) @@ -106,9 +127,9 @@ def lag_hash_validator(ctx, db, lag_hash): entry = db.get_all(db.STATE_DB, "{}|{}".format(STATE_SWITCH_CAPABILITY, SW_CAP_KEY)) entry.setdefault(SW_CAP_HASH_FIELD_LIST_KEY, 'N/A') - entry.setdefault(SW_CAP_LAG_HASH_KEY, 'false') + entry.setdefault(SW_CAP_LAG_HASH_CAPABLE_KEY, 'false') - if entry[SW_CAP_LAG_HASH_KEY] == 'false': + if entry[SW_CAP_LAG_HASH_CAPABLE_KEY] == 'false': raise click.UsageError("Failed to configure {}: operation is not supported".format( get_param_hint(ctx, "lag_hash")), ctx ) @@ -126,6 +147,72 @@ def lag_hash_validator(ctx, db, lag_hash): for hash_field in lag_hash: click.Choice(cap_list).convert(hash_field, get_param(ctx, "lag_hash"), ctx) + +def ecmp_hash_algorithm_validator(ctx, db, ecmp_hash_algorithm): + """ + Check if ECMP hash algorithm argument is valid + + Args: + ctx: click context + db: State DB connector object + ecmp_hash_algorithm: ECMP hash algorithm + """ + + entry = db.get_all(db.STATE_DB, "{}|{}".format(STATE_SWITCH_CAPABILITY, SW_CAP_KEY)) + + entry.setdefault(SW_CAP_ECMP_HASH_ALGORITHM_KEY, 'N/A') + entry.setdefault(SW_CAP_ECMP_HASH_ALGORITHM_CAPABLE_KEY, 'false') + + if entry[SW_CAP_ECMP_HASH_ALGORITHM_CAPABLE_KEY] == 'false': + raise click.UsageError("Failed to configure {}: operation is not supported".format( + get_param_hint(ctx, "ecmp_hash_algorithm")), ctx + ) + + if not entry[SW_CAP_ECMP_HASH_ALGORITHM_KEY]: + raise click.UsageError("Failed to configure {}: no hash algorithm capabilities".format( + get_param_hint(ctx, "ecmp_hash_algorithm")), ctx + ) + + if entry[SW_CAP_ECMP_HASH_ALGORITHM_KEY] == 'N/A': + return + + cap_list = entry[SW_CAP_ECMP_HASH_ALGORITHM_KEY].split(',') + + click.Choice(cap_list).convert(ecmp_hash_algorithm, get_param(ctx, "ecmp_hash_algorithm"), ctx) + + +def lag_hash_algorithm_validator(ctx, db, lag_hash_algorithm): + """ + Check if LAG hash algorithm argument is valid + + Args: + ctx: click context + db: State DB connector object + lag_hash_algorithm: LAG hash algorithm + """ + + entry = db.get_all(db.STATE_DB, "{}|{}".format(STATE_SWITCH_CAPABILITY, SW_CAP_KEY)) + + entry.setdefault(SW_CAP_LAG_HASH_ALGORITHM_KEY, 'N/A') + entry.setdefault(SW_CAP_LAG_HASH_ALGORITHM_CAPABLE_KEY, 'false') + + if entry[SW_CAP_LAG_HASH_ALGORITHM_CAPABLE_KEY] == 'false': + raise click.UsageError("Failed to configure {}: operation is not supported".format( + get_param_hint(ctx, "lag_hash_algorithm")), ctx + ) + + if not entry[SW_CAP_LAG_HASH_ALGORITHM_KEY]: + raise click.UsageError("Failed to configure {}: no hash algorithm capabilities".format( + get_param_hint(ctx, "lag_hash_algorithm")), ctx + ) + + if entry[SW_CAP_LAG_HASH_ALGORITHM_KEY] == 'N/A': + return + + cap_list = entry[SW_CAP_LAG_HASH_ALGORITHM_KEY].split(',') + + click.Choice(cap_list).convert(lag_hash_algorithm, get_param(ctx, "lag_hash_algorithm"), ctx) + # # Hash DB interface --------------------------------------------------------------------------------------------------- # @@ -258,6 +345,66 @@ def SWITCH_HASH_GLOBAL_lag_hash(ctx, db, lag_hash): ctx.fail(str(err)) +@SWITCH_HASH_GLOBAL.command( + name="ecmp-hash-algorithm" +) +@click.argument( + "ecmp-hash-algorithm", + nargs=1, + required=True, + callback=hash_algorithm_validator, +) +@clicommon.pass_db +@click.pass_context +def SWITCH_HASH_GLOBAL_ecmp_hash_algorithm(ctx, db, ecmp_hash_algorithm): + """ Hash algorithm for hashing packets going through ECMP """ + + ecmp_hash_algorithm_validator(ctx, db.db, ecmp_hash_algorithm) + + table = CFG_SWITCH_HASH + key = SW_HASH_KEY + data = { + "ecmp_hash_algorithm": ecmp_hash_algorithm, + } + + try: + update_entry_validated(db.cfgdb, table, key, data, create_if_not_exists=True) + log.log_notice("Configured switch global ECMP hash algorithm: {}".format(ecmp_hash_algorithm)) + except Exception as e: + log.log_error("Failed to configure switch global ECMP hash algorithm: {}".format(str(e))) + ctx.fail(str(e)) + + +@SWITCH_HASH_GLOBAL.command( + name="lag-hash-algorithm" +) +@click.argument( + "lag-hash-algorithm", + nargs=1, + required=True, + callback=hash_algorithm_validator, +) +@clicommon.pass_db +@click.pass_context +def SWITCH_HASH_GLOBAL_lag_hash_algorithm(ctx, db, lag_hash_algorithm): + """ Hash algorithm for hashing packets going through LAG """ + + lag_hash_algorithm_validator(ctx, db.db, lag_hash_algorithm) + + table = CFG_SWITCH_HASH + key = SW_HASH_KEY + data = { + "lag_hash_algorithm": lag_hash_algorithm, + } + + try: + update_entry_validated(db.cfgdb, table, key, data, create_if_not_exists=True) + log.log_notice("Configured switch global LAG hash algorithm: {}".format(lag_hash_algorithm)) + except Exception as e: + log.log_error("Failed to configure switch global LAG hash algorithm: {}".format(str(e))) + ctx.fail(str(e)) + + def register(cli): """ Register new CLI nodes in root CLI. diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index d39e64ec82..e8e24e5aad 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -4248,34 +4248,130 @@ This command displays switch hash global configuration. show switch-hash global ``` +- Options: + - _-j,--json_: display in JSON format + - Example: ```bash admin@sonic:~$ show switch-hash global - ECMP HASH LAG HASH - ----------------- ----------------- - DST_MAC DST_MAC - SRC_MAC SRC_MAC - ETHERTYPE ETHERTYPE - IP_PROTOCOL IP_PROTOCOL - DST_IP DST_IP - SRC_IP SRC_IP - L4_DST_PORT L4_DST_PORT - L4_SRC_PORT L4_SRC_PORT - INNER_DST_MAC INNER_DST_MAC - INNER_SRC_MAC INNER_SRC_MAC - INNER_ETHERTYPE INNER_ETHERTYPE - INNER_IP_PROTOCOL INNER_IP_PROTOCOL - INNER_DST_IP INNER_DST_IP - INNER_SRC_IP INNER_SRC_IP - INNER_L4_DST_PORT INNER_L4_DST_PORT - INNER_L4_SRC_PORT INNER_L4_SRC_PORT + +--------+-------------------------------------+ + | Hash | Configuration | + +========+=====================================+ + | ECMP | +-------------------+-------------+ | + | | | Hash Field | Algorithm | | + | | |-------------------+-------------| | + | | | DST_MAC | CRC | | + | | | SRC_MAC | | | + | | | ETHERTYPE | | | + | | | IP_PROTOCOL | | | + | | | DST_IP | | | + | | | SRC_IP | | | + | | | L4_DST_PORT | | | + | | | L4_SRC_PORT | | | + | | | INNER_DST_MAC | | | + | | | INNER_SRC_MAC | | | + | | | INNER_ETHERTYPE | | | + | | | INNER_IP_PROTOCOL | | | + | | | INNER_DST_IP | | | + | | | INNER_SRC_IP | | | + | | | INNER_L4_DST_PORT | | | + | | | INNER_L4_SRC_PORT | | | + | | +-------------------+-------------+ | + +--------+-------------------------------------+ + | LAG | +-------------------+-------------+ | + | | | Hash Field | Algorithm | | + | | |-------------------+-------------| | + | | | DST_MAC | CRC | | + | | | SRC_MAC | | | + | | | ETHERTYPE | | | + | | | IP_PROTOCOL | | | + | | | DST_IP | | | + | | | SRC_IP | | | + | | | L4_DST_PORT | | | + | | | L4_SRC_PORT | | | + | | | INNER_DST_MAC | | | + | | | INNER_SRC_MAC | | | + | | | INNER_ETHERTYPE | | | + | | | INNER_IP_PROTOCOL | | | + | | | INNER_DST_IP | | | + | | | INNER_SRC_IP | | | + | | | INNER_L4_DST_PORT | | | + | | | INNER_L4_SRC_PORT | | | + | | +-------------------+-------------+ | + +--------+-------------------------------------+ + ``` + +**show switch-hash capabilities** + +This command displays switch hash capabilities. + +- Usage: + ```bash + show switch-hash capabilities + ``` + +- Options: + - _-j,--json_: display in JSON format + +- Example: + ```bash + admin@sonic:~$ show switch-hash capabilities + +--------+-------------------------------------+ + | Hash | Capabilities | + +========+=====================================+ + | ECMP | +-------------------+-------------+ | + | | | Hash Field | Algorithm | | + | | |-------------------+-------------| | + | | | IN_PORT | CRC | | + | | | DST_MAC | XOR | | + | | | SRC_MAC | RANDOM | | + | | | ETHERTYPE | CRC_32LO | | + | | | VLAN_ID | CRC_32HI | | + | | | IP_PROTOCOL | CRC_CCITT | | + | | | DST_IP | CRC_XOR | | + | | | SRC_IP | | | + | | | L4_DST_PORT | | | + | | | L4_SRC_PORT | | | + | | | INNER_DST_MAC | | | + | | | INNER_SRC_MAC | | | + | | | INNER_ETHERTYPE | | | + | | | INNER_IP_PROTOCOL | | | + | | | INNER_DST_IP | | | + | | | INNER_SRC_IP | | | + | | | INNER_L4_DST_PORT | | | + | | | INNER_L4_SRC_PORT | | | + | | +-------------------+-------------+ | + +--------+-------------------------------------+ + | LAG | +-------------------+-------------+ | + | | | Hash Field | Algorithm | | + | | |-------------------+-------------| | + | | | IN_PORT | CRC | | + | | | DST_MAC | XOR | | + | | | SRC_MAC | RANDOM | | + | | | ETHERTYPE | CRC_32LO | | + | | | VLAN_ID | CRC_32HI | | + | | | IP_PROTOCOL | CRC_CCITT | | + | | | DST_IP | CRC_XOR | | + | | | SRC_IP | | | + | | | L4_DST_PORT | | | + | | | L4_SRC_PORT | | | + | | | INNER_DST_MAC | | | + | | | INNER_SRC_MAC | | | + | | | INNER_ETHERTYPE | | | + | | | INNER_IP_PROTOCOL | | | + | | | INNER_DST_IP | | | + | | | INNER_SRC_IP | | | + | | | INNER_L4_DST_PORT | | | + | | | INNER_L4_SRC_PORT | | | + | | +-------------------+-------------+ | + +--------+-------------------------------------+ ``` ### Hash Config Commands This subsection explains how to configure switch hash. -**config switch-hash global** +**config switch-hash global ecmp/lag hash** This command is used to manage switch hash global configuration. @@ -4326,6 +4422,25 @@ This command is used to manage switch hash global configuration. 'INNER_L4_SRC_PORT' ``` +**config switch-hash global ecmp/lag hash algorithm** + +This command is used to manage switch hash algorithm global configuration. + +- Usage: + ```bash + config switch-hash global ecmp-hash-algorithm + config switch-hash global lag-hash-algorithm + ``` + +- Parameters: + - _hash_algorithm_: hash algorithm for hashing packets going through ECMP/LAG + +- Examples: + ```bash + admin@sonic:~$ config switch-hash global ecmp-hash-algorithm 'CRC' + admin@sonic:~$ config switch-hash global lag-hash-algorithm 'CRC' + ``` + ## Interfaces ### Interface Show Commands diff --git a/show/plugins/sonic-hash.py b/show/plugins/sonic-hash.py index 467b124c32..3744067744 100644 --- a/show/plugins/sonic-hash.py +++ b/show/plugins/sonic-hash.py @@ -4,14 +4,19 @@ import click import tabulate +import json import utilities_common.cli as clicommon from utilities_common.switch_hash import ( CFG_SWITCH_HASH, STATE_SWITCH_CAPABILITY, SW_CAP_HASH_FIELD_LIST_KEY, - SW_CAP_ECMP_HASH_KEY, - SW_CAP_LAG_HASH_KEY, + SW_CAP_ECMP_HASH_ALGORITHM_KEY, + SW_CAP_LAG_HASH_ALGORITHM_KEY, + SW_CAP_ECMP_HASH_CAPABLE_KEY, + SW_CAP_LAG_HASH_CAPABLE_KEY, + SW_CAP_ECMP_HASH_ALGORITHM_CAPABLE_KEY, + SW_CAP_LAG_HASH_ALGORITHM_CAPABLE_KEY, SW_HASH_KEY, SW_CAP_KEY, ) @@ -53,24 +58,52 @@ def SWITCH_HASH(): @SWITCH_HASH.command( name="global" ) +@click.option( + "-j", "--json", "json_format", + help="Display in JSON format", + is_flag=True, + default=False +) @clicommon.pass_db -def SWITCH_HASH_GLOBAL(db): +@click.pass_context +def SWITCH_HASH_GLOBAL(ctx, db, json_format): """ Show switch hash global configuration """ header = [ - "ECMP HASH", - "LAG HASH", + "Hash", + "Configuration", ] body = [] + sub_header = [ + "Hash Field", + "Algorithm" + ] + ecmp_body = [] + lag_body = [] + table = db.cfgdb.get_table(CFG_SWITCH_HASH) entry = table.get(SW_HASH_KEY, {}) if not entry: - click.echo(tabulate.tabulate(body, header)) - return + click.echo("No configuration is present in CONFIG DB") + ctx.exit(0) - row = [ + if json_format: + json_dict = { + "ecmp": { + "hash_field": entry["ecmp_hash"] if "ecmp_hash" in entry else "N/A", + "algorithm": entry["ecmp_hash_algorithm"] if "ecmp_hash_algorithm" in entry else "N/A" + }, + "lag": { + "hash_field": entry["lag_hash"] if "lag_hash" in entry else "N/A", + "algorithm": entry["lag_hash_algorithm"] if "lag_hash_algorithm" in entry else "N/A" + } + } + click.echo(json.dumps(json_dict, indent=4)) + ctx.exit(0) + + ecmp_row = [ format_attr_value( entry, { @@ -78,6 +111,17 @@ def SWITCH_HASH_GLOBAL(db): 'is-leaf-list': True } ), + format_attr_value( + entry, + { + 'name': 'ecmp_hash_algorithm', + 'is-leaf-list': False + } + ), + ] + ecmp_body.append(ecmp_row) + + lag_row = [ format_attr_value( entry, { @@ -85,59 +129,138 @@ def SWITCH_HASH_GLOBAL(db): 'is-leaf-list': True } ), + format_attr_value( + entry, + { + 'name': 'lag_hash_algorithm', + 'is-leaf-list': False + } + ), ] - body.append(row) + lag_body.append(lag_row) + + body.append(["ECMP", tabulate.tabulate(ecmp_body, sub_header, "psql")]) + body.append(["LAG", tabulate.tabulate(lag_body, sub_header, "psql")]) - click.echo(tabulate.tabulate(body, header)) + click.echo(tabulate.tabulate(body, header, "grid")) @SWITCH_HASH.command( name="capabilities" ) +@click.option( + "-j", "--json", "json_format", + help="Display in JSON format", + is_flag=True, + default=False +) @clicommon.pass_db -def SWITCH_HASH_CAPABILITIES(db): +@click.pass_context +def SWITCH_HASH_CAPABILITIES(ctx, db, json_format): """ Show switch hash capabilities """ header = [ - "ECMP HASH", - "LAG HASH", + "Hash", + "Capabilities", ] body = [] + sub_header = [ + "Hash Field", + "Algorithm" + ] + ecmp_body = [] + lag_body = [] + entry = db.db.get_all(db.db.STATE_DB, "{}|{}".format(STATE_SWITCH_CAPABILITY, SW_CAP_KEY)) if not entry: - click.echo(tabulate.tabulate(body, header)) - return + ctx.fail("No data is present in STATE DB") entry.setdefault(SW_CAP_HASH_FIELD_LIST_KEY, 'N/A') - entry.setdefault(SW_CAP_ECMP_HASH_KEY, 'false') - entry.setdefault(SW_CAP_LAG_HASH_KEY, 'false') + entry.setdefault(SW_CAP_ECMP_HASH_ALGORITHM_KEY, 'N/A') + entry.setdefault(SW_CAP_LAG_HASH_ALGORITHM_KEY, 'N/A') + entry.setdefault(SW_CAP_ECMP_HASH_CAPABLE_KEY, 'false') + entry.setdefault(SW_CAP_LAG_HASH_CAPABLE_KEY, 'false') + entry.setdefault(SW_CAP_ECMP_HASH_ALGORITHM_CAPABLE_KEY, 'false') + entry.setdefault(SW_CAP_LAG_HASH_ALGORITHM_CAPABLE_KEY, 'false') if not entry[SW_CAP_HASH_FIELD_LIST_KEY]: entry[SW_CAP_HASH_FIELD_LIST_KEY] = "no capabilities" + if not entry[SW_CAP_ECMP_HASH_ALGORITHM_KEY]: + entry[SW_CAP_ECMP_HASH_ALGORITHM_KEY] = "no capabilities" + + if not entry[SW_CAP_LAG_HASH_ALGORITHM_KEY]: + entry[SW_CAP_LAG_HASH_ALGORITHM_KEY] = "no capabilities" + + if json_format: + if entry[SW_CAP_HASH_FIELD_LIST_KEY] not in ["N/A", "no capabilities"]: + entry[SW_CAP_HASH_FIELD_LIST_KEY] = entry[SW_CAP_HASH_FIELD_LIST_KEY].split(',') + + if entry[SW_CAP_ECMP_HASH_ALGORITHM_KEY] not in ["N/A", "no capabilities"]: + entry[SW_CAP_ECMP_HASH_ALGORITHM_KEY] = entry[SW_CAP_ECMP_HASH_ALGORITHM_KEY].split(',') + + if entry[SW_CAP_LAG_HASH_ALGORITHM_KEY] not in ["N/A", "no capabilities"]: + entry[SW_CAP_LAG_HASH_ALGORITHM_KEY] = entry[SW_CAP_LAG_HASH_ALGORITHM_KEY].split(',') + + json_dict = { + "ecmp": { + "hash_field": entry[SW_CAP_HASH_FIELD_LIST_KEY] if entry[SW_CAP_ECMP_HASH_CAPABLE_KEY] == 'true' else 'not supported', + "algorithm": entry[SW_CAP_ECMP_HASH_ALGORITHM_KEY] if entry[SW_CAP_ECMP_HASH_ALGORITHM_CAPABLE_KEY] == 'true' else 'not supported' + }, + "lag": { + "hash_field": entry[SW_CAP_HASH_FIELD_LIST_KEY] if entry[SW_CAP_LAG_HASH_CAPABLE_KEY] == 'true' else 'not supported', + "algorithm": entry[SW_CAP_LAG_HASH_ALGORITHM_KEY] if entry[SW_CAP_LAG_HASH_ALGORITHM_CAPABLE_KEY] == 'true' else 'not supported' + } + } + click.echo(json.dumps(json_dict, indent=4)) + ctx.exit(0) + entry[SW_CAP_HASH_FIELD_LIST_KEY] = entry[SW_CAP_HASH_FIELD_LIST_KEY].split(',') + entry[SW_CAP_ECMP_HASH_ALGORITHM_KEY] = entry[SW_CAP_ECMP_HASH_ALGORITHM_KEY].split(',') + entry[SW_CAP_LAG_HASH_ALGORITHM_KEY] = entry[SW_CAP_LAG_HASH_ALGORITHM_KEY].split(',') - row = [ + ecmp_row = [ format_attr_value( entry, { 'name': SW_CAP_HASH_FIELD_LIST_KEY, 'is-leaf-list': True } - ) if entry[SW_CAP_ECMP_HASH_KEY] == 'true' else 'not supported', + ) if entry[SW_CAP_ECMP_HASH_CAPABLE_KEY] == 'true' else 'not supported', + format_attr_value( + entry, + { + 'name': SW_CAP_ECMP_HASH_ALGORITHM_KEY, + 'is-leaf-list': True + } + ) if entry[SW_CAP_ECMP_HASH_ALGORITHM_CAPABLE_KEY] == 'true' else 'not supported', + ] + ecmp_body.append(ecmp_row) + + lag_row = [ format_attr_value( entry, { 'name': SW_CAP_HASH_FIELD_LIST_KEY, 'is-leaf-list': True } - ) if entry[SW_CAP_LAG_HASH_KEY] == 'true' else 'not supported', + ) if entry[SW_CAP_LAG_HASH_CAPABLE_KEY] == 'true' else 'not supported', + format_attr_value( + entry, + { + 'name': SW_CAP_LAG_HASH_ALGORITHM_KEY, + 'is-leaf-list': True + } + ) if entry[SW_CAP_LAG_HASH_ALGORITHM_CAPABLE_KEY] == 'true' else 'not supported', ] - body.append(row) + lag_body.append(lag_row) + + body.append(["ECMP", tabulate.tabulate(ecmp_body, sub_header, "psql")]) + body.append(["LAG", tabulate.tabulate(lag_body, sub_header, "psql")]) - click.echo(tabulate.tabulate(body, header)) + click.echo(tabulate.tabulate(body, header, "grid")) def register(cli): diff --git a/tests/hash_input/assert_show_output.py b/tests/hash_input/assert_show_output.py index 80edc1cf17..8a1e1fa2dc 100644 --- a/tests/hash_input/assert_show_output.py +++ b/tests/hash_input/assert_show_output.py @@ -3,156 +3,579 @@ """ show_hash_empty="""\ -ECMP HASH LAG HASH ------------ ---------- +No configuration is present in CONFIG DB """ show_hash_ecmp="""\ -ECMP HASH LAG HASH ------------------ ---------- -DST_MAC N/A -SRC_MAC -ETHERTYPE -IP_PROTOCOL -DST_IP -SRC_IP -L4_DST_PORT -L4_SRC_PORT -INNER_DST_MAC -INNER_SRC_MAC -INNER_ETHERTYPE -INNER_IP_PROTOCOL -INNER_DST_IP -INNER_SRC_IP -INNER_L4_DST_PORT -INNER_L4_SRC_PORT ++--------+-------------------------------------+ +| Hash | Configuration | ++========+=====================================+ +| ECMP | +-------------------+-------------+ | +| | | Hash Field | Algorithm | | +| | |-------------------+-------------| | +| | | DST_MAC | CRC | | +| | | SRC_MAC | | | +| | | ETHERTYPE | | | +| | | IP_PROTOCOL | | | +| | | DST_IP | | | +| | | SRC_IP | | | +| | | L4_DST_PORT | | | +| | | L4_SRC_PORT | | | +| | | INNER_DST_MAC | | | +| | | INNER_SRC_MAC | | | +| | | INNER_ETHERTYPE | | | +| | | INNER_IP_PROTOCOL | | | +| | | INNER_DST_IP | | | +| | | INNER_SRC_IP | | | +| | | INNER_L4_DST_PORT | | | +| | | INNER_L4_SRC_PORT | | | +| | +-------------------+-------------+ | ++--------+-------------------------------------+ +| LAG | +--------------+-------------+ | +| | | Hash Field | Algorithm | | +| | |--------------+-------------| | +| | | N/A | N/A | | +| | +--------------+-------------+ | ++--------+-------------------------------------+ +""" +show_hash_ecmp_json="""\ +{ + "ecmp": { + "hash_field": [ + "DST_MAC", + "SRC_MAC", + "ETHERTYPE", + "IP_PROTOCOL", + "DST_IP", + "SRC_IP", + "L4_DST_PORT", + "L4_SRC_PORT", + "INNER_DST_MAC", + "INNER_SRC_MAC", + "INNER_ETHERTYPE", + "INNER_IP_PROTOCOL", + "INNER_DST_IP", + "INNER_SRC_IP", + "INNER_L4_DST_PORT", + "INNER_L4_SRC_PORT" + ], + "algorithm": "CRC" + }, + "lag": { + "hash_field": "N/A", + "algorithm": "N/A" + } +} """ show_hash_lag="""\ -ECMP HASH LAG HASH ------------ ----------------- -N/A DST_MAC - SRC_MAC - ETHERTYPE - IP_PROTOCOL - DST_IP - SRC_IP - L4_DST_PORT - L4_SRC_PORT - INNER_DST_MAC - INNER_SRC_MAC - INNER_ETHERTYPE - INNER_IP_PROTOCOL - INNER_DST_IP - INNER_SRC_IP - INNER_L4_DST_PORT - INNER_L4_SRC_PORT ++--------+-------------------------------------+ +| Hash | Configuration | ++========+=====================================+ +| ECMP | +--------------+-------------+ | +| | | Hash Field | Algorithm | | +| | |--------------+-------------| | +| | | N/A | N/A | | +| | +--------------+-------------+ | ++--------+-------------------------------------+ +| LAG | +-------------------+-------------+ | +| | | Hash Field | Algorithm | | +| | |-------------------+-------------| | +| | | DST_MAC | XOR | | +| | | SRC_MAC | | | +| | | ETHERTYPE | | | +| | | IP_PROTOCOL | | | +| | | DST_IP | | | +| | | SRC_IP | | | +| | | L4_DST_PORT | | | +| | | L4_SRC_PORT | | | +| | | INNER_DST_MAC | | | +| | | INNER_SRC_MAC | | | +| | | INNER_ETHERTYPE | | | +| | | INNER_IP_PROTOCOL | | | +| | | INNER_DST_IP | | | +| | | INNER_SRC_IP | | | +| | | INNER_L4_DST_PORT | | | +| | | INNER_L4_SRC_PORT | | | +| | +-------------------+-------------+ | ++--------+-------------------------------------+ +""" +show_hash_lag_json="""\ +{ + "ecmp": { + "hash_field": "N/A", + "algorithm": "N/A" + }, + "lag": { + "hash_field": [ + "DST_MAC", + "SRC_MAC", + "ETHERTYPE", + "IP_PROTOCOL", + "DST_IP", + "SRC_IP", + "L4_DST_PORT", + "L4_SRC_PORT", + "INNER_DST_MAC", + "INNER_SRC_MAC", + "INNER_ETHERTYPE", + "INNER_IP_PROTOCOL", + "INNER_DST_IP", + "INNER_SRC_IP", + "INNER_L4_DST_PORT", + "INNER_L4_SRC_PORT" + ], + "algorithm": "XOR" + } +} """ show_hash_ecmp_and_lag="""\ -ECMP HASH LAG HASH ------------------ ----------------- -DST_MAC DST_MAC -SRC_MAC SRC_MAC -ETHERTYPE ETHERTYPE -IP_PROTOCOL IP_PROTOCOL -DST_IP DST_IP -SRC_IP SRC_IP -L4_DST_PORT L4_DST_PORT -L4_SRC_PORT L4_SRC_PORT -INNER_DST_MAC INNER_DST_MAC -INNER_SRC_MAC INNER_SRC_MAC -INNER_ETHERTYPE INNER_ETHERTYPE -INNER_IP_PROTOCOL INNER_IP_PROTOCOL -INNER_DST_IP INNER_DST_IP -INNER_SRC_IP INNER_SRC_IP -INNER_L4_DST_PORT INNER_L4_DST_PORT -INNER_L4_SRC_PORT INNER_L4_SRC_PORT ++--------+-------------------------------------+ +| Hash | Configuration | ++========+=====================================+ +| ECMP | +-------------------+-------------+ | +| | | Hash Field | Algorithm | | +| | |-------------------+-------------| | +| | | DST_MAC | CRC | | +| | | SRC_MAC | | | +| | | ETHERTYPE | | | +| | | IP_PROTOCOL | | | +| | | DST_IP | | | +| | | SRC_IP | | | +| | | L4_DST_PORT | | | +| | | L4_SRC_PORT | | | +| | | INNER_DST_MAC | | | +| | | INNER_SRC_MAC | | | +| | | INNER_ETHERTYPE | | | +| | | INNER_IP_PROTOCOL | | | +| | | INNER_DST_IP | | | +| | | INNER_SRC_IP | | | +| | | INNER_L4_DST_PORT | | | +| | | INNER_L4_SRC_PORT | | | +| | +-------------------+-------------+ | ++--------+-------------------------------------+ +| LAG | +-------------------+-------------+ | +| | | Hash Field | Algorithm | | +| | |-------------------+-------------| | +| | | DST_MAC | XOR | | +| | | SRC_MAC | | | +| | | ETHERTYPE | | | +| | | IP_PROTOCOL | | | +| | | DST_IP | | | +| | | SRC_IP | | | +| | | L4_DST_PORT | | | +| | | L4_SRC_PORT | | | +| | | INNER_DST_MAC | | | +| | | INNER_SRC_MAC | | | +| | | INNER_ETHERTYPE | | | +| | | INNER_IP_PROTOCOL | | | +| | | INNER_DST_IP | | | +| | | INNER_SRC_IP | | | +| | | INNER_L4_DST_PORT | | | +| | | INNER_L4_SRC_PORT | | | +| | +-------------------+-------------+ | ++--------+-------------------------------------+ +""" +show_hash_ecmp_and_lag_json="""\ +{ + "ecmp": { + "hash_field": [ + "DST_MAC", + "SRC_MAC", + "ETHERTYPE", + "IP_PROTOCOL", + "DST_IP", + "SRC_IP", + "L4_DST_PORT", + "L4_SRC_PORT", + "INNER_DST_MAC", + "INNER_SRC_MAC", + "INNER_ETHERTYPE", + "INNER_IP_PROTOCOL", + "INNER_DST_IP", + "INNER_SRC_IP", + "INNER_L4_DST_PORT", + "INNER_L4_SRC_PORT" + ], + "algorithm": "CRC" + }, + "lag": { + "hash_field": [ + "DST_MAC", + "SRC_MAC", + "ETHERTYPE", + "IP_PROTOCOL", + "DST_IP", + "SRC_IP", + "L4_DST_PORT", + "L4_SRC_PORT", + "INNER_DST_MAC", + "INNER_SRC_MAC", + "INNER_ETHERTYPE", + "INNER_IP_PROTOCOL", + "INNER_DST_IP", + "INNER_SRC_IP", + "INNER_L4_DST_PORT", + "INNER_L4_SRC_PORT" + ], + "algorithm": "XOR" + } +} """ show_hash_capabilities_no="""\ -ECMP HASH LAG HASH ---------------- --------------- -no capabilities no capabilities ++--------+---------------------------------------+ +| Hash | Capabilities | ++========+=======================================+ +| ECMP | +-----------------+-----------------+ | +| | | Hash Field | Algorithm | | +| | |-----------------+-----------------| | +| | | no capabilities | no capabilities | | +| | +-----------------+-----------------+ | ++--------+---------------------------------------+ +| LAG | +-----------------+-----------------+ | +| | | Hash Field | Algorithm | | +| | |-----------------+-----------------| | +| | | no capabilities | no capabilities | | +| | +-----------------+-----------------+ | ++--------+---------------------------------------+ +""" +show_hash_capabilities_no_json="""\ +{ + "ecmp": { + "hash_field": "no capabilities", + "algorithm": "no capabilities" + }, + "lag": { + "hash_field": "no capabilities", + "algorithm": "no capabilities" + } +} """ show_hash_capabilities_na="""\ -ECMP HASH LAG HASH ------------ ---------- -N/A N/A ++--------+--------------------------------+ +| Hash | Capabilities | ++========+================================+ +| ECMP | +--------------+-------------+ | +| | | Hash Field | Algorithm | | +| | |--------------+-------------| | +| | | N/A | N/A | | +| | +--------------+-------------+ | ++--------+--------------------------------+ +| LAG | +--------------+-------------+ | +| | | Hash Field | Algorithm | | +| | |--------------+-------------| | +| | | N/A | N/A | | +| | +--------------+-------------+ | ++--------+--------------------------------+ +""" +show_hash_capabilities_na_json="""\ +{ + "ecmp": { + "hash_field": "N/A", + "algorithm": "N/A" + }, + "lag": { + "hash_field": "N/A", + "algorithm": "N/A" + } +} """ show_hash_capabilities_empty="""\ -ECMP HASH LAG HASH -------------- ------------- -not supported not supported ++--------+-----------------------------------+ +| Hash | Capabilities | ++========+===================================+ +| ECMP | +---------------+---------------+ | +| | | Hash Field | Algorithm | | +| | |---------------+---------------| | +| | | not supported | not supported | | +| | +---------------+---------------+ | ++--------+-----------------------------------+ +| LAG | +---------------+---------------+ | +| | | Hash Field | Algorithm | | +| | |---------------+---------------| | +| | | not supported | not supported | | +| | +---------------+---------------+ | ++--------+-----------------------------------+ +""" +show_hash_capabilities_empty_json="""\ +{ + "ecmp": { + "hash_field": "not supported", + "algorithm": "not supported" + }, + "lag": { + "hash_field": "not supported", + "algorithm": "not supported" + } +} """ show_hash_capabilities_ecmp="""\ -ECMP HASH LAG HASH ------------------ ------------- -IN_PORT not supported -DST_MAC -SRC_MAC -ETHERTYPE -VLAN_ID -IP_PROTOCOL -DST_IP -SRC_IP -L4_DST_PORT -L4_SRC_PORT -INNER_DST_MAC -INNER_SRC_MAC -INNER_ETHERTYPE -INNER_IP_PROTOCOL -INNER_DST_IP -INNER_SRC_IP -INNER_L4_DST_PORT -INNER_L4_SRC_PORT ++--------+-------------------------------------+ +| Hash | Capabilities | ++========+=====================================+ +| ECMP | +-------------------+-------------+ | +| | | Hash Field | Algorithm | | +| | |-------------------+-------------| | +| | | IN_PORT | CRC | | +| | | DST_MAC | XOR | | +| | | SRC_MAC | RANDOM | | +| | | ETHERTYPE | CRC_32LO | | +| | | VLAN_ID | CRC_32HI | | +| | | IP_PROTOCOL | CRC_CCITT | | +| | | DST_IP | CRC_XOR | | +| | | SRC_IP | | | +| | | L4_DST_PORT | | | +| | | L4_SRC_PORT | | | +| | | INNER_DST_MAC | | | +| | | INNER_SRC_MAC | | | +| | | INNER_ETHERTYPE | | | +| | | INNER_IP_PROTOCOL | | | +| | | INNER_DST_IP | | | +| | | INNER_SRC_IP | | | +| | | INNER_L4_DST_PORT | | | +| | | INNER_L4_SRC_PORT | | | +| | +-------------------+-------------+ | ++--------+-------------------------------------+ +| LAG | +---------------+---------------+ | +| | | Hash Field | Algorithm | | +| | |---------------+---------------| | +| | | not supported | not supported | | +| | +---------------+---------------+ | ++--------+-------------------------------------+ +""" +show_hash_capabilities_ecmp_json="""\ +{ + "ecmp": { + "hash_field": [ + "IN_PORT", + "DST_MAC", + "SRC_MAC", + "ETHERTYPE", + "VLAN_ID", + "IP_PROTOCOL", + "DST_IP", + "SRC_IP", + "L4_DST_PORT", + "L4_SRC_PORT", + "INNER_DST_MAC", + "INNER_SRC_MAC", + "INNER_ETHERTYPE", + "INNER_IP_PROTOCOL", + "INNER_DST_IP", + "INNER_SRC_IP", + "INNER_L4_DST_PORT", + "INNER_L4_SRC_PORT" + ], + "algorithm": [ + "CRC", + "XOR", + "RANDOM", + "CRC_32LO", + "CRC_32HI", + "CRC_CCITT", + "CRC_XOR" + ] + }, + "lag": { + "hash_field": "not supported", + "algorithm": "not supported" + } +} """ show_hash_capabilities_lag="""\ -ECMP HASH LAG HASH -------------- ----------------- -not supported IN_PORT - DST_MAC - SRC_MAC - ETHERTYPE - VLAN_ID - IP_PROTOCOL - DST_IP - SRC_IP - L4_DST_PORT - L4_SRC_PORT - INNER_DST_MAC - INNER_SRC_MAC - INNER_ETHERTYPE - INNER_IP_PROTOCOL - INNER_DST_IP - INNER_SRC_IP - INNER_L4_DST_PORT - INNER_L4_SRC_PORT ++--------+-------------------------------------+ +| Hash | Capabilities | ++========+=====================================+ +| ECMP | +---------------+---------------+ | +| | | Hash Field | Algorithm | | +| | |---------------+---------------| | +| | | not supported | not supported | | +| | +---------------+---------------+ | ++--------+-------------------------------------+ +| LAG | +-------------------+-------------+ | +| | | Hash Field | Algorithm | | +| | |-------------------+-------------| | +| | | IN_PORT | CRC | | +| | | DST_MAC | XOR | | +| | | SRC_MAC | RANDOM | | +| | | ETHERTYPE | CRC_32LO | | +| | | VLAN_ID | CRC_32HI | | +| | | IP_PROTOCOL | CRC_CCITT | | +| | | DST_IP | CRC_XOR | | +| | | SRC_IP | | | +| | | L4_DST_PORT | | | +| | | L4_SRC_PORT | | | +| | | INNER_DST_MAC | | | +| | | INNER_SRC_MAC | | | +| | | INNER_ETHERTYPE | | | +| | | INNER_IP_PROTOCOL | | | +| | | INNER_DST_IP | | | +| | | INNER_SRC_IP | | | +| | | INNER_L4_DST_PORT | | | +| | | INNER_L4_SRC_PORT | | | +| | +-------------------+-------------+ | ++--------+-------------------------------------+ +""" +show_hash_capabilities_lag_json="""\ +{ + "ecmp": { + "hash_field": "not supported", + "algorithm": "not supported" + }, + "lag": { + "hash_field": [ + "IN_PORT", + "DST_MAC", + "SRC_MAC", + "ETHERTYPE", + "VLAN_ID", + "IP_PROTOCOL", + "DST_IP", + "SRC_IP", + "L4_DST_PORT", + "L4_SRC_PORT", + "INNER_DST_MAC", + "INNER_SRC_MAC", + "INNER_ETHERTYPE", + "INNER_IP_PROTOCOL", + "INNER_DST_IP", + "INNER_SRC_IP", + "INNER_L4_DST_PORT", + "INNER_L4_SRC_PORT" + ], + "algorithm": [ + "CRC", + "XOR", + "RANDOM", + "CRC_32LO", + "CRC_32HI", + "CRC_CCITT", + "CRC_XOR" + ] + } +} """ show_hash_capabilities_ecmp_and_lag="""\ -ECMP HASH LAG HASH ------------------ ----------------- -IN_PORT IN_PORT -DST_MAC DST_MAC -SRC_MAC SRC_MAC -ETHERTYPE ETHERTYPE -VLAN_ID VLAN_ID -IP_PROTOCOL IP_PROTOCOL -DST_IP DST_IP -SRC_IP SRC_IP -L4_DST_PORT L4_DST_PORT -L4_SRC_PORT L4_SRC_PORT -INNER_DST_MAC INNER_DST_MAC -INNER_SRC_MAC INNER_SRC_MAC -INNER_ETHERTYPE INNER_ETHERTYPE -INNER_IP_PROTOCOL INNER_IP_PROTOCOL -INNER_DST_IP INNER_DST_IP -INNER_SRC_IP INNER_SRC_IP -INNER_L4_DST_PORT INNER_L4_DST_PORT -INNER_L4_SRC_PORT INNER_L4_SRC_PORT ++--------+-------------------------------------+ +| Hash | Capabilities | ++========+=====================================+ +| ECMP | +-------------------+-------------+ | +| | | Hash Field | Algorithm | | +| | |-------------------+-------------| | +| | | IN_PORT | CRC | | +| | | DST_MAC | XOR | | +| | | SRC_MAC | RANDOM | | +| | | ETHERTYPE | CRC_32LO | | +| | | VLAN_ID | CRC_32HI | | +| | | IP_PROTOCOL | CRC_CCITT | | +| | | DST_IP | CRC_XOR | | +| | | SRC_IP | | | +| | | L4_DST_PORT | | | +| | | L4_SRC_PORT | | | +| | | INNER_DST_MAC | | | +| | | INNER_SRC_MAC | | | +| | | INNER_ETHERTYPE | | | +| | | INNER_IP_PROTOCOL | | | +| | | INNER_DST_IP | | | +| | | INNER_SRC_IP | | | +| | | INNER_L4_DST_PORT | | | +| | | INNER_L4_SRC_PORT | | | +| | +-------------------+-------------+ | ++--------+-------------------------------------+ +| LAG | +-------------------+-------------+ | +| | | Hash Field | Algorithm | | +| | |-------------------+-------------| | +| | | IN_PORT | CRC | | +| | | DST_MAC | XOR | | +| | | SRC_MAC | RANDOM | | +| | | ETHERTYPE | CRC_32LO | | +| | | VLAN_ID | CRC_32HI | | +| | | IP_PROTOCOL | CRC_CCITT | | +| | | DST_IP | CRC_XOR | | +| | | SRC_IP | | | +| | | L4_DST_PORT | | | +| | | L4_SRC_PORT | | | +| | | INNER_DST_MAC | | | +| | | INNER_SRC_MAC | | | +| | | INNER_ETHERTYPE | | | +| | | INNER_IP_PROTOCOL | | | +| | | INNER_DST_IP | | | +| | | INNER_SRC_IP | | | +| | | INNER_L4_DST_PORT | | | +| | | INNER_L4_SRC_PORT | | | +| | +-------------------+-------------+ | ++--------+-------------------------------------+ +""" +show_hash_capabilities_ecmp_and_lag_json="""\ +{ + "ecmp": { + "hash_field": [ + "IN_PORT", + "DST_MAC", + "SRC_MAC", + "ETHERTYPE", + "VLAN_ID", + "IP_PROTOCOL", + "DST_IP", + "SRC_IP", + "L4_DST_PORT", + "L4_SRC_PORT", + "INNER_DST_MAC", + "INNER_SRC_MAC", + "INNER_ETHERTYPE", + "INNER_IP_PROTOCOL", + "INNER_DST_IP", + "INNER_SRC_IP", + "INNER_L4_DST_PORT", + "INNER_L4_SRC_PORT" + ], + "algorithm": [ + "CRC", + "XOR", + "RANDOM", + "CRC_32LO", + "CRC_32HI", + "CRC_CCITT", + "CRC_XOR" + ] + }, + "lag": { + "hash_field": [ + "IN_PORT", + "DST_MAC", + "SRC_MAC", + "ETHERTYPE", + "VLAN_ID", + "IP_PROTOCOL", + "DST_IP", + "SRC_IP", + "L4_DST_PORT", + "L4_SRC_PORT", + "INNER_DST_MAC", + "INNER_SRC_MAC", + "INNER_ETHERTYPE", + "INNER_IP_PROTOCOL", + "INNER_DST_IP", + "INNER_SRC_IP", + "INNER_L4_DST_PORT", + "INNER_L4_SRC_PORT" + ], + "algorithm": [ + "CRC", + "XOR", + "RANDOM", + "CRC_32LO", + "CRC_32HI", + "CRC_CCITT", + "CRC_XOR" + ] + } +} """ diff --git a/tests/hash_input/mock_config/ecmp.json b/tests/hash_input/mock_config/ecmp.json index 329af0be66..a488aca226 100644 --- a/tests/hash_input/mock_config/ecmp.json +++ b/tests/hash_input/mock_config/ecmp.json @@ -1,5 +1,6 @@ { "SWITCH_HASH|GLOBAL": { - "ecmp_hash@": "DST_MAC,SRC_MAC,ETHERTYPE,IP_PROTOCOL,DST_IP,SRC_IP,L4_DST_PORT,L4_SRC_PORT,INNER_DST_MAC,INNER_SRC_MAC,INNER_ETHERTYPE,INNER_IP_PROTOCOL,INNER_DST_IP,INNER_SRC_IP,INNER_L4_DST_PORT,INNER_L4_SRC_PORT" + "ecmp_hash@": "DST_MAC,SRC_MAC,ETHERTYPE,IP_PROTOCOL,DST_IP,SRC_IP,L4_DST_PORT,L4_SRC_PORT,INNER_DST_MAC,INNER_SRC_MAC,INNER_ETHERTYPE,INNER_IP_PROTOCOL,INNER_DST_IP,INNER_SRC_IP,INNER_L4_DST_PORT,INNER_L4_SRC_PORT", + "ecmp_hash_algorithm": "CRC" } } diff --git a/tests/hash_input/mock_config/ecmp_and_lag.json b/tests/hash_input/mock_config/ecmp_and_lag.json index caa095ac4e..e1c0018e4f 100644 --- a/tests/hash_input/mock_config/ecmp_and_lag.json +++ b/tests/hash_input/mock_config/ecmp_and_lag.json @@ -1,6 +1,8 @@ { "SWITCH_HASH|GLOBAL": { "ecmp_hash@": "DST_MAC,SRC_MAC,ETHERTYPE,IP_PROTOCOL,DST_IP,SRC_IP,L4_DST_PORT,L4_SRC_PORT,INNER_DST_MAC,INNER_SRC_MAC,INNER_ETHERTYPE,INNER_IP_PROTOCOL,INNER_DST_IP,INNER_SRC_IP,INNER_L4_DST_PORT,INNER_L4_SRC_PORT", - "lag_hash@": "DST_MAC,SRC_MAC,ETHERTYPE,IP_PROTOCOL,DST_IP,SRC_IP,L4_DST_PORT,L4_SRC_PORT,INNER_DST_MAC,INNER_SRC_MAC,INNER_ETHERTYPE,INNER_IP_PROTOCOL,INNER_DST_IP,INNER_SRC_IP,INNER_L4_DST_PORT,INNER_L4_SRC_PORT" + "lag_hash@": "DST_MAC,SRC_MAC,ETHERTYPE,IP_PROTOCOL,DST_IP,SRC_IP,L4_DST_PORT,L4_SRC_PORT,INNER_DST_MAC,INNER_SRC_MAC,INNER_ETHERTYPE,INNER_IP_PROTOCOL,INNER_DST_IP,INNER_SRC_IP,INNER_L4_DST_PORT,INNER_L4_SRC_PORT", + "ecmp_hash_algorithm": "CRC", + "lag_hash_algorithm": "XOR" } } diff --git a/tests/hash_input/mock_config/lag.json b/tests/hash_input/mock_config/lag.json index 69b63bd0ab..14f262810c 100644 --- a/tests/hash_input/mock_config/lag.json +++ b/tests/hash_input/mock_config/lag.json @@ -1,5 +1,6 @@ { "SWITCH_HASH|GLOBAL": { - "lag_hash@": "DST_MAC,SRC_MAC,ETHERTYPE,IP_PROTOCOL,DST_IP,SRC_IP,L4_DST_PORT,L4_SRC_PORT,INNER_DST_MAC,INNER_SRC_MAC,INNER_ETHERTYPE,INNER_IP_PROTOCOL,INNER_DST_IP,INNER_SRC_IP,INNER_L4_DST_PORT,INNER_L4_SRC_PORT" + "lag_hash@": "DST_MAC,SRC_MAC,ETHERTYPE,IP_PROTOCOL,DST_IP,SRC_IP,L4_DST_PORT,L4_SRC_PORT,INNER_DST_MAC,INNER_SRC_MAC,INNER_ETHERTYPE,INNER_IP_PROTOCOL,INNER_DST_IP,INNER_SRC_IP,INNER_L4_DST_PORT,INNER_L4_SRC_PORT", + "lag_hash_algorithm": "XOR" } } diff --git a/tests/hash_input/mock_state/ecmp.json b/tests/hash_input/mock_state/ecmp.json index e9f7cf436d..9e79484d28 100644 --- a/tests/hash_input/mock_state/ecmp.json +++ b/tests/hash_input/mock_state/ecmp.json @@ -2,6 +2,10 @@ "SWITCH_CAPABILITY|switch": { "ECMP_HASH_CAPABLE": "true", "LAG_HASH_CAPABLE": "false", - "HASH|NATIVE_HASH_FIELD_LIST": "IN_PORT,DST_MAC,SRC_MAC,ETHERTYPE,VLAN_ID,IP_PROTOCOL,DST_IP,SRC_IP,L4_DST_PORT,L4_SRC_PORT,INNER_DST_MAC,INNER_SRC_MAC,INNER_ETHERTYPE,INNER_IP_PROTOCOL,INNER_DST_IP,INNER_SRC_IP,INNER_L4_DST_PORT,INNER_L4_SRC_PORT" + "ECMP_HASH_ALGORITHM_CAPABLE": "true", + "LAG_HASH_ALGORITHM_CAPABLE": "false", + "HASH|NATIVE_HASH_FIELD_LIST": "IN_PORT,DST_MAC,SRC_MAC,ETHERTYPE,VLAN_ID,IP_PROTOCOL,DST_IP,SRC_IP,L4_DST_PORT,L4_SRC_PORT,INNER_DST_MAC,INNER_SRC_MAC,INNER_ETHERTYPE,INNER_IP_PROTOCOL,INNER_DST_IP,INNER_SRC_IP,INNER_L4_DST_PORT,INNER_L4_SRC_PORT", + "ECMP_HASH_ALGORITHM": "CRC,XOR,RANDOM,CRC_32LO,CRC_32HI,CRC_CCITT,CRC_XOR", + "LAG_HASH_ALGORITHM": "CRC,XOR,RANDOM,CRC_32LO,CRC_32HI,CRC_CCITT,CRC_XOR" } } diff --git a/tests/hash_input/mock_state/ecmp_and_lag.json b/tests/hash_input/mock_state/ecmp_and_lag.json index ee0e94169b..27a8d84a13 100644 --- a/tests/hash_input/mock_state/ecmp_and_lag.json +++ b/tests/hash_input/mock_state/ecmp_and_lag.json @@ -2,6 +2,10 @@ "SWITCH_CAPABILITY|switch": { "ECMP_HASH_CAPABLE": "true", "LAG_HASH_CAPABLE": "true", - "HASH|NATIVE_HASH_FIELD_LIST": "IN_PORT,DST_MAC,SRC_MAC,ETHERTYPE,VLAN_ID,IP_PROTOCOL,DST_IP,SRC_IP,L4_DST_PORT,L4_SRC_PORT,INNER_DST_MAC,INNER_SRC_MAC,INNER_ETHERTYPE,INNER_IP_PROTOCOL,INNER_DST_IP,INNER_SRC_IP,INNER_L4_DST_PORT,INNER_L4_SRC_PORT" + "ECMP_HASH_ALGORITHM_CAPABLE": "true", + "LAG_HASH_ALGORITHM_CAPABLE": "true", + "HASH|NATIVE_HASH_FIELD_LIST": "IN_PORT,DST_MAC,SRC_MAC,ETHERTYPE,VLAN_ID,IP_PROTOCOL,DST_IP,SRC_IP,L4_DST_PORT,L4_SRC_PORT,INNER_DST_MAC,INNER_SRC_MAC,INNER_ETHERTYPE,INNER_IP_PROTOCOL,INNER_DST_IP,INNER_SRC_IP,INNER_L4_DST_PORT,INNER_L4_SRC_PORT", + "ECMP_HASH_ALGORITHM": "CRC,XOR,RANDOM,CRC_32LO,CRC_32HI,CRC_CCITT,CRC_XOR", + "LAG_HASH_ALGORITHM": "CRC,XOR,RANDOM,CRC_32LO,CRC_32HI,CRC_CCITT,CRC_XOR" } } diff --git a/tests/hash_input/mock_state/empty.json b/tests/hash_input/mock_state/empty.json index 9e221a2fb7..240080f1e0 100644 --- a/tests/hash_input/mock_state/empty.json +++ b/tests/hash_input/mock_state/empty.json @@ -2,6 +2,10 @@ "SWITCH_CAPABILITY|switch": { "ECMP_HASH_CAPABLE": "false", "LAG_HASH_CAPABLE": "false", - "HASH|NATIVE_HASH_FIELD_LIST": "IN_PORT,DST_MAC,SRC_MAC,ETHERTYPE,VLAN_ID,IP_PROTOCOL,DST_IP,SRC_IP,L4_DST_PORT,L4_SRC_PORT,INNER_DST_MAC,INNER_SRC_MAC,INNER_ETHERTYPE,INNER_IP_PROTOCOL,INNER_DST_IP,INNER_SRC_IP,INNER_L4_DST_PORT,INNER_L4_SRC_PORT" + "ECMP_HASH_ALGORITHM_CAPABLE": "false", + "LAG_HASH_ALGORITHM_CAPABLE": "false", + "HASH|NATIVE_HASH_FIELD_LIST": "IN_PORT,DST_MAC,SRC_MAC,ETHERTYPE,VLAN_ID,IP_PROTOCOL,DST_IP,SRC_IP,L4_DST_PORT,L4_SRC_PORT,INNER_DST_MAC,INNER_SRC_MAC,INNER_ETHERTYPE,INNER_IP_PROTOCOL,INNER_DST_IP,INNER_SRC_IP,INNER_L4_DST_PORT,INNER_L4_SRC_PORT", + "ECMP_HASH_ALGORITHM": "CRC,XOR,RANDOM,CRC_32LO,CRC_32HI,CRC_CCITT,CRC_XOR", + "LAG_HASH_ALGORITHM": "CRC,XOR,RANDOM,CRC_32LO,CRC_32HI,CRC_CCITT,CRC_XOR" } } diff --git a/tests/hash_input/mock_state/lag.json b/tests/hash_input/mock_state/lag.json index 3fb0008a18..ad4e472534 100644 --- a/tests/hash_input/mock_state/lag.json +++ b/tests/hash_input/mock_state/lag.json @@ -2,6 +2,10 @@ "SWITCH_CAPABILITY|switch": { "ECMP_HASH_CAPABLE": "false", "LAG_HASH_CAPABLE": "true", - "HASH|NATIVE_HASH_FIELD_LIST": "IN_PORT,DST_MAC,SRC_MAC,ETHERTYPE,VLAN_ID,IP_PROTOCOL,DST_IP,SRC_IP,L4_DST_PORT,L4_SRC_PORT,INNER_DST_MAC,INNER_SRC_MAC,INNER_ETHERTYPE,INNER_IP_PROTOCOL,INNER_DST_IP,INNER_SRC_IP,INNER_L4_DST_PORT,INNER_L4_SRC_PORT" + "ECMP_HASH_ALGORITHM_CAPABLE": "false", + "LAG_HASH_ALGORITHM_CAPABLE": "true", + "HASH|NATIVE_HASH_FIELD_LIST": "IN_PORT,DST_MAC,SRC_MAC,ETHERTYPE,VLAN_ID,IP_PROTOCOL,DST_IP,SRC_IP,L4_DST_PORT,L4_SRC_PORT,INNER_DST_MAC,INNER_SRC_MAC,INNER_ETHERTYPE,INNER_IP_PROTOCOL,INNER_DST_IP,INNER_SRC_IP,INNER_L4_DST_PORT,INNER_L4_SRC_PORT", + "ECMP_HASH_ALGORITHM": "CRC,XOR,RANDOM,CRC_32LO,CRC_32HI,CRC_CCITT,CRC_XOR", + "LAG_HASH_ALGORITHM": "CRC,XOR,RANDOM,CRC_32LO,CRC_32HI,CRC_CCITT,CRC_XOR" } } diff --git a/tests/hash_input/mock_state/no_capabilities.json b/tests/hash_input/mock_state/no_capabilities.json index 68f5962ca4..5e4652cc63 100644 --- a/tests/hash_input/mock_state/no_capabilities.json +++ b/tests/hash_input/mock_state/no_capabilities.json @@ -2,6 +2,10 @@ "SWITCH_CAPABILITY|switch": { "ECMP_HASH_CAPABLE": "true", "LAG_HASH_CAPABLE": "true", - "HASH|NATIVE_HASH_FIELD_LIST": "" + "ECMP_HASH_ALGORITHM_CAPABLE": "true", + "LAG_HASH_ALGORITHM_CAPABLE": "true", + "HASH|NATIVE_HASH_FIELD_LIST": "", + "ECMP_HASH_ALGORITHM": "", + "LAG_HASH_ALGORITHM": "" } } diff --git a/tests/hash_input/mock_state/not_applicable.json b/tests/hash_input/mock_state/not_applicable.json index de390e8961..6495b58582 100644 --- a/tests/hash_input/mock_state/not_applicable.json +++ b/tests/hash_input/mock_state/not_applicable.json @@ -2,6 +2,10 @@ "SWITCH_CAPABILITY|switch": { "ECMP_HASH_CAPABLE": "true", "LAG_HASH_CAPABLE": "true", - "HASH|NATIVE_HASH_FIELD_LIST": "N/A" + "ECMP_HASH_ALGORITHM_CAPABLE": "true", + "LAG_HASH_ALGORITHM_CAPABLE": "true", + "HASH|NATIVE_HASH_FIELD_LIST": "N/A", + "ECMP_HASH_ALGORITHM": "N/A", + "LAG_HASH_ALGORITHM": "N/A" } } diff --git a/tests/hash_test.py b/tests/hash_test.py index 96e8558d19..f9de27e999 100644 --- a/tests/hash_test.py +++ b/tests/hash_test.py @@ -39,6 +39,16 @@ "INNER_L4_SRC_PORT" ] +HASH_ALGORITHM = [ + "CRC", + "XOR", + "RANDOM", + "CRC_32LO", + "CRC_32HI", + "CRC_CCITT", + "CRC_XOR" +] + SUCCESS = 0 ERROR2 = 2 @@ -147,6 +157,59 @@ def test_config_hash_neg(self, hash, args, pattern): assert pattern in result.output assert result.exit_code == ERROR2 + @pytest.mark.parametrize( + "hash", [ + "ecmp-hash-algorithm", + "lag-hash-algorithm" + ] + ) + @pytest.mark.parametrize( + "arg", HASH_ALGORITHM + ) + def test_config_hash_algorithm(self, hash, arg): + db = Db() + runner = CliRunner() + + result = runner.invoke( + config.config.commands["switch-hash"].commands["global"]. + commands[hash], arg, obj=db + ) + + logger.debug("\n" + result.output) + logger.debug(result.exit_code) + + assert result.exit_code == SUCCESS + + @pytest.mark.parametrize( + "hash", [ + "ecmp-hash-algorithm", + "lag-hash-algorithm" + ] + ) + @pytest.mark.parametrize( + "arg,pattern", [ + pytest.param( + "CRC1", + "invalid choice: CRC1.", + id="INVALID" + ) + ] + ) + def test_config_hash_algorithm_neg(self, hash, arg, pattern): + db = Db() + runner = CliRunner() + + result = runner.invoke( + config.config.commands["switch-hash"].commands["global"]. + commands[hash], arg, obj=db + ) + + logger.debug("\n" + result.output) + logger.debug(result.exit_code) + + assert pattern in result.output + assert result.exit_code == ERROR2 + ########## SHOW SWITCH-HASH GLOBAL ########## @@ -155,90 +218,132 @@ def test_config_hash_neg(self, hash, args, pattern): "cfgdb,output", [ pytest.param( os.path.join(mock_config_path, "empty"), - assert_show_output.show_hash_empty, + { + "plain": assert_show_output.show_hash_empty, + "json": assert_show_output.show_hash_empty + }, id="empty" ), pytest.param( os.path.join(mock_config_path, "ecmp"), - assert_show_output.show_hash_ecmp, + { + "plain": assert_show_output.show_hash_ecmp, + "json": assert_show_output.show_hash_ecmp_json + }, id="ecmp" ), pytest.param( os.path.join(mock_config_path, "lag"), - assert_show_output.show_hash_lag, + { + "plain": assert_show_output.show_hash_lag, + "json": assert_show_output.show_hash_lag_json + }, id="lag" ), pytest.param( os.path.join(mock_config_path, "ecmp_and_lag"), - assert_show_output.show_hash_ecmp_and_lag, + { + "plain": assert_show_output.show_hash_ecmp_and_lag, + "json": assert_show_output.show_hash_ecmp_and_lag_json + }, id="all" ) ] ) - def test_show_hash(self, cfgdb, output): + @pytest.mark.parametrize( + "format", [ + "plain", + "json", + ] + ) + def test_show_hash(self, cfgdb, output, format): dbconnector.dedicated_dbs["CONFIG_DB"] = cfgdb db = Db() runner = CliRunner() result = runner.invoke( - show.cli.commands["switch-hash"]. - commands["global"], [], obj=db + show.cli.commands["switch-hash"].commands["global"], + [] if format == "plain" else ["--json"], obj=db ) logger.debug("\n" + result.output) logger.debug(result.exit_code) - assert result.output == output + assert result.output == output[format] assert result.exit_code == SUCCESS @pytest.mark.parametrize( "statedb,output", [ pytest.param( os.path.join(mock_state_path, "no_capabilities"), - assert_show_output.show_hash_capabilities_no, + { + "plain": assert_show_output.show_hash_capabilities_no, + "json": assert_show_output.show_hash_capabilities_no_json + }, id="no" ), pytest.param( os.path.join(mock_state_path, "not_applicable"), - assert_show_output.show_hash_capabilities_na, + { + "plain": assert_show_output.show_hash_capabilities_na, + "json": assert_show_output.show_hash_capabilities_na_json + }, id="na" ), pytest.param( os.path.join(mock_state_path, "empty"), - assert_show_output.show_hash_capabilities_empty, + { + "plain": assert_show_output.show_hash_capabilities_empty, + "json": assert_show_output.show_hash_capabilities_empty_json + }, id="empty" ), pytest.param( os.path.join(mock_state_path, "ecmp"), - assert_show_output.show_hash_capabilities_ecmp, + { + "plain": assert_show_output.show_hash_capabilities_ecmp, + "json": assert_show_output.show_hash_capabilities_ecmp_json + }, id="ecmp" ), pytest.param( os.path.join(mock_state_path, "lag"), - assert_show_output.show_hash_capabilities_lag, + { + "plain": assert_show_output.show_hash_capabilities_lag, + "json": assert_show_output.show_hash_capabilities_lag_json + }, id="lag" ), pytest.param( os.path.join(mock_state_path, "ecmp_and_lag"), - assert_show_output.show_hash_capabilities_ecmp_and_lag, + { + "plain": assert_show_output.show_hash_capabilities_ecmp_and_lag, + "json": assert_show_output.show_hash_capabilities_ecmp_and_lag_json + }, id="all" ) ] ) - def test_show_hash_capabilities(self, statedb, output): + @pytest.mark.parametrize( + "format", [ + "plain", + "json", + ] + ) + def test_show_hash_capabilities(self, statedb, output, format): dbconnector.dedicated_dbs["STATE_DB"] = statedb db = Db() runner = CliRunner() result = runner.invoke( - show.cli.commands["switch-hash"]. - commands["capabilities"], [], obj=db + show.cli.commands["switch-hash"].commands["capabilities"], + [] if format == "plain" else ["--json"], obj=db ) logger.debug("\n" + result.output) logger.debug(result.exit_code) - assert result.output == output + assert result.output == output[format] assert result.exit_code == SUCCESS diff --git a/utilities_common/switch_hash.py b/utilities_common/switch_hash.py index 1f29ca4e30..93e11b0615 100644 --- a/utilities_common/switch_hash.py +++ b/utilities_common/switch_hash.py @@ -8,8 +8,14 @@ # SW_CAP_HASH_FIELD_LIST_KEY = "HASH|NATIVE_HASH_FIELD_LIST" -SW_CAP_ECMP_HASH_KEY = "ECMP_HASH_CAPABLE" -SW_CAP_LAG_HASH_KEY = "LAG_HASH_CAPABLE" + +SW_CAP_ECMP_HASH_CAPABLE_KEY = "ECMP_HASH_CAPABLE" +SW_CAP_LAG_HASH_CAPABLE_KEY = "LAG_HASH_CAPABLE" + +SW_CAP_ECMP_HASH_ALGORITHM_KEY = "ECMP_HASH_ALGORITHM" +SW_CAP_ECMP_HASH_ALGORITHM_CAPABLE_KEY = "ECMP_HASH_ALGORITHM_CAPABLE" +SW_CAP_LAG_HASH_ALGORITHM_KEY = "LAG_HASH_ALGORITHM" +SW_CAP_LAG_HASH_ALGORITHM_CAPABLE_KEY = "LAG_HASH_ALGORITHM_CAPABLE" SW_HASH_KEY = "GLOBAL" SW_CAP_KEY = "switch" @@ -35,6 +41,16 @@ "INNER_L4_SRC_PORT" ] +HASH_ALGORITHM = [ + "CRC", + "XOR", + "RANDOM", + "CRC_32LO", + "CRC_32HI", + "CRC_CCITT", + "CRC_XOR" +] + SYSLOG_IDENTIFIER = "switch_hash" # From 50380e15ae137b4c0e0cc1a965a9230f8d30267b Mon Sep 17 00:00:00 2001 From: Junchao-Mellanox <57339448+Junchao-Mellanox@users.noreply.github.com> Date: Fri, 8 Dec 2023 13:56:16 +0800 Subject: [PATCH 62/75] Support reading/writing module EEPROM data by page and offset (#3008) * Support reading/writing module EEPROM data by page and offset * Fix unit test issue * Fix unit test issue * Fix review comment * Update command ref * Fix format * Update main.py * Fix review comments * Fix review comment * Remove un-intended change * Update Command-Reference.md * Update Command-Reference.md * Fix review comments * Fix review comments * User click.IntRange to avoid duplicate validation * Fix review comments * Update sfputil_test.py --- doc/Command-Reference.md | 75 +++++++++++ sfputil/main.py | 250 +++++++++++++++++++++++++++++++++--- tests/sfputil_test.py | 267 ++++++++++++++++++++++++++++++++++++++- 3 files changed, 570 insertions(+), 22 deletions(-) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index e8e24e5aad..d693c49d80 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -202,6 +202,9 @@ * [MACsec config command](#macsec-config-command) * [MACsec show command](#macsec-show-command) * [MACsec clear command](#macsec-clear-command) +* [SFP Utilities Commands](#sfp-utilities-commands) + * [SFP Utilities read command](#sfp-utilities-read-command) + * [SFP Utilities write command](#sfp-utilities-write-command) * [Static DNS Commands](#static-dns-commands) * [Static DNS config command](#static-dns-config-command) * [Static DNS show command](#static-dns-show-command) @@ -12910,6 +12913,78 @@ Clear MACsec counters which is to reset all MACsec counters to ZERO. Go Back To [Beginning of the document](#) or [Beginning of this section](#macsec-commands) +# SFP Utilities Commands + +This sub-section explains the list of commands available for SFP utilities feature. + +# SFP Utilities read command + +- Read SFP EEPROM data + +``` +admin@sonic:~$ sfputil read-eeprom --help +Usage: sfputil read-eeprom [OPTIONS] + + Read SFP EEPROM data + +Options: + -p, --port Logical port name [required] + -n, --page EEPROM page number [required] + -o, --offset EEPROM offset within the page [required] + -s, --size Size of byte to be read [required] + --no-format Display non formatted data + --wire-addr TEXT Wire address of sff8472 + --help Show this message and exit. +``` + +``` +admin@sonic:~$ sfputil read-eeprom -p Ethernet0 -n 0 -o 100 -s 2 + 00000064 4a 44 |..| + +admin@sonic:~$ sfputil read-eeprom --port Ethernet0 --page 0 --offset 0 --size 32 + 00000000 11 08 06 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + +admin@sonic:~$ sfputil read-eeprom --port Ethernet0 --page 0 --offset 100 --size 2 --no-format +4a44 +``` + +# SFP Utilities write command + +- Write SFP EEPROM data + +``` +admin@sonic:~$ sfputil write-eeprom --help +Usage: sfputil write-eeprom [OPTIONS] + + Write SFP EEPROM data + +Options: + -p, --port Logical port name [required] + -n, --page EEPROM page number [required] + -o, --offset EEPROM offset within the page [required] + -d, --data Hex string EEPROM data [required] + --wire-addr TEXT Wire address of sff8472 + --verify Verify the data by reading back + --help Show this message and exit. +``` + +- Write success +``` +admin@sonic:~$ sfputil write-eeprom -p Ethernet0 -n 0 -o 100 -d 4a44 + +admin@sonic:~$ sfputil write-eeprom --port Etherent0 --page 0 --offset 100 --data 0000 --verify + +``` + +- Write fail +``` +admin@sonic:~$ sfputil write-eeprom -p Etherent0 -n 0 -o 100 -d 4a44 --verify +Error: Write data failed! Write: 4a44, read: 0000. +``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#sfp-utilities-commands) + # Static DNS Commands This sub-section explains the list of the configuration options available for static DNS feature. diff --git a/sfputil/main.py b/sfputil/main.py index e324963e82..fcf6cccece 100644 --- a/sfputil/main.py +++ b/sfputil/main.py @@ -50,6 +50,15 @@ PAGE_OFFSET = 128 SFF8472_A0_SIZE = 256 +MAX_EEPROM_PAGE = 255 +MAX_EEPROM_OFFSET = 255 +MIN_OFFSET_FOR_NON_PAGE0 = 128 +MAX_OFFSET_FOR_A0H_UPPER_PAGE = 255 +MAX_OFFSET_FOR_A0H_LOWER_PAGE = 127 +MAX_OFFSET_FOR_A2H = 255 +PAGE_SIZE_FOR_A0H = 256 + +EEPROM_DUMP_INDENT = ' ' * 8 # TODO: We should share these maps and the formatting functions between sfputil and sfpshow QSFP_DD_DATA_MAP = { @@ -793,33 +802,62 @@ def eeprom_hexdump_sff8636(port, physical_port, page): return output + +def eeprom_dump_general(physical_port, page, overall_offset, size, page_offset, no_format=False): + """ + Dump module EEPROM for given pages in hex format. + Args: + logical_port_name: logical port name + pages: a list of pages to be dumped. The list always include a default page list and the target_page input by + user + target_page: user input page number, optional. target_page is only for display purpose + Returns: + tuple(0, dump string) if success else tuple(error_code, error_message) + """ + sfp = platform_chassis.get_sfp(physical_port) + page_dump = sfp.read_eeprom(overall_offset, size) + if page_dump is None: + return ERROR_NOT_IMPLEMENTED, f'Error: Failed to read EEPROM for page {page:x}h, overall_offset {overall_offset}, page_offset {page_offset}, size {size}!' + if not no_format: + return 0, hexdump(EEPROM_DUMP_INDENT, page_dump, page_offset, start_newline=False) + else: + return 0, ''.join('{:02x}'.format(x) for x in page_dump) + + 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) +def hexdump(indent, data, mem_address, start_newline=True): + size = len(data) + offset = 0 + lines = [''] if start_newline else [] + while size > 0: + offset_str = "{}{:08x}".format(indent, mem_address) + if size >= 16: + first_half = ' '.join("{:02x}".format(x) for x in data[offset:offset + 8]) + second_half = ' '.join("{:02x}".format(x) for x in data[offset + 8:offset + 16]) + ascii_str = ''.join(convert_byte_to_valid_ascii_char(x) for x in data[offset:offset + 16]) + lines.append(f'{offset_str} {first_half} {second_half} |{ascii_str}|') + elif size > 8: + first_half = ' '.join("{:02x}".format(x) for x in data[offset:offset + 8]) + second_half = ' '.join("{:02x}".format(x) for x in data[offset + 8:offset + size]) + padding = ' ' * (16 - size) + ascii_str = ''.join(convert_byte_to_valid_ascii_char(x) for x in data[offset:offset + size]) + lines.append(f'{offset_str} {first_half} {second_half}{padding} |{ascii_str}|') + break else: - result += '{} '.format(byte_string) - mem_address += 1 - - return result + hex_part = ' '.join("{:02x}".format(x) for x in data[offset:offset + size]) + padding = ' ' * (16 - size) + ascii_str = ''.join(convert_byte_to_valid_ascii_char(x) for x in data[offset:offset + size]) + lines.append(f'{offset_str} {hex_part} {padding} |{ascii_str}|') + break + size -= 16 + offset += 16 + mem_address += 16 + return '\n'.join(lines) # 'presence' subcommand @show.command() @@ -1567,5 +1605,177 @@ def target(port_name, target): click.echo("Target Mode set failed!") sys.exit(EXIT_FAIL) + +# 'read-eeprom' subcommand +@cli.command() +@click.option('-p', '--port', metavar='', help="Logical port name", required=True) +@click.option('-n', '--page', metavar='', type=click.IntRange(0, MAX_EEPROM_PAGE), help="EEPROM page number", required=True) +@click.option('-o', '--offset', metavar='', type=click.IntRange(0, MAX_EEPROM_OFFSET), help="EEPROM offset within the page", required=True) +@click.option('-s', '--size', metavar='', type=click.IntRange(1, MAX_EEPROM_OFFSET + 1), help="Size of byte to be read", required=True) +@click.option('--no-format', is_flag=True, help="Display non formatted data") +@click.option('--wire-addr', help="Wire address of sff8472") +def read_eeprom(port, page, offset, size, no_format, wire_addr): + """Read SFP EEPROM data + """ + try: + 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 is_port_type_rj45(port): + click.echo("This functionality is not applicable for RJ45 port {}.".format(port)) + sys.exit(EXIT_FAIL) + + physical_port = logical_port_to_physical_port_index(port) + sfp = platform_chassis.get_sfp(physical_port) + if not sfp.get_presence(): + click.echo("{}: SFP EEPROM not detected\n".format(port)) + sys.exit(EXIT_FAIL) + + from sonic_platform_base.sonic_xcvr.api.public import sff8472 + api = sfp.get_xcvr_api() + if api is None: + click.echo('Error: SFP EEPROM not detected!') + if not isinstance(api, sff8472.Sff8472Api): + overall_offset = get_overall_offset_general(api, page, offset, size) + else: + overall_offset = get_overall_offset_sff8472(api, page, offset, size, wire_addr) + return_code, output = eeprom_dump_general(physical_port, page, overall_offset, size, offset, no_format) + if return_code != 0: + click.echo("Error: Failed to read EEPROM!") + sys.exit(return_code) + click.echo(output) + except NotImplementedError: + click.echo("This functionality is currently not implemented for this platform") + sys.exit(ERROR_NOT_IMPLEMENTED) + except ValueError as e: + click.echo(f"Error: {e}") + sys.exit(EXIT_FAIL) + + +# 'write-eeprom' subcommand +@cli.command() +@click.option('-p', '--port', metavar='', help="Logical port name", required=True) +@click.option('-n', '--page', metavar='', type=click.IntRange(0, MAX_EEPROM_PAGE), help="EEPROM page number", required=True) +@click.option('-o', '--offset', metavar='', type=click.IntRange(0, MAX_EEPROM_OFFSET), help="EEPROM offset within the page", required=True) +@click.option('-d', '--data', metavar='', help="Hex string EEPROM data", required=True) +@click.option('--wire-addr', help="Wire address of sff8472") +@click.option('--verify', is_flag=True, help="Verify the data by reading back") +def write_eeprom(port, page, offset, data, wire_addr, verify): + """Write SFP EEPROM data""" + try: + 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 is_port_type_rj45(port): + click.echo("This functionality is not applicable for RJ45 port {}.".format(port)) + sys.exit(EXIT_FAIL) + + physical_port = logical_port_to_physical_port_index(port) + sfp = platform_chassis.get_sfp(physical_port) + if not sfp.get_presence(): + click.echo("{}: SFP EEPROM not detected\n".format(port)) + sys.exit(EXIT_FAIL) + + try: + bytes = bytearray.fromhex(data) + except ValueError: + click.echo("Error: Data must be a hex string of even length!") + sys.exit(EXIT_FAIL) + + from sonic_platform_base.sonic_xcvr.api.public import sff8472 + api = sfp.get_xcvr_api() + if api is None: + click.echo('Error: SFP EEPROM not detected!') + sys.exit(EXIT_FAIL) + + if not isinstance(api, sff8472.Sff8472Api): + overall_offset = get_overall_offset_general(api, page, offset, len(bytes)) + else: + overall_offset = get_overall_offset_sff8472(api, page, offset, len(bytes), wire_addr) + success = sfp.write_eeprom(overall_offset, len(bytes), bytes) + if not success: + click.echo("Error: Failed to write EEPROM!") + sys.exit(ERROR_NOT_IMPLEMENTED) + if verify: + read_data = sfp.read_eeprom(overall_offset, len(bytes)) + if read_data != bytes: + click.echo(f"Error: Write data failed! Write: {''.join('{:02x}'.format(x) for x in bytes)}, read: {''.join('{:02x}'.format(x) for x in read_data)}") + sys.exit(EXIT_FAIL) + except NotImplementedError: + click.echo("This functionality is currently not implemented for this platform") + sys.exit(ERROR_NOT_IMPLEMENTED) + except ValueError as e: + click.echo("Error: {}".format(e)) + sys.exit(EXIT_FAIL) + + +def get_overall_offset_general(api, page, offset, size): + """ + Validate input parameter page, offset, size and translate them to overall offset + Args: + api: cable API object + page: module EEPROM page number. + offset: module EEPROM page offset. + size: number bytes of the data to be read/write + + Returns: + The overall offset + """ + if api.is_flat_memory(): + if page != 0: + raise ValueError(f'Invalid page number {page}, only page 0 is supported') + + if page != 0: + if offset < MIN_OFFSET_FOR_NON_PAGE0: + raise ValueError(f'Invalid offset {offset} for page {page}, valid range: [128, 255]') + + if size + offset - 1 > MAX_EEPROM_OFFSET: + raise ValueError(f'Invalid size {size}, valid range: [1, {255 - offset + 1}]') + + return page * PAGE_SIZE + offset + + +def get_overall_offset_sff8472(api, page, offset, size, wire_addr): + """ + Validate input parameter page, offset, size, wire_addr and translate them to overall offset + Args: + api: cable API object + page: module EEPROM page number. + offset: module EEPROM page offset. + size: number bytes of the data to be read/write + wire_addr: case-insensitive wire address string. Only valid for sff8472, a0h or a2h. + + Returns: + The overall offset + """ + if not wire_addr: + raise ValueError("Invalid wire address for sff8472, must a0h or a2h") + + is_active_cable = not api.is_copper() + valid_wire_address = ('a0h', 'a2h') if is_active_cable else ('a0h',) + wire_addr = wire_addr.lower() + if wire_addr not in valid_wire_address: + raise ValueError(f"Invalid wire address {wire_addr} for sff8472, must be {' or '.join(valid_wire_address)}") + + if wire_addr == 'a0h': + if page != 0: + raise ValueError(f'Invalid page number {page} for wire address {wire_addr}, only page 0 is supported') + max_offset = MAX_OFFSET_FOR_A0H_UPPER_PAGE if is_active_cable else MAX_OFFSET_FOR_A0H_LOWER_PAGE + if offset > max_offset: + raise ValueError(f'Invalid offset {offset} for wire address {wire_addr}, valid range: [0, {max_offset}]') + if size + offset - 1 > max_offset: + raise ValueError( + f'Invalid size {size} for wire address {wire_addr}, valid range: [1, {max_offset - offset + 1}]') + return offset + else: + if size + offset - 1 > MAX_OFFSET_FOR_A2H: + raise ValueError(f'Invalid size {size} for wire address {wire_addr}, valid range: [1, {255 - offset + 1}]') + return page * PAGE_SIZE + offset + PAGE_SIZE_FOR_A0H + + if __name__ == '__main__': cli() diff --git a/tests/sfputil_test.py b/tests/sfputil_test.py index 0e1f8b9969..7c66741c2a 100644 --- a/tests/sfputil_test.py +++ b/tests/sfputil_test.py @@ -971,6 +971,271 @@ def test_update_firmware_info_to_state_db(self, mock_chassis): sfputil.update_firmware_info_to_state_db("Ethernet0") + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=False)) + @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.platform_chassis') + def test_read_eeprom(self, mock_chassis): + mock_sfp = MagicMock() + mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) + + mock_sfp.get_presence = MagicMock(return_value=False) + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '0', '-s', '1']) + assert result.exit_code == EXIT_FAIL + + mock_sfp.get_presence.return_value = True + mock_sfp.read_eeprom = MagicMock(return_value=None) + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '0', '-s', '1']) + assert result.exit_code == ERROR_NOT_IMPLEMENTED + + mock_sfp.read_eeprom.return_value = bytearray([0x00, 0x01]) + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '0', '-s', '2', '--no-format']) + assert result.exit_code == 0 + assert result.output == '0001\n' + + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '5', '-s', '2']) + assert result.exit_code == 0 + expected_output = """ 00000005 00 01 |..| +""" + print(result.output) + assert result.output == expected_output + + mock_sfp.read_eeprom.side_effect = NotImplementedError + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '5', '-s', '2']) + assert result.exit_code == ERROR_NOT_IMPLEMENTED + + mock_sfp.read_eeprom.side_effect = ValueError + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '5', '-s', '2']) + assert result.exit_code == EXIT_FAIL + + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=False)) + @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.platform_chassis') + def test_write_eeprom(self, mock_chassis): + mock_sfp = MagicMock() + mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) + + mock_sfp.get_presence = MagicMock(return_value=False) + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['write-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '0', '-d', '01']) + assert result.exit_code == EXIT_FAIL + + # invalid hex string, hex string must have even length + mock_sfp.get_presence.return_value = True + result = runner.invoke(sfputil.cli.commands['write-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '0', '-d', '1']) + assert result.exit_code == EXIT_FAIL + + # invalid hex string + result = runner.invoke(sfputil.cli.commands['write-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '0', '-d', '+0']) + assert result.exit_code == EXIT_FAIL + + # write failed + mock_sfp.write_eeprom = MagicMock(return_value=False) + result = runner.invoke(sfputil.cli.commands['write-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '0', '-d', '10']) + print(result.output) + assert result.exit_code == ERROR_NOT_IMPLEMENTED + + # write success + mock_sfp.write_eeprom.return_value = True + result = runner.invoke(sfputil.cli.commands['write-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '0', '-d', '10']) + assert result.exit_code == 0 + + # write verify success + mock_sfp.read_eeprom = MagicMock(return_value=bytearray([16])) + result = runner.invoke(sfputil.cli.commands['write-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '0', '-d', '10', '--verify']) + assert result.exit_code == 0 + + # write verify failed + mock_sfp.read_eeprom = MagicMock(return_value=bytearray([10])) + result = runner.invoke(sfputil.cli.commands['write-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '0', '-d', '11', '--verify']) + assert result.exit_code != 0 + + # Not implemented + mock_sfp.write_eeprom.side_effect = NotImplementedError + result = runner.invoke(sfputil.cli.commands['write-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '0', '-d', '10']) + assert result.exit_code == ERROR_NOT_IMPLEMENTED + + # Value error + mock_sfp.write_eeprom.side_effect = ValueError + result = runner.invoke(sfputil.cli.commands['write-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '0', '-d', '10']) + assert result.exit_code == EXIT_FAIL + + @patch('sfputil.main.platform_sfputil', MagicMock(is_logical_port=MagicMock(return_value=0))) + def test_read_eeprom_invalid_port(self): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '0', '-s', '1']) + assert result.exit_code == ERROR_INVALID_PORT + + @patch('sfputil.main.platform_sfputil', MagicMock(is_logical_port=MagicMock(return_value=0))) + def test_write_eeprom_invalid_port(self): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['write-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '0', '-d', '00']) + assert result.exit_code == ERROR_INVALID_PORT + + @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_read_eeprom_rj45(self): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '0', '-s', '1']) + assert result.exit_code == EXIT_FAIL + + @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_write_eeprom_rj45(self): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['write-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '0', '-d', '00']) + assert result.exit_code == EXIT_FAIL + + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=False)) + @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.platform_chassis') + def test_get_overall_offset_general(self, mock_chassis): + api = MagicMock() + api.is_flat_memory = MagicMock(return_value=False) + mock_sfp = MagicMock() + mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) + + mock_sfp.get_presence = MagicMock(return_value=True) + mock_sfp.get_xcvr_api = MagicMock(return_value=api) + + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['write-eeprom'], + ['-p', "Ethernet0", '-n', '-1', '-o', '0', '-d', '01']) + assert result.exit_code != 0 + + result = runner.invoke(sfputil.cli.commands['write-eeprom'], + ['-p', "Ethernet0", '-n', '256', '-o', '0', '-d', '01']) + assert result.exit_code != 0 + + result = runner.invoke(sfputil.cli.commands['write-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '-1', '-d', '01']) + assert result.exit_code != 0 + + result = runner.invoke(sfputil.cli.commands['write-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '256', '-d', '01']) + assert result.exit_code != 0 + + result = runner.invoke(sfputil.cli.commands['write-eeprom'], + ['-p', "Ethernet0", '-n', '1', '-o', '127', '-d', '01']) + assert result.exit_code != 0 + + result = runner.invoke(sfputil.cli.commands['write-eeprom'], + ['-p', "Ethernet0", '-n', '1', '-o', '256', '-d', '01']) + assert result.exit_code != 0 + + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '0', '-s', '0']) + assert result.exit_code != 0 + + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '0', '-s', '257']) + assert result.exit_code != 0 + + result = runner.invoke(sfputil.cli.commands['write-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '1', '-d', '01']) + assert result.exit_code == 0 + + @patch('sfputil.main.isinstance', MagicMock(return_value=True)) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=False)) + @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.platform_chassis') + def test_get_overall_offset_sff8472(self, mock_chassis): + api = MagicMock() + api.is_copper = MagicMock(return_value=False) + mock_sfp = MagicMock() + mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) + + mock_sfp.get_presence = MagicMock(return_value=True) + mock_sfp.get_xcvr_api = MagicMock(return_value=api) + + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '-n', '0', '-o', '0', '-s', '1']) + assert result.exit_code != 0 + print(result.output) + + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '--wire-addr', 'invalid', '-n', '0', '-o', '0', '-s', '1']) + assert result.exit_code != 0 + print(result.output) + + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '--wire-addr', 'a0h', '-n', '1', '-o', '0', '-s', '1']) + assert result.exit_code != 0 + print(result.output) + + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '--wire-addr', 'A0h', '-n', '0', '-o', '-1', '-s', '1']) + assert result.exit_code != 0 + print(result.output) + + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '--wire-addr', 'A0h', '-n', '0', '-o', '256', '-s', '1']) + assert result.exit_code != 0 + print(result.output) + + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '--wire-addr', 'A0h', '-n', '0', '-o', '0', '-s', '0']) + assert result.exit_code != 0 + print(result.output) + + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '--wire-addr', 'A0h', '-n', '0', '-o', '0', '-s', '257']) + assert result.exit_code != 0 + print(result.output) + + assert sfputil.get_overall_offset_sff8472(api, 0, 2, 2, wire_addr='A0h') == 2 + + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '--wire-addr', 'a2h', '-n', '-1', '-o', '0', '-s', '1']) + assert result.exit_code != 0 + print(result.output) + + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '--wire-addr', 'a2h', '-n', '256', '-o', '0', '-s', '1']) + assert result.exit_code != 0 + print(result.output) + + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '--wire-addr', 'a2h', '-n', '0', '-o', '-1', '-s', '1']) + assert result.exit_code != 0 + print(result.output) + + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '--wire-addr', 'a2h', '-n', '0', '-o', '0', '-s', '0']) + assert result.exit_code != 0 + print(result.output) + + result = runner.invoke(sfputil.cli.commands['read-eeprom'], + ['-p', "Ethernet0", '--wire-addr', 'a2h', '-n', '0', '-o', '0', '-s', '257']) + assert result.exit_code != 0 + print(result.output) + + assert sfputil.get_overall_offset_sff8472(api, 0, 2, 2, wire_addr='A2h') == 258 + @patch('sfputil.main.platform_chassis') @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) def test_target_firmware(self, mock_chassis): @@ -1001,5 +1266,3 @@ def test_target_firmware(self, mock_chassis): result = runner.invoke(sfputil.cli.commands['firmware'].commands['target'], ["Ethernet0", "1"]) assert result.output == 'Target Mode set failed!\n' assert result.exit_code == EXIT_FAIL - - From 377e5812f66d4adba09221028191d459775d9a25 Mon Sep 17 00:00:00 2001 From: davidm-arista <110118131+davidm-arista@users.noreply.github.com> Date: Thu, 7 Dec 2023 22:36:12 -0800 Subject: [PATCH 63/75] Reduce generate_dump mem usage for cores (#3052) Add the core files to the tarball while they are been processed, this ensures that only one core file at a time will be consuming flash space inside the tarpath and the tarball. --- scripts/generate_dump | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/generate_dump b/scripts/generate_dump index 0ee63cc1fe..d33a1c5b51 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -1611,9 +1611,9 @@ save_crash_files() { for file in $(find_files "/var/core/"); do # don't gzip already-gzipped log files :) if [ -z "${file##*.gz}" ]; then - save_file $file core false + save_file $file core false true else - save_file $file core true + save_file $file core true true fi done fi @@ -1624,9 +1624,9 @@ save_crash_files() { # don't gzip already-gzipped dmesg files :) if [ ! ${file} = "/var/crash/kexec_cmd" -a ! ${file} = "/var/crash/export" ]; then if [[ ${file} == *"kdump."* ]]; then - save_file $file kdump false + save_file $file kdump false true else - save_file $file kdump true + save_file $file kdump true true fi fi done From c37df9510c9aee91f1272ddbcb70be2131979d4c Mon Sep 17 00:00:00 2001 From: Saikrishna Arcot Date: Wed, 13 Dec 2023 19:06:30 -0800 Subject: [PATCH 64/75] Modify teamd retry count script to base BGP status on default BGP status (#3069) For each BGP status, if the `admin_status` field is not present, then whether the BGP session is admin up or admin down depends on the default BGP status (in the `default_bgp_status` field coming from `init_cfg.json`), which is specified during image build. If the default BGP status is up, then `admin_status` will be created only when the BGP session is brought down; similarly, if the default BGP status is down, then `admin_status` will be created when the BGP session is brought up. Because of that, modify the script to use the default BGP status as the initial value. Signed-off-by: Saikrishna Arcot --- scripts/teamd_increase_retry_count.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/scripts/teamd_increase_retry_count.py b/scripts/teamd_increase_retry_count.py index 34238b3fee..d5151b69b9 100755 --- a/scripts/teamd_increase_retry_count.py +++ b/scripts/teamd_increase_retry_count.py @@ -130,6 +130,14 @@ def getPortChannels(): "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: @@ -137,7 +145,7 @@ def getPortChannels(): if not neighborData[0]: continue localAddr = None - isAdminUp = False + isAdminUp = defaultBgpStatus for key, value in neighborData[1]: if key == "local_addr": if value not in portChannelData: From 21b1285286bd67b24773564f59965f6cfa6fc81d Mon Sep 17 00:00:00 2001 From: Sudharsan Dhamal Gopalarathnam Date: Thu, 14 Dec 2023 17:23:50 -0800 Subject: [PATCH 65/75] [db_migrator]Remove route migration (#3068) Fix sonic-net/sonic-buildimage#17322 Remove the route migration operation from db_migrator. The route migration operation takes a lot of time as indicated in the below issue. This is not necessary since the hardcoded assert in the fpmsyncd on new fields is removed in sonic-net/sonic-swss#2981 --- scripts/db_migrator.py | 24 ------------- .../appl_db/routes_migrate_expected.json | 14 -------- .../appl_db/routes_migrate_input.json | 10 ------ tests/db_migrator_test.py | 35 ------------------- 4 files changed, 83 deletions(-) delete mode 100644 tests/db_migrator_input/appl_db/routes_migrate_expected.json delete mode 100644 tests/db_migrator_input/appl_db/routes_migrate_input.json diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index 0f813763b8..368f289a43 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -615,28 +615,6 @@ def migrate_feature_timer(self): config.pop('has_timer') self.configDB.set_entry('FEATURE', feature, config) - 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 - 2. 'protocol' attr in ROUTE introduced in 202305 onwards. - WarmRestartHelper reconcile logic requires to have "protocol" field in the old dumped ROUTE_TABLE. - """ - route_table = self.appDB.get_table("ROUTE_TABLE") - for route_prefix, route_attr in route_table.items(): - 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) - - if 'weight' not in route_attr: - self.appDB.set(self.appDB.APPL_DB, route_key, 'weight','') - - if 'protocol' not in route_attr: - self.appDB.set(self.appDB.APPL_DB, route_key, 'protocol', '') def migrate_dns_nameserver(self): """ @@ -1144,8 +1122,6 @@ def common_migration_ops(self): 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 diff --git a/tests/db_migrator_input/appl_db/routes_migrate_expected.json b/tests/db_migrator_input/appl_db/routes_migrate_expected.json deleted file mode 100644 index 7f48e64e40..0000000000 --- a/tests/db_migrator_input/appl_db/routes_migrate_expected.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "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": "", - "protocol": "" - }, - "ROUTE_TABLE:20c0:fe28:0:80::/64": { - "nexthop": "fc00::72,fc00::76,fc00::7a,fc00::7e", - "ifname" : "PortChannel101,PortChannel102,PortChannel103,PortChannel104", - "weight": "", - "protocol": "" - } -} diff --git a/tests/db_migrator_input/appl_db/routes_migrate_input.json b/tests/db_migrator_input/appl_db/routes_migrate_input.json deleted file mode 100644 index 3b93a36cf6..0000000000 --- a/tests/db_migrator_input/appl_db/routes_migrate_input.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "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_test.py b/tests/db_migrator_test.py index 014b645532..c18e79591b 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -631,41 +631,6 @@ def test_migrate_loopback_int(self): diff = DeepDiff(resulting_keys, expected_keys, ignore_order=True) assert not diff -class TestWarmUpgrade_without_required_attributes(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_protocol_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): From 19ea8493388536921ad204833157dac2cd2bf3ba Mon Sep 17 00:00:00 2001 From: MaxXiao12 <115685270+MaxXiao12@users.noreply.github.com> Date: Fri, 15 Dec 2023 15:39:59 -0800 Subject: [PATCH 66/75] route_check.py should not print too many outputs to stdout (#3071) Otherwise it fills up the pipe and print() will block. When this happens, `route_check.py` will timeout and eventually killed by `monit` after several minutes. #### What I did Add an option in `print_message()` to skip printing. #### How I did it Add an option `write_to_stdout=True`, in `mitigate_installed_not_offloaded_frr_routes()` call `print_message()` with `write_to_stdout=False`. #### How to verify it Manually run route_check.py, verify that the messages were shown in syslog but not in stdout. #### Previous command output (if the output of a command-line utility has changed) #### New command output (if the output of a command-line utility has changed) --- scripts/route_check.py | 8 +++++--- tests/route_check_test.py | 13 +++++++++++-- tests/route_check_test_data.py | 1 + 3 files changed, 17 insertions(+), 5 deletions(-) diff --git a/scripts/route_check.py b/scripts/route_check.py index 85d0539c63..b64ae00d04 100755 --- a/scripts/route_check.py +++ b/scripts/route_check.py @@ -114,11 +114,12 @@ def set_level(lvl, log_to_syslog): report_level = syslog.LOG_DEBUG -def print_message(lvl, *args): +def print_message(lvl, *args, write_to_stdout=True): """ print and log the message for given level. :param lvl: Log level for this message as ERR/INFO/DEBUG :param args: message as list of strings or convertible to string + :param write_to_stdout: print the message to stdout if set to true :return None """ msg = "" @@ -129,7 +130,8 @@ def print_message(lvl, *args): break msg += str(arg)[0:rem_len] - print(msg) + if write_to_stdout: + print(msg) if write_to_syslog: syslog.syslog(lvl, msg) @@ -575,7 +577,7 @@ def mitigate_installed_not_offloaded_frr_routes(missed_frr_rt, rt_appl): fvs = swsscommon.FieldValuePairs([('err_str', 'SWSS_RC_SUCCESS'), ('protocol', entry['protocol'])]) response_producer.send('SWSS_RC_SUCCESS', entry['prefix'], fvs) - print_message(syslog.LOG_ERR, f'Mitigated route {entry["prefix"]}') + print_message(syslog.LOG_ERR, f'Mitigated route {entry["prefix"]}', write_to_stdout=False) def get_soc_ips(config_db): diff --git a/tests/route_check_test.py b/tests/route_check_test.py index 118e9eab56..3b38add9ff 100644 --- a/tests/route_check_test.py +++ b/tests/route_check_test.py @@ -1,4 +1,5 @@ import copy +from io import StringIO import json import os import logging @@ -7,7 +8,7 @@ import time from sonic_py_common import device_info from unittest.mock import MagicMock, patch -from tests.route_check_test_data import APPL_DB, ARGS, ASIC_DB, CONFIG_DB, DEFAULT_CONFIG_DB, DESCR, OP_DEL, OP_SET, PRE, RESULT, RET, TEST_DATA, UPD, FRR_ROUTES +from tests.route_check_test_data import APPL_DB, ARGS, ASIC_DB, CONFIG_DB, DEFAULT_CONFIG_DB, APPL_STATE_DB, DESCR, OP_DEL, OP_SET, PRE, RESULT, RET, TEST_DATA, UPD, FRR_ROUTES import pytest @@ -89,7 +90,7 @@ def hget(self, key, field): return True, ret -db_conns = {"APPL_DB": APPL_DB, "ASIC_DB": ASIC_DB} +db_conns = {"APPL_DB": APPL_DB, "ASIC_DB": ASIC_DB, "APPL_STATE_DB": APPL_STATE_DB } def conn_side_effect(arg, _): return db_conns[arg] @@ -321,3 +322,11 @@ def test_logging(self): assert len(msg) == 5 msg = route_check.print_message(syslog.LOG_ERR, "a", "b", "c", "d", "e", "f") assert len(msg) == 5 + + def test_mitigate_routes(self, mock_dbs): + missed_frr_rt = [ { 'prefix': '192.168.0.1', 'protocol': 'bgp' } ] + rt_appl = [ '192.168.0.1' ] + with patch('sys.stdout', new_callable=StringIO) as mock_stdout: + route_check.mitigate_installed_not_offloaded_frr_routes(missed_frr_rt, rt_appl) + # Verify that the stdout are suppressed in this function + assert not mock_stdout.getvalue() diff --git a/tests/route_check_test_data.py b/tests/route_check_test_data.py index b0f3e9975a..415deb4409 100644 --- a/tests/route_check_test_data.py +++ b/tests/route_check_test_data.py @@ -4,6 +4,7 @@ APPL_DB = 0 ASIC_DB = 1 CONFIG_DB = 4 +APPL_STATE_DB = 14 PRE = "pre-value" UPD = "update" FRR_ROUTES = "frr-routes" From e7a8def62a85197f6f7afc9613f43e7c34984325 Mon Sep 17 00:00:00 2001 From: Deepak Singhal <115033986+deepak-singhal0408@users.noreply.github.com> Date: Tue, 19 Dec 2023 10:06:35 -0800 Subject: [PATCH 67/75] Enhanced route_check.py for multi_asic platforms (#3077) * Enhanced route_check.py for multi_asic platforms * skip eth1 routes for packet-chassis, pytest enhancements --- scripts/route_check.py | 220 ++++--- scripts/route_check_test.sh | 125 +++- tests/route_check_test.py | 190 +++--- tests/route_check_test_data.py | 1069 +++++++++++++++++++++----------- 4 files changed, 1008 insertions(+), 596 deletions(-) diff --git a/scripts/route_check.py b/scripts/route_check.py index b64ae00d04..8e52050418 100755 --- a/scripts/route_check.py +++ b/scripts/route_check.py @@ -50,6 +50,8 @@ 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' @@ -76,6 +78,8 @@ FRR_CHECK_RETRIES = 3 FRR_WAIT_TIME = 15 +REDIS_TIMEOUT_MSECS = 0 + class Level(Enum): ERR = 'ERR' INFO = 'INFO' @@ -276,12 +280,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() @@ -298,15 +302,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: @@ -324,37 +328,42 @@ def get_route_entries(): return (selector, subs, sorted(rt)) -def is_suppress_fib_pending_enabled(): +def is_suppress_fib_pending_enabled(namespace): """ Returns True if FIB suppression is enabled, False otherwise """ - cfg_db = swsscommon.ConfigDBConnector() - cfg_db.connect() - + cfg_db = multi_asic.connect_config_db_for_ns(namespace) state = cfg_db.get_entry('DEVICE_METADATA', 'localhost').get('suppress-fib-pending') return state == 'enabled' -def get_frr_routes(): +def get_frr_routes(namespace): """ Read routes from zebra through CLI command :return frr routes dictionary """ + if namespace == multi_asic.DEFAULT_NAMESPACE: + v4_route_cmd = ['show', 'ip', 'route', 'json'] + v6_route_cmd = ['show', 'ipv6', 'route', 'json'] + else: + v4_route_cmd = ['show', 'ip', 'route', '-n', namespace, 'json'] + v6_route_cmd = ['show', 'ipv6', 'route', '-n', namespace, 'json'] - output = subprocess.check_output('show ip route json', shell=True) + output = subprocess.check_output(v4_route_cmd, text=True) routes = json.loads(output) - output = subprocess.check_output('show ipv6 route json', shell=True) + output = subprocess.check_output(v6_route_cmd, text=True) routes.update(json.loads(output)) + print_message(syslog.LOG_DEBUG, "FRR Routes: namespace={}, routes={}".format(namespace, routes)) return routes -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() @@ -374,20 +383,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: @@ -407,20 +416,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: @@ -452,13 +461,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') @@ -488,14 +497,14 @@ def is_dualtor(config_db): return subtype.lower() == 'dualtor' -def filter_out_standalone_tunnel_routes(routes): - config_db = swsscommon.ConfigDBConnector() - config_db.connect() +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', 0) + 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 = [] @@ -525,18 +534,17 @@ def filter_out_standalone_tunnel_routes(routes): return updated_routes -def check_frr_pending_routes(): +def check_frr_pending_routes(namespace): """ Check FRR routes for offload flag presence by executing "show ip route json" Returns a list of routes that have no offload flag. """ missed_rt = [] - retries = FRR_CHECK_RETRIES for i in range(retries): missed_rt = [] - frr_routes = get_frr_routes() + frr_routes = get_frr_routes(namespace) for _, entries in frr_routes.items(): for entry in entries: @@ -555,11 +563,11 @@ def check_frr_pending_routes(): break time.sleep(FRR_WAIT_TIME) - + print_message(syslog.LOG_DEBUG, "FRR missed routes: {}".format(missed_rt, indent=4)) return missed_rt -def mitigate_installed_not_offloaded_frr_routes(missed_frr_rt, rt_appl): +def mitigate_installed_not_offloaded_frr_routes(namespace, missed_frr_rt, rt_appl): """ Mitigate installed but not offloaded FRR routes. @@ -571,7 +579,7 @@ def mitigate_installed_not_offloaded_frr_routes(missed_frr_rt, rt_appl): All of the above mentioned cases must be considered as a bug, but even in that case we will report an error in the log but given that this script ensures the route is installed in the hardware it will automitigate such a bug. """ - db = swsscommon.DBConnector('APPL_STATE_DB', 0) + db = swsscommon.DBConnector('APPL_STATE_DB', REDIS_TIMEOUT_MSECS, True, namespace) response_producer = swsscommon.NotificationProducer(db, f'{APPL_DB_NAME}_{swsscommon.APP_ROUTE_TABLE_NAME}_RESPONSE_CHANNEL') for entry in [entry for entry in missed_frr_rt if entry['prefix'] in rt_appl]: fvs = swsscommon.FieldValuePairs([('err_str', 'SWSS_RC_SUCCESS'), ('protocol', entry['protocol'])]) @@ -594,7 +602,7 @@ def get_soc_ips(config_db): return soc_ips -def filter_out_soc_ip_routes(routes): +def filter_out_soc_ip_routes(namespace, routes): """ Ignore ASIC only routes for SOC IPs @@ -604,8 +612,7 @@ def filter_out_soc_ip_routes(routes): 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 = swsscommon.ConfigDBConnector() - config_db.connect() + config_db = multi_asic.connect_config_db_for_ns(namespace) if not is_dualtor(config_db): return routes @@ -614,7 +621,7 @@ def filter_out_soc_ip_routes(routes): if not soc_ips: return routes - + updated_routes = [] for route in routes: if route not in soc_ips: @@ -623,9 +630,9 @@ def filter_out_soc_ip_routes(routes): return updated_routes -def get_vlan_neighbors(): +def get_vlan_neighbors(namespace): """Return a list of VLAN neighbors.""" - 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 neighbors") tbl = swsscommon.Table(db, 'NEIGH_TABLE') neigh_entries = tbl.getKeys() @@ -641,7 +648,7 @@ def get_vlan_neighbors(): return valid_neighs -def filter_out_vlan_neigh_route_miss(rt_appl_miss, rt_asic_miss): +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): @@ -654,12 +661,10 @@ def _filter_out_neigh_route(routes, neighs): updated_routes.append(route) return updated_routes, ignored_routes - config_db = swsscommon.ConfigDBConnector() - config_db.connect() + 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()) + 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) @@ -668,7 +673,7 @@ def _filter_out_neigh_route(routes, neighs): return rt_appl_miss, rt_asic_miss -def check_routes(): +def check_routes(namespace): """ The heart of this script which runs the checks. Read APPL-DB & ASIC-DB, the relevant tables for route checking. @@ -687,85 +692,102 @@ 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 = [] - rt_frr_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 = [] + rt_frr_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) - rt_asic_miss = filter_out_standalone_tunnel_routes(rt_asic_miss) - rt_asic_miss = filter_out_soc_ip_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) - # 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(rt_appl_miss, rt_asic_miss) + # 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, deletes = get_subscribe_updates(selector, subs) + 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: - results["missed_ROUTE_TABLE_routes"] = rt_appl_miss + if rt_appl_miss: + if namespace not in results: + results[namespace] = {} + results[namespace]["missed_ROUTE_TABLE_routes"] = rt_appl_miss - if intf_appl_miss: - results["missed_INTF_TABLE_entries"] = intf_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: - results["Unaccounted_ROUTE_ENTRY_TABLE_entries"] = rt_asic_miss + if rt_asic_miss: + if namespace not in results: + results[namespace] = {} + results[namespace]["Unaccounted_ROUTE_ENTRY_TABLE_entries"] = rt_asic_miss - rt_frr_miss = check_frr_pending_routes() + rt_frr_miss = check_frr_pending_routes(namespace) - if rt_frr_miss: - results["missed_FRR_routes"] = rt_frr_miss + if rt_frr_miss: + if namespace not in results: + results[namespace] = {} + results[namespace]["missed_FRR_routes"] = rt_frr_miss + + if results: + if rt_frr_miss and not rt_appl_miss and not rt_asic_miss: + print_message(syslog.LOG_ERR, "Some routes are not set offloaded in FRR{} but all routes in APPL_DB and ASIC_DB are in sync".format(namespace)) + if is_suppress_fib_pending_enabled(namespace): + mitigate_installed_not_offloaded_frr_routes(namespace, rt_frr_miss, rt_appl) if results: print_message(syslog.LOG_WARNING, "Failure results: {", json.dumps(results, indent=4), "}") print_message(syslog.LOG_WARNING, "Failed. Look at reported mismatches above") print_message(syslog.LOG_WARNING, "add: ", json.dumps(adds, indent=4)) print_message(syslog.LOG_WARNING, "del: ", json.dumps(deletes, indent=4)) - - if rt_frr_miss and not rt_appl_miss and not rt_asic_miss: - print_message(syslog.LOG_ERR, "Some routes are not set offloaded in FRR but all routes in APPL_DB and ASIC_DB are in sync") - if is_suppress_fib_pending_enabled(): - mitigate_installed_not_offloaded_frr_routes(rt_frr_miss, rt_appl) - return -1, results else: print_message(syslog.LOG_INFO, "All good!") return 0, None - def main(): """ main entry point, which mainly parses the args and call check_routes @@ -778,8 +800,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: @@ -793,10 +825,12 @@ 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) + print_message(syslog.LOG_DEBUG, "ret={}, res={}".format(ret, res)) signal.alarm(0) if interval: diff --git a/scripts/route_check_test.sh b/scripts/route_check_test.sh index 989cbfae0b..b78351f7a6 100755 --- a/scripts/route_check_test.sh +++ b/scripts/route_check_test.sh @@ -2,36 +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" > /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: $?" + +CONFIG_FILE="/etc/sonic/config_db.json" +if [ ! -e "$CONFIG_FILE" ]; then + echo "File $CONFIG_FILE not found. returning.." + exit 1 +fi + +# Extract platform and hwsku from DEVICE_METADATA using awk +platform=$(awk -F'"' '/"DEVICE_METADATA":/,/\}/{if(/"platform":/) print $4}' "$CONFIG_FILE") + +# Print the values +echo "Platform: $platform" + +PLATFORM_DIR="/usr/share/sonic/device/$platform" +if [ ! -d "$PLATFORM_DIR" ]; then + echo "Directory $PLATFORM_DIR not found. returning.." + exit 1 +fi + +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 "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/tests/route_check_test.py b/tests/route_check_test.py index 3b38add9ff..820f062107 100644 --- a/tests/route_check_test.py +++ b/tests/route_check_test.py @@ -1,14 +1,17 @@ import copy from io import StringIO import json -import os import logging -import sys 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, ARGS, ASIC_DB, CONFIG_DB, DEFAULT_CONFIG_DB, APPL_STATE_DB, DESCR, OP_DEL, OP_SET, PRE, RESULT, RET, TEST_DATA, UPD, FRR_ROUTES +from tests.route_check_test_data import ( + APPL_DB, MULTI_ASIC, NAMESPACE, DEFAULTNS, ARGS, ASIC_DB, CONFIG_DB, + DEFAULT_CONFIG_DB, APPL_STATE_DB, DESCR, OP_DEL, OP_SET, PRE, RESULT, RET, TEST_DATA, + UPD, FRR_ROUTES +) import pytest @@ -18,50 +21,37 @@ import route_check current_test_data = None - -tables_returned = {} selector_returned = None subscribers_returned = {} +db_conns = {} def set_test_case_data(ctdata): - """ - Setup global variables for each test case - """ - global current_test_data, tables_returned, selector_returned, subscribers_returned - + global current_test_data, db_conns, selector_returned, subscribers_returned current_test_data = ctdata - tables_returned = {} - selector_returned = None subscribers_returned = {} - 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]) - 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) @@ -69,41 +59,41 @@ def update(self): self.data.pop(k, None) return (list(t.keys()), list(drop.keys())) - def get_val(self, d, keys): for k in keys: d = d[k] if k in d else {} return d - def getKeys(self): return list(self.data.keys()) - def get(self, key): ret = copy.deepcopy(self.data.get(key, {})) return (True, ret) - 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] -db_conns = {"APPL_DB": APPL_DB, "ASIC_DB": ASIC_DB, "APPL_STATE_DB": APPL_STATE_DB } -def conn_side_effect(arg, _): - return db_conns[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}, + "APPL_STATE_DB": {"namespace": ns, "name": APPL_STATE_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 @@ -111,21 +101,19 @@ 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 return 0 - def select(self, timeout): # Toggle between good & 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: @@ -136,29 +124,15 @@ 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 = [] - def update(self): if self.state == PRE: s_keys, d_keys = self.mock_tbl.update() @@ -166,7 +140,6 @@ def update(self): self.del_keys += d_keys self.state = UPD - def pop(self): v = None if self.set_keys: @@ -180,61 +153,53 @@ 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] - 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.get(PRE, {}).get(namespace, {}).get(CONFIG_DB, DEFAULT_CONFIG_DB) if current_test_data is not None else DEFAULT_CONFIG_DB -def config_db_side_effect(table): - if CONFIG_DB not in current_test_data[PRE]: - return DEFAULT_CONFIG_DB[table] - if not CONFIG_DB in tables_returned: - tables_returned[CONFIG_DB] = {} - if not table in tables_returned[CONFIG_DB]: - tables_returned[CONFIG_DB][table] = current_test_data[PRE][CONFIG_DB].get(table, {}) - return tables_returned[CONFIG_DB][table] + 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, 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.get_table = MagicMock(side_effect=config_db_side_effect) + mock_config_db.side_effect = config_db_side_effect class TestRouteCheck(object): + @staticmethod + def extract_namespace_from_args(args): + # args: ['show', 'ip', 'route', '-n', 'asic0', 'json'], + for i, arg in enumerate(args): + if arg == "-n" and i + 1 < len(args): + return args[i + 1] + return DEFAULTNS + def setup(self): pass @@ -246,21 +211,20 @@ def init(self): def force_hang(self): old_timeout = route_check.TIMEOUT_SECONDS route_check.TIMEOUT_SECONDS = 5 - mock_selector.EMULATE_HANG = True + MockSelector.EMULATE_HANG = True yield route_check.TIMEOUT_SECONDS = old_timeout - mock_selector.EMULATE_HANG = False + MockSelector.EMULATE_HANG = False @pytest.fixture def mock_dbs(self): - mock_config_db = MagicMock() 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("route_check.swsscommon.ConfigDBConnector", return_value=mock_config_db), \ + 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) @@ -268,32 +232,40 @@ def mock_dbs(self): @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 - ct_data = TEST_DATA[test_num] set_test_case_data(ct_data) - logger.info("Running test case {}: {}".format(test_num, ct_data[DESCR])) + self.run_test(ct_data) + def run_test(self, ct_data): with patch('sys.argv', ct_data[ARGS].split()), \ - patch('route_check.subprocess.check_output') as mock_check_output: + 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.subprocess.check_output', side_effect=lambda *args, **kwargs: self.mock_check_output(ct_data, *args, **kwargs)), \ + patch('route_check.mitigate_installed_not_offloaded_frr_routes', side_effect=lambda *args, **kwargs: None), \ + 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) - routes = ct_data.get(FRR_ROUTES, {}) + def mock_check_output(self, ct_data, *args, **kwargs): + ns = self.extract_namespace_from_args(args[0]) + routes = ct_data.get(FRR_ROUTES, {}).get(ns, {}) + return json.dumps(routes) - def side_effect(*args, **kwargs): - return json.dumps(routes) + def assert_results(self, ct_data, ret, res): + expect_ret = ct_data.get(RET, 0) + expect_res = ct_data.get(RESULT, None) - mock_check_output.side_effect = side_effect + 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))) - 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 + assert ret == expect_ret + assert res == expect_res def test_timeout(self, mock_dbs, force_hang): # Test timeout @@ -324,9 +296,11 @@ def test_logging(self): assert len(msg) == 5 def test_mitigate_routes(self, mock_dbs): + namespace = DEFAULTNS missed_frr_rt = [ { 'prefix': '192.168.0.1', 'protocol': 'bgp' } ] rt_appl = [ '192.168.0.1' ] + init_db_conns([namespace]) with patch('sys.stdout', new_callable=StringIO) as mock_stdout: - route_check.mitigate_installed_not_offloaded_frr_routes(missed_frr_rt, rt_appl) + route_check.mitigate_installed_not_offloaded_frr_routes(namespace, missed_frr_rt, rt_appl) # Verify that the stdout are suppressed in this function assert not mock_stdout.getvalue() diff --git a/tests/route_check_test_data.py b/tests/route_check_test_data.py index 415deb4409..9a26356481 100644 --- a/tests/route_check_test_data.py +++ b/tests/route_check_test_data.py @@ -1,4 +1,6 @@ DESCR = "Description" +MULTI_ASIC = "multi_asic" +NAMESPACE = "namespace-list" ARGS = "args" RET = "return" APPL_DB = 0 @@ -9,6 +11,9 @@ UPD = "update" FRR_ROUTES = "frr-routes" RESULT = "res" +DEFAULTNS="" +ASIC0 = "asic0" +ASIC1 = "asic1" OP_SET = "SET" OP_DEL = "DEL" @@ -32,66 +37,76 @@ TEST_DATA = { "0": { DESCR: "basic good one", + MULTI_ASIC: False, + NAMESPACE: [''], 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" } + 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": {} + } }, - 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: {} + 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: { - 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" } + 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": {} + } }, - 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: {} + 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: {} + 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: {} + } } } } @@ -99,442 +114,772 @@ }, "2": { DESCR: "basic failure one", + MULTI_ASIC: False, + NAMESPACE: [''], 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" } + 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": {} + } }, - 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: {} + 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" - ] + 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: { - 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" } + 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": {} + } }, - 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: {} + 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: { - 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"} + 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": {} + } }, - 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: {} + 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: { - 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" } + 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": {} + } }, - 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: {} + 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" - ] + 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: { - 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" } + 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": {} + } }, - 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: {} + 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: { - 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: {}, + 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: "Good one with VRF routes", + MULTI_ASIC: False, + NAMESPACE: [''], ARGS: "route_check", PRE: { - APPL_DB: { - ROUTE_TABLE: { - "Vrf1:0.0.0.0/0" : { "ifname": "portchannel0" }, - "Vrf1:10.10.196.12/31" : { "ifname": "portchannel0" }, - "Vrf1:10.10.196.20/31" : { "ifname": "portchannel0" } + DEFAULTNS: { + APPL_DB: { + ROUTE_TABLE: { + "Vrf1:0.0.0.0/0" : { "ifname": "portchannel0" }, + "Vrf1:10.10.196.12/31" : { "ifname": "portchannel0" }, + "Vrf1:10.10.196.20/31" : { "ifname": "portchannel0" } + }, + INTF_TABLE: { + "PortChannel1013:10.10.196.24/31": {}, + "PortChannel1023:2603:10b0:503:df4::5d/126": {}, + "PortChannel1024": {} + } }, - 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: {} + 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: {} + } } } } }, "9": { DESCR: "SOC IPs on Libra ToRs should be ignored", + MULTI_ASIC: False, + NAMESPACE: [''], ARGS: "route_check", PRE: { - 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" + DEFAULTNS: { + CONFIG_DB: { + DEVICE_METADATA: { + LOCALHOST: {"subtype": "DualToR"} }, - } - }, - 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: {} + 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: {} + } } } } }, "10": { DESCR: "basic good one, check FRR routes", + MULTI_ASIC: False, + NAMESPACE: [''], 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" }, + DEFAULTNS: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + }, + 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.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: {} + } }, - 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.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: {} - } }, }, FRR_ROUTES: { - "0.0.0.0/0": [ - { - "prefix": "0.0.0.0/0", - "vrfName": "default", - "protocol": "bgp", - "offloaded": "true", - }, - ], - "10.10.196.12/31": [ - { - "prefix": "10.10.196.12/31", - "vrfName": "default", - "protocol": "bgp", - "offloaded": "true", - }, - ], - "10.10.196.24/31": [ - { - "protocol": "connected", - }, - ], + DEFAULTNS: { + "0.0.0.0/0": [ + { + "prefix": "0.0.0.0/0", + "vrfName": "default", + "protocol": "bgp", + "offloaded": "true", + }, + ], + "10.10.196.12/31": [ + { + "prefix": "10.10.196.12/31", + "vrfName": "default", + "protocol": "bgp", + "offloaded": "true", + }, + ], + "10.10.196.24/31": [ + { + "protocol": "connected", + }, + ], + } }, }, "11": { DESCR: "failure test case, missing FRR routes", + MULTI_ASIC: False, + NAMESPACE: [''], 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" }, + DEFAULTNS: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + }, + 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.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: {} + } }, - 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.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: {} - } }, }, FRR_ROUTES: { - "0.0.0.0/0": [ - { - "prefix": "0.0.0.0/0", - "vrfName": "default", - "protocol": "bgp", - "offloaded": "true", - }, - ], - "10.10.196.12/31": [ - { - "prefix": "10.10.196.12/31", - "vrfName": "default", - "protocol": "bgp", - }, - ], - "10.10.196.24/31": [ - { - "protocol": "connected", - }, - ], + DEFAULTNS: { + "0.0.0.0/0": [ + { + "prefix": "0.0.0.0/0", + "vrfName": "default", + "protocol": "bgp", + "offloaded": "true", + }, + ], + "10.10.196.12/31": [ + { + "prefix": "10.10.196.12/31", + "vrfName": "default", + "protocol": "bgp", + }, + ], + "10.10.196.24/31": [ + { + "protocol": "connected", + }, + ], + }, }, RESULT: { - "missed_FRR_routes": [ - {"prefix": "10.10.196.12/31", "vrfName": "default", "protocol": "bgp"} - ], + DEFAULTNS: { + "missed_FRR_routes": [ + {"prefix": "10.10.196.12/31", "vrfName": "default", "protocol": "bgp"} + ], + }, }, RET: -1, }, - "10": { + "12": { DESCR: "basic good one with IPv6 address", + MULTI_ASIC: False, + NAMESPACE: [''], ARGS: "route_check -m INFO -i 1000", PRE: { - APPL_DB: { - ROUTE_TABLE: { + DEFAULTNS: { + APPL_DB: { + ROUTE_TABLE: { + }, + INTF_TABLE: { + "PortChannel1013:2000:31:0:0::1/64": {}, + } }, - 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: {}, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "2000:31::1/128" + RT_ENTRY_KEY_SUFFIX: {}, + } } } } }, - "11": { + "13": { DESCR: "dualtor ignore vlan neighbor route miss case", + MULTI_ASIC: False, + NAMESPACE: [''], ARGS: "route_check -i 15", RET: -1, PRE: { - CONFIG_DB: { - DEVICE_METADATA: { - LOCALHOST: {"subtype": "DualToR"} + 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: {}, + } } - }, - 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" }, + } + }, + 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", + ] + } + } + }, + "14": { + 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": {} + } }, - INTF_TABLE: { - "PortChannel1013:90.10.196.24/31": {}, - "PortChannel1023:9603:10b0:503:df4::5d/126": {}, + 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: {} + } + } + } + } + }, + "15": { + 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": {} + } }, - 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 + "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: {} + } } }, - 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: {}, + 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: {} + } + } + }, + } + }, + "16": { + 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: { - "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", - ] - } + ASIC0: { + "missed_ROUTE_TABLE_routes": [ + "10.10.196.12/31" + ], + } + }, + RET: -1, + }, + "17": { + 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, + }, + "18": { + DESCR: "validate namespace input on multi-asic", + MULTI_ASIC: True, + NAMESPACE: ['asic0', 'asic1'], + ARGS: "route_check -n random -m INFO -i 1000", + RET: -1, }, + "19": { + DESCR: "validate namespace input on single-asic", + MULTI_ASIC: False, + NAMESPACE: [''], + ARGS: "route_check -n random -m INFO -i 1000", + RET: -1, + }, + "20": { + DESCR: "multi-asic failure test case, missing FRR routes", + MULTI_ASIC: True, + NAMESPACE: ['asic0', 'asic1'], + ARGS: "route_check -n asic1 -m INFO -i 1000", + PRE: { + ASIC1: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + }, + 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.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: {} + } + }, + }, + }, + FRR_ROUTES: { + ASIC1: { + "0.0.0.0/0": [ + { + "prefix": "0.0.0.0/0", + "vrfName": "default", + "protocol": "bgp", + "offloaded": "true", + }, + ], + "10.10.196.12/31": [ + { + "prefix": "10.10.196.12/31", + "vrfName": "default", + "protocol": "bgp", + }, + ], + "10.10.196.24/31": [ + { + "protocol": "connected", + }, + ], + }, + }, + RESULT: { + ASIC1: { + "missed_FRR_routes": [ + {"prefix": "10.10.196.12/31", "vrfName": "default", "protocol": "bgp"} + ], + }, + }, + RET: -1, + }, + } From a68d3d3ace763e9e82b8e96e6b44ceb06f5b1f50 Mon Sep 17 00:00:00 2001 From: Junchao-Mellanox <57339448+Junchao-Mellanox@users.noreply.github.com> Date: Wed, 20 Dec 2023 12:46:10 +0800 Subject: [PATCH 68/75] Collect module EEPROM data in dump (#3009) * Collect module EEPROM data in dump --- doc/Command-Reference.md | 106 ++++++++++++- scripts/generate_dump | 1 + sfputil/main.py | 312 +++++++++++++++++++++++++++------------ tests/sfputil_test.py | 152 ++++++++++++++++++- 4 files changed, 475 insertions(+), 96 deletions(-) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index d693c49d80..6aea452560 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -203,6 +203,7 @@ * [MACsec show command](#macsec-show-command) * [MACsec clear command](#macsec-clear-command) * [SFP Utilities Commands](#sfp-utilities-commands) + * [SFP Utilities show commands](#sfp-utilities-show-commands) * [SFP Utilities read command](#sfp-utilities-read-command) * [SFP Utilities write command](#sfp-utilities-write-command) * [Static DNS Commands](#static-dns-commands) @@ -12914,8 +12915,111 @@ Clear MACsec counters which is to reset all MACsec counters to ZERO. Go Back To [Beginning of the document](#) or [Beginning of this section](#macsec-commands) # SFP Utilities Commands + This sub-section explains the list of commands available for SFP utilities feature. -This sub-section explains the list of commands available for SFP utilities feature. +## SFP Utilities show commands + +- Show SFP EEPROM hex dump + +``` +admin@sonic:~$ sfputil show eeprom-hexdump --help +Usage: sfputil show eeprom-hexdump [OPTIONS] + Display EEPROM hexdump of SFP transceiver(s) +Options: + -p, --port Display SFP EEPROM hexdump for port + -n, --page Display SFP EEEPROM hexdump for + + --help Show this message and exit. +``` + +``` +admin@sonic:~$ sfputil show eeprom-hexdump --port Ethernet0 --page 0 +EEPROM hexdump for port Ethernet0 page 0h + Lower page 0h + 00000000 18 30 80 03 00 00 00 00 00 00 00 00 00 00 00 00 |.0..............| + 00000010 00 00 00 00 00 00 00 00 00 00 08 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 03 1d 01 88 01 1c 01 44 11 1b 01 |............D...| + 00000060 22 55 1a 01 44 11 18 01 11 ff 17 01 44 11 16 01 |"U..D.......D...| + 00000070 11 ff 01 01 11 ff 00 00 00 00 00 00 00 00 00 00 |................| + + Upper page 0h + 00000080 18 4d 65 6c 6c 61 6e 6f 78 20 20 20 20 20 20 20 |.Mellanox | + 00000090 20 00 02 c9 4d 43 50 31 36 36 30 2d 57 30 30 41 | ...MCP1660-W00A| + 000000a0 45 33 30 20 41 32 4d 54 32 30 31 39 56 53 30 34 |E30 A2MT2019VS04| + 000000b0 37 39 35 20 20 20 32 30 30 35 30 37 20 20 00 00 |795 200507 ..| + 000000c0 00 00 00 00 00 00 00 00 00 01 05 23 04 05 07 15 |...........#....| + 000000d0 00 00 00 02 0a 00 00 00 00 00 00 00 00 00 77 00 |..............w.| + 000000e0 33 30 33 33 30 4b 34 33 34 31 30 44 00 00 00 00 |30330K43410D....| + 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + +admin@sonic:~$ sfputil show eeprom-hexdump --port Ethernet0 --page 1 +EEPROM hexdump for port Ethernet0 page 1h + Lower page 0h + 00000000 11 08 06 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000010 00 00 00 00 00 00 00 00 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 01 08 00 |................| + 00000070 00 10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + + Upper page 1h + 00000080 11 00 23 88 00 00 04 00 00 00 00 08 ff 00 00 00 |..#.............| + 00000090 00 00 01 a0 4d 65 6c 6c 61 6e 6f 78 20 20 20 20 |....Mellanox | + 000000a0 20 20 20 20 00 00 02 c9 4d 43 50 31 36 35 30 2d | ....MCP1650-| + 000000b0 56 30 30 31 45 33 30 20 41 32 02 03 05 07 46 c5 |V001E30 A2....F.| + 000000c0 40 00 00 00 4d 54 32 30 31 30 56 53 30 38 33 32 |@...MT2010VS0832| + 000000d0 39 20 20 20 32 30 30 33 30 32 20 20 00 00 6a 84 |9 200302 ..j.| + 000000e0 31 39 32 32 39 33 31 43 41 31 43 54 00 1e 00 00 |1922931CA1CT....| + 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 30 00 00 |.............0..| + +admin@sonic:~$ sfputil show eeprom-hexdump +EEPROM hexdump for port Ethernet0 + Lower page 0h + 00000000 11 08 06 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000010 00 00 00 00 00 00 00 00 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 01 08 00 |................| + 00000070 00 10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + + Upper page 0h + 00000080 11 00 23 88 00 00 04 00 00 00 00 08 ff 00 00 00 |..#.............| + 00000090 00 00 01 a0 4d 65 6c 6c 61 6e 6f 78 20 20 20 20 |....Mellanox | + 000000a0 20 20 20 20 00 00 02 c9 4d 43 50 31 36 35 30 2d | ....MCP1650-| + 000000b0 56 30 30 31 45 33 30 20 41 32 02 03 05 07 46 c5 |V001E30 A2....F.| + 000000c0 40 00 00 00 4d 54 32 30 31 30 56 53 30 38 33 32 |@...MT2010VS0832| + 000000d0 39 20 20 20 32 30 30 33 30 32 20 20 00 00 6a 84 |9 200302 ..j.| + 000000e0 31 39 32 32 39 33 31 43 41 31 43 54 00 1e 00 00 |1922931CA1CT....| + 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 30 00 00 |.............0..| + +EEPROM hexdump for port Ethernet8 + Lower page 0h + 00000000 18 30 80 03 00 00 00 00 00 00 00 00 00 00 00 00 |.0..............| + 00000010 00 00 00 00 00 00 00 00 00 00 08 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 03 1d 01 88 01 1c 01 44 11 1b 01 |............D...| + 00000060 22 55 1a 01 44 11 18 01 11 ff 17 01 44 11 16 01 |"U..D.......D...| + 00000070 11 ff 01 01 11 ff 00 00 00 00 00 00 00 00 00 00 |................| + + Upper page 0h + 00000080 18 4d 65 6c 6c 61 6e 6f 78 20 20 20 20 20 20 20 |.Mellanox | + 00000090 20 00 02 c9 4d 43 50 31 36 36 30 2d 57 30 30 41 | ...MCP1660-W00A| + 000000a0 45 33 30 20 41 32 4d 54 32 30 31 39 56 53 30 34 |E30 A2MT2019VS04| + 000000b0 37 39 35 20 20 20 32 30 30 35 30 37 20 20 00 00 |795 200507 ..| + 000000c0 00 00 00 00 00 00 00 00 00 01 05 23 04 05 07 15 |...........#....| + 000000d0 00 00 00 02 0a 00 00 00 00 00 00 00 00 00 77 00 |..............w.| + 000000e0 33 30 33 33 30 4b 34 33 34 31 30 44 00 00 00 00 |30330K43410D....| + 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +``` # SFP Utilities read command diff --git a/scripts/generate_dump b/scripts/generate_dump index d33a1c5b51..334e3573af 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -1853,6 +1853,7 @@ main() { 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 "sfputil show eeprom-hexdump" "interface.xcvrs.eeprom.raw" & wait save_cmd "lldpctl" "lldpctl" & diff --git a/sfputil/main.py b/sfputil/main.py index fcf6cccece..cde36f9f9a 100644 --- a/sfputil/main.py +++ b/sfputil/main.py @@ -5,6 +5,7 @@ # Command-line utility for interacting with SFP transceivers within SONiC # +import copy import os import sys import natsort @@ -39,6 +40,7 @@ ERROR_PORT_CONFIG_LOAD = 4 ERROR_NOT_IMPLEMENTED = 5 ERROR_INVALID_PORT = 6 +ERROR_INVALID_PAGE = 7 SMBUS_BLOCK_WRITE_SIZE = 32 # Default host password as per CMIS spec: # http://www.qsfp-dd.com/wp-content/uploads/2021/05/CMIS5p0.pdf @@ -57,6 +59,10 @@ MAX_OFFSET_FOR_A0H_LOWER_PAGE = 127 MAX_OFFSET_FOR_A2H = 255 PAGE_SIZE_FOR_A0H = 256 +SFF8636_MODULE_PAGES = [0, 1, 2, 3] +SFF8472_MODULE_PAGES = [0, 1, 2] +CMIS_MODULE_PAGES = [0, 1, 2, 16, 17] +CMIS_COHERENT_MODULE_PAGES = [0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x38, 0x39, 0x3a, 0x3b] EEPROM_DUMP_INDENT = ' ' * 8 @@ -687,123 +693,243 @@ 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 ") +@click.option('-p', '--port', metavar='', help="Display SFP EEPROM hexdump for port ") +@click.option('-n', '--page', metavar='', type=click.IntRange(0, MAX_EEPROM_PAGE), 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 = "" + """Display EEPROM hexdump of SFP transceiver(s)""" + if port: + if page is None: + page = 0 + return_code, output = eeprom_hexdump_single_port(port, page) + click.echo(output) + sys.exit(return_code) + else: + logical_port_list = natsorted(platform_sfputil.logical) + lines = [] + for logical_port_name in logical_port_list: + return_code, output = eeprom_hexdump_single_port(logical_port_name, page) + if return_code != 0: + lines.append(f'EEPROM hexdump for port {logical_port_name}') + lines.append(f'{EEPROM_DUMP_INDENT}{output}\n') + continue + lines.append(output) + click.echo('\n'.join(lines)) - 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' +def validate_eeprom_page(page): + """ + Validate input page module EEPROM + Args: + page: str page input by user - logical_port_name = port - physical_port = logical_port_to_physical_port_index(logical_port_name) + Returns: + int page + """ + try: + page = int(page) + except ValueError: + click.echo('Please enter a numeric page number') + sys.exit(ERROR_NOT_IMPLEMENTED) + if page < 0 or page > 255: + click.echo(f'Invalid page {page}') + sys.exit(ERROR_INVALID_PAGE) + return page + + +def eeprom_hexdump_single_port(logical_port_name, page): + """ + Dump EEPROM for a single logical port in hex format. + Args: + logical_port_name: logical port name + page: page to be dumped + + Returns: + tuple(0, dump string) if success else tuple(error_code, error_message) + """ + if platform_sfputil.is_logical_port(logical_port_name) == 0: + print_all_valid_port_values() + return ERROR_INVALID_PORT, f'Error: invalid port {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) + return ERROR_INVALID_PORT, f'{logical_port_name}: SFP EEPROM Hexdump is not applicable for RJ45 port' + physical_port = logical_port_to_physical_port_index(logical_port_name) try: - presence = platform_chassis.get_sfp(physical_port).get_presence() + sfp = platform_chassis.get_sfp(physical_port) + presence = sfp.get_presence() except NotImplementedError: - click.echo("Sfp.get_presence() is currently not implemented for this platform") - sys.exit(ERROR_NOT_IMPLEMENTED) + return ERROR_NOT_IMPLEMENTED, 'Sfp.get_presence() is currently not implemented for this platform' 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) + return ERROR_NOT_IMPLEMENTED, 'SFP EEPROM not detected' - if id[0] == 0x3: - output = eeprom_hexdump_sff8472(port, physical_port, page) + try: + api = sfp.get_xcvr_api() + if not api: + return ERROR_NOT_IMPLEMENTED, 'Error: Failed to read EEPROM for offset 0!' + + from sonic_platform_base.sonic_xcvr.api.public import sff8636, sff8436, cmis, sff8472 + from sonic_platform_base.sonic_xcvr.fields import consts + if isinstance(api, cmis.CmisApi): + if page is None: # print all possible pages + if api.is_flat_memory(): + pages = [0] + else: + pages = copy.deepcopy(CMIS_MODULE_PAGES) + if api.is_coherent_module(): + pages.extend(CMIS_COHERENT_MODULE_PAGES) + cdb_support = api.xcvr_eeprom.read(consts.CDB_SUPPORT) + if cdb_support != 0: + pages.append(0x9f) + else: + pages = [0] + if page not in pages: + pages.append(page) + return eeprom_hexdump_pages_general(logical_port_name, pages, page) + elif isinstance(api, sff8636.Sff8636Api) or isinstance(api, sff8436.Sff8436Api): + if page is None: + if api.is_flat_memory(): + pages = [0] + else: + pages = copy.deepcopy(SFF8636_MODULE_PAGES) + else: + pages = [0] + if page not in pages: + pages.append(page) + return eeprom_hexdump_pages_general(logical_port_name, pages, page) + elif isinstance(api, sff8472.Sff8472Api): + if page is None: + if not api.is_copper(): + pages = copy.deepcopy(SFF8472_MODULE_PAGES) + else: + pages = [0] + else: + pages = copy.deepcopy(SFF8472_MODULE_PAGES) if not api.is_copper() else [0] + if page not in pages: + pages.append(page) + return eeprom_hexdump_pages_sff8472(logical_port_name, pages, page) else: - output = eeprom_hexdump_sff8636(port, physical_port, page) - - output += '\n' + return ERROR_NOT_IMPLEMENTED, 'Cable type is not supported' + except NotImplementedError: + return ERROR_NOT_IMPLEMENTED, 'Sfp.read_eeprom() is currently not implemented for this platform' - 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) +def eeprom_hexdump_pages_general(logical_port_name, pages, target_page): + """ + Dump module EEPROM for given pages in hex format. This function is designed for cable type other than SFF8472. + Args: + logical_port_name: logical port name + pages: a list of pages to be dumped. The list always include a default page list and the target_page input by + user + target_page: user input page number, optional. target_page is only for display purpose - 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) + Returns: + tuple(0, dump string) if success else tuple(error_code, error_message) + """ + if target_page is not None: + lines = [f'EEPROM hexdump for port {logical_port_name} page {target_page}h'] + else: + lines = [f'EEPROM hexdump for port {logical_port_name}'] + physical_port = logical_port_to_physical_port_index(logical_port_name) + for page in pages: + if page == 0: + lines.append(f'{EEPROM_DUMP_INDENT}Lower page 0h') + return_code, output = eeprom_dump_general(physical_port, page, 0, PAGE_SIZE, 0) + if return_code != 0: + return return_code, output + lines.append(output) + + lines.append(f'\n{EEPROM_DUMP_INDENT}Upper page 0h') + return_code, output = eeprom_dump_general(physical_port, page, PAGE_OFFSET, PAGE_SIZE, PAGE_OFFSET) + if return_code != 0: + return return_code, output + lines.append(output) else: - output += '\n\n{}A2h dump (lower 128 bytes)'.format(indent) - output += hexdump(indent, page_dump, 0) + lines.append(f'\n{EEPROM_DUMP_INDENT}Upper page {page:x}h') + return_code, output = eeprom_dump_general(physical_port, page, page * PAGE_SIZE + PAGE_OFFSET, PAGE_SIZE, PAGE_OFFSET) + if return_code != 0: + return return_code, output + lines.append(output) - 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) + lines.append('') # add a new line + return 0, '\n'.join(lines) - 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) +def eeprom_hexdump_pages_sff8472(logical_port_name, pages, target_page): + """ + Dump module EEPROM for given pages in hex format. This function is designed for SFF8472 only. + Args: + logical_port_name: logical port name + pages: a list of pages to be dumped. The list always include a default page list and the target_page input by + user + target_page: user input page number, optional. target_page is only for display purpose - 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) + Returns: + tuple(0, dump string) if success else tuple(error_code, error_message) + """ + if target_page is not None: + lines = [f'EEPROM hexdump for port {logical_port_name} page {target_page}h'] + else: + lines = [f'EEPROM hexdump for port {logical_port_name}'] + physical_port = logical_port_to_physical_port_index(logical_port_name) + api = platform_chassis.get_sfp(physical_port).get_xcvr_api() + is_flat_memory = api.is_flat_memory() + for page in pages: + if page == 0: + lines.append(f'{EEPROM_DUMP_INDENT}A0h dump') + if not is_flat_memory: + return_code, output = eeprom_dump_general(physical_port, page, 0, SFF8472_A0_SIZE, 0) + else: + return_code, output = eeprom_dump_general(physical_port, page, 0, PAGE_SIZE, 0) + if return_code != 0: + return return_code, 'Error: Failed to read EEPROM for A0h!' + lines.append(output) + elif page == 1: + lines.append(f'\n{EEPROM_DUMP_INDENT}A2h dump (lower 128 bytes)') + return_code, output = eeprom_dump_general(physical_port, page, SFF8472_A0_SIZE, PAGE_SIZE, 0) + if return_code != 0: + return ERROR_NOT_IMPLEMENTED, 'Error: Failed to read EEPROM for A2h!' + lines.append(output) 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) + lines.append(f'\n{EEPROM_DUMP_INDENT}A2h dump (upper 128 bytes) page {page - 2:x}h') + return_code, output = eeprom_dump_general(physical_port, page, SFF8472_A0_SIZE + PAGE_OFFSET + page * PAGE_SIZE, PAGE_SIZE, PAGE_SIZE) + if return_code != 0: + return ERROR_NOT_IMPLEMENTED, 'Error: Failed to read EEPROM for A2h upper page!' + lines.append(output) - return output + lines.append('') # add a new line + return 0, '\n'.join(lines) + + +def eeprom_dump_general(physical_port, page, flat_offset, size, page_offset, no_format=False): + """ + Dump module EEPROM. + Args: + physical_port: physical port index + page: module EEPROM page number + flat_offset: overall offset in flat memory + size: size of bytes to be dumped + page_offset: offset within a page, only for print purpose + no_format: False if dump with hex format else dump with flat hex string. Default False. + + Returns: + tuple(0, dump string) if success else tuple(error_code, error_message) + """ + sfp = platform_chassis.get_sfp(physical_port) + page_dump = sfp.read_eeprom(flat_offset, size) + if page_dump is None: + return ERROR_NOT_IMPLEMENTED, f'Error: Failed to read EEPROM for page {page:x}h, flat_offset {flat_offset}, page_offset {page_offset}, size {size}!' + if not no_format: + return 0, hexdump(EEPROM_DUMP_INDENT, page_dump, page_offset, start_newline=False) + else: + return 0, ''.join('{:02x}'.format(x) for x in page_dump) -def eeprom_dump_general(physical_port, page, overall_offset, size, page_offset, no_format=False): + +def eeprom_dump_general(physical_port, page, flat_offset, size, page_offset, no_format=False): """ Dump module EEPROM for given pages in hex format. Args: @@ -815,9 +941,9 @@ def eeprom_dump_general(physical_port, page, overall_offset, size, page_offset, tuple(0, dump string) if success else tuple(error_code, error_message) """ sfp = platform_chassis.get_sfp(physical_port) - page_dump = sfp.read_eeprom(overall_offset, size) + page_dump = sfp.read_eeprom(flat_offset, size) if page_dump is None: - return ERROR_NOT_IMPLEMENTED, f'Error: Failed to read EEPROM for page {page:x}h, overall_offset {overall_offset}, page_offset {page_offset}, size {size}!' + return ERROR_NOT_IMPLEMENTED, f'Error: Failed to read EEPROM for page {page:x}h, flat_offset {flat_offset}, page_offset {page_offset}, size {size}!' if not no_format: return 0, hexdump(EEPROM_DUMP_INDENT, page_dump, page_offset, start_newline=False) else: @@ -830,6 +956,7 @@ def convert_byte_to_valid_ascii_char(byte): else: return chr(byte) + def hexdump(indent, data, mem_address, start_newline=True): size = len(data) offset = 0 @@ -859,6 +986,7 @@ def hexdump(indent, data, mem_address, start_newline=True): mem_address += 16 return '\n'.join(lines) + # 'presence' subcommand @show.command() @click.option('-p', '--port', metavar='', help="Display SFP presence for port only") diff --git a/tests/sfputil_test.py b/tests/sfputil_test.py index 7c66741c2a..63814f31c5 100644 --- a/tests/sfputil_test.py +++ b/tests/sfputil_test.py @@ -594,14 +594,14 @@ def test_show_eeprom_RJ45(self, mock_chassis): 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 + assert result.exit_code != 0 @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 + assert result.exit_code != 0 @patch('sfputil.main.platform_chassis') @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) @@ -650,7 +650,7 @@ 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) + mock_sfp.get_xcvr_api = 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 @@ -661,6 +661,7 @@ def test_show_eeprom_hexdump_read_eeprom_failure(self, mock_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)) + @patch('sfputil.main.isinstance', MagicMock(return_value=True)) def test_show_eeprom_hexdump_read_eeprom_not_implemented(self, mock_chassis): mock_sfp = MagicMock() mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) @@ -676,6 +677,7 @@ def test_show_eeprom_hexdump_read_eeprom_not_implemented(self, mock_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)) + @patch('sfputil.main.isinstance', MagicMock(return_value=True)) 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]) @@ -719,6 +721,7 @@ def side_effect(offset, num_bytes): @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)) + @patch('sfputil.main.isinstance', MagicMock(side_effect=[False, False, False, True])) 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]) @@ -775,11 +778,154 @@ def side_effect(offset, num_bytes): 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) + mock_api = MagicMock() + mock_sfp.get_xcvr_api = MagicMock(return_value=mock_api) + mock_api.is_copper = MagicMock(return_value=False) 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.platform_chassis') + @patch('sfputil.main.platform_sfputil') + @patch('sfputil.main.isinstance', MagicMock(side_effect=[True, False, False, False, True])) + def test_eeprom_hexdump_all_falure(self, mock_sfputil, mock_chassis): + mock_sfputil.logical = ['Ethernet4', 'Ethernet0'] + 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']) + assert result.exit_code == 0 + expected_output = """EEPROM hexdump for port Ethernet0 + Error: Failed to read EEPROM for page 0h, flat_offset 0, page_offset 0, size 128! + +EEPROM hexdump for port Ethernet4 + Error: Failed to read EEPROM for A0h! + +""" + assert result.output == expected_output + + @patch('sfputil.main.platform_chassis') + @patch('sfputil.main.platform_sfputil') + @patch('sfputil.main.isinstance', MagicMock(side_effect=[True, False, False, False, True])) + def test_eeprom_hexdump_all(self, mock_sfputil, mock_chassis): + mock_sfputil.logical = ['Ethernet4', 'Ethernet0'] + 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) + + def mock_read_eeprom(offset, num_bytes): + return bytearray([x for x in range(num_bytes)]) + + mock_sfp.read_eeprom.side_effect = mock_read_eeprom + + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['show'].commands['eeprom-hexdump']) + assert result.exit_code == 0 + expected_output = """EEPROM hexdump for port Ethernet0 + Lower page 0h + 00000000 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f |................| + 00000010 10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f |................| + 00000020 20 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2f | !"#$%&'()*+,-./| + 00000030 30 31 32 33 34 35 36 37 38 39 3a 3b 3c 3d 3e 3f |0123456789:;<=>?| + 00000040 40 41 42 43 44 45 46 47 48 49 4a 4b 4c 4d 4e 4f |@ABCDEFGHIJKLMNO| + 00000050 50 51 52 53 54 55 56 57 58 59 5a 5b 5c 5d 5e 5f |PQRSTUVWXYZ[\]^_| + 00000060 60 61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f |`abcdefghijklmno| + 00000070 70 71 72 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f |pqrstuvwxyz{|}~.| + + Upper page 0h + 00000080 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f |................| + 00000090 10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f |................| + 000000a0 20 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2f | !"#$%&'()*+,-./| + 000000b0 30 31 32 33 34 35 36 37 38 39 3a 3b 3c 3d 3e 3f |0123456789:;<=>?| + 000000c0 40 41 42 43 44 45 46 47 48 49 4a 4b 4c 4d 4e 4f |@ABCDEFGHIJKLMNO| + 000000d0 50 51 52 53 54 55 56 57 58 59 5a 5b 5c 5d 5e 5f |PQRSTUVWXYZ[\]^_| + 000000e0 60 61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f |`abcdefghijklmno| + 000000f0 70 71 72 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f |pqrstuvwxyz{|}~.| + +EEPROM hexdump for port Ethernet4 + A0h dump + 00000000 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f |................| + 00000010 10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f |................| + 00000020 20 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2f | !"#$%&'()*+,-./| + 00000030 30 31 32 33 34 35 36 37 38 39 3a 3b 3c 3d 3e 3f |0123456789:;<=>?| + 00000040 40 41 42 43 44 45 46 47 48 49 4a 4b 4c 4d 4e 4f |@ABCDEFGHIJKLMNO| + 00000050 50 51 52 53 54 55 56 57 58 59 5a 5b 5c 5d 5e 5f |PQRSTUVWXYZ[\]^_| + 00000060 60 61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f |`abcdefghijklmno| + 00000070 70 71 72 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f |pqrstuvwxyz{|}~.| + +""" + assert expected_output == result.output + + def test_test_eeprom_hexdump_all_invalid_page(self): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['show'].commands['eeprom-hexdump'], ['--page', '-1']) + assert result.exit_code != 0 + + result = runner.invoke(sfputil.cli.commands['show'].commands['eeprom-hexdump'], ['--page', '256']) + assert result.exit_code != 0 + + result = runner.invoke(sfputil.cli.commands['show'].commands['eeprom-hexdump'], ['--page', 'invalid_number']) + 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.platform_sfputil', MagicMock(is_logical_port=MagicMock(return_value=1))) + @patch('sfputil.main.eeprom_hexdump_pages_general') + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=False)) + @patch('sfputil.main.isinstance') + def test_eeprom_hexdump_single_port(self, mock_isinstance, mock_dump, mock_chassis): + mock_isinstance.return_value = True + mock_sfp = MagicMock() + mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) + mock_sfp.get_presence.return_value = True + mock_api = MagicMock() + mock_sfp.get_xcvr_api.return_value = mock_api + sfputil.eeprom_hexdump_single_port('Ethernet0', 0) + mock_dump.assert_called_with('Ethernet0', [0], 0) + + mock_dump.reset_mock() + sfputil.eeprom_hexdump_single_port('Ethernet0', 1) + mock_dump.assert_called_with('Ethernet0', [0, 1], 1) + + mock_api.is_flat_memory.return_value = False + mock_api.is_coherent_module.return_value = False + mock_dump.reset_mock() + sfputil.eeprom_hexdump_single_port('Ethernet0', None) + mock_dump.assert_called_with('Ethernet0', [0, 1, 2, 16, 17, 159], None) + + mock_api.is_coherent_module.return_value = True + mock_dump.reset_mock() + sfputil.eeprom_hexdump_single_port('Ethernet0', None) + mock_dump.assert_called_with('Ethernet0', [0, 1, 2, 16, 17, 48, 49, 50, 51, 52, 53, 56, 57, 58, 59, 159], None) + + mock_api.is_flat_memory.return_value = True + mock_dump.reset_mock() + sfputil.eeprom_hexdump_single_port('Ethernet0', None) + mock_dump.assert_called_with('Ethernet0', [0], None) + + mock_isinstance.side_effect = [False, True] + mock_dump.reset_mock() + sfputil.eeprom_hexdump_single_port('Ethernet0', None) + mock_dump.assert_called_with('Ethernet0', [0], None) + + mock_api.is_flat_memory.return_value = False + mock_isinstance.side_effect = [False, True] + mock_dump.reset_mock() + sfputil.eeprom_hexdump_single_port('Ethernet0', None) + mock_dump.assert_called_with('Ethernet0', [0, 1, 2, 3], None) + + mock_isinstance.side_effect = [False, True] + mock_dump.reset_mock() + sfputil.eeprom_hexdump_single_port('Ethernet0', 3) + mock_dump.assert_called_with('Ethernet0', [0, 3], 3) + + + @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))) From 20d1495b6f7e82c4d9aa377c3c281d8d0d9d8594 Mon Sep 17 00:00:00 2001 From: Ying Xie Date: Thu, 21 Dec 2023 09:18:21 -0800 Subject: [PATCH 69/75] [db_migrator] add db migrator version space for 202305/202311 branch (#3081) Signed-off-by: Ying Xie --- scripts/db_migrator.py | 56 +++++++++++++++++++++++++--------- tests/db_migrator_test.py | 64 +++++++++++++++++++++++++++++++++++++-- 2 files changed, 103 insertions(+), 17 deletions(-) diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index 368f289a43..f1b94982a9 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -37,7 +37,14 @@ class DBMigrator(): def __init__(self, namespace, socket=None): """ - Version string format: + Version string format (202305 and above): + version__ + branch: master, 202311, 202305, etc. + build: sequentially increase with leading 0 to make it 2 digits. + because the minor number has been removed to make it different + from the old format, adding a leading 0 to make sure that we + have double digit version number spaces. + Version string format (before 202305): version___ major: starting from 1, sequentially incrementing in master branch. @@ -47,7 +54,7 @@ def __init__(self, namespace, socket=None): none-zero values. build: sequentially increase within a minor version domain. """ - self.CURRENT_VERSION = 'version_4_0_5' + self.CURRENT_VERSION = 'version_202405_01' self.TABLE_NAME = 'VERSIONS' self.TABLE_KEY = 'DATABASE' @@ -1055,27 +1062,46 @@ def version_4_0_3(self): """ log.log_info('Handling version_4_0_3') - # Updating DNS nameserver - self.migrate_dns_nameserver() - self.set_version('version_4_0_4') - return 'version_4_0_4' + self.set_version('version_202305_01') + return 'version_202305_01' + + def version_202305_01(self): + """ + Version 202305_01. + This is current last erversion for 202305 branch + """ + log.log_info('Handling version_202305_01') + self.set_version('version_202311_01') + return 'version_202311_01' - def version_4_0_4(self): + def version_202311_01(self): """ - Version 4_0_4. + Version 202311_01. """ - log.log_info('Handling version_4_0_4') + log.log_info('Handling version_202311_01') + + # Updating DNS nameserver + self.migrate_dns_nameserver() self.migrate_sflow_table() - self.set_version('version_4_0_5') - return 'version_4_0_5' + self.set_version('version_202311_02') + return 'version_202311_02' + + def version_202311_02(self): + """ + Version 202311_02. + This is current last erversion for 202311 branch + """ + log.log_info('Handling version_202311_02') + self.set_version('version_202405_01') + return 'version_202405_01' - def version_4_0_5(self): + def version_202405_01(self): """ - Version 4_0_5. - This is the latest version for master branch + Version 202405_01, this version should be the final version for + master branch until 202405 branch is created. """ - log.log_info('Handling version_4_0_5') + log.log_info('Handling version_202405_01') return None def get_version(self): diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index c18e79591b..7bc1371924 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -25,6 +25,36 @@ def get_sonic_version_info_mlnx(): return {'asic_type': 'mellanox'} +def version_greater_than(v1, v2): + # Return True when v1 is later than v2. Otherwise return False. + if 'master' in v1: + if 'master' in v2: + # both are master versions, directly compare. + return v1 > v2 + + # v1 is master verson and v2 is not, v1 is higher + return True + + if 'master' in v2: + # v2 is master version and v1 is not. + return False + + s1 = v1.split('_') + s2 = v2.split('_') + if len(s1) == 3: + # new format version__ + if len(s2) == 3: + # Both are new format version string + return v1 > v2 + return True + + if len(s2) == 3: + # v2 is new format and v1 is old format. + return False + + # Both are old format version_a_b_c + return v1 > v2 + def advance_version_for_expected_database(migrated_db, expected_db, last_interested_version): # In case there are new db versions greater than the latest one that mellanox buffer migrator is interested, @@ -32,11 +62,41 @@ def advance_version_for_expected_database(migrated_db, expected_db, last_interes expected_dbversion = expected_db.get_entry('VERSIONS', 'DATABASE') dbmgtr_dbversion = migrated_db.get_entry('VERSIONS', 'DATABASE') if expected_dbversion and dbmgtr_dbversion: - if expected_dbversion['VERSION'] == last_interested_version and dbmgtr_dbversion['VERSION'] > expected_dbversion['VERSION']: + if expected_dbversion['VERSION'] == last_interested_version and version_greater_than(dbmgtr_dbversion['VERSION'], expected_dbversion['VERSION']): expected_dbversion['VERSION'] = dbmgtr_dbversion['VERSION'] expected_db.set_entry('VERSIONS', 'DATABASE', expected_dbversion) +class TestVersionComparison(object): + @classmethod + def setup_class(cls): + cls.version_comp_list = [ + # Old format v.s old format + { 'v1' : 'version_1_0_1', 'v2' : 'version_1_0_2', 'result' : False }, + { 'v1' : 'version_1_0_2', 'v2' : 'version_1_0_1', 'result' : True }, + { 'v1' : 'version_1_0_1', 'v2' : 'version_2_0_1', 'result' : False }, + { 'v1' : 'version_2_0_1', 'v2' : 'version_1_0_1', 'result' : True }, + # New format v.s old format + { 'v1' : 'version_1_0_1', 'v2' : 'version_202311_01', 'result' : False }, + { 'v1' : 'version_202311_01', 'v2' : 'version_1_0_1', 'result' : True }, + { 'v1' : 'version_1_0_1', 'v2' : 'version_master_01', 'result' : False }, + { 'v1' : 'version_master_01', 'v2' : 'version_1_0_1', 'result' : True }, + # New format v.s new format + { 'v1' : 'version_202311_01', 'v2' : 'version_202311_02', 'result' : False }, + { 'v1' : 'version_202311_02', 'v2' : 'version_202311_01', 'result' : True }, + { 'v1' : 'version_202305_01', 'v2' : 'version_202311_01', 'result' : False }, + { 'v1' : 'version_202311_01', 'v2' : 'version_202305_01', 'result' : True }, + { 'v1' : 'version_202311_01', 'v2' : 'version_master_01', 'result' : False }, + { 'v1' : 'version_master_01', 'v2' : 'version_202311_01', 'result' : True }, + { 'v1' : 'version_master_01', 'v2' : 'version_master_02', 'result' : False }, + { 'v1' : 'version_master_02', 'v2' : 'version_master_01', 'result' : True }, + ] + + def test_version_comparison(self): + for rec in self.version_comp_list: + assert version_greater_than(rec['v1'], rec['v2']) == rec['result'], 'test failed: {}'.format(rec) + + class TestMellanoxBufferMigrator(object): @classmethod def setup_class(cls): @@ -704,7 +764,7 @@ def test_fast_reboot_upgrade_to_4_0_3(self): expected_db = self.mock_dedicated_config_db(db_after_migrate) advance_version_for_expected_database(dbmgtr.configDB, expected_db.cfgdb, 'version_4_0_3') assert not self.check_config_db(dbmgtr.configDB, expected_db.cfgdb) - assert dbmgtr.CURRENT_VERSION == expected_db.cfgdb.get_entry('VERSIONS', 'DATABASE')['VERSION'] + assert dbmgtr.CURRENT_VERSION == expected_db.cfgdb.get_entry('VERSIONS', 'DATABASE')['VERSION'], '{} {}'.format(dbmgtr.CURRENT_VERSION, dbmgtr.get_version()) class TestSflowSampleDirectionMigrator(object): @classmethod From bcb10f18ffc17835374f5f17be9c56ef2b27d21f Mon Sep 17 00:00:00 2001 From: ganglv <88995770+ganglyu@users.noreply.github.com> Date: Sat, 23 Dec 2023 07:52:03 +0800 Subject: [PATCH 70/75] Support golden config in db migrator (#3076) What I did Need to support golden config in db migrator. How I did it If there's golden config json, read from golden config instead of minigraph. And db migrator will use golden config data to generate new configuration. How to verify it Run unit test. --- config/main.py | 11 +-- scripts/db_migrator.py | 88 ++++++++++++++----- .../golden_config_db.json.invalid | 7 ++ .../golden_config_db.json.test | 7 ++ tests/db_migrator_test.py | 54 +++++++++++- utilities_common/helper.py | 28 ++++++ 6 files changed, 161 insertions(+), 34 deletions(-) create mode 100644 tests/db_migrator_input/golden_config_db.json.invalid create mode 100644 tests/db_migrator_input/golden_config_db.json.test diff --git a/config/main.py b/config/main.py index 630facb453..65b669be7f 100644 --- a/config/main.py +++ b/config/main.py @@ -34,7 +34,7 @@ from utilities_common.intf_filter import parse_interface_in_filter from utilities_common import bgp_util import utilities_common.cli as clicommon -from utilities_common.helper import get_port_pbh_binding, get_port_acl_binding +from utilities_common.helper import get_port_pbh_binding, get_port_acl_binding, update_config from utilities_common.general import load_db_config, load_module_from_source from .validated_config_db_connector import ValidatedConfigDBConnector import utilities_common.multi_asic as multi_asic_util @@ -1950,6 +1950,7 @@ def override_config_table(db, input_config_db, dry_run): ns_config_input = config_input # Generate sysinfo if missing in ns_config_input generate_sysinfo(current_config, ns_config_input, ns) + # Use deepcopy by default to avoid modifying input config updated_config = update_config(current_config, ns_config_input) yang_enabled = device_info.is_yang_config_validation_enabled(config_db) @@ -1985,14 +1986,6 @@ def validate_config_by_cm(cm, config_json, jname): 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) diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index f1b94982a9..73f5926bc6 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -10,9 +10,11 @@ from sonic_py_common import device_info, logger from swsscommon.swsscommon import SonicV2Connector, ConfigDBConnector, SonicDBConfig from minigraph import parse_xml +from utilities_common.helper import update_config INIT_CFG_FILE = '/etc/sonic/init_cfg.json' MINIGRAPH_FILE = '/etc/sonic/minigraph.xml' +GOLDEN_CFG_FILE = '/etc/sonic/golden_config_db.json' # mock the redis for unit test purposes # try: @@ -24,10 +26,12 @@ 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") + GOLDEN_CFG_FILE = os.path.join(mocked_db_path, "golden_config_db.json") except KeyError: pass SYSLOG_IDENTIFIER = 'db_migrator' +DEFAULT_NAMESPACE = '' # Global logger instance @@ -60,15 +64,8 @@ def __init__(self, namespace, socket=None): 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 + # Generate config_src_data from minigraph and golden config + self.generate_config_src(namespace) db_kwargs = {} if socket: @@ -107,6 +104,55 @@ def __init__(self, namespace, socket=None): from mellanox_buffer_migrator import MellanoxBufferMigrator self.mellanox_buffer_migrator = MellanoxBufferMigrator(self.configDB, self.appDB, self.stateDB) + def generate_config_src(self, ns): + ''' + Generate config_src_data from minigraph and golden config + This method uses golden_config_data and minigraph_data as local variables, + which means they are not accessible or modifiable from outside this method. + This way, this method ensures that these variables are not changed unintentionally. + Args: + ns: namespace + Returns: + ''' + # load config data from golden_config_db.json + golden_config_data = None + try: + if os.path.isfile(GOLDEN_CFG_FILE): + with open(GOLDEN_CFG_FILE) as f: + golden_data = json.load(f) + if ns is None: + golden_config_data = golden_data + else: + if ns == DEFAULT_NAMESPACE: + config_namespace = "localhost" + else: + config_namespace = ns + golden_config_data = golden_data[config_namespace] + except Exception as e: + log.log_error('Caught exception while trying to load golden config: ' + str(e)) + pass + # load config data from minigraph to get the default/hardcoded values from minigraph.py + minigraph_data = None + try: + if os.path.isfile(MINIGRAPH_FILE): + minigraph_data = parse_xml(MINIGRAPH_FILE) + except Exception as e: + log.log_error('Caught exception while trying to parse minigraph: ' + str(e)) + pass + # When both golden config and minigraph exists, override minigraph config with golden config + # config_src_data is the source of truth for config data + # this is to avoid duplicating the hardcoded these values in db_migrator + self.config_src_data = None + if minigraph_data: + # Shallow copy for better performance + self.config_src_data = minigraph_data + if golden_config_data: + # Shallow copy for better performance + self.config_src_data = update_config(minigraph_data, golden_config_data, False) + elif golden_config_data: + # Shallow copy for better performance + self.config_src_data = golden_config_data + def migrate_pfc_wd_table(self): ''' Migrate all data entries from table PFC_WD_TABLE to PFC_WD @@ -547,9 +593,9 @@ def migrate_vxlan_config(self): def migrate_restapi(self): # RESTAPI - add missing key - if not self.minigraph_data or 'RESTAPI' not in self.minigraph_data: + if not self.config_src_data or 'RESTAPI' not in self.config_src_data: return - restapi_data = self.minigraph_data['RESTAPI'] + restapi_data = self.config_src_data['RESTAPI'] log.log_notice('Migrate RESTAPI configuration') config = self.configDB.get_entry('RESTAPI', 'config') if not config: @@ -560,9 +606,9 @@ def migrate_restapi(self): def migrate_telemetry(self): # TELEMETRY - add missing key - if not self.minigraph_data or 'TELEMETRY' not in self.minigraph_data: + if not self.config_src_data or 'TELEMETRY' not in self.config_src_data: return - telemetry_data = self.minigraph_data['TELEMETRY'] + telemetry_data = self.config_src_data['TELEMETRY'] log.log_notice('Migrate TELEMETRY configuration') gnmi = self.configDB.get_entry('TELEMETRY', 'gnmi') if not gnmi: @@ -573,9 +619,9 @@ def migrate_telemetry(self): def migrate_console_switch(self): # CONSOLE_SWITCH - add missing key - if not self.minigraph_data or 'CONSOLE_SWITCH' not in self.minigraph_data: + if not self.config_src_data or 'CONSOLE_SWITCH' not in self.config_src_data: return - console_switch_data = self.minigraph_data['CONSOLE_SWITCH'] + console_switch_data = self.config_src_data['CONSOLE_SWITCH'] log.log_notice('Migrate CONSOLE_SWITCH configuration') console_mgmt = self.configDB.get_entry('CONSOLE_SWITCH', 'console_mgmt') if not console_mgmt: @@ -584,11 +630,11 @@ def migrate_console_switch(self): def migrate_device_metadata(self): # DEVICE_METADATA - synchronous_mode entry - if not self.minigraph_data or 'DEVICE_METADATA' not in self.minigraph_data: + if not self.config_src_data or 'DEVICE_METADATA' not in self.config_src_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"] + device_metadata_data = self.config_src_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) @@ -628,19 +674,19 @@ def migrate_dns_nameserver(self): Handle DNS_NAMESERVER table migration. Migrations handled: If there's no DNS_NAMESERVER in config_DB, load DNS_NAMESERVER from minigraph """ - if not self.minigraph_data or 'DNS_NAMESERVER' not in self.minigraph_data: + if not self.config_src_data or 'DNS_NAMESERVER' not in self.config_src_data: return dns_table = self.configDB.get_table('DNS_NAMESERVER') if not dns_table: - for addr, config in self.minigraph_data['DNS_NAMESERVER'].items(): + for addr, config in self.config_src_data['DNS_NAMESERVER'].items(): self.configDB.set_entry('DNS_NAMESERVER', addr, config) def migrate_routing_config_mode(self): # DEVICE_METADATA - synchronous_mode entry - if not self.minigraph_data or 'DEVICE_METADATA' not in self.minigraph_data: + if not self.config_src_data or 'DEVICE_METADATA' not in self.config_src_data: return device_metadata_old = self.configDB.get_entry('DEVICE_METADATA', 'localhost') - device_metadata_new = self.minigraph_data['DEVICE_METADATA']['localhost'] + device_metadata_new = self.config_src_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 diff --git a/tests/db_migrator_input/golden_config_db.json.invalid b/tests/db_migrator_input/golden_config_db.json.invalid new file mode 100644 index 0000000000..d9ba49c5bd --- /dev/null +++ b/tests/db_migrator_input/golden_config_db.json.invalid @@ -0,0 +1,7 @@ +{ + "DEVICE_METADATA": { + "localhost": { + "hostname": "SONiC-Golden-Config" + }} + } +} diff --git a/tests/db_migrator_input/golden_config_db.json.test b/tests/db_migrator_input/golden_config_db.json.test new file mode 100644 index 0000000000..66fbc197b6 --- /dev/null +++ b/tests/db_migrator_input/golden_config_db.json.test @@ -0,0 +1,7 @@ +{ + "DEVICE_METADATA": { + "localhost": { + "hostname": "SONiC-Golden-Config" + } + } +} diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index 7bc1371924..cffc65793c 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -368,8 +368,8 @@ def test_dns_nameserver_migrator(self): dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'dns-nameserver-input') import db_migrator dbmgtr = db_migrator.DBMigrator(None) - # Set minigraph_data to DNS_NAMESERVERS - dbmgtr.minigraph_data = { + # Set config_src_data to DNS_NAMESERVERS + dbmgtr.config_src_data = { 'DNS_NAMESERVER': { '1.1.1.1': {}, '2001:1001:110:1001::1': {} @@ -635,8 +635,8 @@ 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 + # set config_src_data to None to mimic the missing minigraph.xml scenario + dbmgtr.config_src_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() @@ -823,3 +823,49 @@ def test_sflow_migrator(self): 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 TestGoldenConfig(object): + @classmethod + def setup_class(cls): + os.system("cp %s %s" % (mock_db_path + '/golden_config_db.json.test', mock_db_path + '/golden_config_db.json')) + os.environ['UTILITIES_UNIT_TESTING'] = "2" + + @classmethod + def teardown_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "0" + os.system("rm %s" % (mock_db_path + '/golden_config_db.json')) + + def test_golden_config_hostname(self): + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + config = dbmgtr.config_src_data + device_metadata = config.get('DEVICE_METADATA', {}) + assert device_metadata != {} + host = device_metadata.get('localhost', {}) + assert host != {} + hostname = host.get('hostname', '') + # hostname is from golden_config_db.json + assert hostname == 'SONiC-Golden-Config' + +class TestGoldenConfigInvalid(object): + @classmethod + def setup_class(cls): + os.system("cp %s %s" % (mock_db_path + '/golden_config_db.json.invalid', mock_db_path + '/golden_config_db.json')) + os.environ['UTILITIES_UNIT_TESTING'] = "2" + + @classmethod + def teardown_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "0" + os.system("rm %s" % (mock_db_path + '/golden_config_db.json')) + + def test_golden_config_hostname(self): + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + config = dbmgtr.config_src_data + device_metadata = config.get('DEVICE_METADATA', {}) + assert device_metadata != {} + host = device_metadata.get('localhost', {}) + assert host != {} + hostname = host.get('hostname', '') + # hostname is from minigraph.xml + assert hostname == 'SONiC-Dummy' diff --git a/utilities_common/helper.py b/utilities_common/helper.py index f7a71cec36..c9f0c3a956 100644 --- a/utilities_common/helper.py +++ b/utilities_common/helper.py @@ -1,6 +1,7 @@ from dump.match_infra import MatchEngine, MatchRequest, ConnectionPool from dump.match_helper import get_matched_keys from .db import Db +import copy def get_port_acl_binding(db_wrap, port, ns): """ @@ -64,3 +65,30 @@ def get_port_pbh_binding(db_wrap, port, ns): ret = m_engine.fetch(req) pbh_tables, _ = get_matched_keys(ret) return pbh_tables + + +def update_config(current_config, config_input, deepcopy=True): + """ + Override current config with golden config + Shallow copy only copies the references to the original object, + so any changes to one object will also change the other. + Therefore, we should be careful when using shallow copy to avoid unwanted modifications. + + Args: + current_config: current config + config_input: input golden config + deepcopy: True for deep copy, False for shallow copy + + Returns: + Final config after overriding + """ + if deepcopy: + # Deep copy for safety + updated_config = copy.deepcopy(current_config) + else: + # Shallow copy for better performance + updated_config = current_config + # Override current config with golden config + for table in config_input: + updated_config[table] = config_input[table] + return updated_config From 529bb96bf3390888391fa131ed73504e168453ae Mon Sep 17 00:00:00 2001 From: anamehra <54692434+anamehra@users.noreply.github.com> Date: Sat, 23 Dec 2023 11:31:58 -0800 Subject: [PATCH 71/75] route_check: Skip route checks if bgp feature is not enabled (#3075) * Execute Route check script only when feature bgp is enabled If bgp is not enabled, get_frr_routes() gets empty list and route check fails and throws a traceback. Adding check to to skip route checks bgp feature is disabled. On the Chassis supervisor, bgp may be disabled. Signed-off-by: Anand Mehra anamehra@cisco.com --- scripts/route_check.py | 16 ++++ tests/route_check_test.py | 9 +- tests/route_check_test_data.py | 157 ++++++++++++++++++++++++++++++++- 3 files changed, 177 insertions(+), 5 deletions(-) diff --git a/scripts/route_check.py b/scripts/route_check.py index 8e52050418..0df25cba59 100755 --- a/scripts/route_check.py +++ b/scripts/route_check.py @@ -533,6 +533,18 @@ def filter_out_standalone_tunnel_routes(namespace, routes): return updated_routes +def is_feature_bgp_enabled(namespace): + """ + Check if bgp feature is enabled or disabled. + Return True if enabled else False. + """ + cfg_db = multi_asic.connect_config_db_for_ns(namespace) + feature_table = cfg_db.get_table("FEATURE") + bgp_enabled = False + if 'bgp' in feature_table: + if feature_table['bgp']["state"] == "enabled": + bgp_enabled = True + return bgp_enabled def check_frr_pending_routes(namespace): """ @@ -827,6 +839,10 @@ def main(): signal.signal(signal.SIGALRM, handler) load_db_config() + if not is_feature_bgp_enabled(namespace): + print_message(syslog.LOG_INFO, "BGP feature is disabled, exiting without checking routes!!") + return 0, None + while True: signal.alarm(TIMEOUT_SECONDS) ret, res= check_routes(namespace) diff --git a/tests/route_check_test.py b/tests/route_check_test.py index 820f062107..1f92b3d19a 100644 --- a/tests/route_check_test.py +++ b/tests/route_check_test.py @@ -271,11 +271,14 @@ def test_timeout(self, mock_dbs, force_hang): # Test timeout ex_raised = False # Use an expected failing test case to trigger the select - set_test_case_data(TEST_DATA['2']) - + ct_data = TEST_DATA['2'] + set_test_case_data(ct_data) try: - with patch('sys.argv', [route_check.__file__.split('/')[-1]]): + with patch('sys.argv', [route_check.__file__.split('/')[-1]]), \ + patch('route_check.load_db_config', side_effect=lambda: init_db_conns(ct_data[NAMESPACE])): + ret, res = route_check.main() + except Exception as err: ex_raised = True expect = "timeout occurred" diff --git a/tests/route_check_test_data.py b/tests/route_check_test_data.py index 9a26356481..991957efc5 100644 --- a/tests/route_check_test_data.py +++ b/tests/route_check_test_data.py @@ -23,6 +23,7 @@ VNET_ROUTE_TABLE = 'VNET_ROUTE_TABLE' INTF_TABLE = 'INTF_TABLE' RT_ENTRY_TABLE = 'ASIC_STATE' +FEATURE_TABLE = 'FEATURE' SEPARATOR = ":" DEVICE_METADATA = "DEVICE_METADATA" MUX_CABLE = "MUX_CABLE" @@ -32,7 +33,17 @@ 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: {}}} +DEFAULT_CONFIG_DB = { + DEVICE_METADATA: { + LOCALHOST: { + } + }, + FEATURE_TABLE: { + "bgp": { + "state": "enabled" + } + } + } TEST_DATA = { "0": { @@ -330,6 +341,11 @@ CONFIG_DB: { DEVICE_METADATA: { LOCALHOST: {"subtype": "DualToR"} + }, + FEATURE_TABLE: { + "bgp": { + "state": "enabled" + } } }, APPL_DB: { @@ -396,6 +412,11 @@ "soc_ipv6": "fc02:1000::3/128", "state": "auto" }, + }, + FEATURE_TABLE: { + "bgp": { + "state": "enabled" + } } }, APPL_DB: { @@ -563,6 +584,11 @@ CONFIG_DB: { DEVICE_METADATA: { LOCALHOST: {"subtype": "DualToR"} + }, + FEATURE_TABLE: { + "bgp": { + "state": "enabled" + } } }, APPL_DB: { @@ -881,5 +907,132 @@ }, RET: -1, }, - + "21": { + DESCR: "basic good one on single asic, bgp disabled", + MULTI_ASIC: False, + NAMESPACE: [''], + ARGS: "route_check -m INFO -i 1000", + PRE: { + DEFAULTNS: { + CONFIG_DB: { + DEVICE_METADATA: { + LOCALHOST: { + } + }, + FEATURE_TABLE: { + "bgp": { + "state": "disabled" + } + } + }, + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + }, + 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.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: {} + } + }, + }, + }, + FRR_ROUTES: { + DEFAULTNS: { + "0.0.0.0/0": [ + { + "prefix": "0.0.0.0/0", + "vrfName": "default", + "protocol": "bgp", + "offloaded": "true", + }, + ], + "10.10.196.12/31": [ + { + "prefix": "10.10.196.12/31", + "vrfName": "default", + "protocol": "bgp", + }, + ], + "10.10.196.24/31": [ + { + "protocol": "connected", + }, + ], + }, + }, + }, + "22": { + DESCR: "basic good one on multi-asic, bgp disabled", + MULTI_ASIC: True, + NAMESPACE: ['asic0'], + ARGS: "route_check -m INFO -i 1000", + PRE: { + ASIC0: { + CONFIG_DB: { + DEVICE_METADATA: { + LOCALHOST: { + } + }, + FEATURE_TABLE: { + "bgp": { + "state": "disabled" + } + } + }, + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + }, + 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.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: {} + } + }, + }, + }, + FRR_ROUTES: { + ASIC0: { + "0.0.0.0/0": [ + { + "prefix": "0.0.0.0/0", + "vrfName": "default", + "protocol": "bgp", + "offloaded": "true", + }, + ], + "10.10.196.12/31": [ + { + "prefix": "10.10.196.12/31", + "vrfName": "default", + "protocol": "bgp", + }, + ], + "10.10.196.24/31": [ + { + "protocol": "connected", + }, + ], + }, + }, + }, } From 56dafb07861541ce333aee26a3e15ed05c1091ed Mon Sep 17 00:00:00 2001 From: Junchao-Mellanox <57339448+Junchao-Mellanox@users.noreply.github.com> Date: Mon, 25 Dec 2023 14:45:17 +0800 Subject: [PATCH 72/75] Support disable/enable syslog rate limit feature (#3072) Depends on PR sonic-net/sonic-buildimage#17458 What I did Add CLIs to enable/disable containercfgd to optimize warm/fast boot path How I did it Add CLIs to enable/disable containercfgd How to verify it unit test manual test --- config/syslog.py | 83 ++++++++++++++++++++++++++++++++++++++ doc/Command-Reference.md | 27 +++++++++++++ tests/syslog_test.py | 86 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 196 insertions(+) diff --git a/config/syslog.py b/config/syslog.py index 90fc52ec9d..7533a7f71f 100644 --- a/config/syslog.py +++ b/config/syslog.py @@ -471,3 +471,86 @@ def rate_limit_container(db, service_name, interval, burst): feature_data = db.cfgdb.get_table(syslog_common.FEATURE_TABLE) syslog_common.service_validator(feature_data, service_name) syslog_common.save_rate_limit_to_db(db, service_name, interval, burst, log) + + +@syslog.group( + name="rate-limit-feature", + cls=clicommon.AliasedGroup +) +def rate_limit_feature(): + """ Configure syslog rate limit feature """ + pass + + +@rate_limit_feature.command("enable") +@clicommon.pass_db +def enable_rate_limit_feature(db): + """ Enable syslog rate limit feature """ + feature_data = db.cfgdb.get_table(syslog_common.FEATURE_TABLE) + for feature_name in feature_data.keys(): + click.echo(f'Enabling syslog rate limit feature for {feature_name}') + output, _ = clicommon.run_command(['docker', 'ps', '-q', '-f', 'status=running', '-f', f'name={feature_name}'], return_cmd=True) + if not output: + click.echo(f'{feature_name} is not running, ignoring...') + continue + + output, _ = clicommon.run_command(['docker', 'exec', '-i', feature_name, 'supervisorctl', 'status', 'containercfgd'], + ignore_error=True, return_cmd=True) + if 'no such process' not in output: + click.echo(f'Syslog rate limit feature is already enabled in {feature_name}, ignoring...') + continue + + commands = [ + ['docker', 'cp', '/usr/share/sonic/templates/containercfgd.conf', f'{feature_name}:/etc/supervisor/conf.d/'], + ['docker', 'exec', '-i', feature_name, 'supervisorctl', 'reread'], + ['docker', 'exec', '-i', feature_name, 'supervisorctl', 'update'], + ['docker', 'exec', '-i', feature_name, 'supervisorctl', 'start', 'containercfgd'] + ] + + failed = False + for command in commands: + output, ret = clicommon.run_command(command, return_cmd=True) + if ret != 0: + failed = True + click.echo(f'Enable syslog rate limit feature for {feature_name} failed - {output}') + break + + if not failed: + click.echo(f'Enabled syslog rate limit feature for {feature_name}') + + +@rate_limit_feature.command("disable") +@clicommon.pass_db +def disable_rate_limit_feature(db): + """ Disable syslog rate limit feature """ + feature_data = db.cfgdb.get_table(syslog_common.FEATURE_TABLE) + for feature_name in feature_data.keys(): + click.echo(f'Disabling syslog rate limit feature for {feature_name}') + output, _ = clicommon.run_command(['docker', 'ps', '-q', '-f', 'status=running', '-f', f'name={feature_name}'], return_cmd=True) + if not output: + click.echo(f'{feature_name} is not running, ignoring...') + continue + + output, _ = clicommon.run_command(['docker', 'exec', '-i', feature_name, 'supervisorctl', 'status', 'containercfgd'], + ignore_error=True, return_cmd=True) + if 'no such process' in output: + click.echo(f'Syslog rate limit feature is already disabled in {feature_name}, ignoring...') + continue + + commands = [ + ['docker', 'exec', '-i', feature_name, 'supervisorctl', 'stop', 'containercfgd'], + ['docker', 'exec', '-i', feature_name, 'rm', '-f', '/etc/supervisor/conf.d/containercfgd.conf'], + ['docker', 'exec', '-i', feature_name, 'supervisorctl', 'reread'], + ['docker', 'exec', '-i', feature_name, 'supervisorctl', 'update'] + ] + failed = False + for command in commands: + output, ret = clicommon.run_command(command, return_cmd=True) + if ret != 0: + failed = True + click.echo(f'Disable syslog rate limit feature for {feature_name} failed - {output}') + break + + if not failed: + click.echo(f'Disabled syslog rate limit feature for {feature_name}') + diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 6aea452560..30f317be80 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -10226,6 +10226,33 @@ This command is used to configure syslog rate limit for containers. admin@sonic:~$ sudo config syslog rate-limit-container bgp --interval 300 --burst 20000 ``` +**config syslog rate-limit-feature enable** + +This command is used to enable syslog rate limit feature. + +- Usage: + ``` + config syslog rate-limit-feature enable + ``` + +- Example: + ``` + admin@sonic:~$ sudo config syslog rate-limit-feature enable + ``` + +**config syslog rate-limit-feature disable** + +This command is used to disable syslog rate limit feature. + +- Usage: + ``` + config syslog rate-limit-feature disable + ``` + +- Example: + ``` + admin@sonic:~$ sudo config syslog rate-limit-feature disable + ``` Go Back To [Beginning of the document](#) or [Beginning of this section](#syslog) diff --git a/tests/syslog_test.py b/tests/syslog_test.py index 354100a508..44915b6d36 100644 --- a/tests/syslog_test.py +++ b/tests/syslog_test.py @@ -399,3 +399,89 @@ def test_show_syslog_rate_limit_container_negative(self, subcommand): logger.debug("\n" + result.output) logger.debug(result.exit_code) assert result.exit_code != SUCCESS + + @mock.patch('config.syslog.clicommon.run_command') + def test_enable_syslog_rate_limit_feature(self, mock_run): + db = Db() + db.cfgdb.set_entry(FEATURE_TABLE, 'bgp', {SUPPORT_RATE_LIMIT: 'true', + 'state': 'enabled'}) + + runner = CliRunner() + + mock_run.return_value = ('no such process', 0) + result = runner.invoke( + config.config.commands["syslog"].commands["rate-limit-feature"].commands["enable"], obj=db + ) + assert result.exit_code == SUCCESS + + # container not run + mock_run.return_value = ('', 0) + result = runner.invoke( + config.config.commands["syslog"].commands["rate-limit-feature"].commands["enable"], obj=db + ) + assert result.exit_code == SUCCESS + + # process already running + mock_run.return_value = ('something', 0) + result = runner.invoke( + config.config.commands["syslog"].commands["rate-limit-feature"].commands["enable"], obj=db + ) + assert result.exit_code == SUCCESS + + # one command fail + def side_effect(*args, **kwargs): + side_effect.call_count += 1 + if side_effect.call_count <= 2: + return 'no such process', 0 + else: + return '', -1 + side_effect.call_count = 0 + mock_run.side_effect = side_effect + result = runner.invoke( + config.config.commands["syslog"].commands["rate-limit-feature"].commands["enable"], obj=db + ) + assert result.exit_code == SUCCESS + + + @mock.patch('config.syslog.clicommon.run_command') + def test_disable_syslog_rate_limit_feature(self, mock_run): + db = Db() + db.cfgdb.set_entry(FEATURE_TABLE, 'bgp', {SUPPORT_RATE_LIMIT: 'true', + 'state': 'enabled'}) + + runner = CliRunner() + + mock_run.return_value = ('something', 0) + result = runner.invoke( + config.config.commands["syslog"].commands["rate-limit-feature"].commands["disable"], obj=db + ) + assert result.exit_code == SUCCESS + + # container not run + mock_run.return_value = ('', 0) + result = runner.invoke( + config.config.commands["syslog"].commands["rate-limit-feature"].commands["disable"], obj=db + ) + assert result.exit_code == SUCCESS + + # process already stopped + mock_run.return_value = ('no such process', 0) + result = runner.invoke( + config.config.commands["syslog"].commands["rate-limit-feature"].commands["disable"], obj=db + ) + assert result.exit_code == SUCCESS + + # one command fail + def side_effect(*args, **kwargs): + side_effect.call_count += 1 + if side_effect.call_count <= 2: + return 'something', 0 + else: + return '', -1 + side_effect.call_count = 0 + mock_run.side_effect = side_effect + result = runner.invoke( + config.config.commands["syslog"].commands["rate-limit-feature"].commands["disable"], obj=db + ) + assert result.exit_code == SUCCESS + From 9400691cee094ba9e1ad93d8e369051dc12cfd2e Mon Sep 17 00:00:00 2001 From: ganglv <88995770+ganglyu@users.noreply.github.com> Date: Mon, 25 Dec 2023 16:05:16 +0800 Subject: [PATCH 73/75] Fix database initialization for db_migrator (#3100) What I did db_migrator failed to initialize SonicDBConfig, and I fix this issue. How I did it If SonicDBConfig is already initialized, do not invoke initialize() again. How to verify it Run unit test, and verified on DUT. --- scripts/db_migrator.py | 8 +++----- tests/db_migrator_test.py | 18 +++++++++++++++++- 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index 73f5926bc6..9667eedaff 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -8,9 +8,10 @@ import re from sonic_py_common import device_info, logger -from swsscommon.swsscommon import SonicV2Connector, ConfigDBConnector, SonicDBConfig +from swsscommon.swsscommon import SonicV2Connector, ConfigDBConnector from minigraph import parse_xml from utilities_common.helper import update_config +from utilities_common.general import load_db_config INIT_CFG_FILE = '/etc/sonic/init_cfg.json' MINIGRAPH_FILE = '/etc/sonic/minigraph.xml' @@ -1241,10 +1242,7 @@ def main(): socket_path = args.socket namespace = args.namespace - if args.namespace is not None: - SonicDBConfig.load_sonic_global_db_config(namespace=args.namespace) - else: - SonicDBConfig.initialize() + load_db_config() if socket_path: dbmgtr = DBMigrator(namespace, socket=socket_path) diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index cffc65793c..84806e1905 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -1,7 +1,8 @@ import os import pytest import sys - +import argparse +from unittest import mock from deepdiff import DeepDiff from swsscommon.swsscommon import SonicV2Connector @@ -869,3 +870,18 @@ def test_golden_config_hostname(self): hostname = host.get('hostname', '') # hostname is from minigraph.xml assert hostname == 'SONiC-Dummy' + +class TestMain(object): + @classmethod + def setup_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "2" + + @classmethod + def teardown_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "0" + + @mock.patch('argparse.ArgumentParser.parse_args') + def test_init(self, mock_args): + mock_args.return_value=argparse.Namespace(namespace=None, operation='get_version', socket=None) + import db_migrator + db_migrator.main() From 9515c642567c043694085436356d1b7e63469079 Mon Sep 17 00:00:00 2001 From: Arvindsrinivasan Lakshmi Narasimhan <55814491+arlakshm@users.noreply.github.com> Date: Thu, 4 Jan 2024 22:48:09 -0800 Subject: [PATCH 74/75] [chassis]: Support show ip bgp summary to display without error when no external neighbors are configured on chassis LC (#3099) Support show ip bgp summary to display without error when no external neighbors are configured on chassis LC --- tests/bgp_commands_test.py | 80 +- tests/conftest.py | 18 + tests/mock_tables/asic0/config_db.json | 30 + tests/mock_tables/asic0/no_ext_bgp_neigh.json | 91 + tests/mock_tables/asic0/show_ip_bgp.json | 57 + tests/mock_tables/asic1/config_db.json | 30 + tests/mock_tables/asic1/no_ext_bgp_neigh.json | 91 + tests/mock_tables/asic1/show_ip_bgp.json | 1588461 ++++++++++++++ utilities_common/bgp_util.py | 49 +- 9 files changed, 1588897 insertions(+), 10 deletions(-) create mode 100644 tests/mock_tables/asic0/no_ext_bgp_neigh.json create mode 100644 tests/mock_tables/asic0/show_ip_bgp.json create mode 100644 tests/mock_tables/asic1/no_ext_bgp_neigh.json create mode 100644 tests/mock_tables/asic1/show_ip_bgp.json diff --git a/tests/bgp_commands_test.py b/tests/bgp_commands_test.py index 837ced3bcc..db0fb6b761 100644 --- a/tests/bgp_commands_test.py +++ b/tests/bgp_commands_test.py @@ -2,15 +2,19 @@ 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: @@ -277,6 +281,44 @@ Total number of neighbors 23 """ +SHOW_BGP_SUMMARY_V4_NO_EXT_NEIGHBORS = """ +IPv4 Unicast Summary: +asic0: 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_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 @@ -430,6 +472,7 @@ def teardown_class(cls): dbconnector.load_database_config() + class TestBgpCommandsMultiAsic(object): @classmethod def setup_class(cls): @@ -439,6 +482,8 @@ def setup_class(cls): 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( @@ -453,6 +498,7 @@ def test_bgp_summary_multi_asic_no_v4_neigh( 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( @@ -467,7 +513,39 @@ def test_bgp_summary_multi_asic_no_v6_neigh( assert result.exit_code == 0 assert result.output == show_error_no_v6_neighbor_multi_asic - @classmethod + + @patch.object(bgp_util, 'get_external_bgp_neighbors_dict', mock.MagicMock(return_value={})) + @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_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"], []) + print("{}".format(result.output)) + assert result.exit_code == 0 + assert result.output == SHOW_BGP_SUMMARY_V4_NO_EXT_NEIGHBORS + + + @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 diff --git a/tests/conftest.py b/tests/conftest.py index 1db272c1dc..fc503c5223 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -350,11 +350,29 @@ def mock_run_show_sum_bgp_command(vtysh_cmd, bgp_namespace, vtysh_shell_cmd=cons 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): + 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 "" + + _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 else: bgp_util.run_bgp_command = mock_run_bgp_command diff --git a/tests/mock_tables/asic0/config_db.json b/tests/mock_tables/asic0/config_db.json index de20194a64..4bb4c9d9e9 100644 --- a/tests/mock_tables/asic0/config_db.json +++ b/tests/mock_tables/asic0/config_db.json @@ -247,6 +247,36 @@ "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", 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 0000000000..c64a3d3467 --- /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 0000000000..b89597e12a --- /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/asic1/config_db.json b/tests/mock_tables/asic1/config_db.json index f9fa66a048..1cded68149 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/no_ext_bgp_neigh.json b/tests/mock_tables/asic1/no_ext_bgp_neigh.json new file mode 100644 index 0000000000..62f7dfc863 --- /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 0000000000..b177ea7d3c --- /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/utilities_common/bgp_util.py b/utilities_common/bgp_util.py index 58e8d9106b..814cc84b83 100644 --- a/utilities_common/bgp_util.py +++ b/utilities_common/bgp_util.py @@ -7,7 +7,7 @@ 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 @@ -106,6 +106,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 @@ -242,8 +254,21 @@ def get_bgp_summary_from_all_bgp_instances(af, namespace, display): # no bgp neighbors found so print basic device bgp info if key not in cmd_output_json: has_bgp_neighbors = False - vtysh_cmd = "show ip bgp json" - no_neigh_cmd_output = run_bgp_show_command(vtysh_cmd, ns) + 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: @@ -324,12 +349,18 @@ def process_bgp_summary_json(bgp_summary, cmd_output, device, has_bgp_neighbors= 'peerGroupMemory', 0) + cmd_output['peerGroupMemory'] else: # when there are no bgp neighbors, all values are zero - bgp_summary['peerCount'] = 0 - bgp_summary['peerMemory'] = 0 - bgp_summary['ribCount'] = 0 - bgp_summary['ribMemory'] = 0 - bgp_summary['peerGroupCount'] = 0 - bgp_summary['peerGroupMemory'] = 0 + 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 = {} From 359e6925e1cc8ed61ee4529aaed7503365525762 Mon Sep 17 00:00:00 2001 From: selvipal Date: Thu, 11 Jan 2024 08:28:30 -0800 Subject: [PATCH 75/75] Disable Key Validation feature during sonic-installation for Cisco Platforms (#3115) Disabling key validation feature in grub file as its not yet supported for Cisco platforms What I did Check if the platform we are installing the image on is a Cisco platform Return success if it is so we are on Cisco platform. This way, we do not perform signature verification as this feature is not yet supported on our platforms. How I did it Modified sonic-installer grub.py code --- sonic_installer/bootloader/grub.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sonic_installer/bootloader/grub.py b/sonic_installer/bootloader/grub.py index c2bfe8d534..d76ddcc0c7 100644 --- a/sonic_installer/bootloader/grub.py +++ b/sonic_installer/bootloader/grub.py @@ -157,7 +157,10 @@ def is_secure_upgrade_image_verification_supported(self): check_if_verification_is_enabled_and_supported_code = ''' SECURE_UPGRADE_ENABLED=0 - if [ -d "/sys/firmware/efi/efivars" ]; then + #Disabling the check for cisco-8000 platforms as platform-side support is not ready yet. This will be removed once platform + #support is added. + ASIC_TYPE=$(sonic-cfggen -y /etc/sonic/sonic_version.yml -v asic_type) + if [ -d "/sys/firmware/efi/efivars" ] && [[ ${ASIC_TYPE} != *"cisco-8000"* ]]; then if ! [ -n "$(ls -A /sys/firmware/efi/efivars 2>/dev/null)" ]; then mount -t efivarfs none /sys/firmware/efi/efivars 2>/dev/null fi