From 2af8cfa428af29551bdbdf3e44bbfe4fea4561b2 Mon Sep 17 00:00:00 2001 From: Sudharsan Dhamal Gopalarathnam Date: Tue, 22 Nov 2022 08:18:17 -0800 Subject: [PATCH 001/312] [VXLAN]Fixing traceback in show remotemac when mac moves during command execution (#2506) - What I did During the execution of show vxlan remotemac command, if a mac moves after the key is fetched but not the table fields, there will be the below traceback show vxlan remotemac 2.2.2.2 This is because the entry would have got removed before the CLI fetches the table. - How I did it Used get API to fetch table rather than indexing directly which resulted in traceback. Additionally fixed Python 3.8 SyntaxWarning. show vxlan remotemac all /usr/local/lib/python3.9/dist-packages/show/vxlan.py:101: SyntaxWarning: "is not" with a literal. Did you mean "!="? if vtep_sip is not '0.0.0.0': /usr/local/lib/python3.9/dist-packages/show/vxlan.py:108: SyntaxWarning: "is not" with a literal. Did you mean "!="? if vtep_sip is not '0.0.0.0': - How to verify it Perform mac move during show command execution and verify there is no traceback. --- show/vxlan.py | 8 ++--- tests/mock_tables/appl_db.json | 10 ++++++ tests/vxlan_test.py | 64 ++++++++++++++++++++++++++++++++++ 3 files changed, 78 insertions(+), 4 deletions(-) diff --git a/show/vxlan.py b/show/vxlan.py index c31a1491..3d045529 100644 --- a/show/vxlan.py +++ b/show/vxlan.py @@ -98,14 +98,14 @@ def interface(): vtepname = key1.pop(); if 'src_ip' in vxlan_table[key]: vtep_sip = vxlan_table[key]['src_ip'] - if vtep_sip is not '0.0.0.0': + if vtep_sip != '0.0.0.0': output = '\tVTEP Name : ' + vtepname + ', SIP : ' + vxlan_table[key]['src_ip'] else: output = '\tVTEP Name : ' + vtepname click.echo(output) - if vtep_sip is not '0.0.0.0': + if vtep_sip != '0.0.0.0': vxlan_table = config_db.get_table('VXLAN_EVPN_NVO') vxlan_keys = vxlan_table.keys() if vxlan_keys is not None: @@ -307,8 +307,8 @@ def remotemac(remote_vtep_ip, count): vxlan_table = db.get_all(db.APPL_DB, key); if vxlan_table is None: continue - rmtip = vxlan_table['remote_vtep'] - if remote_vtep_ip != 'all' and rmtip != remote_vtep_ip: + rmtip = vxlan_table.get('remote_vtep') + if remote_vtep_ip != 'all' and rmtip != remote_vtep_ip or rmtip is None: continue if count is None: body.append([vlan, mac, rmtip, vxlan_table['vni'], vxlan_table['type']]) diff --git a/tests/mock_tables/appl_db.json b/tests/mock_tables/appl_db.json index fd60d8b1..8554a07e 100644 --- a/tests/mock_tables/appl_db.json +++ b/tests/mock_tables/appl_db.json @@ -290,6 +290,16 @@ "VXLAN_REMOTE_VNI_TABLE:Vlan200:25.25.25.27": { "vni": "200" }, + "VXLAN_FDB_TABLE:Vlan200:00:02:00:00:47:e2": { + "remote_vtep": "2.2.2.2", + "type": "dynamic", + "vni": "200" + }, + "VXLAN_FDB_TABLE:Vlan200:00:02:00:00:47:e3": { + "remote_vtep": "2.2.2.3", + "type": "dynamic", + "vni": "200" + }, "MUX_CABLE_TABLE:Ethernet32": { "state": "active" }, diff --git a/tests/vxlan_test.py b/tests/vxlan_test.py index 4404ba9d..61c78dc4 100644 --- a/tests/vxlan_test.py +++ b/tests/vxlan_test.py @@ -112,6 +112,38 @@ """ +show_vxlan_remotemac_all_output="""\ ++---------+-------------------+--------------+-------+---------+ +| VLAN | MAC | RemoteVTEP | VNI | Type | ++=========+===================+==============+=======+=========+ +| Vlan200 | 00:02:00:00:47:e2 | 2.2.2.2 | 200 | dynamic | ++---------+-------------------+--------------+-------+---------+ +| Vlan200 | 00:02:00:00:47:e3 | 2.2.2.3 | 200 | dynamic | ++---------+-------------------+--------------+-------+---------+ +Total count : 2 + +""" + +show_vxlan_remotemac_specific_output="""\ ++---------+-------------------+--------------+-------+---------+ +| VLAN | MAC | RemoteVTEP | VNI | Type | ++=========+===================+==============+=======+=========+ +| Vlan200 | 00:02:00:00:47:e2 | 2.2.2.2 | 200 | dynamic | ++---------+-------------------+--------------+-------+---------+ +Total count : 1 + +""" + +show_vxlan_remotemac_cnt_output="""\ +Total count : 2 + +""" + +show_vxlan_remotemac_specific_cnt_output="""\ +Total count : 1 + +""" + class TestVxlan(object): @classmethod def setup_class(cls): @@ -215,6 +247,38 @@ def test_show_vxlan_remotevni_specific_cnt(self): assert result.exit_code == 0 assert result.output == show_vxlan_remotevni_specific_cnt_output + def test_show_vxlan_remotemac(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["vxlan"].commands["remotemac"], ["all"]) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_vxlan_remotemac_all_output + + def test_show_vxlan_remotemac_specific(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["vxlan"].commands["remotemac"], ["2.2.2.2"]) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_vxlan_remotemac_specific_output + + def test_show_vxlan_remotemac_cnt(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["vxlan"].commands["remotemac"], ["all", "count"]) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_vxlan_remotemac_cnt_output + + def test_show_vxlan_remotemac_specific_cnt(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["vxlan"].commands["remotemac"], ["2.2.2.2", "count"]) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_vxlan_remotemac_specific_cnt_output + def test_config_vxlan_add(self): runner = CliRunner() db = Db() From addae730177555c1a5d276e93b2610833604e5b8 Mon Sep 17 00:00:00 2001 From: Vaibhav Hemant Dixit Date: Wed, 23 Nov 2022 10:10:36 -0800 Subject: [PATCH 002/312] Port 202012 DB migration changes to newer branches (#2515) Fixes sonic-net/sonic-buildimage#12643 Version on 202012 branch is missing in master and 202205 branch. This caused failures in upgrade from 202012 to newer branch images, where db_migrator experienced crash. This commit fixes the issue, and ports the version handling for 202012 to newer branches. --- scripts/db_migrator.py | 76 ++++++++++++++++++- scripts/db_migrator_constants.py | 32 ++++++++ .../acs-msn2700-t0-version_1_0_1.json | 1 + .../acs-msn2700-t0-version_1_0_2.json | 3 +- .../acs-msn2700-t0-version_1_0_3.json | 3 +- .../acs-msn2700-t0-version_1_0_4.json | 3 +- .../acs-msn2700-t0-version_1_0_5.json | 3 +- .../acs-msn2700-t0-version_1_0_6.json | 3 +- .../acs-msn2700-t0-version_3_0_0.json | 3 +- .../acs-msn2700-t0-version_3_0_3.json | 5 +- .../acs-msn2700-t1-version_1_0_1.json | 1 + .../acs-msn2700-t1-version_1_0_2.json | 1 + .../acs-msn2700-t1-version_1_0_3.json | 1 + .../acs-msn2700-t1-version_1_0_4.json | 1 + .../acs-msn2700-t1-version_1_0_5.json | 1 + .../acs-msn2700-t1-version_1_0_6.json | 1 + .../acs-msn2700-t1-version_3_0_0.json | 1 + .../acs-msn2700-t1-version_3_0_3.json | 5 +- .../acs-msn3700-t0-version_1_0_2.json | 1 + .../acs-msn3700-t0-version_1_0_3.json | 1 + .../acs-msn3700-t0-version_1_0_4.json | 1 + .../acs-msn3700-t0-version_1_0_5.json | 1 + .../acs-msn3700-t0-version_1_0_6.json | 1 + .../acs-msn3700-t0-version_3_0_0.json | 1 + .../acs-msn3700-t0-version_3_0_3.json | 5 +- .../acs-msn3700-t1-version_1_0_2.json | 1 + .../acs-msn3700-t1-version_1_0_3.json | 1 + .../acs-msn3700-t1-version_1_0_4.json | 1 + .../acs-msn3700-t1-version_1_0_5.json | 1 + .../acs-msn3700-t1-version_1_0_6.json | 1 + .../acs-msn3700-t1-version_3_0_0.json | 1 + .../acs-msn3700-t1-version_3_0_3.json | 5 +- .../acs-msn3800-t0-version_1_0_5.json | 1 + .../acs-msn3800-t0-version_1_0_6.json | 1 + .../acs-msn3800-t0-version_3_0_0.json | 1 + .../acs-msn3800-t0-version_3_0_3.json | 5 +- .../acs-msn3800-t1-version_1_0_5.json | 1 + .../acs-msn3800-t1-version_1_0_6.json | 1 + .../acs-msn3800-t1-version_3_0_0.json | 1 + .../acs-msn3800-t1-version_3_0_3.json | 5 +- .../acs-msn4700-t0-version_1_0_4.json | 1 + .../acs-msn4700-t0-version_1_0_5.json | 1 + .../acs-msn4700-t0-version_1_0_6.json | 1 + .../acs-msn4700-t0-version_3_0_0.json | 1 + .../acs-msn4700-t0-version_3_0_3.json | 1 + .../acs-msn4700-t1-version_1_0_4.json | 1 + .../acs-msn4700-t1-version_1_0_5.json | 1 + .../acs-msn4700-t1-version_1_0_6.json | 1 + .../acs-msn4700-t1-version_3_0_0.json | 1 + .../acs-msn4700-t1-version_3_0_3.json | 1 + ...nch_upgrade_to_version_2_0_2_expected.json | 26 +++++++ ...branch_upgrade_to_version_2_0_2_input.json | 3 + .../config_db/empty-config-expected.json | 3 + ...00-c28d8-single-pool-t0-version_1_0_4.json | 1 + ...00-c28d8-single-pool-t0-version_1_0_5.json | 1 + ...00-c28d8-single-pool-t0-version_1_0_6.json | 1 + ...00-c28d8-single-pool-t0-version_3_0_0.json | 1 + ...00-c28d8-single-pool-t0-version_3_0_3.json | 5 +- ...00-c28d8-single-pool-t1-version_1_0_4.json | 1 + ...00-c28d8-single-pool-t1-version_1_0_5.json | 1 + ...00-c28d8-single-pool-t1-version_1_0_6.json | 1 + ...00-c28d8-single-pool-t1-version_3_0_0.json | 1 + ...00-c28d8-single-pool-t1-version_3_0_3.json | 5 +- ...ellanox-sn2700-c28d8-t0-version_1_0_1.json | 1 + ...ellanox-sn2700-c28d8-t0-version_1_0_2.json | 1 + ...ellanox-sn2700-c28d8-t0-version_1_0_3.json | 1 + ...ellanox-sn2700-c28d8-t0-version_1_0_4.json | 1 + ...ellanox-sn2700-c28d8-t0-version_1_0_5.json | 1 + ...ellanox-sn2700-c28d8-t0-version_1_0_6.json | 1 + ...ellanox-sn2700-c28d8-t0-version_3_0_0.json | 1 + ...ellanox-sn2700-c28d8-t0-version_3_0_3.json | 5 +- ...ellanox-sn2700-c28d8-t1-version_1_0_1.json | 1 + ...ellanox-sn2700-c28d8-t1-version_1_0_2.json | 1 + ...ellanox-sn2700-c28d8-t1-version_1_0_3.json | 1 + ...ellanox-sn2700-c28d8-t1-version_1_0_4.json | 1 + ...ellanox-sn2700-c28d8-t1-version_1_0_5.json | 1 + ...ellanox-sn2700-c28d8-t1-version_1_0_6.json | 1 + ...ellanox-sn2700-c28d8-t1-version_3_0_0.json | 1 + ...ellanox-sn2700-c28d8-t1-version_3_0_3.json | 5 +- ...lanox-sn2700-d40c8s8-t0-version_1_0_5.json | 1 + ...lanox-sn2700-d40c8s8-t0-version_1_0_6.json | 1 + ...lanox-sn2700-d40c8s8-t0-version_3_0_0.json | 1 + ...lanox-sn2700-d40c8s8-t0-version_3_0_3.json | 5 +- ...lanox-sn2700-d40c8s8-t1-version_1_0_5.json | 1 + ...lanox-sn2700-d40c8s8-t1-version_1_0_6.json | 1 + ...lanox-sn2700-d40c8s8-t1-version_3_0_0.json | 1 + ...lanox-sn2700-d40c8s8-t1-version_3_0_3.json | 5 +- ...00-d48c8-single-pool-t0-version_1_0_4.json | 1 + ...00-d48c8-single-pool-t0-version_1_0_5.json | 1 + ...00-d48c8-single-pool-t0-version_1_0_6.json | 1 + ...00-d48c8-single-pool-t0-version_3_0_0.json | 1 + ...00-d48c8-single-pool-t0-version_3_0_3.json | 5 +- ...00-d48c8-single-pool-t1-version_1_0_4.json | 1 + ...00-d48c8-single-pool-t1-version_1_0_5.json | 1 + ...00-d48c8-single-pool-t1-version_1_0_6.json | 1 + ...00-d48c8-single-pool-t1-version_3_0_0.json | 1 + ...00-d48c8-single-pool-t1-version_3_0_3.json | 5 +- ...ellanox-sn2700-d48c8-t0-version_1_0_1.json | 1 + ...ellanox-sn2700-d48c8-t0-version_1_0_2.json | 1 + ...ellanox-sn2700-d48c8-t0-version_1_0_3.json | 1 + ...ellanox-sn2700-d48c8-t0-version_1_0_4.json | 1 + ...ellanox-sn2700-d48c8-t0-version_1_0_5.json | 1 + ...ellanox-sn2700-d48c8-t0-version_1_0_6.json | 1 + ...ellanox-sn2700-d48c8-t0-version_3_0_0.json | 1 + ...ellanox-sn2700-d48c8-t0-version_3_0_3.json | 5 +- ...ellanox-sn2700-d48c8-t1-version_1_0_1.json | 1 + ...ellanox-sn2700-d48c8-t1-version_1_0_2.json | 1 + ...ellanox-sn2700-d48c8-t1-version_1_0_3.json | 1 + ...ellanox-sn2700-d48c8-t1-version_1_0_4.json | 1 + ...ellanox-sn2700-d48c8-t1-version_1_0_5.json | 1 + ...ellanox-sn2700-d48c8-t1-version_1_0_6.json | 1 + ...ellanox-sn2700-d48c8-t1-version_3_0_0.json | 1 + ...ellanox-sn2700-d48c8-t1-version_3_0_3.json | 5 +- ...x-sn2700-single-pool-t0-version_1_0_4.json | 3 +- ...x-sn2700-single-pool-t0-version_1_0_5.json | 3 +- ...x-sn2700-single-pool-t0-version_1_0_6.json | 3 +- ...x-sn2700-single-pool-t0-version_3_0_0.json | 3 +- ...x-sn2700-single-pool-t0-version_3_0_3.json | 5 +- ...x-sn2700-single-pool-t1-version_1_0_4.json | 1 + ...x-sn2700-single-pool-t1-version_1_0_5.json | 1 + ...x-sn2700-single-pool-t1-version_1_0_6.json | 1 + ...x-sn2700-single-pool-t1-version_3_0_0.json | 1 + ...x-sn2700-single-pool-t1-version_3_0_3.json | 5 +- .../mellanox-sn2700-t0-version_1_0_1.json | 1 + .../mellanox-sn2700-t0-version_1_0_2.json | 1 + .../mellanox-sn2700-t0-version_1_0_3.json | 1 + .../mellanox-sn2700-t0-version_1_0_4.json | 1 + .../mellanox-sn2700-t0-version_1_0_5.json | 1 + .../mellanox-sn2700-t0-version_1_0_6.json | 1 + .../mellanox-sn2700-t0-version_3_0_0.json | 1 + .../mellanox-sn2700-t0-version_3_0_3.json | 5 +- .../mellanox-sn2700-t1-version_1_0_1.json | 1 + .../mellanox-sn2700-t1-version_1_0_2.json | 1 + .../mellanox-sn2700-t1-version_1_0_3.json | 1 + .../mellanox-sn2700-t1-version_1_0_4.json | 1 + .../mellanox-sn2700-t1-version_1_0_5.json | 1 + .../mellanox-sn2700-t1-version_1_0_6.json | 1 + .../mellanox-sn2700-t1-version_3_0_0.json | 1 + .../mellanox-sn2700-t1-version_3_0_3.json | 5 +- .../mellanox-sn3800-c64-t0-version_1_0_5.json | 1 + .../mellanox-sn3800-c64-t0-version_1_0_6.json | 1 + .../mellanox-sn3800-c64-t0-version_3_0_0.json | 1 + .../mellanox-sn3800-c64-t0-version_3_0_3.json | 5 +- .../mellanox-sn3800-c64-t1-version_1_0_5.json | 1 + .../mellanox-sn3800-c64-t1-version_1_0_6.json | 1 + .../mellanox-sn3800-c64-t1-version_3_0_0.json | 1 + .../mellanox-sn3800-c64-t1-version_3_0_3.json | 5 +- ...llanox-sn3800-d112c8-t0-version_1_0_5.json | 1 + ...llanox-sn3800-d112c8-t0-version_1_0_6.json | 1 + ...llanox-sn3800-d112c8-t0-version_3_0_0.json | 1 + ...llanox-sn3800-d112c8-t0-version_3_0_3.json | 5 +- ...llanox-sn3800-d112c8-t1-version_1_0_5.json | 1 + ...llanox-sn3800-d112c8-t1-version_1_0_6.json | 1 + ...llanox-sn3800-d112c8-t1-version_3_0_0.json | 1 + ...llanox-sn3800-d112c8-t1-version_3_0_3.json | 5 +- ...llanox-sn3800-d24c52-t0-version_1_0_5.json | 1 + ...llanox-sn3800-d24c52-t0-version_1_0_6.json | 1 + ...llanox-sn3800-d24c52-t0-version_3_0_0.json | 1 + ...llanox-sn3800-d24c52-t0-version_3_0_3.json | 5 +- ...llanox-sn3800-d24c52-t1-version_1_0_5.json | 1 + ...llanox-sn3800-d24c52-t1-version_1_0_6.json | 1 + ...llanox-sn3800-d24c52-t1-version_3_0_0.json | 1 + ...llanox-sn3800-d24c52-t1-version_3_0_3.json | 5 +- ...llanox-sn3800-d28c50-t0-version_1_0_5.json | 1 + ...llanox-sn3800-d28c50-t0-version_1_0_6.json | 1 + ...llanox-sn3800-d28c50-t0-version_3_0_0.json | 1 + ...llanox-sn3800-d28c50-t0-version_3_0_3.json | 5 +- ...llanox-sn3800-d28c50-t1-version_1_0_5.json | 1 + ...llanox-sn3800-d28c50-t1-version_1_0_6.json | 1 + ...llanox-sn3800-d28c50-t1-version_3_0_0.json | 1 + ...llanox-sn3800-d28c50-t1-version_3_0_3.json | 5 +- .../non-default-config-expected.json | 3 +- .../config_db/non-default-config-input.json | 3 +- ...fault-lossless-profile-in-pg-expected.json | 1 + ...-default-lossless-profile-in-pg-input.json | 1 + ...-default-lossy-profile-in-pg-expected.json | 1 + ...non-default-lossy-profile-in-pg-input.json | 1 + .../config_db/non-default-pg-expected.json | 1 + .../config_db/non-default-pg-input.json | 1 + .../config_db/non-default-xoff-expected.json | 1 + .../config_db/non-default-xoff-input.json | 1 + ...db_field_value_reference_format_3_0_1.json | 3 +- ...db_field_value_reference_format_3_0_3.json | 3 +- ...-buffer-dynamic-double-pools-expected.json | 1 + ...ing-buffer-dynamic-double-pools-input.json | 1 + ...g-buffer-dynamic-single-pool-expected.json | 1 + ...ming-buffer-dynamic-single-pool-input.json | 1 + ...fer-traditional-double-pools-expected.json | 1 + ...buffer-traditional-double-pools-input.json | 1 + ...ffer-traditional-single-pool-expected.json | 1 + ...-buffer-traditional-single-pool-input.json | 1 + ...reclaiming-buffer-warmreboot-expected.json | 1 + .../reclaiming-buffer-warmreboot-input.json | 1 + tests/db_migrator_test.py | 26 +++++++ 194 files changed, 422 insertions(+), 72 deletions(-) create mode 100644 scripts/db_migrator_constants.py create mode 100644 tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_expected.json create mode 100644 tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_input.json diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index 1aa9fb28..deee4b55 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -8,7 +8,9 @@ import re from sonic_py_common import device_info, logger +from swsssdk import ConfigDBConnector, SonicDBConfig from swsscommon.swsscommon import SonicV2Connector, ConfigDBConnector, SonicDBConfig +from db_migrator_constants import RESTAPI, TELEMETRY, CONSOLE_SWITCH INIT_CFG_FILE = '/etc/sonic/init_cfg.json' @@ -489,6 +491,61 @@ def migrate_qos_fieldval_reference_format(self): self.migrate_qos_db_fieldval_reference_remove(qos_table_list, self.configDB, self.configDB.CONFIG_DB, '|') return True + def migrate_vxlan_config(self): + log.log_notice('Migrate VXLAN table config') + # Collect VXLAN data from config DB + vxlan_data = self.configDB.keys(self.configDB.CONFIG_DB, "VXLAN_TUNNEL*") + if not vxlan_data: + # do nothing if vxlan entries are not present in configdb + return + for vxlan_table in vxlan_data: + vxlan_map_mapping = self.configDB.get_all(self.configDB.CONFIG_DB, vxlan_table) + tunnel_keys = vxlan_table.split(self.configDB.KEY_SEPARATOR) + tunnel_keys[0] = tunnel_keys[0] + "_TABLE" + vxlan_table = self.appDB.get_db_separator(self.appDB.APPL_DB).join(tunnel_keys) + for field, value in vxlan_map_mapping.items(): + # add entries from configdb to appdb only when they are missing + if not self.appDB.hexists(self.appDB.APPL_DB, vxlan_table, field): + log.log_notice('Copying vxlan entries from configdb to appdb: updated {} with {}:{}'.format( + vxlan_table, field, value)) + self.appDB.set(self.appDB.APPL_DB, vxlan_table, field, value) + + def migrate_restapi(self): + # RESTAPI - add missing key + log.log_notice('Migrate RESTAPI configuration') + config = self.configDB.get_entry('RESTAPI', 'config') + if not config: + self.configDB.set_entry("RESTAPI", "config", RESTAPI.get("config")) + certs = self.configDB.get_entry('RESTAPI', 'certs') + if not certs: + self.configDB.set_entry("RESTAPI", "certs", RESTAPI.get("certs")) + + def migrate_telemetry(self): + # TELEMETRY - add missing key + log.log_notice('Migrate TELEMETRY configuration') + gnmi = self.configDB.get_entry('TELEMETRY', 'gnmi') + if not gnmi: + self.configDB.set_entry("TELEMETRY", "gnmi", TELEMETRY.get("gnmi")) + certs = self.configDB.get_entry('TELEMETRY', 'certs') + if not certs: + self.configDB.set_entry("TELEMETRY", "certs", TELEMETRY.get("certs")) + + def migrate_console_switch(self): + # CONSOLE_SWITCH - add missing key + log.log_notice('Migrate CONSOLE_SWITCH configuration') + console_mgmt = self.configDB.get_entry('CONSOLE_SWITCH', 'console_mgmt') + if not console_mgmt: + self.configDB.set_entry("CONSOLE_SWITCH", "console_mgmt", + CONSOLE_SWITCH.get("console_mgmt")) + + def migrate_device_metadata(self): + # DEVICE_METADATA - synchronous_mode entry + log.log_notice('Migrate DEVICE_METADATA missing configuration (synchronous_mode=enable)') + metadata = self.configDB.get_entry('DEVICE_METADATA', 'localhost') + if 'synchronous_mode' not in metadata: + metadata['synchronous_mode'] = 'enable' + self.configDB.set_entry('DEVICE_METADATA', 'localhost', metadata) + def migrate_port_qos_map_global(self): """ Generate dscp_to_tc_map for switch. @@ -651,10 +708,25 @@ def version_2_0_0(self): def version_2_0_1(self): """ - Version 2_0_1. - This is the latest version for 202012 branch + Handle and migrate missing config that results from cross branch upgrade to + 202012 as target. """ log.log_info('Handling version_2_0_1') + self.migrate_vxlan_config() + self.migrate_restapi() + self.migrate_telemetry() + self.migrate_console_switch() + self.migrate_device_metadata() + + self.set_version('version_2_0_2') + return 'version_2_0_2' + + def version_2_0_2(self): + """ + Version 2_0_2 + This is the latest version for 202012 branch + """ + log.log_info('Handling version_2_0_2') self.set_version('version_3_0_0') return 'version_3_0_0' diff --git a/scripts/db_migrator_constants.py b/scripts/db_migrator_constants.py new file mode 100644 index 00000000..71237a56 --- /dev/null +++ b/scripts/db_migrator_constants.py @@ -0,0 +1,32 @@ +RESTAPI = { + "config": { + "client_auth": "true", + "log_level": "info", + "allow_insecure": "false" + }, + "certs": { + "server_key": "/etc/sonic/credentials/restapiserver.key", + "ca_crt": "/etc/sonic/credentials/AME_ROOT_CERTIFICATE.pem", + "server_crt": "/etc/sonic/credentials/restapiserver.crt", + "client_crt_cname": "client.restapi.sonic.gbl" + } + } + +TELEMETRY = { + "gnmi": { + "client_auth": "true", + "log_level": "2", + "port": "50051" + }, + "certs": { + "server_key": "/etc/sonic/telemetry/streamingtelemetryserver.key", + "ca_crt": "/etc/sonic/telemetry/dsmsroot.cer", + "server_crt": "/etc/sonic/telemetry/streamingtelemetryserver.cer" + } +} + +CONSOLE_SWITCH = { + "console_mgmt": { + "enabled": "no" + } +} diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_1.json b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_1.json index 731bcea1..c9e5c04a 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_1.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_1.json @@ -731,6 +731,7 @@ "hwsku": "ACS-MSN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_2.json b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_2.json index 9c01e38d..07966ad7 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_2.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_2.json @@ -737,7 +737,8 @@ "default_pfcwd_status": "disable", "bgp_asn": "65100", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_3.json b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_3.json index 2ef38d24..66f6c582 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_3.json @@ -737,7 +737,8 @@ "default_pfcwd_status": "disable", "bgp_asn": "65100", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_4.json b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_4.json index d92a6336..6848917e 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_4.json @@ -737,7 +737,8 @@ "default_pfcwd_status": "disable", "bgp_asn": "65100", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_5.json index 84eccb49..96fd7dd8 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_5.json @@ -737,7 +737,8 @@ "default_pfcwd_status": "disable", "bgp_asn": "65100", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_6.json index 98130c4b..f5493689 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_1_0_6.json @@ -737,7 +737,8 @@ "default_pfcwd_status": "disable", "bgp_asn": "65100", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_0.json index aab45921..4cab434e 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_0.json @@ -689,7 +689,8 @@ "bgp_asn": "65100", "buffer_model": "dynamic", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "LOSSLESS_TRAFFIC_PATTERN|AZURE": { "small_packet_percentage": "100", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_3.json index d740449d..89f46af5 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_3.json @@ -689,7 +689,8 @@ "bgp_asn": "65100", "buffer_model": "dynamic", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "LOSSLESS_TRAFFIC_PATTERN|AZURE": { "small_packet_percentage": "100", @@ -1016,4 +1017,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_1.json b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_1.json index 62a74e7d..c97f51d5 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_1.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_1.json @@ -824,6 +824,7 @@ "hwsku": "ACS-MSN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_2.json b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_2.json index 48c6e36a..25d27015 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_2.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_2.json @@ -824,6 +824,7 @@ "hwsku": "ACS-MSN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_3.json b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_3.json index 2f37a3e2..9a438f3b 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_3.json @@ -824,6 +824,7 @@ "hwsku": "ACS-MSN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_4.json b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_4.json index 837abc8b..13758db2 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_4.json @@ -824,6 +824,7 @@ "hwsku": "ACS-MSN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_5.json index f24650a2..6557d7f9 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_5.json @@ -824,6 +824,7 @@ "hwsku": "ACS-MSN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_6.json index b3b4b312..205620de 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_1_0_6.json @@ -824,6 +824,7 @@ "hwsku": "ACS-MSN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_0.json index c3a9fb20..d7698cac 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_0.json @@ -754,6 +754,7 @@ "hwsku": "ACS-MSN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_3.json index d77a4095..b9ad1706 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_3.json @@ -761,7 +761,8 @@ "bgp_asn": "65100", "buffer_model": "dynamic", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "unified", + "synchronous_mode": "enable" }, "LOSSLESS_TRAFFIC_PATTERN|AZURE": { "small_packet_percentage": "100", @@ -1088,4 +1089,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_2.json b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_2.json index dad6528b..e3bb4f10 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_2.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_2.json @@ -738,6 +738,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_3.json b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_3.json index ed90ec38..ee33adc8 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_3.json @@ -864,6 +864,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_4.json b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_4.json index 508dc5dc..45af1c29 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_4.json @@ -864,6 +864,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_5.json index 4ed4668d..04448a26 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_5.json @@ -864,6 +864,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_6.json index 48ba24ab..825d3c49 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_1_0_6.json @@ -864,6 +864,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_3_0_0.json index 6bc2ee54..18876fb4 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_3_0_0.json @@ -808,6 +808,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_3_0_3.json index ea78053b..eb6138bd 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t0-version_3_0_3.json @@ -817,7 +817,8 @@ "buffer_model": "dynamic", "deployment_id": "1", "docker_routing_config_mode": "separated", - "cloudtype": "None" + "cloudtype": "None", + "synchronous_mode": "enable" }, "LOSSLESS_TRAFFIC_PATTERN|AZURE": { "small_packet_percentage": "100", @@ -1902,4 +1903,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_2.json b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_2.json index d2a12903..80d96b8b 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_2.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_2.json @@ -838,6 +838,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_3.json b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_3.json index 57b10655..0743a08b 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_3.json @@ -940,6 +940,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_4.json b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_4.json index e97efaa0..764e2639 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_4.json @@ -940,6 +940,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_5.json index 0e4d8035..431218c6 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_5.json @@ -940,6 +940,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_6.json index bb26b43b..a815bf97 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_1_0_6.json @@ -940,6 +940,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_3_0_0.json index 919888d8..c3fb115b 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_3_0_0.json @@ -856,6 +856,7 @@ "hwsku": "ACS-MSN3700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn3700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_3_0_3.json index 62d00c4e..fc34c087 100644 --- a/tests/db_migrator_input/config_db/acs-msn3700-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn3700-t1-version_3_0_3.json @@ -865,7 +865,8 @@ "buffer_model": "dynamic", "deployment_id": "1", "docker_routing_config_mode": "separated", - "cloudtype": "None" + "cloudtype": "None", + "synchronous_mode": "enable" }, "LOSSLESS_TRAFFIC_PATTERN|AZURE": { "small_packet_percentage": "100", @@ -1950,4 +1951,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/acs-msn3800-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/acs-msn3800-t0-version_1_0_5.json index b6fddf62..df40c504 100644 --- a/tests/db_migrator_input/config_db/acs-msn3800-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/acs-msn3800-t0-version_1_0_5.json @@ -988,6 +988,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/acs-msn3800-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/acs-msn3800-t0-version_1_0_6.json index c655ab4d..aadef8ed 100644 --- a/tests/db_migrator_input/config_db/acs-msn3800-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/acs-msn3800-t0-version_1_0_6.json @@ -988,6 +988,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/acs-msn3800-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/acs-msn3800-t0-version_3_0_0.json index 71a0c751..13723251 100644 --- a/tests/db_migrator_input/config_db/acs-msn3800-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/acs-msn3800-t0-version_3_0_0.json @@ -971,6 +971,7 @@ "buffer_model": "dynamic", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "LOSSLESS_TRAFFIC_PATTERN|AZURE": { diff --git a/tests/db_migrator_input/config_db/acs-msn3800-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/acs-msn3800-t0-version_3_0_3.json index 8d845116..a1f6a8e1 100644 --- a/tests/db_migrator_input/config_db/acs-msn3800-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn3800-t0-version_3_0_3.json @@ -971,7 +971,8 @@ "buffer_model": "dynamic", "cloudtype": "None", "type": "ToRRouter", - "deployment_id": "1" + "deployment_id": "1", + "synchronous_mode": "enable" }, "LOSSLESS_TRAFFIC_PATTERN|AZURE": { "small_packet_percentage": "100", @@ -2036,4 +2037,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/acs-msn3800-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/acs-msn3800-t1-version_1_0_5.json index 9ea07af0..2916e541 100644 --- a/tests/db_migrator_input/config_db/acs-msn3800-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/acs-msn3800-t1-version_1_0_5.json @@ -1102,6 +1102,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/acs-msn3800-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/acs-msn3800-t1-version_1_0_6.json index 04983465..e80ca338 100644 --- a/tests/db_migrator_input/config_db/acs-msn3800-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/acs-msn3800-t1-version_1_0_6.json @@ -1102,6 +1102,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/acs-msn3800-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/acs-msn3800-t1-version_3_0_0.json index 97bdf8f2..b399934c 100644 --- a/tests/db_migrator_input/config_db/acs-msn3800-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/acs-msn3800-t1-version_3_0_0.json @@ -1019,6 +1019,7 @@ "buffer_model": "dynamic", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "LOSSLESS_TRAFFIC_PATTERN|AZURE": { diff --git a/tests/db_migrator_input/config_db/acs-msn3800-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/acs-msn3800-t1-version_3_0_3.json index 70b8b316..d97c95c5 100644 --- a/tests/db_migrator_input/config_db/acs-msn3800-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn3800-t1-version_3_0_3.json @@ -1019,7 +1019,8 @@ "buffer_model": "dynamic", "cloudtype": "None", "type": "LeafRouter", - "deployment_id": "1" + "deployment_id": "1", + "synchronous_mode": "enable" }, "LOSSLESS_TRAFFIC_PATTERN|AZURE": { "small_packet_percentage": "100", @@ -2084,4 +2085,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_4.json b/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_4.json index 34b69749..1e71535a 100644 --- a/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_4.json @@ -745,6 +745,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_5.json index 313ca979..c90b68be 100644 --- a/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_5.json @@ -949,6 +949,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_6.json index 1eb7bc9f..553cd3fd 100644 --- a/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/acs-msn4700-t0-version_1_0_6.json @@ -949,6 +949,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn4700-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/acs-msn4700-t0-version_3_0_0.json index a3085167..a421b638 100644 --- a/tests/db_migrator_input/config_db/acs-msn4700-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/acs-msn4700-t0-version_3_0_0.json @@ -886,6 +886,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn4700-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/acs-msn4700-t0-version_3_0_3.json index dc40c8fe..b00b45ac 100644 --- a/tests/db_migrator_input/config_db/acs-msn4700-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn4700-t0-version_3_0_3.json @@ -886,6 +886,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_4.json b/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_4.json index 763342e1..5adef7f9 100644 --- a/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_4.json @@ -1050,6 +1050,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_5.json index c043e37b..a71bc649 100644 --- a/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_5.json @@ -1050,6 +1050,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_6.json index 6716ec67..6bcb4aff 100644 --- a/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/acs-msn4700-t1-version_1_0_6.json @@ -1050,6 +1050,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn4700-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/acs-msn4700-t1-version_3_0_0.json index 8698a6bc..5b6ff7d6 100644 --- a/tests/db_migrator_input/config_db/acs-msn4700-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/acs-msn4700-t1-version_3_0_0.json @@ -952,6 +952,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/acs-msn4700-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/acs-msn4700-t1-version_3_0_3.json index aec14ade..3aedb14d 100644 --- a/tests/db_migrator_input/config_db/acs-msn4700-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn4700-t1-version_3_0_3.json @@ -952,6 +952,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_expected.json b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_expected.json new file mode 100644 index 00000000..c9752292 --- /dev/null +++ b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_expected.json @@ -0,0 +1,26 @@ +{ + "RESTAPI|config": { + "client_auth": "true", + "log_level": "info", + "allow_insecure": "false" + }, + "RESTAPI|certs": { + "server_key": "/etc/sonic/credentials/restapiserver.key", + "ca_crt": "/etc/sonic/credentials/AME_ROOT_CERTIFICATE.pem", + "server_crt": "/etc/sonic/credentials/restapiserver.crt", + "client_crt_cname": "client.restapi.sonic.gbl" + }, + "TELEMETRY|gnmi": { + "client_auth": "true", + "log_level": "2", + "port": "50051" + }, + "TELEMETRY|certs": { + "server_key": "/etc/sonic/telemetry/streamingtelemetryserver.key", + "ca_crt": "/etc/sonic/telemetry/dsmsroot.cer", + "server_crt": "/etc/sonic/telemetry/streamingtelemetryserver.cer" + }, + "CONSOLE_SWITCH|console_mgmt": { + "enabled": "no" + } +} diff --git a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_input.json b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_input.json new file mode 100644 index 00000000..bfd870e4 --- /dev/null +++ b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_input.json @@ -0,0 +1,3 @@ +{ +} + diff --git a/tests/db_migrator_input/config_db/empty-config-expected.json b/tests/db_migrator_input/config_db/empty-config-expected.json index b837c97a..eebe7eaf 100644 --- a/tests/db_migrator_input/config_db/empty-config-expected.json +++ b/tests/db_migrator_input/config_db/empty-config-expected.json @@ -1,5 +1,8 @@ { "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" + }, + "DEVICE_METADATA|localhost": { + "synchronous_mode": "enable" } } diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_4.json index 4509a555..8add0988 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_4.json @@ -726,6 +726,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_5.json index 44c05c9d..af2f6b4d 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_5.json @@ -727,6 +727,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_6.json index c5369e63..9881ff7b 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_1_0_6.json @@ -727,6 +727,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_0.json index 043d7741..f9d6c6ce 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_0.json @@ -727,6 +727,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_3.json index d74f7411..e6cf4111 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_3.json @@ -734,7 +734,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "unified", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1057,4 +1058,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_4.json index 0acf1b0f..c89504ce 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_4.json @@ -819,6 +819,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_5.json index 91e78b8b..c8464391 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_5.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_6.json index c7d7070c..16845fd9 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_1_0_6.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_0.json index d53fc654..a77c75e9 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_0.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_3.json index 3b6c1d97..81f6b1f1 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_3.json @@ -827,7 +827,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "unified", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1150,4 +1151,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_1.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_1.json index b85b8511..e960998c 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_1.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_1.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_2.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_2.json index 6648cce0..f4c80a01 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_2.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_2.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_3.json index c80dce58..920f88d4 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_3.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_4.json index 2ba6c825..d150d1a3 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_4.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_5.json index 70e25898..e3ff2f75 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_5.json @@ -732,6 +732,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_6.json index 8b978e50..2f797234 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_1_0_6.json @@ -732,6 +732,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_0.json index 747e3327..dac897f7 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_0.json @@ -732,6 +732,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_3.json index 842ef4f2..76d095e9 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_3.json @@ -739,7 +739,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "unified", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1062,4 +1063,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_1.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_1.json index 7ec20f8c..b5e515a4 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_1.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_1.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_2.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_2.json index 31a1179a..472550b6 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_2.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_2.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_3.json index 855b16af..6c562bc0 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_3.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_4.json index 2b0ad785..13e241b8 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_4.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_5.json index 19aeca0b..2890da13 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_5.json @@ -825,6 +825,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_6.json index 9c6b896d..8098a3cf 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_1_0_6.json @@ -825,6 +825,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_0.json index 67ff5f7e..05ca9f95 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_0.json @@ -825,6 +825,7 @@ "hwsku": "Mellanox-SN2700-C28D8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_3.json index 64294841..abccee20 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_3.json @@ -832,7 +832,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "unified", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1155,4 +1156,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_1_0_5.json index 752f4001..f0ef79e9 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_1_0_5.json @@ -727,6 +727,7 @@ "hwsku": "Mellanox-SN2700-D40C8S8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_1_0_6.json index 288e0e72..97bfefde 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_1_0_6.json @@ -727,6 +727,7 @@ "hwsku": "Mellanox-SN2700-D40C8S8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_0.json index 4974c180..cae7a8de 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_0.json @@ -727,6 +727,7 @@ "hwsku": "Mellanox-SN2700-D40C8S8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_3.json index 72e6ba3f..9367e7d6 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_3.json @@ -734,7 +734,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "unified", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1057,4 +1058,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_1_0_5.json index 94ec2388..770a5864 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_1_0_5.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700-D40C8S8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_1_0_6.json index b848c677..998a3f39 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_1_0_6.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700-D40C8S8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_0.json index b0a79247..51f0ab67 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_0.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700-D40C8S8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_3.json index fb617e0b..c2f12ef9 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_3.json @@ -827,7 +827,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "unified", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1150,4 +1151,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_4.json index 53921af1..5854e645 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_4.json @@ -726,6 +726,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_5.json index 9e3c1387..ea741eca 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_5.json @@ -727,6 +727,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_6.json index 60e34b70..4ca5faa5 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_1_0_6.json @@ -727,6 +727,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_0.json index 8b3d46d0..9aeb0b2b 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_0.json @@ -727,6 +727,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_3.json index 0ae92bac..52b9c7f5 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_3.json @@ -734,7 +734,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "unified", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1057,4 +1058,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_4.json index 647a0eef..6486ebdb 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_4.json @@ -819,6 +819,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_5.json index ed3bf55e..3ae16cd1 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_5.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_6.json index a57f2b68..853bb5c1 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_1_0_6.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_0.json index a5f8b14f..6add5489 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_0.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_3.json index f8618177..082bd157 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_3.json @@ -827,7 +827,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "unified", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1150,4 +1151,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_1.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_1.json index 2e9f075f..379445f8 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_1.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_1.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_2.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_2.json index 1bb45cc2..37948076 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_2.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_2.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_3.json index 6df051fa..66777930 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_3.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_4.json index 83edfa3b..819e670c 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_4.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_5.json index 87788b7b..6e351f2a 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_5.json @@ -732,6 +732,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_6.json index e5319181..1e61a9e9 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_1_0_6.json @@ -732,6 +732,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_0.json index 0d8f258c..adf0fb31 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_0.json @@ -732,6 +732,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_3.json index abaa38c2..5282b3e7 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_3.json @@ -739,7 +739,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "unified", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1062,4 +1063,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_1.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_1.json index 93b622b8..eaedbbb1 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_1.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_1.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_2.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_2.json index 5fea4f31..52f3d507 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_2.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_2.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_3.json index 69331752..51fecae2 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_3.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_4.json index 226ecf05..b18cc6e4 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_4.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_5.json index f1a2f4fc..7b22d88c 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_5.json @@ -825,6 +825,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_6.json index e43f55ee..7ae6b090 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_1_0_6.json @@ -825,6 +825,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_0.json index 17a2cc0b..09df55a4 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_0.json @@ -825,6 +825,7 @@ "hwsku": "Mellanox-SN2700-D48C8", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_3.json index af7744f1..e20f0dce 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_3.json @@ -832,7 +832,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "unified", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1155,4 +1156,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_4.json index fdc77e9a..478aa3dc 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_4.json @@ -732,7 +732,8 @@ "default_pfcwd_status": "disable", "bgp_asn": "65100", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_5.json index 0e0d4e91..ead6486d 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_5.json @@ -733,7 +733,8 @@ "default_pfcwd_status": "disable", "bgp_asn": "65100", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_6.json index 37a3cc2b..d20b0db1 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_1_0_6.json @@ -733,7 +733,8 @@ "default_pfcwd_status": "disable", "bgp_asn": "65100", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_0.json index 89d5fda1..e0f5d3fb 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_0.json @@ -734,7 +734,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_3.json index 96afbca2..39956f85 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_3.json @@ -734,7 +734,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1057,4 +1058,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_4.json index c99bad1d..5c876d66 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_4.json @@ -819,6 +819,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_5.json index 4bf50c34..bb5b2da3 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_5.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_6.json index 8c35bd19..b290fd57 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_1_0_6.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_0.json index 323afdd7..b72e1498 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_0.json @@ -820,6 +820,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_3.json index 1ca4b8ae..28b01ee3 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_3.json @@ -827,7 +827,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "unified", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1150,4 +1151,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_1.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_1.json index 4a38a382..94ecade3 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_1.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_1.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_2.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_2.json index da5d5ebe..f97f5dd5 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_2.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_2.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_3.json index c518a0a9..3843271a 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_3.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_4.json index de292362..80a9ff5c 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_4.json @@ -731,6 +731,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_5.json index 967726db..0f078f70 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_5.json @@ -732,6 +732,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_6.json index 088c63f5..9fdbcf7a 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_1_0_6.json @@ -732,6 +732,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_0.json index 8ffe5605..3b614fe0 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_0.json @@ -732,6 +732,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_3.json index b29b89a6..7bc0720e 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_3.json @@ -739,7 +739,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "unified", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1062,4 +1063,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_1.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_1.json index e0b75fa4..eaabe746 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_1.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_1.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_2.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_2.json index 5a785822..d98d906e 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_2.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_2.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_3.json index a5435837..15333f00 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_3.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_4.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_4.json index 5b1bceea..6bb8c338 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_4.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_4.json @@ -824,6 +824,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_5.json index 76ec1bb5..feb158e4 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_5.json @@ -825,6 +825,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_6.json index 81f7377f..a5eaedbb 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_1_0_6.json @@ -825,6 +825,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_0.json index 84c0f26e..a53b1bbd 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_0.json @@ -825,6 +825,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_3.json index cebc3167..203ac217 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_3.json @@ -832,7 +832,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "unified", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", @@ -1155,4 +1156,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_1_0_5.json index 94d64196..79bd49a9 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_1_0_5.json @@ -704,6 +704,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_1_0_6.json index e0d47020..3b7815cc 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_1_0_6.json @@ -704,6 +704,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_3_0_0.json index 12237674..6422d9ce 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_3_0_0.json @@ -705,6 +705,7 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_3_0_3.json index b799c389..027cc532 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t0-version_3_0_3.json @@ -705,7 +705,8 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "ToRRouter", - "deployment_id": "1" + "deployment_id": "1", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "index": "0", @@ -1766,4 +1767,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_1_0_5.json index a299500e..62560515 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_1_0_5.json @@ -826,6 +826,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_1_0_6.json index e5f078c9..0961703d 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_1_0_6.json @@ -826,6 +826,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_3_0_0.json index ffc51667..d172932f 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_3_0_0.json @@ -827,6 +827,7 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_3_0_3.json index bae0caed..c0ca921d 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-c64-t1-version_3_0_3.json @@ -827,7 +827,8 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "LeafRouter", - "deployment_id": "1" + "deployment_id": "1", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "index": "0", @@ -1888,4 +1889,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_1_0_5.json index 3d1650b1..85c078c8 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_1_0_5.json @@ -984,6 +984,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_1_0_6.json index 85664d39..9db400fb 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_1_0_6.json @@ -984,6 +984,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_3_0_0.json index c6b81cd3..85c2cfba 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_3_0_0.json @@ -985,6 +985,7 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_3_0_3.json index e44770b3..41b51441 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t0-version_3_0_3.json @@ -985,7 +985,8 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "ToRRouter", - "deployment_id": "1" + "deployment_id": "1", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "index": "0", @@ -2046,4 +2047,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_1_0_5.json index f0576552..c7809b71 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_1_0_5.json @@ -1098,6 +1098,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_1_0_6.json index 9e08f652..2bf0ab70 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_1_0_6.json @@ -1098,6 +1098,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_3_0_0.json index 36877e06..349bd02f 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_3_0_0.json @@ -1099,6 +1099,7 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_3_0_3.json index 1db78040..a3c05d3b 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d112c8-t1-version_3_0_3.json @@ -1099,7 +1099,8 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "LeafRouter", - "deployment_id": "1" + "deployment_id": "1", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "index": "0", @@ -2160,4 +2161,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_1_0_5.json index 9b331a15..7808bc45 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_1_0_5.json @@ -704,6 +704,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_1_0_6.json index edefc7e4..a7658656 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_1_0_6.json @@ -704,6 +704,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_3_0_0.json index bcbb6cb3..93942156 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_3_0_0.json @@ -705,6 +705,7 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_3_0_3.json index ee0e7e00..0d5131d5 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t0-version_3_0_3.json @@ -705,7 +705,8 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "ToRRouter", - "deployment_id": "1" + "deployment_id": "1", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "index": "0", @@ -1766,4 +1767,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_1_0_5.json index 5a0c41c8..875df364 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_1_0_5.json @@ -826,6 +826,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_1_0_6.json index 5a0c41c8..875df364 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_1_0_6.json @@ -826,6 +826,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_3_0_0.json index 408fe08b..07790160 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_3_0_0.json @@ -827,6 +827,7 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_3_0_3.json index 96367fae..a6cd6671 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d24c52-t1-version_3_0_3.json @@ -827,7 +827,8 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "LeafRouter", - "deployment_id": "1" + "deployment_id": "1", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "index": "0", @@ -1888,4 +1889,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_1_0_5.json index 340de9a2..0cf06832 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_1_0_5.json @@ -704,6 +704,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_1_0_6.json index 5d439de3..760dc26f 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_1_0_6.json @@ -704,6 +704,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_3_0_0.json index 87d27836..3e299821 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_3_0_0.json @@ -705,6 +705,7 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_3_0_3.json index a267b49c..67971e73 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t0-version_3_0_3.json @@ -705,7 +705,8 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "ToRRouter", - "deployment_id": "1" + "deployment_id": "1", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "index": "0", @@ -1766,4 +1767,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_1_0_5.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_1_0_5.json index 97403e34..5cd8f639 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_1_0_5.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_1_0_5.json @@ -826,6 +826,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_1_0_6.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_1_0_6.json index 97403e34..5cd8f639 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_1_0_6.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_1_0_6.json @@ -826,6 +826,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_3_0_0.json index a22fe139..3448ef3a 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_3_0_0.json @@ -827,6 +827,7 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "LeafRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_3_0_3.json index c5e62e27..cb94646d 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn3800-d28c50-t1-version_3_0_3.json @@ -827,7 +827,8 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "LeafRouter", - "deployment_id": "1" + "deployment_id": "1", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "index": "0", @@ -1888,4 +1889,4 @@ "VERSIONS|DATABASE": { "VERSION": "version_3_0_3" } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/non-default-config-expected.json b/tests/db_migrator_input/config_db/non-default-config-expected.json index 55cca5cb..13ae7aa2 100644 --- a/tests/db_migrator_input/config_db/non-default-config-expected.json +++ b/tests/db_migrator_input/config_db/non-default-config-expected.json @@ -762,7 +762,8 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "index": "1", diff --git a/tests/db_migrator_input/config_db/non-default-config-input.json b/tests/db_migrator_input/config_db/non-default-config-input.json index b806793f..3cdd3527 100644 --- a/tests/db_migrator_input/config_db/non-default-config-input.json +++ b/tests/db_migrator_input/config_db/non-default-config-input.json @@ -737,7 +737,8 @@ "default_pfcwd_status": "disable", "bgp_asn": "65100", "deployment_id": "1", - "type": "ToRRouter" + "type": "ToRRouter", + "synchronous_mode": "enable" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/non-default-lossless-profile-in-pg-expected.json b/tests/db_migrator_input/config_db/non-default-lossless-profile-in-pg-expected.json index ed18c0a8..fd724172 100644 --- a/tests/db_migrator_input/config_db/non-default-lossless-profile-in-pg-expected.json +++ b/tests/db_migrator_input/config_db/non-default-lossless-profile-in-pg-expected.json @@ -956,6 +956,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/non-default-lossless-profile-in-pg-input.json b/tests/db_migrator_input/config_db/non-default-lossless-profile-in-pg-input.json index 94e3f800..a043137f 100644 --- a/tests/db_migrator_input/config_db/non-default-lossless-profile-in-pg-input.json +++ b/tests/db_migrator_input/config_db/non-default-lossless-profile-in-pg-input.json @@ -956,6 +956,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/non-default-lossy-profile-in-pg-expected.json b/tests/db_migrator_input/config_db/non-default-lossy-profile-in-pg-expected.json index 6017b6a3..fd855095 100644 --- a/tests/db_migrator_input/config_db/non-default-lossy-profile-in-pg-expected.json +++ b/tests/db_migrator_input/config_db/non-default-lossy-profile-in-pg-expected.json @@ -954,6 +954,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/non-default-lossy-profile-in-pg-input.json b/tests/db_migrator_input/config_db/non-default-lossy-profile-in-pg-input.json index 85d5da7e..e6c28d0c 100644 --- a/tests/db_migrator_input/config_db/non-default-lossy-profile-in-pg-input.json +++ b/tests/db_migrator_input/config_db/non-default-lossy-profile-in-pg-input.json @@ -954,6 +954,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/non-default-pg-expected.json b/tests/db_migrator_input/config_db/non-default-pg-expected.json index 314ac693..2a0aa786 100644 --- a/tests/db_migrator_input/config_db/non-default-pg-expected.json +++ b/tests/db_migrator_input/config_db/non-default-pg-expected.json @@ -952,6 +952,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/non-default-pg-input.json b/tests/db_migrator_input/config_db/non-default-pg-input.json index 87c8d59a..05924517 100644 --- a/tests/db_migrator_input/config_db/non-default-pg-input.json +++ b/tests/db_migrator_input/config_db/non-default-pg-input.json @@ -952,6 +952,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/non-default-xoff-expected.json b/tests/db_migrator_input/config_db/non-default-xoff-expected.json index ee68ba57..29075900 100644 --- a/tests/db_migrator_input/config_db/non-default-xoff-expected.json +++ b/tests/db_migrator_input/config_db/non-default-xoff-expected.json @@ -990,6 +990,7 @@ "buffer_model": "traditional", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/non-default-xoff-input.json b/tests/db_migrator_input/config_db/non-default-xoff-input.json index aa9d8574..032e6112 100644 --- a/tests/db_migrator_input/config_db/non-default-xoff-input.json +++ b/tests/db_migrator_input/config_db/non-default-xoff-input.json @@ -989,6 +989,7 @@ "bgp_asn": "65100", "cloudtype": "None", "type": "ToRRouter", + "synchronous_mode": "enable", "deployment_id": "1" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/qos_tables_db_field_value_reference_format_3_0_1.json b/tests/db_migrator_input/config_db/qos_tables_db_field_value_reference_format_3_0_1.json index 7d7e237a..b252cba1 100644 --- a/tests/db_migrator_input/config_db/qos_tables_db_field_value_reference_format_3_0_1.json +++ b/tests/db_migrator_input/config_db/qos_tables_db_field_value_reference_format_3_0_1.json @@ -1050,7 +1050,8 @@ "hwsku": "DellEMC-Z9264f-C64", "mac": "50:9a:4c:d3:86:70", "platform": "x86_64-dellemc_z9264f_c3538-r0", - "type": "LeafRouter" + "type": "LeafRouter", + "synchronous_mode": "enable" } }, "DSCP_TO_TC_MAP": { diff --git a/tests/db_migrator_input/config_db/qos_tables_db_field_value_reference_format_3_0_3.json b/tests/db_migrator_input/config_db/qos_tables_db_field_value_reference_format_3_0_3.json index 49252898..1f4390a9 100644 --- a/tests/db_migrator_input/config_db/qos_tables_db_field_value_reference_format_3_0_3.json +++ b/tests/db_migrator_input/config_db/qos_tables_db_field_value_reference_format_3_0_3.json @@ -1050,7 +1050,8 @@ "hwsku": "DellEMC-Z9264f-C64", "mac": "50:9a:4c:d3:86:70", "platform": "x86_64-dellemc_z9264f_c3538-r0", - "type": "LeafRouter" + "type": "LeafRouter", + "synchronous_mode": "enable" } }, "DSCP_TO_TC_MAP": { 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 88d81e5c..a5126017 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-double-pools-expected.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-double-pools-expected.json @@ -199,6 +199,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", 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 691572ea..df58b4e5 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-double-pools-input.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-double-pools-input.json @@ -115,6 +115,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", 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 fdd4e358..7bd0dd25 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-single-pool-expected.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-single-pool-expected.json @@ -195,6 +195,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", 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 c43d7e7f..b2ea5f52 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-single-pool-input.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-dynamic-single-pool-input.json @@ -111,6 +111,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-expected.json b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-expected.json index 97eed056..d1537d3d 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-expected.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-expected.json @@ -258,6 +258,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-input.json b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-input.json index bb3ded3b..35fc6a6a 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-input.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-input.json @@ -150,6 +150,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-expected.json b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-expected.json index 8cbe35ff..4c1518c4 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-expected.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-expected.json @@ -253,6 +253,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-input.json b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-input.json index 1b6cc713..408afb40 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-input.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-input.json @@ -150,6 +150,7 @@ "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", "type": "ToRRouter", + "synchronous_mode": "enable", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/reclaiming-buffer-warmreboot-expected.json b/tests/db_migrator_input/config_db/reclaiming-buffer-warmreboot-expected.json index f38c426b..d2742a4d 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-warmreboot-expected.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-warmreboot-expected.json @@ -952,6 +952,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_input/config_db/reclaiming-buffer-warmreboot-input.json b/tests/db_migrator_input/config_db/reclaiming-buffer-warmreboot-input.json index e8a44eb4..254af10b 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-warmreboot-input.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-warmreboot-input.json @@ -1047,6 +1047,7 @@ "hwsku": "ACS-MSN4700", "default_bgp_status": "up", "type": "LeafRouter", + "synchronous_mode": "enable", "region": "None", "hostname": "sonic", "platform": "x86_64-mlnx_msn4700-r0", diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index 4cf53836..4571d9b1 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -450,3 +450,29 @@ def test_move_logger_tables_in_warm_upgrade(self): diff = DeepDiff(resulting_table, expected_table, ignore_order=True) assert not diff + +class TestWarmUpgrade_to_2_0_2(object): + @classmethod + def setup_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "2" + + @classmethod + def teardown_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "0" + dbconnector.dedicated_dbs['CONFIG_DB'] = None + + def test_warm_upgrade_to_2_0_2(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'cross_branch_upgrade_to_version_2_0_2_input') + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + dbmgtr.migrate() + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'cross_branch_upgrade_to_version_2_0_2_expected') + expected_db = Db() + + expected_db + new_tables = ["RESTAPI", "TELEMETRY", "CONSOLE_SWITCH"] + for table in new_tables: + resulting_table = dbmgtr.configDB.get_table(table) + expected_table = expected_db.cfgdb.get_table(table) + diff = DeepDiff(resulting_table, expected_table, ignore_order=True) + assert not diff From 263810b25d12dc2435406d57245a113f7e9688c8 Mon Sep 17 00:00:00 2001 From: Muhammad Danish Date: Tue, 29 Nov 2022 06:10:46 -0800 Subject: [PATCH 003/312] Update vrf add, del commands for duplicate/non-existing VRFs (#2467) *[VRF] Update vrf add, del commands for duplicate/non-existing VRFs #2467 *What I did Throw an error in case user wants to add a duplicate VRF. Throw an error if user wants to delete a VRF that does not exist. Update is_vrf_exists function to use vrf_name == management as a valid vrf name as well. Update grammar for vrf_name is invalid message. Renamed tests/show_vrf_test.py -> tests/vrf_test.py to correctly represent the file contents. Add test cases for the added/modified lines. --- config/main.py | 14 ++++-- tests/{show_vrf_test.py => vrf_test.py} | 64 ++++++++++++++++++------- 2 files changed, 56 insertions(+), 22 deletions(-) rename tests/{show_vrf_test.py => vrf_test.py} (81%) diff --git a/config/main.py b/config/main.py index 004b40bd..d0829eb0 100644 --- a/config/main.py +++ b/config/main.py @@ -379,7 +379,7 @@ def is_vrf_exists(config_db, vrf_name): keys = config_db.get_keys("VRF") if vrf_name in keys: return True - elif vrf_name == "mgmt": + elif vrf_name == "mgmt" or vrf_name == "management": entry = config_db.get_entry("MGMT_VRF_CONFIG", "vrf_global") if entry and entry.get("mgmtVrfEnabled") == "true": return True @@ -5213,10 +5213,12 @@ def add_vrf(ctx, vrf_name): """Add vrf""" config_db = ctx.obj['config_db'] if not vrf_name.startswith("Vrf") and not (vrf_name == 'mgmt') and not (vrf_name == 'management'): - ctx.fail("'vrf_name' is not start with Vrf, mgmt or management!") + ctx.fail("'vrf_name' must begin with 'Vrf' or named 'mgmt'/'management' in case of ManagementVRF.") if len(vrf_name) > 15: ctx.fail("'vrf_name' is too long!") - if (vrf_name == 'mgmt' or vrf_name == 'management'): + if is_vrf_exists(config_db, vrf_name): + ctx.fail("VRF {} already exists!".format(vrf_name)) + elif (vrf_name == 'mgmt' or vrf_name == 'management'): vrf_add_management_vrf(config_db) else: config_db.set_entry('VRF', vrf_name, {"NULL": "NULL"}) @@ -5228,7 +5230,7 @@ def del_vrf(ctx, vrf_name): """Del vrf""" config_db = ctx.obj['config_db'] if not vrf_name.startswith("Vrf") and not (vrf_name == 'mgmt') and not (vrf_name == 'management'): - ctx.fail("'vrf_name' is not start with Vrf, mgmt or management!") + ctx.fail("'vrf_name' must begin with 'Vrf' or named 'mgmt'/'management' in case of ManagementVRF.") if len(vrf_name) > 15: ctx.fail("'vrf_name' is too long!") syslog_table = config_db.get_table("SYSLOG_SERVER") @@ -5237,7 +5239,9 @@ def del_vrf(ctx, vrf_name): syslog_vrf = syslog_data.get("vrf") if syslog_vrf == syslog_vrf_dev: ctx.fail("Failed to remove VRF device: {} is in use by SYSLOG_SERVER|{}".format(syslog_vrf, syslog_entry)) - if (vrf_name == 'mgmt' or vrf_name == 'management'): + if not is_vrf_exists(config_db, vrf_name): + ctx.fail("VRF {} does not exist!".format(vrf_name)) + elif (vrf_name == 'mgmt' or vrf_name == 'management'): vrf_delete_management_vrf(config_db) else: del_interface_bind_to_vrf(config_db, vrf_name) diff --git a/tests/show_vrf_test.py b/tests/vrf_test.py similarity index 81% rename from tests/show_vrf_test.py rename to tests/vrf_test.py index c5853ba4..954fbf69 100644 --- a/tests/show_vrf_test.py +++ b/tests/vrf_test.py @@ -180,31 +180,61 @@ def test_vrf_bind_unbind(self): assert result.exit_code == 0 assert result.output == expected_output - def test_vrf_del(self): + def test_vrf_add_del(self): runner = CliRunner() db = Db() vrf_obj = {'config_db':db.cfgdb, 'namespace':db.db.namespace} + result = runner.invoke(config.config.commands["vrf"].commands["add"], ["Vrf100"], obj=vrf_obj) + assert ('Vrf100') in db.cfgdb.get_table('VRF') + assert result.exit_code == 0 + + result = runner.invoke(config.config.commands["vrf"].commands["add"], ["Vrf1"], obj=vrf_obj) + assert "VRF Vrf1 already exists!" in result.output + assert ('Vrf1') in db.cfgdb.get_table('VRF') + assert result.exit_code != 0 + expected_output_del = "VRF Vrf1 deleted and all associated IP addresses removed.\n" result = runner.invoke(config.config.commands["vrf"].commands["del"], ["Vrf1"], obj=vrf_obj) assert result.exit_code == 0 assert result.output == expected_output_del assert ('Vrf1') not in db.cfgdb.get_table('VRF') - expected_output_del = "VRF Vrf101 deleted and all associated IP addresses removed.\n" - result = runner.invoke(config.config.commands["vrf"].commands["del"], ["Vrf101"], obj=vrf_obj) - assert result.exit_code == 0 - assert result.output == expected_output_del - assert ('Vrf101') not in db.cfgdb.get_table('VRF') - - expected_output_del = "VRF Vrf102 deleted and all associated IP addresses removed.\n" - result = runner.invoke(config.config.commands["vrf"].commands["del"], ["Vrf102"], obj=vrf_obj) - assert result.exit_code == 0 - assert result.output == expected_output_del - assert ('Vrf102') not in db.cfgdb.get_table('VRF') + result = runner.invoke(config.config.commands["vrf"].commands["del"], ["Vrf200"], obj=vrf_obj) + assert result.exit_code != 0 + assert ('Vrf200') not in db.cfgdb.get_table('VRF') + assert "VRF Vrf200 does not exist!" in result.output - expected_output_del = "VRF Vrf103 deleted and all associated IP addresses removed.\n" - result = runner.invoke(config.config.commands["vrf"].commands["del"], ["Vrf103"], obj=vrf_obj) - assert result.exit_code == 0 - assert result.output == expected_output_del - assert ('Vrf103') not in db.cfgdb.get_table('VRF') + def test_invalid_vrf_name(self): + db = Db() + runner = CliRunner() + obj = {'config_db':db.cfgdb} + expected_output = """\ +Error: 'vrf_name' must begin with 'Vrf' or named 'mgmt'/'management' in case of ManagementVRF. +""" + result = runner.invoke(config.config.commands["vrf"].commands["add"], ["vrf-blue"], obj=obj) + assert result.exit_code != 0 + assert ('vrf-blue') not in db.cfgdb.get_table('VRF') + assert expected_output in result.output + + result = runner.invoke(config.config.commands["vrf"].commands["add"], ["VRF2"], obj=obj) + assert result.exit_code != 0 + assert ('VRF2') not in db.cfgdb.get_table('VRF') + assert expected_output in result.output + + result = runner.invoke(config.config.commands["vrf"].commands["add"], ["VrF10"], obj=obj) + assert result.exit_code != 0 + assert ('VrF10') not in db.cfgdb.get_table('VRF') + assert expected_output in result.output + + result = runner.invoke(config.config.commands["vrf"].commands["del"], ["vrf-blue"], obj=obj) + assert result.exit_code != 0 + assert expected_output in result.output + + result = runner.invoke(config.config.commands["vrf"].commands["del"], ["VRF2"], obj=obj) + assert result.exit_code != 0 + assert expected_output in result.output + + result = runner.invoke(config.config.commands["vrf"].commands["del"], ["VrF10"], obj=obj) + assert result.exit_code != 0 + assert expected_output in result.output From 6a3238e69062033159711ee6d4a3a8e39849f0c7 Mon Sep 17 00:00:00 2001 From: Lior Avramov <73036155+liorghub@users.noreply.github.com> Date: Tue, 29 Nov 2022 16:53:39 +0200 Subject: [PATCH 004/312] [drop counters] Fix CLI script for unconfigured PGs (#2518) - What I did Since PG counters are created only if they are configured in the switch, it is not enough to relay only on the first entry in the DB when building the output table of watermarkstat script. We need to go over all configured counters, check what is the max configured and build the table accordingly. - How I did it Iterate all configured PG buffers for all ports and find the max index. Build the output table according to the max index. - How to verify it Run test "pgdropstat_test.py" including this PR and observe it passes. --- scripts/pg-drop | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/scripts/pg-drop b/scripts/pg-drop index 6005fdb3..4f58f84c 100755 --- a/scripts/pg-drop +++ b/scripts/pg-drop @@ -116,16 +116,23 @@ class PgDropStat(object): self.header_list = ['Port'] header_map = pg_drop_type["obj_map"] - single_key = list(header_map.keys())[0] - header_len = len(header_map[single_key]) - min_idx = sys.maxsize - for name, counter_oid in header_map[single_key].items(): - curr_idx = int(pg_drop_type["idx_func"](counter_oid)) - min_idx = min(min_idx, curr_idx) + max_idx = 0 + min_idx = sys.maxsize + for port in header_map.keys(): + for element in header_map[port].keys(): + element_idx = int(element.split(':')[1]) + if element_idx > max_idx: + max_idx = element_idx + if min_idx > element_idx: + min_idx = element_idx + + if min_idx == sys.maxsize: + print("Header info is not available!") + sys.exit(1) self.min_idx = min_idx - self.header_list += ["{}{}".format(pg_drop_type["header_prefix"], idx) for idx in range(self.min_idx, self.min_idx + header_len)] + self.header_list += ["{}{}".format(pg_drop_type["header_prefix"], idx) for idx in range(self.min_idx, max_idx + 1)] def get_counters(self, table_prefix, port_obj, idx_func, counter_name): """ From c44c584f77577638460aaec78af1a3327aa8b4a5 Mon Sep 17 00:00:00 2001 From: Vaibhav Hemant Dixit Date: Tue, 29 Nov 2022 18:24:43 -0800 Subject: [PATCH 005/312] Add db_migrator_constants.py script to setup.py (#2534) --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index c8f7ceff..cc0c940a 100644 --- a/setup.py +++ b/setup.py @@ -90,6 +90,7 @@ 'scripts/coredump-compress', 'scripts/configlet', 'scripts/db_migrator.py', + 'scripts/db_migrator_constants.py', 'scripts/decode-syseeprom', 'scripts/dropcheck', 'scripts/disk_check.py', From 91bd6dee75d251dff72618b442376b537d6d3100 Mon Sep 17 00:00:00 2001 From: lixiaoyuner <35456895+lixiaoyuner@users.noreply.github.com> Date: Wed, 30 Nov 2022 17:57:50 +0800 Subject: [PATCH 006/312] Change show kube command default value of insecure key to True (#2517) * Change show kube command default value of insecure key to True Signed-off-by: Yun Li * Add test cases Signed-off-by: Yun Li --- show/kube.py | 2 +- tests/kube_test.py | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/show/kube.py b/show/kube.py index 5ab8cf3f..a120c462 100644 --- a/show/kube.py +++ b/show/kube.py @@ -45,7 +45,7 @@ def config(db): # (
, , ) ("ip", "ip" "", False), ("port", "port", "6443"), - ("insecure", "insecure", "False"), + ("insecure", "insecure", "True"), ("disable","disable", "False") ] diff --git a/tests/kube_test.py b/tests/kube_test.py index 90a4f6e2..e49a2a55 100644 --- a/tests/kube_test.py +++ b/tests/kube_test.py @@ -34,6 +34,18 @@ 10.3.157.24 7777 True False """ +show_server_output_5="""\ +ip port insecure disable +----------- ------ ---------- --------- +10.10.10.11 6443 True False +""" + +show_server_output_6="""\ +ip port insecure disable +----------- ------ ---------- --------- +10.3.157.24 6443 True False +""" + empty_server_status="""\ Kubernetes server has no status info """ @@ -96,6 +108,20 @@ def test_no_kube_server(self, get_cmd_module): result = runner.invoke(config.config.commands["kubernetes"].commands["server"], ["ip", "10.10.10.11"], obj=db) self.__check_res(result, "set server IP when none", "") + result = runner.invoke(show.cli.commands["kubernetes"].commands["server"].commands["config"], [], obj=db) + self.__check_res(result, "config command default value", show_server_output_5) + + + def test_only_kube_server(self, get_cmd_module): + (config, show) = get_cmd_module + runner = CliRunner() + db = Db() + + db.cfgdb.delete_table("KUBERNETES_MASTER") + db.cfgdb.set_entry("KUBERNETES_MASTER", "SERVER", {"ip": "10.3.157.24"}) + + result = runner.invoke(show.cli.commands["kubernetes"].commands["server"].commands["config"], [], obj=db) + self.__check_res(result, "show command default value", show_server_output_6) def test_kube_server_status(self, get_cmd_module): From fce7ec32f5c07e9f017f15aa6790534f8596ef7b Mon Sep 17 00:00:00 2001 From: Liu Shilong Date: Wed, 30 Nov 2022 18:03:41 +0800 Subject: [PATCH 007/312] Use github code scanning instead of LGTM (#2530) --- .github/codeql/codeql-config.yml | 4 +++ .github/workflows/codeql-analysis.yml | 43 +++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 .github/codeql/codeql-config.yml create mode 100644 .github/workflows/codeql-analysis.yml diff --git a/.github/codeql/codeql-config.yml b/.github/codeql/codeql-config.yml new file mode 100644 index 00000000..2c8b0498 --- /dev/null +++ b/.github/codeql/codeql-config.yml @@ -0,0 +1,4 @@ +name: "CodeQL config" +queries: + - uses: security-and-quality + - uses: security-extended diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 00000000..6478fb99 --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,43 @@ +# For more infomation, please visit: https://github.com/github/codeql-action + +name: "CodeQL" + +on: + push: + branches: + - 'master' + - '202[0-9][0-9][0-9]' + pull_request_target: + branches: + - 'master' + - '202[0-9][0-9][0-9]' + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ 'python' ] + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + config-file: ./.github/codeql/codeql-config.yml + languages: ${{ matrix.language }} + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 + with: + category: "/language:${{matrix.language}}" From 6411b52e5e83837d731aed15b793d9df4277a47a Mon Sep 17 00:00:00 2001 From: DavidZagury <32644413+DavidZagury@users.noreply.github.com> Date: Thu, 1 Dec 2022 05:39:22 +0200 Subject: [PATCH 008/312] [QoS] Introduce delay to the qos reload flow (#2503) Fix issue with qos reload sometime causes error from orchagent "Failed to remove dscp_to_tc map" Fix issue with qos reload with dry run clears qos configurations What I did Added a delay mechanism to the qos reload flow so that after qos clear we will wait for the APP DB tables to be clear before continuing to the reload phase. Disabled qos clear when in dry run. How I did it After the buffer tables have been deleted there will be check whether the APP DB table BUFFER_POOL_TABLE is deleted. Only after it will be deleted we will continue with the reload flow. --- config/main.py | 29 +++++++++++++++++++++++++---- tests/config_test.py | 24 +++++++++++++++++++++++- 2 files changed, 48 insertions(+), 5 deletions(-) diff --git a/config/main.py b/config/main.py index d0829eb0..abc3fa25 100644 --- a/config/main.py +++ b/config/main.py @@ -743,7 +743,24 @@ def storm_control_delete_entry(port_name, storm_type): return True -def _clear_qos(): +def _wait_until_clear(table, interval=0.5, timeout=30): + start = time.time() + empty = False + app_db = SonicV2Connector(host='127.0.0.1') + app_db.connect(app_db.APPL_DB) + + while not empty and time.time() - start < timeout: + current_profiles = app_db.keys(app_db.APPL_DB, table) + if not current_profiles: + empty = True + else: + time.sleep(interval) + if not empty: + click.echo("Operation not completed successfully, please save and reload configuration.") + return empty + + +def _clear_qos(delay = False): QOS_TABLE_NAMES = [ 'PORT_QOS_MAP', 'QUEUE', @@ -779,6 +796,8 @@ def _clear_qos(): config_db.connect() for qos_table in QOS_TABLE_NAMES: config_db.delete_table(qos_table) + if delay: + _wait_until_clear("BUFFER_POOL_TABLE:*",interval=0.5, timeout=30) def _get_sonic_generated_services(num_asic): if not os.path.isfile(SONIC_GENERATED_SERVICE_PATH): @@ -1759,7 +1778,7 @@ def load_minigraph(db, no_service_restart, traffic_shift_away, override_config, click.secho("Failed to load port_config.json, Error: {}".format(str(e)), fg='magenta') # generate QoS and Buffer configs - clicommon.run_command("config qos reload --no-dynamic-buffer", display_cmd=True) + clicommon.run_command("config qos reload --no-dynamic-buffer --no-delay", display_cmd=True) if device_type != 'MgmtToRRouter' and device_type != 'MgmtTsToR' and device_type != 'BmcMgmtToRRouter' and device_type != 'EPMS': clicommon.run_command("pfcwd start_default", display_cmd=True) @@ -2604,6 +2623,7 @@ def _update_buffer_calculation_model(config_db, model): @click.pass_context @click.option('--ports', is_flag=False, required=False, help="List of ports that needs to be updated") @click.option('--no-dynamic-buffer', is_flag=True, help="Disable dynamic buffer calculation") +@click.option('--no-delay', is_flag=True, hidden=True) @click.option( '--json-data', type=click.STRING, help="json string with additional data, valid with --dry-run option" @@ -2612,7 +2632,7 @@ def _update_buffer_calculation_model(config_db, model): '--dry_run', type=click.STRING, help="Dry run, writes config to the given file" ) -def reload(ctx, no_dynamic_buffer, dry_run, json_data, ports): +def reload(ctx, no_dynamic_buffer, no_delay, dry_run, json_data, ports): """Reload QoS configuration""" if ports: log.log_info("'qos reload --ports {}' executing...".format(ports)) @@ -2620,7 +2640,8 @@ def reload(ctx, no_dynamic_buffer, dry_run, json_data, ports): return log.log_info("'qos reload' executing...") - _clear_qos() + if not dry_run: + _clear_qos(delay = not no_delay) _, hwsku_path = device_info.get_paths_to_platform_and_hwsku_dirs() sonic_version_file = device_info.get_sonic_version_file() diff --git a/tests/config_test.py b/tests/config_test.py index 58b0ac97..5019f008 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -38,7 +38,7 @@ load_minigraph_command_output="""\ Stopping SONiC target ... Running command: /usr/local/bin/sonic-cfggen -H -m --write-to-db -Running command: config qos reload --no-dynamic-buffer +Running command: config qos reload --no-dynamic-buffer --no-delay Running command: pfcwd start_default Restarting SONiC target ... Reloading Monit configuration ... @@ -682,6 +682,28 @@ def setup_class(cls): import config.main importlib.reload(config.main) + def _keys(args, kwargs): + if not TestConfigQos._keys_counter: + return [] + TestConfigQos._keys_counter-=1 + return ["BUFFER_POOL_TABLE:egress_lossy_pool"] + + def test_qos_wait_until_clear_empty(self): + from config.main import _wait_until_clear + + with mock.patch('swsscommon.swsscommon.SonicV2Connector.keys', side_effect=TestConfigQos._keys): + TestConfigQos._keys_counter = 1 + empty = _wait_until_clear("BUFFER_POOL_TABLE:*", 0.5,2) + assert empty + + def test_qos_wait_until_clear_not_empty(self): + from config.main import _wait_until_clear + + with mock.patch('swsscommon.swsscommon.SonicV2Connector.keys', side_effect=TestConfigQos._keys): + TestConfigQos._keys_counter = 10 + empty = _wait_until_clear("BUFFER_POOL_TABLE:*", 0.5,2) + assert not empty + def test_qos_reload_single( self, get_cmd_module, setup_qos_mock_apis, setup_single_broadcom_asic From a5e1e2b43e4c8fdb81307c49a8eb7b4db726758d Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Fri, 2 Dec 2022 09:06:55 +0800 Subject: [PATCH 009/312] [GCU] Add RemoveCreateOnlyDependency Validator/Generator (#2500) What I did Add RemoveCreateOnlyDependency Generator and Validator. How I did it Added new validator/generator for handling the lane replacement case. The validator/generator understands that for which create-only fields and their dependencies need to be removed. How to verify it Unit Test. --- generic_config_updater/patch_sorter.py | 208 ++++++++++++-- .../files/config_db_with_port_critical.json | 20 ++ .../files/patch_sorter_test_success.json | 262 +----------------- .../patch_sorter_test.py | 219 ++++++++++++++- 4 files changed, 438 insertions(+), 271 deletions(-) diff --git a/generic_config_updater/patch_sorter.py b/generic_config_updater/patch_sorter.py index c3743017..528e3d51 100644 --- a/generic_config_updater/patch_sorter.py +++ b/generic_config_updater/patch_sorter.py @@ -544,6 +544,125 @@ def _get_default_value_from_settings(self, parent_path, field_name): return None +class CreateOnlyFilter: + """ + A filtering class for create-only fields. + """ + def __init__(self, path_addressing): + # TODO: create-only fields are hard-coded for now, it should be moved to YANG model + self.path_addressing = path_addressing + self.patterns = [ + ["PORT", "*", "lanes"], + ["LOOPBACK_INTERFACE", "*", "vrf_name"], + ["BGP_NEIGHBOR", "*", "holdtime"], + ["BGP_NEIGHBOR", "*", "keepalive"], + ["BGP_NEIGHBOR", "*", "name"], + ["BGP_NEIGHBOR", "*", "asn"], + ["BGP_NEIGHBOR", "*", "local_addr"], + ["BGP_NEIGHBOR", "*", "nhopself"], + ["BGP_NEIGHBOR", "*", "rrclient"], + ["BGP_PEER_RANGE", "*", "*"], + ["BGP_MONITORS", "*", "holdtime"], + ["BGP_MONITORS", "*", "keepalive"], + ["BGP_MONITORS", "*", "name"], + ["BGP_MONITORS", "*", "asn"], + ["BGP_MONITORS", "*", "local_addr"], + ["BGP_MONITORS", "*", "nhopself"], + ["BGP_MONITORS", "*", "rrclient"], + ["MIRROR_SESSION", "*", "*"], + ] + + def get_filter(self): + return JsonPointerFilter(self.patterns, + self.path_addressing) + +class RemoveCreateOnlyDependencyMoveValidator: + """ + A class to validate all dependencies of create-only fields have been removed before + modifying the create-only fields. + """ + def __init__(self, path_addressing): + self.path_addressing = path_addressing + self.create_only_filter = CreateOnlyFilter(path_addressing).get_filter() + + def validate(self, move, diff): + current_config = diff.current_config + target_config = diff.target_config # Final config after applying whole patch + + processed_tables = set() + for path in self.create_only_filter.get_paths(current_config): + tokens = self.path_addressing.get_path_tokens(path) + table_to_check = tokens[0] + + if table_to_check in processed_tables: + continue + else: + processed_tables.add(table_to_check) + + if table_to_check not in current_config: + continue + + current_members = current_config[table_to_check] + if not current_members: + continue + + if table_to_check not in target_config: + continue + + target_members = target_config[table_to_check] + if not target_members: + continue + + simulated_config = move.apply(current_config) # Config after applying just this move + + for member_name in current_members: + if member_name not in target_members: + continue + + if not self._validate_member(tokens, member_name, + current_config, target_config, simulated_config): + return False + + return True + + def _validate_member(self, tokens, member_name, current_config, target_config, simulated_config): + table_to_check, create_only_field = tokens[0], tokens[-1] + + current_field = self._get_create_only_field( + current_config, table_to_check, member_name, create_only_field) + target_field = self._get_create_only_field( + target_config, table_to_check, member_name, create_only_field) + + if current_field == target_field: + return True + + simulated_member = self.path_addressing.get_from_path( + simulated_config, f"/{table_to_check}/{member_name}") + + if simulated_member is None: + return True + + if table_to_check == "PORT": + current_admin_status = self.path_addressing.get_from_path( + current_config, f"/{table_to_check}/{member_name}/admin_status" + ) + simulated_admin_status = self.path_addressing.get_from_path( + simulated_config, f"/{table_to_check}/{member_name}/admin_status" + ) + if current_admin_status != simulated_admin_status and current_admin_status != "up": + return False + + member_path = f"/{table_to_check}/{member_name}" + for ref_path in self.path_addressing.find_ref_paths(member_path, simulated_config): + if not self.path_addressing.has_path(current_config, ref_path): + return False + + return True + + def _get_create_only_field(self, config, table_to_check, + member_name, create_only_field): + return config[table_to_check][member_name].get(create_only_field, None) + class DeleteWholeConfigMoveValidator: """ A class to validate not deleting whole config as it is not supported by JsonPatch lib. @@ -576,27 +695,7 @@ def __init__(self, path_addressing): self.path_addressing = path_addressing # TODO: create-only fields are hard-coded for now, it should be moved to YANG models - self.create_only_filter = JsonPointerFilter([ - ["PORT", "*", "lanes"], - ["LOOPBACK_INTERFACE", "*", "vrf_name"], - ["BGP_NEIGHBOR", "*", "holdtime"], - ["BGP_NEIGHBOR", "*", "keepalive"], - ["BGP_NEIGHBOR", "*", "name"], - ["BGP_NEIGHBOR", "*", "asn"], - ["BGP_NEIGHBOR", "*", "local_addr"], - ["BGP_NEIGHBOR", "*", "nhopself"], - ["BGP_NEIGHBOR", "*", "rrclient"], - ["BGP_PEER_RANGE", "*", "*"], - ["BGP_MONITORS", "*", "holdtime"], - ["BGP_MONITORS", "*", "keepalive"], - ["BGP_MONITORS", "*", "name"], - ["BGP_MONITORS", "*", "asn"], - ["BGP_MONITORS", "*", "local_addr"], - ["BGP_MONITORS", "*", "nhopself"], - ["BGP_MONITORS", "*", "rrclient"], - ["MIRROR_SESSION", "*", "*"], - ], - path_addressing) + self.create_only_filter = CreateOnlyFilter(path_addressing).get_filter() def validate(self, move, diff): simulated_config = move.apply(diff.current_config) @@ -921,6 +1020,8 @@ def validate(self, move, diff): for required_path, required_value in data[path]: current_value = self.identifier.get_value_or_default(current_config, required_path) simulated_value = self.identifier.get_value_or_default(simulated_config, required_path) + if simulated_value is None: # Simulated config does not have this value at all. + continue if current_value != simulated_value and simulated_value != required_value: return False @@ -1000,6 +1101,65 @@ def generate(self, diff): for move in single_run_generator.generate(): yield move +class RemoveCreateOnlyDependencyMoveGenerator: + """ + A class to generate the create-only fields' dependency removing moves + """ + def __init__(self, path_addressing): + self.path_addressing = path_addressing + self.create_only_filter = CreateOnlyFilter(path_addressing).get_filter() + + def generate(self, diff): + current_config = diff.current_config + target_config = diff.target_config # Final config after applying whole patch + + processed_tables = set() + for path in self.create_only_filter.get_paths(current_config): + tokens = self.path_addressing.get_path_tokens(path) + table_to_check, create_only_field = tokens[0], tokens[-1] + + if table_to_check in processed_tables: + continue + else: + processed_tables.add(table_to_check) + + if table_to_check not in current_config: + continue + + current_members = current_config[table_to_check] + if not current_members: + continue + + if table_to_check not in target_config: + continue + + target_members = target_config[table_to_check] + if not target_members: + continue + + for member_name in current_members: + if member_name not in target_members: + continue + + current_field = self._get_create_only_field( + current_config, table_to_check, member_name, create_only_field) + target_field = self._get_create_only_field( + target_config, table_to_check, member_name, create_only_field) + + if current_field == target_field: + continue + + member_path = f"/{table_to_check}/{member_name}" + + for ref_path in self.path_addressing.find_ref_paths(member_path, current_config): + yield JsonMove(diff, OperationType.REMOVE, + self.path_addressing.get_path_tokens(ref_path)) + + def _get_create_only_field(self, config, table_to_check, + member_name, create_only_field): + return config[table_to_check][member_name].get(create_only_field, None) + + class SingleRunLowLevelMoveGenerator: """ A class that can only run once to assist LowLevelMoveGenerator with generating the moves. @@ -1271,6 +1431,8 @@ def extend(self, move, diff): for required_path, required_value in data[path]: current_value = self.identifier.get_value_or_default(current_config, required_path) simulated_value = self.identifier.get_value_or_default(simulated_config, required_path) + if simulated_value is None: # Simulated config does not have this value at all. + continue if current_value != simulated_value and simulated_value != required_value: flip_path_value_tuples.add((required_path, required_value)) @@ -1473,7 +1635,8 @@ def __init__(self, operation_wrapper, config_wrapper, path_addressing): self.path_addressing = path_addressing def create(self, algorithm=Algorithm.DFS): - move_generators = [LowLevelMoveGenerator(self.path_addressing)] + move_generators = [RemoveCreateOnlyDependencyMoveGenerator(self.path_addressing), + LowLevelMoveGenerator(self.path_addressing)] # TODO: Enable TableLevelMoveGenerator once it is confirmed whole table can be updated at the same time move_non_extendable_generators = [KeyLevelMoveGenerator()] move_extenders = [RequiredValueMoveExtender(self.path_addressing, self.operation_wrapper), @@ -1485,6 +1648,7 @@ def create(self, algorithm=Algorithm.DFS): NoDependencyMoveValidator(self.path_addressing, self.config_wrapper), CreateOnlyMoveValidator(self.path_addressing), RequiredValueMoveValidator(self.path_addressing), + RemoveCreateOnlyDependencyMoveValidator(self.path_addressing), NoEmptyTableMoveValidator(self.path_addressing)] move_wrapper = MoveWrapper(move_generators, move_non_extendable_generators, move_extenders, move_validators) diff --git a/tests/generic_config_updater/files/config_db_with_port_critical.json b/tests/generic_config_updater/files/config_db_with_port_critical.json index 5853bfe5..2b2007d0 100644 --- a/tests/generic_config_updater/files/config_db_with_port_critical.json +++ b/tests/generic_config_updater/files/config_db_with_port_critical.json @@ -36,6 +36,23 @@ "lanes": "41,42,43,44", "pfc_asym": "off", "speed": "40000" + }, + "Ethernet28": { + "alias": "fortyGigE0/28", + "description": "Servers5:eth0", + "index": "6", + "lanes": "53,54,55,56", + "pfc_asym": "off", + "speed": "40000" + }, + "Ethernet32": { + "alias": "fortyGigE0/32", + "description": "Servers6:eth0", + "index": "7", + "lanes": "57,58,59,60", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000" } }, "BUFFER_PG": { @@ -44,6 +61,9 @@ }, "Ethernet12|0": { "profile": "ingress_lossy_profile" + }, + "Ethernet28|0": { + "profile": "ingress_lossy_profile" } } } diff --git a/tests/generic_config_updater/files/patch_sorter_test_success.json b/tests/generic_config_updater/files/patch_sorter_test_success.json index b4f1f141..217737e4 100644 --- a/tests/generic_config_updater/files/patch_sorter_test_success.json +++ b/tests/generic_config_updater/files/patch_sorter_test_success.json @@ -574,38 +574,6 @@ } ], "expected_changes": [ - [ - { - "op": "remove", - "path": "/LOOPBACK_INTERFACE/Loopback0|10.1.0.32~132" - } - ], - [ - { - "op": "remove", - "path": "/LOOPBACK_INTERFACE/Loopback0|1100:1::32~1128" - } - ], - [ - { - "op": "add", - "path": "/LOOPBACK_INTERFACE/Loopback0|10.1.0.32~132", - "value": {} - } - ], - [ - { - "op": "remove", - "path": "/LOOPBACK_INTERFACE/Loopback1|20.2.0.32~132" - } - ], - [ - { - "op": "add", - "path": "/LOOPBACK_INTERFACE/Loopback0|1100:1::32~1128", - "value": {} - } - ], [ { "op": "remove", @@ -646,13 +614,6 @@ "path": "/LOOPBACK_INTERFACE/Loopback0|1100:1::32~1128", "value": {} } - ], - [ - { - "op": "add", - "path": "/LOOPBACK_INTERFACE/Loopback1|20.2.0.32~132", - "value": {} - } ] ] }, @@ -809,51 +770,12 @@ "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports" } ], - [ - { - "op": "remove", - "path": "/ACL_TABLE" - } - ], - [ - { - "op": "add", - "path": "/ACL_TABLE", - "value": { - "NO-NSW-PACL-V4": { - "type": "L3" - } - } - } - ], - [ - { - "op": "add", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports", - "value": [ - "Ethernet0" - ] - } - ], [ { "op": "remove", "path": "/VLAN_MEMBER" } ], - [ - { - "op": "add", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/policy_desc", - "value": "NO-NSW-PACL-V4" - } - ], - [ - { - "op": "remove", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports" - } - ], [ { "op": "remove", @@ -1124,6 +1046,12 @@ "path": "/VLAN_MEMBER/Vlan100|Ethernet3" } ], + [ + { + "op": "remove", + "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports/0" + } + ], [ { "op": "replace", @@ -1184,7 +1112,7 @@ [ { "op": "remove", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports/1" + "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports/0" } ], [ @@ -1196,7 +1124,7 @@ [ { "op": "remove", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports/1" + "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports/0" } ], [ @@ -1207,72 +1135,27 @@ ], [ { - "op": "remove", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports/1" - } - ], - [ - { - "op": "remove", - "path": "/PORT/Ethernet3" + "op": "add", + "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports/0", + "value": "Ethernet0" } ], [ { "op": "remove", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports" + "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports/1" } ], [ { "op": "remove", - "path": "/VLAN_MEMBER" - } - ], - [ - { - "op": "add", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports", - "value": [ - "Ethernet0" - ] + "path": "/PORT/Ethernet3" } ], [ { "op": "remove", - "path": "/ACL_TABLE" - } - ], - [ - { - "op": "add", - "path": "/VLAN_MEMBER", - "value": { - "Vlan100|Ethernet0": { - "tagging_mode": "untagged" - } - } - } - ], - [ - { - "op": "add", - "path": "/ACL_TABLE", - "value": { - "NO-NSW-PACL-V4": { - "type": "L3" - } - } - } - ], - [ - { - "op": "add", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports", - "value": [ - "Ethernet0" - ] + "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports" } ], [ @@ -1281,12 +1164,6 @@ "path": "/VLAN_MEMBER" } ], - [ - { - "op": "remove", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports" - } - ], [ { "op": "remove", @@ -1318,13 +1195,6 @@ } } ], - [ - { - "op": "add", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/policy_desc", - "value": "NO-NSW-PACL-V4" - } - ], [ { "op": "add", @@ -2323,38 +2193,6 @@ } ], "expected_changes": [ - [ - { - "op": "remove", - "path": "/LOOPBACK_INTERFACE/Loopback1|20.2.0.32~132" - } - ], - [ - { - "op": "remove", - "path": "/LOOPBACK_INTERFACE/Loopback1|2200:2::32~1128" - } - ], - [ - { - "op": "add", - "path": "/LOOPBACK_INTERFACE/Loopback1|20.2.0.32~132", - "value": {} - } - ], - [ - { - "op": "remove", - "path": "/LOOPBACK_INTERFACE/Loopback0|10.1.0.32~132" - } - ], - [ - { - "op": "add", - "path": "/LOOPBACK_INTERFACE/Loopback1|2200:2::32~1128", - "value": {} - } - ], [ { "op": "remove", @@ -2373,13 +2211,6 @@ "path": "/LOOPBACK_INTERFACE/Loopback1" } ], - [ - { - "op": "add", - "path": "/LOOPBACK_INTERFACE/Loopback0|10.1.0.32~132", - "value": {} - } - ], [ { "op": "add", @@ -2565,64 +2396,6 @@ "path": "/VLAN_MEMBER" } ], - [ - { - "op": "add", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports", - "value": [ - "Ethernet0" - ] - } - ], - [ - { - "op": "remove", - "path": "/ACL_TABLE" - } - ], - [ - { - "op": "add", - "path": "/VLAN_MEMBER", - "value": { - "Vlan100|Ethernet0": { - "tagging_mode": "untagged" - } - } - } - ], - [ - { - "op": "add", - "path": "/ACL_TABLE", - "value": { - "NO-NSW-PACL-V4": { - "type": "L3" - } - } - } - ], - [ - { - "op": "add", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports", - "value": [ - "Ethernet0" - ] - } - ], - [ - { - "op": "remove", - "path": "/VLAN_MEMBER" - } - ], - [ - { - "op": "remove", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/ports" - } - ], [ { "op": "remove", @@ -2654,13 +2427,6 @@ } } ], - [ - { - "op": "add", - "path": "/ACL_TABLE/NO-NSW-PACL-V4/policy_desc", - "value": "NO-NSW-PACL-V4" - } - ], [ { "op": "add", diff --git a/tests/generic_config_updater/patch_sorter_test.py b/tests/generic_config_updater/patch_sorter_test.py index 2ef18e1f..900538dd 100644 --- a/tests/generic_config_updater/patch_sorter_test.py +++ b/tests/generic_config_updater/patch_sorter_test.py @@ -1884,6 +1884,22 @@ def _get_critical_port_change_test_cases(self): } }) }, + # Additional cases where the full port is getting deleted + # If port is getting deleted, there is no point in checking if there are critical changes depending on it + "NOT_PORT_UP__STATUS_CHANGING__UNDER_PORT__PORT_EXIST__PORT_DELETION": { + "expected": True, + "config": Files.CONFIG_DB_WITH_PORT_CRITICAL, + "move": ps.JsonMove.from_operation({ "op": "remove", "path": "/PORT/Ethernet32" }) + }, + "NOT_PORT_UP__STATUS_CHANGING__NOT_UNDER_PORT__PORT_EXIST__PORT_DELETION": { + "expected": True, + "config": Files.CONFIG_DB_WITH_PORT_CRITICAL, + "target_config": self._apply_operations(Files.CONFIG_DB_WITH_PORT_CRITICAL, [ + { "op": "remove", "path": "/PORT/Ethernet28" }, + { "op": "remove", "path": "/BUFFER_PG/Ethernet28|0" }, + ]), + "move": ps.JsonMove.from_operation({ "op": "remove", "path": "/PORT/Ethernet28" }) + }, } def test_validate__no_critical_port_changes(self): @@ -1937,6 +1953,106 @@ def _get_no_critical_port_change_test_cases(self): def _apply_operations(self, config, operations): return jsonpatch.JsonPatch(operations).apply(config) +class RemoveCreateOnlyDependencyMoveValidator(unittest.TestCase): + def setUp(self): + path_addressing = PathAddressing(ConfigWrapper()) + self.validator = ps.RemoveCreateOnlyDependencyMoveValidator(path_addressing) + + def test_validate__lane_replacement_change(self): + test_cases = self._get_lane_replacement_change_test_cases() + for test_case_name in test_cases: + with self.subTest(name=test_case_name): + self._run_single_test(test_cases[test_case_name]) + + def _run_single_test(self, test_case): + # Arrange + expected = test_case['expected'] + current_config = test_case['config'] + move = test_case['move'] + target_config = test_case.get('target_config', move.apply(current_config)) + diff = ps.Diff(current_config, target_config) + + # Act and Assert + self.assertEqual(expected, self.validator.validate(move, diff)) + + def _apply_operations(self, config, operations): + return jsonpatch.JsonPatch(operations).apply(config) + + def _get_lane_replacement_change_test_cases(self): + return { + "PORT_NOT_IN_CURRENT_CONFIG": { + "expected": True, + "config": {}, + "move": Mock(), + "target_config": Files.DPB_1_SPLIT_FULL_CONFIG + }, + "PORT_NOT_IN_TARGET_CONFIG": { + "expected": True, + "config": Files.DPB_1_SPLIT_FULL_CONFIG, + "move": Mock(), + "target_config": {} + }, + "PORT_EMPTY_IN_CURRENT_CONFIG": { + "expected": True, + "config": {"PORT": {}}, + "move": Mock(), + "target_config": Files.DPB_1_SPLIT_FULL_CONFIG + }, + "PORT_EMPTY_IN_TARGET_CONFIG": { + "expected": True, + "config": Files.DPB_1_SPLIT_FULL_CONFIG, + "move": Mock(), + "target_config": {"PORT": {}} + }, + "SAME_LANE_IN_BOTH_CONFIG": { + "expected": True, + "config": Files.DPB_1_SPLIT_FULL_CONFIG, + "move": ps.JsonMove.from_operation({ + "op": "remove", + "path": "/ACL_TABLE" + }) + }, + "LANE_DIFF__CURRENT_DOWN__SIMULATED_UP": { + "expected": False, + "config": Files.DPB_1_SPLIT_FULL_CONFIG, + "move": ps.JsonMove.from_operation({ + "op": "add", + "path": "/PORT/Ethernet0/admin_status", + "value": "up" + }), + "target_config":Files.DPB_4_SPLITS_FULL_CONFIG, + }, + "LANE_DIFF__STATUS_SAME__SIMULATED_EXTRA_DEPDENDENCY": { + "expected": False, + "config": self._apply_operations(Files.DPB_1_SPLIT_FULL_CONFIG, [ + {"op": "remove", "path": "/ACL_TABLE"}, + ]), + "move": ps.JsonMove.from_operation({ + "op": "add", + "path": "/ACL_TABLE", + "value": { + "NO-NSW-PACL-V4": { + "type": "L3", + "policy_desc": "NO-NSW-PACL-V4", + "ports": [ + "Ethernet0" + ] + } + } + }), + "target_config": Files.DPB_4_SPLITS_FULL_CONFIG + }, + "LANE_DIFF__STATUS_SAME__SIMULATED_LESS_DEPDENDENCY": { + "expected": True, + "config": Files.DPB_1_SPLIT_FULL_CONFIG, + "move": ps.JsonMove.from_operation({ + "op": "remove", + "path": "/ACL_TABLE" + }), + "target_config": Files.DPB_4_SPLITS_FULL_CONFIG + } + } + class TestTableLevelMoveGenerator(unittest.TestCase): def setUp(self): self.generator = ps.TableLevelMoveGenerator() @@ -2313,6 +2429,85 @@ def get_diff(self, target_config_ops = None, current_config_ops = None): return ps.Diff(current_config, target_config) +class RemoveCreateOnlyDependencyMoveGenerator(unittest.TestCase): + def setUp(self): + config_wrapper = ConfigWrapper() + path_addressing = PathAddressing(config_wrapper) + self.generator = ps.RemoveCreateOnlyDependencyMoveGenerator(path_addressing) + + def test_generate__no_port_table__no_moves(self): + current_config = {} + target_config = {"PORT": {"Ethernet0": {}}} + + # No PORT table in current_config + diff = ps.Diff(current_config, target_config) + moves = list(self.generator.generate(diff)) + self.verify_moves([], moves) + + # No PORT table in target_config + diff = ps.Diff(target_config, current_config) + moves = list(self.generator.generate(diff)) + self.verify_moves([], moves) + + def test_generate__empty_port_content__no_moves(self): + current_config = {"PORT": {}} + target_config = {"PORT": {"Ethernet0": {}}} + + # Empty PORT content in current_config + diff = ps.Diff(current_config, target_config) + moves = list(self.generator.generate(diff)) + self.verify_moves([], moves) + + # Empty PORT content in target_config + diff = ps.Diff(target_config, current_config) + moves = list(self.generator.generate(diff)) + self.verify_moves([], moves) + + def test_generate__same_lanes__no_moves(self): + current_config = Files.CROPPED_CONFIG_DB_AS_JSON + patch = jsonpatch.JsonPatch([ + {'op': 'remove', 'path': '/VLAN_MEMBER'} + ]) + target_config = patch.apply(Files.CROPPED_CONFIG_DB_AS_JSON) + + # Remove VLAN_MEMBER in target_config, lanes are same + diff = ps.Diff(current_config, target_config) + moves = list(self.generator.generate(diff)) + self.verify_moves([], moves) + + # Add VLAN_MEMBER in current_config, lanes are same + diff = ps.Diff(target_config, current_config) + moves = list(self.generator.generate(diff)) + self.verify_moves([], moves) + + def test_generate__dpb_4_to_1_example(self): + # Arrange + diff = ps.Diff(Files.DPB_4_SPLITs_FULL_CONFIG, Files.DPB_1_SPLIT_FULL_CONFIG) + + # Act + moves = list(self.generator.generate(diff)) + + # Assert + self.verify_moves([{'op': 'remove', 'path': '/ACL_TABLE/NO-NSW-PACL-V4/ports/0'}, + {'op': 'remove', 'path': '/VLAN_MEMBER/Vlan100|Ethernet0'}], + moves) + + def test_generate__dpb_1_to_4_example(self): + # Arrange + diff = ps.Diff(Files.DPB_1_SPLIT_FULL_CONFIG, Files.DPB_4_SPLITS_FULL_CONFIG) + + # Act + moves = list(self.generator.generate(diff)) + + # Assert + self.verify_moves([{'op': 'remove', 'path': '/ACL_TABLE/NO-NSW-PACL-V4/ports/0'}, + {'op': 'remove', 'path': '/VLAN_MEMBER/Vlan100|Ethernet0'}], + moves) + + def verify_moves(self, ops, moves): + moves_ops = [list(move.patch)[0] for move in moves] + self.assertCountEqual(ops, moves_ops) + class TestRequiredValueMoveExtender(unittest.TestCase): def setUp(self): path_addressing = PathAddressing() @@ -2543,6 +2738,26 @@ def test_extend__multiple_changes__multiple_extend_moves(self): # Assert self._verify_moves(expected, actual) + def test_extend__port_deletion__no_extension(self): + # Arrange + move = ps.JsonMove.from_operation({ + "op":"remove", + "path":"/PORT/Ethernet28" + }) + current_config = Files.CONFIG_DB_WITH_PORT_CRITICAL + target_config = self._apply_operations(Files.CONFIG_DB_WITH_PORT_CRITICAL, [ + { "op": "remove", "path": "/PORT/Ethernet28" }, + { "op": "remove", "path": "/BUFFER_PG/Ethernet28|0" } + ]) + diff = ps.Diff(current_config, target_config) + expected = [] + + # Act + actual = self.extender.extend(move, diff) + + # Assert + self._verify_moves(expected, actual) + def _verify_moves(self, ex_ops, moves): moves_ops = [list(move.patch)[0] for move in moves] self.assertCountEqual(ex_ops, moves_ops) @@ -3021,7 +3236,8 @@ def verify(self, algo, algo_class): # Arrange config_wrapper = ConfigWrapper() factory = ps.SortAlgorithmFactory(OperationWrapper(), config_wrapper, PathAddressing(config_wrapper)) - expected_generators = [ps.LowLevelMoveGenerator] + expected_generators = [ps.RemoveCreateOnlyDependencyMoveGenerator, + ps.LowLevelMoveGenerator] expected_non_extendable_generators = [ps.KeyLevelMoveGenerator] expected_extenders = [ps.RequiredValueMoveExtender, ps.UpperLevelMoveExtender, @@ -3032,6 +3248,7 @@ def verify(self, algo, algo_class): ps.NoDependencyMoveValidator, ps.CreateOnlyMoveValidator, ps.RequiredValueMoveValidator, + ps.RemoveCreateOnlyDependencyMoveValidator, ps.NoEmptyTableMoveValidator] # Act From 42f51c26d1d0017f3211904ca19c023b5d784463 Mon Sep 17 00:00:00 2001 From: Caitlin Choate <114622132+cchoate54@users.noreply.github.com> Date: Fri, 2 Dec 2022 11:54:03 -0800 Subject: [PATCH 010/312] sonic-utilities: Update config reload() to verify formatting of an input file (#2529) sonic-utilities: bugfix-9499 Update config/main.py to verify if a config input file is properly formatted before writing it into confib_db Update tests/config_test.py to include test cases for invalid input file Add tests/config_reload_input/config_db_invalid.json as invalid input file used in tests/config_test.py Signed-off-by: cchoate54@gmail.com What I did Include a check to validate if all input files are properly formatted before trying to write them to config_db to resolve bug 9499 in sonic-buildimage. How I did it Include a check to validate if all input files are properly formatted before trying to write them to config_db. How to verify it Run tests/config_test.py. With the change added in main.py, run 'config reload' with an inproperly formatted input file. Previous command output (if the output of a command-line utility has changed) crystalnet@ibr02:~$ sudo config reload conf_db.json Clear current config and reload config in config_db from the file(s) conf_db.json ? [y/N]: y Disabling container monitoring ... Stopping SONiC target ... Running command: /usr/local/bin/sonic-cfggen -j /etc/sonic/init_cfg.json -j conf_db.json --write-to-db Traceback (most recent call last): File "/usr/local/bin/sonic-cfggen", line 452, in main() File "/usr/local/bin/sonic-cfggen", line 322, in main _process_json(args, data) File "/usr/local/bin/sonic-cfggen", line 236, in _process_json deep_update(data, FormatConverter.to_deserialized(json.load(stream))) File "/usr/lib/python3.9/json/init.py", line 293, in load return loads(fp.read(), File "/usr/lib/python3.9/json/init.py", line 346, in loads return _default_decoder.decode(s) File "/usr/lib/python3.9/json/decoder.py", line 337, in decode obj, end = self.raw_decode(s, idx=_w(s, 0).end()) File "/usr/lib/python3.9/json/decoder.py", line 353, in raw_decode obj, end = self.scan_once(s, idx) json.decoder.JSONDecodeError: Expecting ',' delimiter: line 713 column 5 (char 21870) *Then the terminal becomes unusable until the device is reloaded. New command output (if the output of a command-line utility has changed) crystalnet@ibr02:~$ sudo config reload conf_db.json Clear current config and reload config in config_db from the file(s) conf_db.json ? [y/N]: y Bad format: json file broken. Expecting ',' delimiter: line 713 column 5 (char 21870) --- config/main.py | 39 +++++- .../config_db_invalid.json | 62 ++++++++++ tests/config_test.py | 115 +++++++++++++++++- 3 files changed, 208 insertions(+), 8 deletions(-) create mode 100644 tests/config_reload_input/config_db_invalid.json diff --git a/config/main.py b/config/main.py index abc3fa25..e8b9508a 100644 --- a/config/main.py +++ b/config/main.py @@ -1189,6 +1189,17 @@ def load_backend_acl(cfg_db, device_type): if os.path.isfile(BACKEND_ACL_FILE): clicommon.run_command("acl-loader update incremental {}".format(BACKEND_ACL_FILE), display_cmd=True) +def validate_config_file(file): + """ + A validator to check config files for syntax errors + """ + try: + # Load golden config json + read_json_file(file) + except Exception as e: + click.secho("Bad format: json file '{}' broken.\n{}".format(file, str(e)), + fg='magenta') + sys.exit(1) # This is our main entrypoint - the main 'config' command @click.group(cls=clicommon.AbbreviationGroup, context_settings=CONTEXT_SETTINGS) @@ -1567,10 +1578,8 @@ def reload(db, filename, yes, load_sysinfo, no_service_restart, force, file_form click.echo("Input {} config file(s) separated by comma for multiple files ".format(num_cfg_file)) return - #Stop services before config push - if not no_service_restart: - log.log_info("'reload' stopping services...") - _stop_services() + # Create a dictionary to store each cfg_file, namespace, and a bool representing if a the file exists + cfg_file_dict = {} # In Single ASIC platforms we have single DB service. In multi-ASIC platforms we have a global DB # service running in the host + DB services running in each ASIC namespace created per ASIC. @@ -1595,9 +1604,27 @@ def reload(db, filename, yes, load_sysinfo, no_service_restart, force, file_form else: file = DEFAULT_CONFIG_YANG_FILE - - # Check the file exists before proceeding. + # Check if the file exists before proceeding + # Instead of exiting, skip the current namespace and check the next one if not os.path.exists(file): + cfg_file_dict[inst] = [file, namespace, False] + continue + cfg_file_dict[inst] = [file, namespace, True] + + # Check the file is properly formatted before proceeding. + validate_config_file(file) + + #Validate INIT_CFG_FILE if it exits + if os.path.isfile(INIT_CFG_FILE): + validate_config_file(INIT_CFG_FILE) + + #Stop services before config push + if not no_service_restart: + log.log_info("'reload' stopping services...") + _stop_services() + + for file, namespace, file_exists in cfg_file_dict.values(): + if not file_exists: click.echo("The config file {} doesn't exist".format(file)) continue diff --git a/tests/config_reload_input/config_db_invalid.json b/tests/config_reload_input/config_db_invalid.json new file mode 100644 index 00000000..cb394023 --- /dev/null +++ b/tests/config_reload_input/config_db_invalid.json @@ -0,0 +1,62 @@ +{ + "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" + } + } + "VLAN_MEMBER": { + "Vlan1000|Ethernet0": { + "tagging_mode": "untagged", + }, + "Vlan1000|Ethernet4": { + "tagging_mode": "untagged" + }, + "Vlan1000|Ethernet8": { + "tagging_mode": "untagged" + } + }, + "VLAN": { + "Vlan1000": { + "vlanid": "1000", + "dhcp_servers": [ + "192.0.0.1", + "192.0.0.2", + "192.0.0.3", + "192.0.0.4" + ] + } + }, + "PORT": { + "Ethernet0": { + "alias": "Eth1", + "lanes": "65, 66, 67, 68", + "description": "Ethernet0 100G link", + "speed": "100000" + }, + "Ethernet4": { + "admin_status": "up", + "alias": "fortyGigE0/4", + "description": "Servers0:eth0", + "index": "1", + "lanes": "29,30,31,32", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000" + }, + "Ethernet8": { + "admin_status": "up", + "alias": "fortyGigE0/8", + "description": "Servers1:eth0", + "index": "2", + "lanes": "33,34,35,36", + "mtu": "9100", + "pfc_asym": "off", + "speed": "40000" + } + } +} diff --git a/tests/config_test.py b/tests/config_test.py index 5019f008..a1c62140 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -4,6 +4,7 @@ import traceback import json import jsonpatch +import shutil import sys import unittest import ipaddress @@ -88,6 +89,12 @@ Reloading Monit configuration ... """ +RELOAD_CONFIG_DB_OUTPUT_INVALID_MSG = """\ +Bad format: json file""" + +RELOAD_CONFIG_DB_OUTPUT_INVALID_ERROR = """\ +Expecting ',' delimiter: line 12 column 5 (char 321)""" + RELOAD_YANG_CFG_OUTPUT = """\ Stopping SONiC target ... Running command: /usr/local/bin/sonic-cfggen -Y /tmp/config.json --write-to-db @@ -104,6 +111,15 @@ Reloading Monit configuration ... """ +RELOAD_MASIC_CONFIG_DB_OUTPUT_FILE_NOT_EXIST = """\ +Stopping SONiC target ... +Running command: /usr/local/bin/sonic-cfggen -j /tmp/config.json --write-to-db +The config file non_exist.json doesn't exist +Running command: /usr/local/bin/sonic-cfggen -j /tmp/config.json -n asic1 --write-to-db +Restarting SONiC target ... +Reloading Monit configuration ... +""" + reload_config_with_sys_info_command_output="""\ Running command: /usr/local/bin/sonic-cfggen -H -k Seastone-DX010-25-50 --write-to-db""" @@ -195,6 +211,7 @@ def mock_run_command_side_effect_gnmi(*args, **kwargs): class TestConfigReload(object): dummy_cfg_file = os.path.join(os.sep, "tmp", "config.json") + dummy_cfg_file_contents = os.path.join(mock_db_path, "config_db.json") @classmethod def setup_class(cls): @@ -206,7 +223,8 @@ def setup_class(cls): import config.main importlib.reload(config.main) - open(cls.dummy_cfg_file, 'w').close() + shutil.copyfile(cls.dummy_cfg_file_contents, cls.dummy_cfg_file) + open(cls.dummy_cfg_file, 'r').close() def test_config_reload(self, get_cmd_module, setup_single_broadcom_asic): with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command: @@ -479,6 +497,8 @@ def teardown_class(cls): class TestReloadConfig(object): dummy_cfg_file = os.path.join(os.sep, "tmp", "config.json") + dummy_cfg_file_contents = os.path.join(mock_db_path, "config_db.json") + dummy_cfg_file_invalid = os.path.join(mock_db_path, "config_db_invalid.json") @classmethod def setup_class(cls): @@ -486,7 +506,8 @@ def setup_class(cls): print("SETUP") import config.main importlib.reload(config.main) - open(cls.dummy_cfg_file, 'w').close() + shutil.copyfile(cls.dummy_cfg_file_contents, cls.dummy_cfg_file) + open(cls.dummy_cfg_file, 'r').close() def test_reload_config(self, get_cmd_module, setup_single_broadcom_asic): with mock.patch( @@ -507,6 +528,27 @@ def test_reload_config(self, get_cmd_module, setup_single_broadcom_asic): assert "\n".join([l.rstrip() for l in result.output.split('\n')]) \ == RELOAD_CONFIG_DB_OUTPUT + def test_reload_config_invalid_config_file(self, get_cmd_module, setup_single_broadcom_asic): + with mock.patch( + "utilities_common.cli.run_command", + mock.MagicMock(side_effect=mock_run_command_side_effect) + ) as mock_run_command: + (config, show) = get_cmd_module + runner = CliRunner() + + result = runner.invoke( + config.config.commands["reload"], + [self.dummy_cfg_file_invalid, '-y', '-f']) + + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code == 1 + + output = "\n".join([l.rstrip() for l in result.output.split('\n')]) + assert RELOAD_CONFIG_DB_OUTPUT_INVALID_MSG in output + assert RELOAD_CONFIG_DB_OUTPUT_INVALID_ERROR in output + def test_config_reload_disabled_service(self, get_cmd_module, setup_single_broadcom_asic): with mock.patch( "utilities_common.cli.run_command", @@ -549,6 +591,54 @@ def test_reload_config_masic(self, get_cmd_module, setup_multi_broadcom_masic): assert "\n".join([l.rstrip() for l in result.output.split('\n')]) \ == RELOAD_MASIC_CONFIG_DB_OUTPUT + def test_reload_config_masic_invalid(self, get_cmd_module, setup_multi_broadcom_masic): + 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() + # 3 config files: 1 for host and 2 for asic + cfg_files = "{},{},{}".format( + self.dummy_cfg_file, + self.dummy_cfg_file_invalid, + self.dummy_cfg_file) + result = runner.invoke( + config.config.commands["reload"], + [cfg_files, '-y', '-f']) + + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code == 1 + + output = "\n".join([l.rstrip() for l in result.output.split('\n')]) + assert RELOAD_CONFIG_DB_OUTPUT_INVALID_MSG in output + assert RELOAD_CONFIG_DB_OUTPUT_INVALID_ERROR in output + + def test_reload_config_masic_non_exist_file(self, get_cmd_module, setup_multi_broadcom_masic): + 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() + # 3 config files: 1 for host and 2 for asic + cfg_files = "{},{},{}".format( + self.dummy_cfg_file, + "non_exist.json", + self.dummy_cfg_file) + result = runner.invoke( + config.config.commands["reload"], + [cfg_files, '-y', '-f']) + + 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')]) \ + == RELOAD_MASIC_CONFIG_DB_OUTPUT_FILE_NOT_EXIST + def test_reload_yang_config(self, get_cmd_module, setup_single_broadcom_asic): with mock.patch( @@ -568,6 +658,27 @@ def test_reload_yang_config(self, get_cmd_module, assert "\n".join([l.rstrip() for l in result.output.split('\n')]) \ == RELOAD_YANG_CFG_OUTPUT + def test_reload_yang_config_invalid(self, get_cmd_module, + setup_single_broadcom_asic): + with mock.patch( + "utilities_common.cli.run_command", + mock.MagicMock(side_effect=mock_run_command_side_effect) + ) as mock_run_command: + (config, show) = get_cmd_module + runner = CliRunner() + + result = runner.invoke(config.config.commands["reload"], + [self.dummy_cfg_file_invalid, '-y', '-f', '-t', 'config_yang']) + + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code == 1 + + output = "\n".join([l.rstrip() for l in result.output.split('\n')]) + assert RELOAD_CONFIG_DB_OUTPUT_INVALID_MSG in output + assert RELOAD_CONFIG_DB_OUTPUT_INVALID_ERROR in output + @classmethod def teardown_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "0" From 00c01b37c759283d3e8fa201ec94310b33ce7aab Mon Sep 17 00:00:00 2001 From: mihirpat1 <112018033+mihirpat1@users.noreply.github.com> Date: Mon, 5 Dec 2022 14:52:33 -0800 Subject: [PATCH 011/312] Transceiver eeprom dom CLI modification to show output from TRANSCEIVER_DOM_THRESHOLD table (#2535) * EEPROM CLI support to dump output from TRANSCEIVER_DOM_THRESHOLD table Signed-off-by: Mihir Patel * Resolved test failures Signed-off-by: Mihir Patel Signed-off-by: Mihir Patel --- scripts/sfpshow | 1 + tests/mock_tables/asic0/state_db.json | 4 +++- tests/mock_tables/asic1/state_db.json | 4 +++- tests/mock_tables/state_db.json | 8 ++++++-- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/scripts/sfpshow b/scripts/sfpshow index b0c951a1..07876889 100755 --- a/scripts/sfpshow +++ b/scripts/sfpshow @@ -391,6 +391,7 @@ class SFPShow(object): if dump_dom: sfp_type = sfp_info_dict['type'] dom_info_dict = state_db.get_all(state_db.STATE_DB, 'TRANSCEIVER_DOM_SENSOR|{}'.format(interface_name)) + dom_info_dict.update(state_db.get_all(state_db.STATE_DB, 'TRANSCEIVER_DOM_THRESHOLD|{}'.format(interface_name))) dom_output = self.convert_dom_to_output_string(sfp_type, dom_info_dict) output += dom_output else: diff --git a/tests/mock_tables/asic0/state_db.json b/tests/mock_tables/asic0/state_db.json index 8766f43d..21b4fa0e 100644 --- a/tests/mock_tables/asic0/state_db.json +++ b/tests/mock_tables/asic0/state_db.json @@ -31,7 +31,9 @@ "tx1power": "N/A", "tx2power": "N/A", "tx3power": "N/A", - "tx4power": "N/A", + "tx4power": "N/A" + }, + "TRANSCEIVER_DOM_THRESHOLD|Ethernet0": { "rxpowerhighalarm": "3.4001", "rxpowerhighwarning": "2.4000", "rxpowerlowalarm": "-13.5067", diff --git a/tests/mock_tables/asic1/state_db.json b/tests/mock_tables/asic1/state_db.json index f288bc1a..dd775b9b 100644 --- a/tests/mock_tables/asic1/state_db.json +++ b/tests/mock_tables/asic1/state_db.json @@ -31,7 +31,9 @@ "tx1power": "N/A", "tx2power": "N/A", "tx3power": "N/A", - "tx4power": "N/A", + "tx4power": "N/A" + }, + "TRANSCEIVER_DOM_THRESHOLD|Ethernet64": { "rxpowerhighalarm": "3.4001", "rxpowerhighwarning": "2.4000", "rxpowerlowalarm": "-13.5067", diff --git a/tests/mock_tables/state_db.json b/tests/mock_tables/state_db.json index dc7e69a4..12552997 100644 --- a/tests/mock_tables/state_db.json +++ b/tests/mock_tables/state_db.json @@ -49,7 +49,9 @@ "tx1power": "N/A", "tx2power": "N/A", "tx3power": "N/A", - "tx4power": "N/A", + "tx4power": "N/A" + }, + "TRANSCEIVER_DOM_THRESHOLD|Ethernet0": { "rxpowerhighalarm": "3.4001", "rxpowerhighwarning": "2.4000", "rxpowerlowalarm": "-13.5067", @@ -111,7 +113,9 @@ "tx5power": "1.175", "tx6power": "1.175", "tx7power": "1.175", - "tx8power": "1.175", + "tx8power": "1.175" + }, + "TRANSCEIVER_DOM_THRESHOLD|Ethernet8": { "rxpowerhighalarm": "6.9999", "rxpowerhighwarning": "4.9999", "rxpowerlowalarm": "-11.9044", From e8130f58bb66040a5c25435382e3c3df4bd0618b Mon Sep 17 00:00:00 2001 From: Junchao-Mellanox <57339448+Junchao-Mellanox@users.noreply.github.com> Date: Tue, 6 Dec 2022 10:08:20 +0800 Subject: [PATCH 012/312] [system-health] Improve code structure of system health CLIs (#2453) --- show/system_health.py | 194 ++++++++++++------------------------ tests/system_health_test.py | 6 +- 2 files changed, 65 insertions(+), 135 deletions(-) diff --git a/show/system_health.py b/show/system_health.py index 845ac792..a97214e7 100644 --- a/show/system_health.py +++ b/show/system_health.py @@ -5,102 +5,35 @@ from tabulate import tabulate import utilities_common.cli as clicommon -# -# 'system-health' command ("show system-health") -# -@click.group(name='system-health', cls=clicommon.AliasedGroup) -def system_health(): - """Show system-health information""" - return -@system_health.command() -def summary(): - """Show system-health summary information""" - # Mock the redis for unit test purposes # - try: - if os.environ["UTILITIES_UNIT_TESTING"] == "1": - modules_path = os.path.join(os.path.dirname(__file__), "..") - sys.path.insert(0, modules_path) - from tests.system_health_test import MockerManager - from tests.system_health_test import MockerChassis - HealthCheckerManager = MockerManager - Chassis = MockerChassis - except Exception: - # Normal run... # +def get_system_health_status(): + if os.environ["UTILITIES_UNIT_TESTING"] == "1": + modules_path = os.path.join(os.path.dirname(__file__), "..") + sys.path.insert(0, modules_path) + from tests.system_health_test import MockerManager + from tests.system_health_test import MockerChassis + HealthCheckerManager = MockerManager + Chassis = MockerChassis + else: if os.geteuid(): click.echo("Root privileges are required for this operation") - return + exit(1) from health_checker.manager import HealthCheckerManager from sonic_platform.chassis import Chassis + manager = HealthCheckerManager() if not manager.config.config_file_exists(): click.echo("System health configuration file not found, exit...") - return + exit(1) + chassis = Chassis() stat = manager.check(chassis) chassis.initizalize_system_led() - led = chassis.get_status_led() - click.echo("System status summary\n\n System status LED " + led) - services_list = [] - fs_list = [] - device_list =[] - for category, elements in stat.items(): - for element in elements: - if elements[element]['status'] != "OK": - if 'Running' in elements[element]['message']: - services_list.append(element) - elif 'Accessible' in elements[element]['message']: - fs_list.append(element) - else: - device_list.append(elements[element]['message']) - if len(services_list) or len(fs_list): - click.echo(" Services:\n Status: Not OK") - else: - click.echo(" Services:\n Status: OK") - if len(services_list): - services_list_string = str(services_list) - click.echo(" Not Running: " + services_list_string.replace("[", "").replace(']', "")) - if len(fs_list): - fs_list_string = str(fs_list) - click.echo(" Not Accessible: " + fs_list_string.replace("[", "").replace(']', "")) - if len(device_list): - click.echo(" Hardware:\n Status: Not OK") - click.echo(" Reasons: " + device_list.pop()) - while len(device_list): - click.echo("\t " + device_list.pop()) - else: - click.echo(" Hardware:\n Status: OK") -@system_health.command() -def detail(): - """Show system-health detail information""" - # Mock the redis for unit test purposes # - try: - if os.environ["UTILITIES_UNIT_TESTING"] == "1": - modules_path = os.path.join(os.path.dirname(__file__), "..") - sys.path.insert(0, modules_path) - from tests.system_health_test import MockerManager - from tests.system_health_test import MockerChassis - HealthCheckerManager = MockerManager - Chassis = MockerChassis - except Exception: - # Normal run... # - if os.geteuid(): - click.echo("Root privileges are required for this operation") - return - from health_checker.manager import HealthCheckerManager - from sonic_platform.chassis import Chassis + return manager, chassis, stat - manager = HealthCheckerManager() - if not manager.config.config_file_exists(): - click.echo("System health configuration file not found, exit...") - return - chassis = Chassis() - stat = manager.check(chassis) - #summary output - chassis.initizalize_system_led() - led = chassis.get_status_led() +def display_system_health_summary(stat, led): click.echo("System status summary\n\n System status LED " + led) services_list = [] fs_list = [] @@ -108,34 +41,35 @@ def detail(): for category, elements in stat.items(): for element in elements: if elements[element]['status'] != "OK": - if 'Running' in elements[element]['message']: - services_list.append(element) - elif 'Accessible' in elements[element]['message']: - fs_list.append(element) + if category == 'Services': + if 'Accessible' in elements[element]['message']: + fs_list.append(element) + else: + services_list.append(element) else: device_list.append(elements[element]['message']) - if len(services_list) or len(fs_list): + if services_list or fs_list: click.echo(" Services:\n Status: Not OK") else: click.echo(" Services:\n Status: OK") - if len(services_list): - services_list_string = str(services_list) - click.echo(" Not Running: " + services_list_string.replace("[", "").replace(']', "")) - if len(fs_list): - fs_list_string = str(fs_list) - click.echo(" Not Accessible: " + fs_list_string.replace("[", "").replace(']', "")) - if len(device_list): + if services_list: + click.echo(" Not Running: " + ', '.join(services_list)) + if fs_list: + click.echo(" Not Accessible: " + ', '.join(fs_list)) + if device_list: click.echo(" Hardware:\n Status: Not OK") - click.echo(" Reasons: " + device_list.pop()) - while len(device_list): - click.echo("\t " + device_list.pop()) + device_list.reverse() + click.echo(" Reasons: " + device_list[0]) + if len(device_list) > 1: + click.echo('\n'.join(("\t " + x) for x in device_list[1:])) else: click.echo(" Hardware:\n Status: OK") +def display_monitor_list(stat): click.echo('\nSystem services and devices monitor list\n') header = ['Name', 'Status', 'Type'] table = [] - for category, elements in stat.items(): + for elements in stat.values(): for element in sorted(elements.items(), key=lambda x: x[1]['status']): entry = [] entry.append(element[0]) @@ -143,6 +77,10 @@ def detail(): entry.append(element[1]['type']) table.append(entry) click.echo(tabulate(table, header)) + + +def display_ignore_list(manager): + header = ['Name', 'Status', 'Type'] click.echo('\nSystem services and devices ignore list\n') table = [] if manager.config.ignore_services: @@ -161,43 +99,35 @@ def detail(): table.append(entry) click.echo(tabulate(table, header)) +# +# 'system-health' command ("show system-health") +# +@click.group(name='system-health', cls=clicommon.AliasedGroup) +def system_health(): + """Show system-health information""" + return + +@system_health.command() +def summary(): + """Show system-health summary information""" + _, chassis, stat = get_system_health_status() + display_system_health_summary(stat, chassis.get_status_led()) + + +@system_health.command() +def detail(): + """Show system-health detail information""" + manager, chassis, stat = get_system_health_status() + display_system_health_summary(stat, chassis.get_status_led()) + display_monitor_list(stat) + display_ignore_list(manager) + + @system_health.command() def monitor_list(): """Show system-health monitored services and devices name list""" - # Mock the redis for unit test purposes # - try: - if os.environ["UTILITIES_UNIT_TESTING"] == "1": - modules_path = os.path.join(os.path.dirname(__file__), "..") - sys.path.insert(0, modules_path) - from tests.system_health_test import MockerManager - from tests.system_health_test import MockerChassis - HealthCheckerManager = MockerManager - Chassis = MockerChassis - except Exception: - # Normal run... # - if os.geteuid(): - click.echo("Root privileges are required for this operation") - return - from health_checker.manager import HealthCheckerManager - from sonic_platform.chassis import Chassis - - manager = HealthCheckerManager() - if not manager.config.config_file_exists(): - click.echo("System health configuration file not found, exit...") - return - chassis = Chassis() - stat = manager.check(chassis) - click.echo('\nSystem services and devices monitor list\n') - header = ['Name', 'Status', 'Type'] - table = [] - for category, elements in stat.items(): - for element in sorted(elements.items(), key=lambda x: x[1]['status']): - entry = [] - entry.append(element[0]) - entry.append(element[1]['status']) - entry.append(element[1]['type']) - table.append(entry) - click.echo(tabulate(table, header)) + _, _, stat = get_system_health_status() + display_monitor_list(stat) @system_health.group('sysready-status',invoke_without_command=True) diff --git a/tests/system_health_test.py b/tests/system_health_test.py index 2f9e48e7..4a14f527 100644 --- a/tests/system_health_test.py +++ b/tests/system_health_test.py @@ -84,7 +84,7 @@ def test_health_summary(self): System status LED red Services: Status: Not OK - Not Running: 'telemetry', 'snmp_subagent' + Not Running: telemetry, snmp_subagent Hardware: Status: OK """ @@ -171,7 +171,7 @@ def test_health_detail(self): System status LED red Services: Status: Not OK - Not Running: 'telemetry', 'sflowmgrd' + Not Running: telemetry, sflowmgrd Hardware: Status: Not OK Reasons: Failed to get voltage minimum threshold data for PSU 1 @@ -243,7 +243,7 @@ def test_health_detail(self): System status LED red Services: Status: Not OK - Not Running: 'telemetry', 'sflowmgrd' + Not Running: telemetry, sflowmgrd Hardware: Status: OK From 92c70011307670aba6b73ef571f0e8d966ab62e3 Mon Sep 17 00:00:00 2001 From: Sudharsan Dhamal Gopalarathnam Date: Tue, 6 Dec 2022 01:32:17 -0800 Subject: [PATCH 013/312] [config] Add check in config interface ip command to block if the interface is portchannel member (#2539) - What I did Added a check in config interface ip command to block if the interface is portchannel member - How I did it Added check in config handling - How to verify it Added UT to verify. --- config/main.py | 6 ++++++ tests/ip_config_test.py | 12 ++++++++++++ 2 files changed, 18 insertions(+) diff --git a/config/main.py b/config/main.py index e8b9508a..c9659928 100644 --- a/config/main.py +++ b/config/main.py @@ -4374,6 +4374,12 @@ def add(ctx, interface_name, ip_addr, gw): click.echo("Interface {} is a member of vlan\nAborting!".format(interface_name)) return + portchannel_member_table = config_db.get_table('PORTCHANNEL_MEMBER') + + if interface_is_in_portchannel(portchannel_member_table, interface_name): + ctx.fail("{} is configured as a member of portchannel." + .format(interface_name)) + try: ip_address = ipaddress.ip_interface(ip_addr) except ValueError as err: diff --git a/tests/ip_config_test.py b/tests/ip_config_test.py index fd6b4feb..24d09c86 100644 --- a/tests/ip_config_test.py +++ b/tests/ip_config_test.py @@ -111,6 +111,18 @@ def test_add_interface_ipv4_with_leading_zeros(self): assert result.exit_code != 0 assert ERROR_MSG in result.output + def test_ip_add_on_interface_which_is_member_of_portchannel(self): + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + # config int ip add Ethernet32 100.10.10.1/24 + result = runner.invoke(config.config.commands["interface"].commands["ip"].commands["add"], ["Ethernet32", "100.10.10.1/24"], obj=obj) + assert result.exit_code != 0 + print(result.output) + print(result.exit_code) + assert 'Error: Ethernet32 is configured as a member of portchannel.' in result.output + ''' Tests for IPv6 ''' def test_add_del_interface_valid_ipv6(self): From ca9a02033f6609993a779d26a9da1b123a1115f6 Mon Sep 17 00:00:00 2001 From: Vivek Date: Tue, 6 Dec 2022 01:34:21 -0800 Subject: [PATCH 014/312] [generate_dump] [Mellanox] Fix the duplicate dfw dump collection problem by adding symlinks (#2536) - What I did Currently the dfw dumps which are usually saved under /var/log/mellanox/sdk-dumps are collect twice in the techsupport. Once under log/ and once under sai_sdk_dump/ folder. Fixed the scenario by creating a symbolic link from sai_sdk_dump/sai-dfw-xxxxxxxxx.tar.gz -> ../log/sai-dfw-xxxxxxxxx.tar.gz - How I did it dfw dumps are copied from syncd currently, but the logic is updated to collect files from the host if SAI_DUMP_STORE_PATH is mounted on the host Fixed the duplicate dfw dump collection problems by adding a relative symbolic link from sai-sdk-dump/ -> log/ folder. fw dump me collection is moved to a new function collect_mellanox_dfw_dumps which in run at the end i.e. after the files under /var/log are saved - How to verify it root@switch:/home/admin# show techsupport --verbose root@switch:/home/admin/sonic_dump_r-lionfish-13_20221202_081958/log# ls -Al | grep dfw -rw-r--r-- 1 root root 1841061 Dec 2 08:21 sai-dfw-1669685690.tar.gz root@switch:/home/admin/sonic_dump_r-lionfish-13_20221202_081958/sai_sdk_dump# ls -Al Signed-off-by: Vivek Reddy Karri --- scripts/generate_dump | 104 ++++++++++++++++++++++++++++++++++++++---- 1 file changed, 94 insertions(+), 10 deletions(-) diff --git a/scripts/generate_dump b/scripts/generate_dump index 235c553a..e7e378c2 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -993,6 +993,49 @@ enable_logrotate() { sed -i '/\/usr\/sbin\/logrotate/s/^#*//g' /etc/cron.d/logrotate } +############################################################################### +# Create a relative symbolic link of an existing file +# Globals: +# BASE +# MKDIR +# TAR +# TARFILE +# DUMPDIR +# V +# RM +# NOOP +# Arguments: +# filename: the full path of the file +# dest_dir: destination dir where the link is created +# src_sir: directory under $TARDIR where the actual file exists +# Returns: +# None +############################################################################### +save_symlink() { + trap 'handle_error $? $LINENO' ERR + local start_t=$(date +%s%3N) + local end_t=0 + local filename=$1 + local dest_dir=$2 + local src_dir=$3 + local do_tar_append=${4:-true} + local file_basename=$(basename $filename) + local tar_path="$BASE/$dest_dir/$file_basename" + + $MKDIR $V -p "$TARDIR/$dest_dir" + + ${CMD_PREFIX}pushd $TARDIR/$dest_dir + ${CMD_PREFIX}ln -s ../$src_dir/$file_basename $file_basename + ${CMD_PREFIX}popd + + if $do_tar_append; then + ($TAR $V -rf $TARFILE -C $DUMPDIR "$tar_path" \ + || abort "${EXT_PROCFS_SAVE_FAILED}" "tar append operation failed. Aborting to prevent data loss.") \ + && $RM $V -f "$DUMPDIR/$tar_path" + fi + end_t=$(date +%s%3N) + echo "[ save_symlink:$filename] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO +} ############################################################################### # Collect Mellanox specific information @@ -1025,16 +1068,6 @@ collect_mellanox() { ${CMD_PREFIX}rm -rf $sai_dump_folder ${CMD_PREFIX}docker exec syncd rm -rf $sai_dump_folder - # Save SDK error dumps - local sdk_dump_path=`${CMD_PREFIX}docker exec syncd cat /tmp/sai.profile|grep "SAI_DUMP_STORE_PATH"|cut -d = -f2` - if [[ -d $sdk_dump_path ]]; then - copy_from_docker syncd $sdk_dump_path /tmp/sdk-dumps - for file in $(find /tmp/sdk-dumps -type f); do - save_file ${file} sai_sdk_dump false - done - rm -rf /tmp/sdk-dumps - fi - # run 'hw-management-generate-dump.sh' script and save the result file HW_DUMP_FILE=/usr/bin/hw-management-generate-dump.sh if [ -f "$HW_DUMP_FILE" ]; then @@ -1056,6 +1089,53 @@ collect_mellanox() { } +############################################################################### +# Collect dfw dumps if any. Applies to only MLNX platform +# Globals: +# CMD_PREFIX +# Arguments: +# None +# Returns: +# None +############################################################################### +collect_mellanox_dfw_dumps() { + trap 'handle_error $? $LINENO' ERR + local platform=$(python3 -c "from sonic_py_common import device_info; print(device_info.get_platform())") + local hwsku=$(python3 -c "from sonic_py_common import device_info; print(device_info.get_hwsku())") + local sdk_dump_path=`cat /usr/share/sonic/device/${platform}/${hwsku}/sai.profile|grep "SAI_DUMP_STORE_PATH"|cut -d = -f2` + + if [[ ! -d $sdk_dump_path ]]; then + # This would mean the SAI_DUMP_STORE_PATH is not mounted on the host and is only accessible though the container + # This is a bad design and not recommended But there is nothing which restricts against it and thus the special handling + if [[ "$( docker container inspect -f '{{.State.Running}}' syncd )" == "true" ]]; then + $RM $V -rf /tmp/dfw-sdk-dumps + $MKDIR $V -p /tmp/dfw-sdk-dumps + copy_from_docker syncd $sdk_dump_path /tmp/dfw-sdk-dumps + else + echo "ERROR: dfw dumps cannot be collected" + fi + sdk_dump_path="/tmp/dfw-sdk-dumps" + fi + + for file in $(find_files "$sdk_dump_path"); do + if $TAR -tf $TARFILE | grep $BASE/log/$(basename $file); then + # If this path sits under "/var/log/" dir, the files + # would've already been collected and thus just add a sym link + if [ ! -z "${file##*.gz}" ]; then + # files saved under log/ are zipped with gz + file=$file.gz + fi + ${CMD_PREFIX}save_symlink ${file} sai_sdk_dump log + else + if [ ! -z "${file##*.gz}" ]; then + ${CMD_PREFIX}save_file ${file} sai_sdk_dump true + else + ${CMD_PREFIX}save_file ${file} sai_sdk_dump false + fi + fi + done +} + ############################################################################### # Collect Broadcom specific information # Globals: @@ -1626,6 +1706,10 @@ main() { save_crash_files save_warmboot_files + if [[ "$asic" = "mellanox" ]]; then + collect_mellanox_dfw_dumps + fi + finalize } From 10eb5ba8e3af26695eb4f00ddaf70b6be60a73b1 Mon Sep 17 00:00:00 2001 From: Junchao-Mellanox <57339448+Junchao-Mellanox@users.noreply.github.com> Date: Wed, 7 Dec 2022 09:21:54 +0800 Subject: [PATCH 015/312] Support syslog rate limit configuration for containers and host (#2454) * Support syslog rate limit configuration for containers and host * Fix LGTM * Fix unit test issue * Add syslog_util as a package * Fix review comment * Update feature.py --- config/syslog.py | 24 +++ setup.py | 1 + show/syslog.py | 63 +++++++- sonic_package_manager/manifest.py | 3 + .../service_creator/feature.py | 40 ++++- syslog_util/__init__.py | 0 syslog_util/common.py | 76 +++++++++ .../test_service_creator.py | 89 ++++++++++- tests/syslog_input/assert_show_output.py | 33 ++++ tests/syslog_input/syslog_rate_limit_db.json | 33 ++++ tests/syslog_test.py | 148 +++++++++++++++++- 11 files changed, 502 insertions(+), 8 deletions(-) create mode 100644 syslog_util/__init__.py create mode 100644 syslog_util/common.py create mode 100644 tests/syslog_input/syslog_rate_limit_db.json diff --git a/config/syslog.py b/config/syslog.py index be16a12d..d924a6d1 100644 --- a/config/syslog.py +++ b/config/syslog.py @@ -6,6 +6,7 @@ import utilities_common.cli as clicommon from sonic_py_common import logger +from syslog_util import common as syslog_common SYSLOG_TABLE_CDB = "SYSLOG_SERVER" @@ -447,3 +448,26 @@ def delete(db, server_ip_address): except Exception as e: log.log_error("Failed to remove remote syslog logging: {}".format(str(e))) ctx.fail(str(e)) + + +@syslog.command("rate-limit-host") +@click.option("-i", "--interval", help="Configures syslog rate limit interval in seconds for host", type=click.IntRange(0, 2147483647)) +@click.option("-b", "--burst", help="Configures syslog rate limit burst in number of messages for host", type=click.IntRange(0, 2147483647)) +@clicommon.pass_db +def rate_limit_host(db, interval, burst): + """ Configure syslog rate limit for host """ + syslog_common.rate_limit_validator(interval, burst) + syslog_common.save_rate_limit_to_db(db, None, interval, burst, log) + + +@syslog.command("rate-limit-container") +@click.argument("service_name", required=True) +@click.option("-i", "--interval", help="Configures syslog rate limit interval in seconds for specified containers", type=click.IntRange(0, 2147483647)) +@click.option("-b", "--burst", help="Configures syslog rate limit burst in number of messages for specified containers", type=click.IntRange(0, 2147483647)) +@clicommon.pass_db +def rate_limit_container(db, service_name, interval, burst): + """ Configure syslog rate limit for containers """ + syslog_common.rate_limit_validator(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) diff --git a/setup.py b/setup.py index cc0c940a..70d7473b 100644 --- a/setup.py +++ b/setup.py @@ -48,6 +48,7 @@ 'pddf_psuutil', 'pddf_thermalutil', 'pddf_ledutil', + 'syslog_util', 'show', 'show.interfaces', 'show.plugins', diff --git a/show/syslog.py b/show/syslog.py index ed112e4c..d258be33 100644 --- a/show/syslog.py +++ b/show/syslog.py @@ -4,6 +4,7 @@ from natsort import natsorted import utilities_common.cli as clicommon +from syslog_util import common as syslog_common SYSLOG_TABLE = "SYSLOG_SERVER" @@ -28,10 +29,14 @@ def format(header, body): cls=clicommon.AliasedGroup, invoke_without_command=True ) +@click.pass_context @clicommon.pass_db -def syslog(db): +def syslog(db, ctx): """ Show syslog server configuration """ + if ctx.invoked_subcommand is not None: + return + header = [ "SERVER IP", "SOURCE IP", @@ -51,3 +56,59 @@ def syslog(db): body.append(row) click.echo(format(header, body)) + +@syslog.command( + name='rate-limit-host' +) +@clicommon.pass_db +def rate_limit_host(db): + """ Show syslog rate limit configuration for host """ + + header = [ + "INTERVAL", + "BURST", + ] + body = [] + entry = db.cfgdb.get_entry(syslog_common.SYSLOG_CONFIG_TABLE, syslog_common.SYSLOG_CONFIG_GLOBAL_KEY) + if entry: + body.append([entry.get(syslog_common.SYSLOG_RATE_LIMIT_INTERVAL, 'N/A'), + entry.get(syslog_common.SYSLOG_RATE_LIMIT_BURST, 'N/A')]) + else: + body.append('N/A', 'N/A') + + click.echo(format(header, body)) + + +@syslog.command( + name='rate-limit-container' +) +@click.argument('service_name', metavar='', required=False) +@clicommon.pass_db +def rate_limit_container(db, service_name): + """ Show syslog rate limit configuration for containers """ + + header = [ + "SERVICE", + "INTERVAL", + "BURST", + ] + body = [] + features = db.cfgdb.get_table(syslog_common.FEATURE_TABLE) + + if service_name: + syslog_common.service_validator(features, service_name) + service_list = [service_name] + else: + service_list = [name for name, service_config in features.items() if service_config.get(syslog_common.SUPPORT_RATE_LIMIT, '').lower() == 'true'] + + syslog_configs = db.cfgdb.get_table(syslog_common.SYSLOG_CONFIG_FEATURE_TABLE) + for service in natsorted(service_list): + if service in syslog_configs: + entry = syslog_configs[service] + body.append([service, + entry.get(syslog_common.SYSLOG_RATE_LIMIT_INTERVAL, 'N/A'), + entry.get(syslog_common.SYSLOG_RATE_LIMIT_BURST, 'N/A')]) + else: + body.append([service, 'N/A', 'N/A']) + + click.echo(format(header, body)) diff --git a/sonic_package_manager/manifest.py b/sonic_package_manager/manifest.py index 94e00dec..dc5b16b1 100644 --- a/sonic_package_manager/manifest.py +++ b/sonic_package_manager/manifest.py @@ -186,6 +186,9 @@ def unmarshal(self, value): ManifestArray('after', DefaultMarshaller(str)), ManifestArray('before', DefaultMarshaller(str)), ]), + ManifestRoot('syslog', [ + ManifestField('support-rate-limit', DefaultMarshaller(bool), False), + ]), ]), ManifestRoot('container', [ ManifestField('privileged', DefaultMarshaller(bool), False), diff --git a/sonic_package_manager/service_creator/feature.py b/sonic_package_manager/service_creator/feature.py index 7e4d8da8..90378d37 100644 --- a/sonic_package_manager/service_creator/feature.py +++ b/sonic_package_manager/service_creator/feature.py @@ -25,6 +25,12 @@ 'available_mem_threshold': '10.0' } +SYSLOG_CONFIG = 'SYSLOG_CONFIG_FEATURE' +DEFAULT_SYSLOG_FEATURE_CONFIG = { + 'rate_limit_interval': '300', + 'rate_limit_burst': '20000' +} + def is_enabled(cfg): return cfg.get('state', 'disabled').lower() == 'enabled' @@ -36,7 +42,7 @@ def is_multi_instance(cfg): class FeatureRegistry: """ 1) FeatureRegistry class provides an interface to register/de-register new feature tables persistently. - 2) Writes persistent configuration to FEATURE & + 2) Writes persistent configuration to FEATURE & AUTO_TECHSUPPORT_FEATURE tables """ @@ -72,10 +78,14 @@ def register(self, new_cfg = {**new_cfg, **non_cfg_entries} conn.set_entry(FEATURE, name, new_cfg) - + if self.register_auto_ts(name): log.info(f'{name} entry is added to {AUTO_TS_FEATURE} table') + if 'syslog' in manifest['service'] and 'support-rate-limit' in manifest['service']['syslog'] and manifest['service']['syslog']['support-rate-limit']: + self.register_syslog_config(name) + log.info(f'{name} entry is added to {SYSLOG_CONFIG} table') + def deregister(self, name: str): """ Deregister feature by name. @@ -89,6 +99,7 @@ def deregister(self, name: str): for conn in db_connetors: conn.set_entry(FEATURE, name, None) conn.set_entry(AUTO_TS_FEATURE, name, None) + conn.set_entry(SYSLOG_CONFIG, name, None) def update(self, old_manifest: Manifest, @@ -119,10 +130,14 @@ def update(self, new_cfg = {**new_cfg, **non_cfg_entries} conn.set_entry(FEATURE, new_name, new_cfg) - + if self.register_auto_ts(new_name, old_name): log.info(f'{new_name} entry is added to {AUTO_TS_FEATURE} table') + if 'syslog' in new_manifest['service'] and 'support-rate-limit' in new_manifest['service']['syslog'] and new_manifest['service']['syslog']['support-rate-limit']: + self.register_syslog_config(new_name, old_name) + log.info(f'{new_name} entry is added to {SYSLOG_CONFIG} table') + def is_feature_enabled(self, name: str) -> bool: """ Returns whether the feature is current enabled or not. Accesses running CONFIG DB. If no running CONFIG_DB @@ -178,10 +193,26 @@ def register_auto_ts(self, new_name, old_name=None): current_cfg = conn.get_entry(AUTO_TS_FEATURE, old_name) conn.set_entry(AUTO_TS_FEATURE, old_name, None) new_cfg.update(current_cfg) - + conn.set_entry(AUTO_TS_FEATURE, new_name, new_cfg) return True + def register_syslog_config(self, new_name, old_name=None): + """ Registers syslog configuration + + Args: + new_name (str): new table name + old_name (str, optional): old table name. Defaults to None. + """ + for conn in self._sonic_db.get_connectors(): + new_cfg = copy.deepcopy(DEFAULT_SYSLOG_FEATURE_CONFIG) + if old_name: + current_cfg = conn.get_entry(SYSLOG_CONFIG, old_name) + conn.set_entry(SYSLOG_CONFIG, old_name, None) + new_cfg.update(current_cfg) + + conn.set_entry(SYSLOG_CONFIG, new_name, new_cfg) + @staticmethod def get_default_feature_entries(state=None, owner=None) -> Dict[str, str]: """ Get configurable feature table entries: @@ -203,4 +234,5 @@ def get_non_configurable_feature_entries(manifest) -> Dict[str, str]: 'has_global_scope': str(manifest['service']['host-service']), 'has_timer': str(manifest['service']['delayed']), 'check_up_status': str(manifest['service']['check_up_status']), + 'support_syslog_rate_limit': str(manifest['service']['syslog']['support-rate-limit']), } diff --git a/syslog_util/__init__.py b/syslog_util/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/syslog_util/common.py b/syslog_util/common.py new file mode 100644 index 00000000..5282c088 --- /dev/null +++ b/syslog_util/common.py @@ -0,0 +1,76 @@ +import click + + +FEATURE_TABLE = "FEATURE" +SYSLOG_CONFIG_TABLE = 'SYSLOG_CONFIG' +SYSLOG_CONFIG_GLOBAL_KEY = 'GLOBAL' +SYSLOG_CONFIG_FEATURE_TABLE = 'SYSLOG_CONFIG_FEATURE' + +SYSLOG_RATE_LIMIT_INTERVAL = 'rate_limit_interval' +SYSLOG_RATE_LIMIT_BURST = 'rate_limit_burst' +SUPPORT_RATE_LIMIT = 'support_syslog_rate_limit' + + +def rate_limit_validator(interval, burst): + """Validate input interval/burst + + Args: + interval (int): Rate limit interval + burst (int): Rate limit burst + """ + if interval is None and burst is None: + raise click.UsageError('Either interval or burst must be configured') + + +def service_validator(feature_data, service_name): + """Validate input service name + + Args: + feature_data (dict): feature entries of FEATURE table + service_name (str): service name + """ + if service_name not in feature_data: + valid_service_names = ','.join(feature_data.keys()) + raise click.ClickException(f'Invalid service name {service_name}, please choose from: {valid_service_names}') + + service_data = feature_data[service_name] + + support_rate_limit = service_data.get(SUPPORT_RATE_LIMIT, '').lower() == 'true' + if not support_rate_limit: + raise click.ClickException(f'Service {service_name} does not support syslog rate limit configuration') + + +def save_rate_limit_to_db(db, service_name, interval, burst, log): + """Save rate limit configuration to DB + + Args: + db (object): db object + service_name (str): service name. None means config for host. + interval (int): rate limit interval + burst (int): rate limit burst + log (obj): log object + """ + if service_name is None: + service_name = 'host' + table = SYSLOG_CONFIG_TABLE + key = SYSLOG_CONFIG_GLOBAL_KEY + else: + table = SYSLOG_CONFIG_FEATURE_TABLE + key = service_name + + if interval == 0 or burst == 0: + msg = f'Disable syslog rate limit for {service_name}' + click.echo(msg) + log.log_notice(msg) + interval = 0 + burst = 0 + + data = {} + if interval is not None: + data[SYSLOG_RATE_LIMIT_INTERVAL] = interval + if burst is not None: + data[SYSLOG_RATE_LIMIT_BURST] = burst + db.cfgdb.mod_entry(table, key, data) + log.log_notice(f"Configured syslog {service_name} rate-limits: interval={data.get(SYSLOG_RATE_LIMIT_INTERVAL, 'N/A')},\ + burst={data.get(SYSLOG_RATE_LIMIT_BURST, 'N/A')}") + diff --git a/tests/sonic_package_manager/test_service_creator.py b/tests/sonic_package_manager/test_service_creator.py index 645a820f..c97d3626 100644 --- a/tests/sonic_package_manager/test_service_creator.py +++ b/tests/sonic_package_manager/test_service_creator.py @@ -36,6 +36,9 @@ def manifest(): 'fast-shutdown': { 'before': ['swss'], }, + 'syslog': { + 'support-rate-limit': False + } }, 'container': { 'privileged': True, @@ -217,6 +220,7 @@ def test_feature_registration(mock_sonic_db, manifest): 'has_global_scope': 'True', 'has_timer': 'False', 'check_up_status': 'False', + 'support_syslog_rate_limit': 'False', }) @@ -230,6 +234,7 @@ def test_feature_update(mock_sonic_db, manifest): 'has_global_scope': 'True', 'has_timer': 'False', 'check_up_status': 'False', + 'support_syslog_rate_limit': 'False', } mock_connector = Mock() mock_connector.get_entry = Mock(return_value=curr_feature_config) @@ -253,6 +258,7 @@ def test_feature_update(mock_sonic_db, manifest): 'has_global_scope': 'True', 'has_timer': 'True', 'check_up_status': 'False', + 'support_syslog_rate_limit': 'False', }), ], any_order=True) @@ -274,6 +280,7 @@ def test_feature_registration_with_timer(mock_sonic_db, manifest): 'has_global_scope': 'True', 'has_timer': 'True', 'check_up_status': 'False', + 'support_syslog_rate_limit': 'False', }) @@ -293,6 +300,7 @@ def test_feature_registration_with_non_default_owner(mock_sonic_db, manifest): 'has_global_scope': 'True', 'has_timer': 'False', 'check_up_status': 'False', + 'support_syslog_rate_limit': 'False', }) @@ -309,7 +317,7 @@ def get_entry(cls, table, key): return {"state" : "enabled", "rate_limit_interval" : "600"} else: return {} - + @classmethod def get_entry_running_cfg(cls, table, key): if table == "AUTO_TECHSUPPORT_FEATURE" and key == "test": @@ -362,7 +370,7 @@ def test_auto_ts_feature_update_flow(mock_sonic_db, manifest): new_manifest = copy.deepcopy(manifest) new_manifest['service']['name'] = 'test_new' new_manifest['service']['delayed'] = True - + AutoTSHelp.GLOBAL_STATE = {"state" : "enabled"} # Mock init_cfg connector mock_init_cfg = Mock() @@ -402,3 +410,80 @@ def test_auto_ts_feature_update_flow(mock_sonic_db, manifest): ], any_order = True ) + + +class TestSyslogRateLimit: + """ Helper class for Syslog rate limit Tests + """ + @classmethod + def get_entry_running_cfg(cls, table, key): + if table == "SYSLOG_CONFIG_FEATURE" and key == "test": + return {"rate_limit_burst" : "10000", "rate_limit_interval" : "20"} + else: + return {} + + def test_rate_limit_register(self, mock_sonic_db, manifest): + mock_init_cfg = Mock() + mock_init_cfg.get_entry = Mock(side_effect=AutoTSHelp.get_entry) + mock_sonic_db.get_connectors = Mock(return_value=[mock_init_cfg]) + mock_sonic_db.get_initial_db_connector = Mock(return_value=mock_init_cfg) + feature_registry = FeatureRegistry(mock_sonic_db) + new_manifest = copy.deepcopy(manifest) + new_manifest['service']['syslog']['support-rate-limit'] = True + feature_registry.register(new_manifest) + mock_init_cfg.set_entry.assert_any_call("SYSLOG_CONFIG_FEATURE", "test", { + "rate_limit_interval" : "300", + "rate_limit_burst" : "20000" + } + ) + + def test_rate_limit_deregister(self, mock_sonic_db): + mock_connector = Mock() + mock_sonic_db.get_connectors = Mock(return_value=[mock_connector]) + feature_registry = FeatureRegistry(mock_sonic_db) + feature_registry.deregister("test") + mock_connector.set_entry.assert_any_call("SYSLOG_CONFIG_FEATURE", "test", None) + + def test_rate_limit_update(self, mock_sonic_db, manifest): + rate_limit_manifest = copy.deepcopy(manifest) + rate_limit_manifest['service']['syslog']['support-rate-limit'] = True + new_rate_limit_manifest = copy.deepcopy(rate_limit_manifest) + new_rate_limit_manifest['service']['name'] = 'test_new' + new_rate_limit_manifest['service']['delayed'] = True + + # Mock init_cfg connector + mock_init_cfg = Mock() + mock_init_cfg.get_entry = Mock(side_effect=AutoTSHelp.get_entry) + + # Mock running/peristent cfg connector + mock_other_cfg = Mock() + mock_other_cfg.get_entry = Mock(side_effect=TestSyslogRateLimit.get_entry_running_cfg) + + # Setup sonic_db class + mock_sonic_db.get_connectors = Mock(return_value=[mock_init_cfg, mock_other_cfg]) + mock_sonic_db.get_initial_db_connector = Mock(return_value=mock_init_cfg) + + feature_registry = FeatureRegistry(mock_sonic_db) + feature_registry.update(rate_limit_manifest, new_rate_limit_manifest) + + mock_init_cfg.set_entry.assert_has_calls( + [ + call("SYSLOG_CONFIG_FEATURE", "test", None), + call("SYSLOG_CONFIG_FEATURE", "test_new", { + "rate_limit_interval" : "300", + "rate_limit_burst" : "20000" + }) + ], + any_order = True + ) + + mock_other_cfg.set_entry.assert_has_calls( + [ + call("SYSLOG_CONFIG_FEATURE", "test", None), + call("SYSLOG_CONFIG_FEATURE", "test_new", { + "rate_limit_interval" : "20", + "rate_limit_burst" : "10000" + }) + ], + any_order = True + ) diff --git a/tests/syslog_input/assert_show_output.py b/tests/syslog_input/assert_show_output.py index 64924d0e..edcbe11a 100644 --- a/tests/syslog_input/assert_show_output.py +++ b/tests/syslog_input/assert_show_output.py @@ -15,3 +15,36 @@ 3.3.3.3 1.1.1.1 514 mgmt 2222::2222 1111::1111 514 Vrf-Data """ + +show_syslog_rate_limit_host="""\ +INTERVAL BURST +---------- ------- +100 20000 +""" + +show_syslog_rate_limit_container="""\ +SERVICE INTERVAL BURST +--------- ---------- ------- +bgp 150 30000 +snmp N/A N/A +swss N/A 30000 +syncd N/A N/A +""" + +show_syslog_rate_limit_container_bgp="""\ +SERVICE INTERVAL BURST +--------- ---------- ------- +bgp 150 30000 +""" + +show_syslog_rate_limit_container_swss="""\ +SERVICE INTERVAL BURST +--------- ---------- ------- +swss N/A 30000 +""" + +show_syslog_rate_limit_container_syncd="""\ +SERVICE INTERVAL BURST +--------- ---------- ------- +syncd N/A N/A +""" diff --git a/tests/syslog_input/syslog_rate_limit_db.json b/tests/syslog_input/syslog_rate_limit_db.json new file mode 100644 index 00000000..79517e1e --- /dev/null +++ b/tests/syslog_input/syslog_rate_limit_db.json @@ -0,0 +1,33 @@ +{ + "FEATURE|bgp": { + "state": "enabled", + "support_syslog_rate_limit": "true" + }, + "FEATURE|swss": { + "state": "enabled", + "support_syslog_rate_limit": "true" + }, + "FEATURE|syncd": { + "state": "enabled", + "support_syslog_rate_limit": "true" + }, + "FEATURE|snmp": { + "state": "disabled", + "support_syslog_rate_limit": "true" + }, + "FEATURE|pmon": { + "state": "enabled", + "support_syslog_rate_limit": "false" + }, + "SYSLOG_CONFIG|GLOBAL": { + "rate_limit_interval": "100", + "rate_limit_burst": "20000" + }, + "SYSLOG_CONFIG_FEATURE|bgp": { + "rate_limit_interval": "150", + "rate_limit_burst": "30000" + }, + "SYSLOG_CONFIG_FEATURE|swss": { + "rate_limit_burst": "30000" + } +} diff --git a/tests/syslog_test.py b/tests/syslog_test.py index 768f6219..f7d2cde1 100644 --- a/tests/syslog_test.py +++ b/tests/syslog_test.py @@ -11,6 +11,13 @@ from click.testing import CliRunner from utilities_common.db import Db +from syslog_util.common import FEATURE_TABLE, \ + SYSLOG_CONFIG_TABLE, \ + SYSLOG_CONFIG_GLOBAL_KEY, \ + SYSLOG_CONFIG_FEATURE_TABLE, \ + SYSLOG_RATE_LIMIT_INTERVAL, \ + SYSLOG_RATE_LIMIT_BURST, \ + SUPPORT_RATE_LIMIT from .mock_tables import dbconnector from .syslog_input import config_mock @@ -30,7 +37,6 @@ SUCCESS = 0 ERROR2 = 2 - test_path = os.path.dirname(os.path.abspath(__file__)) mock_db_path = os.path.join(test_path, "syslog_input") logger = logging.getLogger(__name__) @@ -213,6 +219,95 @@ def test_config_syslog_nonexistent_vrf(self, vrf): assert ERROR_PATTERN_NONEXISTENT_VRF in result.output assert result.exit_code == ERROR2 + @pytest.mark.parametrize("test_data", [{'interval':1, 'burst':100, 'expected_interval': '1', 'expected_burst': '100'}, + {'interval':0, 'burst':100, 'expected_interval': '0', 'expected_burst': '0'}, + {'interval':1, 'burst':0, 'expected_interval': '0', 'expected_burst': '0'}]) + def test_config_syslog_rate_limit_host(self, test_data): + db = Db() + runner = CliRunner() + + result = runner.invoke( + config.config.commands["syslog"].commands["rate-limit-host"], + ["--interval", test_data['interval'], "--burst", test_data['burst']], obj=db + ) + + assert result.exit_code == SUCCESS + + table = db.cfgdb.get_table(SYSLOG_CONFIG_TABLE) + assert SYSLOG_CONFIG_GLOBAL_KEY in table + entry = table[SYSLOG_CONFIG_GLOBAL_KEY] + assert SYSLOG_RATE_LIMIT_INTERVAL in entry + assert SYSLOG_RATE_LIMIT_BURST in entry + assert entry[SYSLOG_RATE_LIMIT_INTERVAL] == test_data['expected_interval'] + assert entry[SYSLOG_RATE_LIMIT_BURST] == test_data['expected_burst'] + + @pytest.mark.parametrize("test_data", [{'subcommand': 'rate-limit-host', 'arguments': []}, + {'subcommand': 'rate-limit-container', 'arguments': ['bgp']}]) + def test_config_syslog_rate_limit_no_option(self, test_data): + db = Db() + runner = CliRunner() + + result = runner.invoke( + config.config.commands["syslog"].commands[test_data['subcommand']], test_data['arguments'], obj=db + ) + assert result.exit_code == ERROR2 + + @pytest.mark.parametrize("test_data", [{'interval':1, 'burst':100, 'expected_interval': '1', 'expected_burst': '100'}, + {'interval':0, 'burst':100, 'expected_interval': '0', 'expected_burst': '0'}, + {'interval':1, 'burst':0, 'expected_interval': '0', 'expected_burst': '0'}]) + def test_config_syslog_rate_limit_container_basic(self, test_data): + db = Db() + db.cfgdb.set_entry(FEATURE_TABLE, 'bgp', {SUPPORT_RATE_LIMIT: 'true', + 'state': 'enabled'}) + + runner = CliRunner() + + result = runner.invoke( + config.config.commands["syslog"].commands["rate-limit-container"], + ["bgp", "--interval", test_data['interval'], "--burst", test_data['burst']], obj=db + ) + + logger.debug("\n" + result.output) + logger.debug(result.exit_code) + print(result.output) + assert result.exit_code == SUCCESS + + table = db.cfgdb.get_table(SYSLOG_CONFIG_FEATURE_TABLE) + assert 'bgp' in table + entry = table['bgp'] + assert SYSLOG_RATE_LIMIT_INTERVAL in entry + assert SYSLOG_RATE_LIMIT_BURST in entry + assert entry[SYSLOG_RATE_LIMIT_INTERVAL] == test_data['expected_interval'] + assert entry[SYSLOG_RATE_LIMIT_BURST] == test_data['expected_burst'] + + def test_config_syslog_rate_limit_container_invalid_service(self): + db = Db() + runner = CliRunner() + + result = runner.invoke( + config.config.commands["syslog"].commands["rate-limit-container"], + ["invalid", "--interval", 1, "--burst", 100], obj=db + ) + + logger.debug("\n" + result.output) + logger.debug(result.exit_code) + assert result.exit_code != SUCCESS + + def test_config_syslog_rate_limit_container_service_no_support(self): + db = Db() + db.cfgdb.set_entry(FEATURE_TABLE, 'bgp', {SUPPORT_RATE_LIMIT: 'false', + 'state': 'enabled'}) + runner = CliRunner() + + result = runner.invoke( + config.config.commands["syslog"].commands["rate-limit-container"], + ["bgp", "--interval", 1, "--burst", 100], obj=db + ) + + logger.debug("\n" + result.output) + logger.debug(result.exit_code) + assert result.exit_code != SUCCESS + ########## SHOW SYSLOG ########## def test_show_syslog_empty(self): @@ -242,3 +337,54 @@ def test_show_syslog(self): logger.debug(result.exit_code) assert result.exit_code == SUCCESS assert result.output == assert_show_output.show_syslog + + @pytest.mark.parametrize("test_data", [{'subcommand':'rate-limit-host', 'expected_output': assert_show_output.show_syslog_rate_limit_host}, + {'subcommand':'rate-limit-container', 'expected_output': assert_show_output.show_syslog_rate_limit_container}]) + def test_show_syslog_rate_limit(self, test_data): + dbconnector.dedicated_dbs["CONFIG_DB"] = os.path.join(mock_db_path, "syslog_rate_limit_db") + + db = Db() + runner = CliRunner() + + result = runner.invoke( + show.cli.commands["syslog"].commands[test_data['subcommand']], [], obj=db + ) + + logger.debug("\n" + result.output) + logger.debug(result.exit_code) + assert result.exit_code == SUCCESS + assert result.output == test_data['expected_output'] + + @pytest.mark.parametrize("test_data", [{'argument':'bgp', 'expected_output': assert_show_output.show_syslog_rate_limit_container_bgp}, + {'argument':'swss', 'expected_output': assert_show_output.show_syslog_rate_limit_container_swss}, + {'argument':'syncd', 'expected_output': assert_show_output.show_syslog_rate_limit_container_syncd}]) + def test_show_syslog_rate_limit_container_per_service(self, test_data): + dbconnector.dedicated_dbs["CONFIG_DB"] = os.path.join(mock_db_path, "syslog_rate_limit_db") + + db = Db() + runner = CliRunner() + + result = runner.invoke( + show.cli.commands["syslog"].commands["rate-limit-container"], [test_data['argument']], obj=db + ) + + logger.debug("\n" + result.output) + logger.debug(result.exit_code) + assert result.exit_code == SUCCESS + assert result.output == test_data['expected_output'] + + @pytest.mark.parametrize("subcommand", ['invalid', # invalid service + 'pmon']) # not supported service + def test_show_syslog_rate_limit_container_negative(self, subcommand): + dbconnector.dedicated_dbs["CONFIG_DB"] = os.path.join(mock_db_path, "syslog_rate_limit_db") + + db = Db() + runner = CliRunner() + + result = runner.invoke( + show.cli.commands["syslog"].commands["rate-limit-container"], [subcommand], obj=db + ) + + logger.debug("\n" + result.output) + logger.debug(result.exit_code) + assert result.exit_code != SUCCESS From 09b8dd1333c84e9993234e017e2809d948c47c40 Mon Sep 17 00:00:00 2001 From: Vaibhav Hemant Dixit Date: Wed, 7 Dec 2022 15:40:05 -0800 Subject: [PATCH 016/312] [db_migrator] Remove import of swsssdk as it is not supported in master (#2544) Fixes: sonic-net/sonic-buildimage#12955 The cherrypick changes (from 202012 to master) made as part of #2515 broke the master branch db_migrator. The issue is due to an import of swsssdk which is no longer available in master image. How I did it Removed the import statement that came due to cherrypick. How to verify it Checked on physical device running master image Without fix: root@str2-acs-12:~# db_migrator.py Traceback (most recent call last): File "/usr/local/bin/db_migrator.py", line 11, in from swsssdk import ConfigDBConnector, SonicDBConfig ModuleNotFoundError: No module named 'swsssdk' root@str2-acs-12:~# With fix: root@str2-acs-12:~# db_migrator.py version_4_0_0 root@str2-acs-12:~# --- scripts/db_migrator.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index deee4b55..95062c42 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -8,7 +8,6 @@ import re from sonic_py_common import device_info, logger -from swsssdk import ConfigDBConnector, SonicDBConfig from swsscommon.swsscommon import SonicV2Connector, ConfigDBConnector, SonicDBConfig from db_migrator_constants import RESTAPI, TELEMETRY, CONSOLE_SWITCH From 208824d3202445e5d51c6ab6e5abeeb9c5483c1f Mon Sep 17 00:00:00 2001 From: isabelmsft <67024108+isabelmsft@users.noreply.github.com> Date: Thu, 8 Dec 2022 11:12:50 -0600 Subject: [PATCH 017/312] YANG Validation for ConfigDB Updates: WARM_RESTART, SFLOW_SESSION, SFLOW, VXLAN_TUNNEL, VXLAN_EVPN_NVO, VXLAN_TUNNEL_MAP, MGMT_VRF_CONFIG, CABLE_LENGTH, VRF tables (#2526) --- config/main.py | 213 +++++++++++++++++++++++++++------------- config/vxlan.py | 59 ++++++++--- tests/config_test.py | 161 ++++++++++++++++++++++++++++++ tests/ip_config_test.py | 48 ++++++++- tests/sflow_test.py | 76 ++++++++++++++ tests/vxlan_test.py | 31 ++++++ 6 files changed, 506 insertions(+), 82 deletions(-) diff --git a/config/main.py b/config/main.py index c9659928..1e8a120d 100644 --- a/config/main.py +++ b/config/main.py @@ -2955,36 +2955,50 @@ def warm_restart_enable(ctx, module): @click.argument('seconds', metavar='', required=True, type=int) @click.pass_context def warm_restart_neighsyncd_timer(ctx, seconds): - db = ctx.obj['db'] - if seconds not in range(1, 9999): - ctx.fail("neighsyncd warm restart timer must be in range 1-9999") - db.mod_entry('WARM_RESTART', 'swss', {'neighsyncd_timer': seconds}) + db = ValidatedConfigDBConnector(ctx.obj['db']) + if ADHOC_VALIDATION: + if seconds not in range(1, 9999): + ctx.fail("neighsyncd warm restart timer must be in range 1-9999") + try: + db.mod_entry('WARM_RESTART', 'swss', {'neighsyncd_timer': seconds}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) @warm_restart.command('bgp_timer') @click.argument('seconds', metavar='', required=True, type=int) @click.pass_context def warm_restart_bgp_timer(ctx, seconds): - db = ctx.obj['db'] - if seconds not in range(1, 3600): - ctx.fail("bgp warm restart timer must be in range 1-3600") - db.mod_entry('WARM_RESTART', 'bgp', {'bgp_timer': seconds}) + db = ValidatedConfigDBConnector(ctx.obj['db']) + if ADHOC_VALIDATION: + if seconds not in range(1, 3600): + ctx.fail("bgp warm restart timer must be in range 1-3600") + try: + db.mod_entry('WARM_RESTART', 'bgp', {'bgp_timer': seconds}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) @warm_restart.command('teamsyncd_timer') @click.argument('seconds', metavar='', required=True, type=int) @click.pass_context def warm_restart_teamsyncd_timer(ctx, seconds): - db = ctx.obj['db'] - if seconds not in range(1, 3600): - ctx.fail("teamsyncd warm restart timer must be in range 1-3600") - db.mod_entry('WARM_RESTART', 'teamd', {'teamsyncd_timer': seconds}) + db = ValidatedConfigDBConnector(ctx.obj['db']) + if ADHOC_VALIDATION: + if seconds not in range(1, 3600): + ctx.fail("teamsyncd warm restart timer must be in range 1-3600") + try: + db.mod_entry('WARM_RESTART', 'teamd', {'teamsyncd_timer': seconds}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) @warm_restart.command('bgp_eoiu') @click.argument('enable', metavar='', default='true', required=False, type=click.Choice(["true", "false"])) @click.pass_context def warm_restart_bgp_eoiu(ctx, enable): - db = ctx.obj['db'] - db.mod_entry('WARM_RESTART', 'bgp', {'bgp_eoiu': enable}) - + db = ValidatedConfigDBConnector(ctx.obj['db']) + try: + db.mod_entry('WARM_RESTART', 'bgp', {'bgp_eoiu': enable}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) def vrf_add_management_vrf(config_db): """Enable management vrf in config DB""" @@ -2993,7 +3007,11 @@ def vrf_add_management_vrf(config_db): if entry and entry['mgmtVrfEnabled'] == 'true' : click.echo("ManagementVRF is already Enabled.") return None - config_db.mod_entry('MGMT_VRF_CONFIG', "vrf_global", {"mgmtVrfEnabled": "true"}) + try: + config_db.mod_entry('MGMT_VRF_CONFIG', "vrf_global", {"mgmtVrfEnabled": "true"}) + except ValueError as e: + ctx = click.get_current_context() + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) def vrf_delete_management_vrf(config_db): @@ -3003,7 +3021,11 @@ def vrf_delete_management_vrf(config_db): if not entry or entry['mgmtVrfEnabled'] == 'false' : click.echo("ManagementVRF is already Disabled.") return None - config_db.mod_entry('MGMT_VRF_CONFIG', "vrf_global", {"mgmtVrfEnabled": "false"}) + try: + config_db.mod_entry('MGMT_VRF_CONFIG', "vrf_global", {"mgmtVrfEnabled": "false"}) + except ValueError as e: + ctx = click.get_current_context() + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) @config.group(cls=clicommon.AbbreviationGroup) @@ -4829,26 +4851,30 @@ def remove_queue(db, interface_name, queue_map): @click.pass_context def cable_length(ctx, interface_name, length): """Set interface cable length""" - config_db = ctx.obj["config_db"] + config_db = ValidatedConfigDBConnector(ctx.obj["config_db"]) if not is_dynamic_buffer_enabled(config_db): ctx.fail("This command can only be supported on a system with dynamic buffer enabled") + + if ADHOC_VALIDATION: + # Check whether port is legal + ports = config_db.get_entry("PORT", interface_name) + if not ports: + ctx.fail("Port {} doesn't exist".format(interface_name)) - # Check whether port is legal - ports = config_db.get_entry("PORT", interface_name) - if not ports: - ctx.fail("Port {} doesn't exist".format(interface_name)) - - try: - assert "m" == length[-1] - except Exception: - ctx.fail("Invalid cable length. Should be in format m, like 300m".format(cable_length)) + try: + assert "m" == length[-1] + except Exception: + ctx.fail("Invalid cable length. Should be in format m, like 300m".format(cable_length)) keys = config_db.get_keys("CABLE_LENGTH") cable_length_set = {} cable_length_set[interface_name] = length - config_db.mod_entry("CABLE_LENGTH", keys[0], cable_length_set) + try: + config_db.mod_entry("CABLE_LENGTH", keys[0], cable_length_set) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'transceiver' subgroup ('config interface transceiver ...') @@ -5265,7 +5291,7 @@ def vrf(ctx): @click.pass_context def add_vrf(ctx, vrf_name): """Add vrf""" - config_db = ctx.obj['config_db'] + config_db = ValidatedConfigDBConnector(ctx.obj['config_db']) if not vrf_name.startswith("Vrf") and not (vrf_name == 'mgmt') and not (vrf_name == 'management'): ctx.fail("'vrf_name' must begin with 'Vrf' or named 'mgmt'/'management' in case of ManagementVRF.") if len(vrf_name) > 15: @@ -5275,14 +5301,17 @@ def add_vrf(ctx, vrf_name): elif (vrf_name == 'mgmt' or vrf_name == 'management'): vrf_add_management_vrf(config_db) else: - config_db.set_entry('VRF', vrf_name, {"NULL": "NULL"}) + try: + config_db.set_entry('VRF', vrf_name, {"NULL": "NULL"}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) @vrf.command('del') @click.argument('vrf_name', metavar='', required=True) @click.pass_context def del_vrf(ctx, vrf_name): """Del vrf""" - config_db = ctx.obj['config_db'] + config_db = ValidatedConfigDBConnector(ctx.obj['config_db']) if not vrf_name.startswith("Vrf") and not (vrf_name == 'mgmt') and not (vrf_name == 'management'): ctx.fail("'vrf_name' must begin with 'Vrf' or named 'mgmt'/'management' in case of ManagementVRF.") if len(vrf_name) > 15: @@ -5299,7 +5328,10 @@ def del_vrf(ctx, vrf_name): vrf_delete_management_vrf(config_db) else: del_interface_bind_to_vrf(config_db, vrf_name) - config_db.set_entry('VRF', vrf_name, None) + try: + config_db.set_entry('VRF', vrf_name, None) + except JsonPatchConflict as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) click.echo("VRF {} deleted and all associated IP addresses removed.".format(vrf_name)) @vrf.command('add_vrf_vni_map') @@ -6412,7 +6444,7 @@ def sflow(ctx): @click.pass_context def enable(ctx): """Enable sFlow""" - config_db = ctx.obj['db'] + config_db = ValidatedConfigDBConnector(ctx.obj['db']) sflow_tbl = config_db.get_table('SFLOW') if not sflow_tbl: @@ -6420,7 +6452,10 @@ def enable(ctx): else: sflow_tbl['global']['admin_state'] = 'up' - config_db.mod_entry('SFLOW', 'global', sflow_tbl['global']) + try: + config_db.mod_entry('SFLOW', 'global', sflow_tbl['global']) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) try: proc = subprocess.Popen("systemctl is-active sflow", shell=True, text=True, stdout=subprocess.PIPE) @@ -6440,7 +6475,7 @@ def enable(ctx): @click.pass_context def disable(ctx): """Disable sFlow""" - config_db = ctx.obj['db'] + config_db = ValidatedConfigDBConnector(ctx.obj['db']) sflow_tbl = config_db.get_table('SFLOW') if not sflow_tbl: @@ -6448,7 +6483,10 @@ def disable(ctx): else: sflow_tbl['global']['admin_state'] = 'down' - config_db.mod_entry('SFLOW', 'global', sflow_tbl['global']) + try: + config_db.mod_entry('SFLOW', 'global', sflow_tbl['global']) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'sflow' command ('config sflow polling-interval ...') @@ -6459,17 +6497,21 @@ def disable(ctx): @click.pass_context def polling_int(ctx, interval): """Set polling-interval for counter-sampling (0 to disable)""" - if interval not in range(5, 301) and interval != 0: - click.echo("Polling interval must be between 5-300 (0 to disable)") + if ADHOC_VALIDATION: + if interval not in range(5, 301) and interval != 0: + click.echo("Polling interval must be between 5-300 (0 to disable)") - config_db = ctx.obj['db'] + 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']['polling_interval'] = interval - config_db.mod_entry('SFLOW', 'global', sflow_tbl['global']) + 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) @@ -6491,18 +6533,25 @@ def interface(ctx): @click.argument('ifname', metavar='', required=True, type=str) @click.pass_context def enable(ctx, ifname): - config_db = ctx.obj['db'] - if not interface_name_is_valid(config_db, ifname) and ifname != 'all': - click.echo("Invalid interface name") - return + 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 intf_dict = config_db.get_table('SFLOW_SESSION') if intf_dict and ifname in intf_dict: intf_dict[ifname]['admin_state'] = 'up' - config_db.mod_entry('SFLOW_SESSION', ifname, intf_dict[ifname]) + try: + config_db.mod_entry('SFLOW_SESSION', ifname, intf_dict[ifname]) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) else: - config_db.mod_entry('SFLOW_SESSION', ifname, {'admin_state': 'up'}) + try: + config_db.mod_entry('SFLOW_SESSION', ifname, {'admin_state': 'up'}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'sflow' command ('config sflow interface disable ...') @@ -6511,19 +6560,26 @@ def enable(ctx, ifname): @click.argument('ifname', metavar='', required=True, type=str) @click.pass_context def disable(ctx, ifname): - config_db = ctx.obj['db'] - if not interface_name_is_valid(config_db, ifname) and ifname != 'all': - click.echo("Invalid interface name") - return + 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 intf_dict = config_db.get_table('SFLOW_SESSION') if intf_dict and ifname in intf_dict: intf_dict[ifname]['admin_state'] = 'down' - config_db.mod_entry('SFLOW_SESSION', ifname, intf_dict[ifname]) + try: + config_db.mod_entry('SFLOW_SESSION', ifname, intf_dict[ifname]) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) else: - config_db.mod_entry('SFLOW_SESSION', ifname, - {'admin_state': 'down'}) + try: + config_db.mod_entry('SFLOW_SESSION', ifname, + {'admin_state': 'down'}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'sflow' command ('config sflow interface sample-rate ...') @@ -6533,13 +6589,14 @@ def disable(ctx, ifname): @click.argument('rate', metavar='', required=True, type=str) @click.pass_context def sample_rate(ctx, ifname, rate): - config_db = ctx.obj['db'] - if not interface_name_is_valid(config_db, ifname) and ifname != 'all': - click.echo('Invalid interface name') - return - if not is_valid_sample_rate(rate) and rate != 'default': - click.echo('Error: Sample rate must be between 256 and 8388608 or default') - return + 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 not is_valid_sample_rate(rate) and rate != 'default': + click.echo('Error: Sample rate must be between 256 and 8388608 or default') + return sess_dict = config_db.get_table('SFLOW_SESSION') @@ -6548,13 +6605,22 @@ def sample_rate(ctx, ifname, rate): if 'sample_rate' not in sess_dict[ifname]: return del sess_dict[ifname]['sample_rate'] - config_db.set_entry('SFLOW_SESSION', ifname, sess_dict[ifname]) + try: + config_db.set_entry('SFLOW_SESSION', ifname, sess_dict[ifname]) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) return sess_dict[ifname]['sample_rate'] = rate - config_db.mod_entry('SFLOW_SESSION', ifname, sess_dict[ifname]) + try: + config_db.mod_entry('SFLOW_SESSION', ifname, sess_dict[ifname]) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) else: if rate != 'default': - config_db.mod_entry('SFLOW_SESSION', ifname, {'sample_rate': rate}) + try: + config_db.mod_entry('SFLOW_SESSION', ifname, {'sample_rate': rate}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # @@ -6649,11 +6715,12 @@ def agent_id(ctx): @click.pass_context def add(ctx, ifname): """Add sFlow agent information""" - if ifname not in netifaces.interfaces(): - click.echo("Invalid interface name") - return + if ADHOC_VALIDATION: + if ifname not in netifaces.interfaces(): + click.echo("Invalid interface name") + return - config_db = ctx.obj['db'] + config_db = ValidatedConfigDBConnector(ctx.obj['db']) sflow_tbl = config_db.get_table('SFLOW') if not sflow_tbl: @@ -6664,7 +6731,10 @@ def add(ctx, ifname): return sflow_tbl['global']['agent_id'] = ifname - config_db.mod_entry('SFLOW', 'global', sflow_tbl['global']) + try: + config_db.mod_entry('SFLOW', 'global', sflow_tbl['global']) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'sflow' command ('config sflow agent-id del') @@ -6673,7 +6743,7 @@ def add(ctx, ifname): @click.pass_context def delete(ctx): """Delete sFlow agent information""" - config_db = ctx.obj['db'] + config_db = ValidatedConfigDBConnector(ctx.obj['db']) sflow_tbl = config_db.get_table('SFLOW') if not sflow_tbl: @@ -6684,7 +6754,10 @@ def delete(ctx): return sflow_tbl['global'].pop('agent_id') - config_db.set_entry('SFLOW', 'global', sflow_tbl['global']) + try: + config_db.set_entry('SFLOW', 'global', sflow_tbl['global']) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # set ipv6 link local mode on a given interface diff --git a/config/vxlan.py b/config/vxlan.py index be0a9610..71377d56 100644 --- a/config/vxlan.py +++ b/config/vxlan.py @@ -1,6 +1,10 @@ import click import utilities_common.cli as clicommon +from jsonpatch import JsonPatchConflict +from .validated_config_db_connector import ValidatedConfigDBConnector + +ADHOC_VALIDATION = True # # 'vxlan' group ('config vxlan ...') # @@ -15,9 +19,11 @@ def vxlan(): def add_vxlan(db, vxlan_name, src_ip): """Add VXLAN""" ctx = click.get_current_context() + config_db = ValidatedConfigDBConnector(db.cfgdb) - if not clicommon.is_ipaddress(src_ip): - ctx.fail("{} invalid src ip address".format(src_ip)) + if ADHOC_VALIDATION: + if not clicommon.is_ipaddress(src_ip): + ctx.fail("{} invalid src ip address".format(src_ip)) vxlan_keys = db.cfgdb.get_keys('VXLAN_TUNNEL') if not vxlan_keys: @@ -29,7 +35,10 @@ def add_vxlan(db, vxlan_name, src_ip): ctx.fail("VTEP already configured.") fvs = {'src_ip': src_ip} - db.cfgdb.set_entry('VXLAN_TUNNEL', vxlan_name, fvs) + try: + config_db.set_entry('VXLAN_TUNNEL', vxlan_name, fvs) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) @vxlan.command('del') @click.argument('vxlan_name', metavar='', required=True) @@ -37,6 +46,7 @@ def add_vxlan(db, vxlan_name, src_ip): def del_vxlan(db, vxlan_name): """Del VXLAN""" ctx = click.get_current_context() + config_db = ValidatedConfigDBConnector(db.cfgdb) vxlan_keys = db.cfgdb.get_keys('VXLAN_TUNNEL') if vxlan_name not in vxlan_keys: @@ -66,7 +76,10 @@ def del_vxlan(db, vxlan_name): if ('vxlan_tunnel' in vnet_table[vnet_key] and vnet_table[vnet_key]['vxlan_tunnel'] == vxlan_name): ctx.fail("Please delete all VNET configuration referencing the tunnel " + vxlan_name) - db.cfgdb.set_entry('VXLAN_TUNNEL', vxlan_name, None) + try: + config_db.set_entry('VXLAN_TUNNEL', vxlan_name, None) + except JsonPatchConflict as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) @vxlan.group('evpn_nvo') def vxlan_evpn_nvo(): @@ -79,6 +92,7 @@ def vxlan_evpn_nvo(): def add_vxlan_evpn_nvo(db, nvo_name, vxlan_name): """Add NVO""" ctx = click.get_current_context() + config_db = ValidatedConfigDBConnector(db.cfgdb) vxlan_keys = db.cfgdb.get_keys("VXLAN_EVPN_NVO|*") if not vxlan_keys: vxlan_count = 0 @@ -92,7 +106,10 @@ def add_vxlan_evpn_nvo(db, nvo_name, vxlan_name): ctx.fail("VTEP {} not configured".format(vxlan_name)) fvs = {'source_vtep': vxlan_name} - db.cfgdb.set_entry('VXLAN_EVPN_NVO', nvo_name, fvs) + try: + config_db.set_entry('VXLAN_EVPN_NVO', nvo_name, fvs) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) @vxlan_evpn_nvo.command('del') @click.argument('nvo_name', metavar='', required=True) @@ -100,6 +117,7 @@ def add_vxlan_evpn_nvo(db, nvo_name, vxlan_name): def del_vxlan_evpn_nvo(db, nvo_name): """Del NVO""" ctx = click.get_current_context() + config_db = ValidatedConfigDBConnector(db.cfgdb) vxlan_keys = db.cfgdb.get_keys('VXLAN_TUNNEL_MAP') if not vxlan_keys: vxlan_count = 0 @@ -107,8 +125,11 @@ def del_vxlan_evpn_nvo(db, nvo_name): vxlan_count = len(vxlan_keys) if(vxlan_count > 0): - ctx.fail("Please delete all VLAN VNI mappings.") - db.cfgdb.set_entry('VXLAN_EVPN_NVO', nvo_name, None) + ctx.fail("Please delete all VLAN VNI mappings.") + try: + config_db.set_entry('VXLAN_EVPN_NVO', nvo_name, None) + except JsonPatchConflict as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) @vxlan.group('map') def vxlan_map(): @@ -122,6 +143,7 @@ def vxlan_map(): def add_vxlan_map(db, vxlan_name, vlan, vni): """Add VLAN-VNI map entry""" ctx = click.get_current_context() + config_db = ValidatedConfigDBConnector(db.cfgdb) if not vlan.isdigit(): ctx.fail("Invalid vlan {}. Only valid vlan is accepted".format(vni)) @@ -152,7 +174,10 @@ def add_vxlan_map(db, vxlan_name, vlan, vni): fvs = {'vni': vni, 'vlan' : vlan_name} mapname = vxlan_name + '|' + 'map_' + vni + '_' + vlan_name - db.cfgdb.set_entry('VXLAN_TUNNEL_MAP', mapname, fvs) + try: + config_db.set_entry('VXLAN_TUNNEL_MAP', mapname, fvs) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) @vxlan_map.command('del') @click.argument('vxlan_name', metavar='', required=True) @@ -162,6 +187,7 @@ def add_vxlan_map(db, vxlan_name, vlan, vni): def del_vxlan_map(db, vxlan_name, vlan, vni): """Del VLAN-VNI map entry""" ctx = click.get_current_context() + config_db = ValidatedConfigDBConnector(db.cfgdb) if not vlan.isdigit(): ctx.fail("Invalid vlan {}. Only valid vlan is accepted".format(vni)) @@ -189,7 +215,10 @@ def del_vxlan_map(db, vxlan_name, vlan, vni): mapname = vxlan_name + '|' + 'map_' + vni + '_' + vlan db.cfgdb.set_entry('VXLAN_TUNNEL_MAP', mapname, None) mapname = vxlan_name + '|' + 'map_' + vni + '_Vlan' + vlan - db.cfgdb.set_entry('VXLAN_TUNNEL_MAP', mapname, None) + try: + config_db.set_entry('VXLAN_TUNNEL_MAP', mapname, None) + except JsonPatchConflict as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) @vxlan.group('map_range') def vxlan_map_range(): @@ -203,6 +232,7 @@ def vxlan_map_range(): @clicommon.pass_db def add_vxlan_map_range(db, vxlan_name, vlan_start, vlan_end, vni_start): """Add Range of vlan-vni mappings""" + config_db = ValidatedConfigDBConnector(db.cfgdb) ctx = click.get_current_context() if clicommon.is_vlanid_in_range(vlan_start) is False: ctx.fail(" Invalid Vlan Id , Valid Range : 1 to 4094 ") @@ -244,7 +274,10 @@ def add_vxlan_map_range(db, vxlan_name, vlan_start, vlan_end, vni_start): fvs = {'vni': vni_name, 'vlan' : vlan_name} mapname = vxlan_name + '|' + 'map_' + vni_name + '_' + vlan_name - db.cfgdb.set_entry('VXLAN_TUNNEL_MAP', mapname, fvs) + try: + config_db.set_entry('VXLAN_TUNNEL_MAP', mapname, fvs) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) @vxlan_map_range.command('del') @click.argument('vxlan_name', metavar='', required=True) @@ -255,6 +288,7 @@ def add_vxlan_map_range(db, vxlan_name, vlan_start, vlan_end, vni_start): def del_vxlan_map_range(db, vxlan_name, vlan_start, vlan_end, vni_start): """Del Range of vlan-vni mappings""" ctx = click.get_current_context() + config_db = ValidatedConfigDBConnector(db.cfgdb) if clicommon.is_vlanid_in_range(vlan_start) is False: ctx.fail(" Invalid Vlan Id , Valid Range : 1 to 4094 ") if clicommon.is_vlanid_in_range(vlan_end) is False: @@ -279,5 +313,8 @@ def del_vxlan_map_range(db, vxlan_name, vlan_start, vlan_end, vni_start): continue mapname = vxlan_name + '|' + 'map_' + vni_name + '_' + vlan_name - db.cfgdb.set_entry('VXLAN_TUNNEL_MAP', mapname, None) + try: + config_db.set_entry('VXLAN_TUNNEL_MAP', mapname, None) + except JsonPatchConflict as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) diff --git a/tests/config_test.py b/tests/config_test.py index a1c62140..9a628410 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -1776,6 +1776,167 @@ def teardown_class(cls): print("TEARDOWN") +class TestConfigWarmRestart(object): + @classmethod + def setup_class(cls): + print("SETUP") + import config.main + importlib.reload(config.main) + + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_warm_restart_neighsyncd_timer_yang_validation(self): + config.ADHOC_VALIDATION = False + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + result = runner.invoke(config.config.commands["warm_restart"].commands["neighsyncd_timer"], ["2000"], obj=obj) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Invalid ConfigDB. Error" in result.output + + def test_warm_restart_neighsyncd_timer(self): + config.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + result = runner.invoke(config.config.commands["warm_restart"].commands["neighsyncd_timer"], ["0"], obj=obj) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "neighsyncd warm restart timer must be in range 1-9999" in result.output + + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_warm_restart_bgp_timer_yang_validation(self): + config.ADHOC_VALIDATION = False + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + result = runner.invoke(config.config.commands["warm_restart"].commands["bgp_timer"], ["2000"], obj=obj) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Invalid ConfigDB. Error" in result.output + + def test_warm_restart_bgp_timer(self): + config.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + result = runner.invoke(config.config.commands["warm_restart"].commands["bgp_timer"], ["0"], obj=obj) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "bgp warm restart timer must be in range 1-3600" in result.output + + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_warm_restart_teamsyncd_timer_yang_validation(self): + config.ADHOC_VALIDATION = False + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + result = runner.invoke(config.config.commands["warm_restart"].commands["teamsyncd_timer"], ["2000"], obj=obj) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Invalid ConfigDB. Error" in result.output + + def test_warm_restart_teamsyncd_timer(self): + config.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + result = runner.invoke(config.config.commands["warm_restart"].commands["teamsyncd_timer"], ["0"], obj=obj) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "teamsyncd warm restart timer must be in range 1-3600" in result.output + + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_warm_restart_bgp_eoiu_yang_validation(self): + config.ADHOC_VALIDATION = False + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + result = runner.invoke(config.config.commands["warm_restart"].commands["bgp_eoiu"], ["true"], obj=obj) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Invalid ConfigDB. Error" in result.output + + @classmethod + def teardown_class(cls): + print("TEARDOWN") + + +class TestConfigCableLength(object): + @classmethod + def setup_class(cls): + print("SETUP") + import config.main + importlib.reload(config.main) + + @patch("config.main.is_dynamic_buffer_enabled", mock.Mock(return_value=True)) + @patch("config.main.ConfigDBConnector.get_entry", mock.Mock(return_value=False)) + def test_add_cablelength_with_nonexistent_name_valid_length(self): + config.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["interface"].commands["cable-length"], ["Ethernet0","40m"], obj=obj) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Port Ethernet0 doesn't exist" in result.output + + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + @patch("config.main.ConfigDBConnector.get_entry", mock.Mock(return_value="Port Info")) + @patch("config.main.is_dynamic_buffer_enabled", mock.Mock(return_value=True)) + @patch("config.main.ConfigDBConnector.get_keys", mock.Mock(return_value=["sample_key"])) + def test_add_cablelength_invalid_yang_validation(self): + config.ADHOC_VALIDATION = False + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["interface"].commands["cable-length"], ["Ethernet0","40"], obj=obj) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Invalid ConfigDB. Error" in result.output + + @patch("config.main.ConfigDBConnector.get_entry", mock.Mock(return_value="Port Info")) + @patch("config.main.is_dynamic_buffer_enabled", mock.Mock(return_value=True)) + def test_add_cablelength_with_invalid_name_invalid_length(self): + config.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["interface"].commands["cable-length"], ["Ethernet0","40x"], obj=obj) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Invalid cable length" in result.output + + @classmethod + def teardown_class(cls): + print("TEARDOWN") + + class TestConfigLoopback(object): @classmethod def setup_class(cls): diff --git a/tests/ip_config_test.py b/tests/ip_config_test.py index 24d09c86..2b92546d 100644 --- a/tests/ip_config_test.py +++ b/tests/ip_config_test.py @@ -3,11 +3,14 @@ import os import traceback from unittest import mock +from mock import patch from click.testing import CliRunner +from jsonpatch import JsonPatchConflict import config.main as config import show.main as show +import config.validated_config_db_connector as validated_config_db_connector from utilities_common.db import Db test_path = os.path.dirname(os.path.abspath(__file__)) @@ -274,13 +277,56 @@ def test_intf_unknown_vrf_bind(self): print(result.exit_code, result.output) assert result.exit_code != 0 assert result.output == INVALID_MGMT_VRF_MSG - + result = runner.invoke(config.config.commands["vrf"].commands["add"], ["mgmt"], obj=obj) print(result.exit_code, result.output) result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["bind"], ["Ethernet64", "mgmt"], obj=obj) print(result.exit_code, result.output) assert result.exit_code == 0 + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=ValueError)) + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.main.ConfigDBConnector.get_entry", mock.Mock(return_value={"mgmtVrfEnabled": "false"})) + def test_add_vrf_invalid_configdb_yang_validation(self): + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb, 'namespace':db.db.namespace} + + result = runner.invoke(config.config.commands["vrf"].commands["add"], ["mgmt"], obj=obj) + print(result.exit_code) + print(result.output) + assert "Invalid ConfigDB. Error" in result.output + assert result.exit_code != 0 + + result = runner.invoke(config.config.commands["vrf"].commands["add"], ["Vrf01"], obj=obj) + print(result.exit_code) + print(result.output) + assert "Invalid ConfigDB. Error" in result.output + assert result.exit_code != 0 + + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=JsonPatchConflict)) + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.main.is_vrf_exists", mock.Mock(return_value=True)) + @patch("config.main.ConfigDBConnector.get_entry", mock.Mock(return_value={"mgmtVrfEnabled": "true"})) + def test_del_vrf_invalid_configdb_yang_validation(self): + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb, 'namespace':db.db.namespace} + + result = runner.invoke(config.config.commands["vrf"].commands["del"], ["mgmt"], obj=obj) + print(result.exit_code) + print(result.output) + assert "Invalid ConfigDB. Error" in result.output + assert result.exit_code != 0 + + result = runner.invoke(config.config.commands["vrf"].commands["del"], ["Vrf01"], obj=obj) + print(result.exit_code) + print(result.output) + assert "Invalid ConfigDB. Error" in result.output + assert result.exit_code != 0 + @classmethod def teardown_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "0" diff --git a/tests/sflow_test.py b/tests/sflow_test.py index ecb27825..226e52ae 100644 --- a/tests/sflow_test.py +++ b/tests/sflow_test.py @@ -5,9 +5,11 @@ from click.testing import CliRunner from utilities_common.db import Db +from mock import patch import show.main as show import config.main as config +import config.validated_config_db_connector as validated_config_db_connector config.asic_type = mock.MagicMock(return_value = "broadcom") @@ -59,6 +61,21 @@ def test_show_sflow_intf(self): assert result.exit_code == 0 assert result.output == show_sflow_intf_output + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_config_sflow_disable_enable_yang_validation(self): + db = Db() + runner = CliRunner() + obj = {'db':db.cfgdb} + + result = runner.invoke(config.config.commands["sflow"].commands["enable"], [], obj=obj) + print(result.exit_code, result.output) + assert "Invalid ConfigDB. Error" in result.output + + result = runner.invoke(config.config.commands["sflow"].commands["disable"], [], obj=obj) + print(result.exit_code, result.output) + assert "Invalid ConfigDB. Error" in result.output + def test_config_sflow_disable_enable(self): # config sflow db = Db() @@ -176,11 +193,31 @@ def test_config_sflow_collector(self): assert result.output == show_sflow_output return + + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_config_sflow_polling_interval_yang_validation(self): + db = Db() + runner = CliRunner() + obj = {'db':db.cfgdb} + + config.ADHOC_VALIDATION = False + result = runner.invoke(config.config.commands["sflow"]. + commands["polling-interval"], ["500"], obj=obj) + print(result.exit_code, result.output) + assert "Invalid ConfigDB. Error" in result.output def test_config_sflow_polling_interval(self): db = Db() runner = CliRunner() obj = {'db':db.cfgdb} + config.ADHOC_VALIDATION = True + + # set to 500 out of range + result = runner.invoke(config.config.commands["sflow"]. + commands["polling-interval"], ["500"], obj=obj) + print(result.exit_code, result.output) + assert "Polling interval must be between 5-300" in result.output # set to 20 result = runner.invoke(config.config.commands["sflow"]. @@ -208,10 +245,38 @@ def test_config_sflow_polling_interval(self): return + @patch("config.main.ConfigDBConnector.get_table", mock.Mock(return_value={'Ethernet1': {'admin_state': 'sample_state'}})) + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_config_sflow_existing_intf_enable_yang_validation(self): + db = Db() + runner = CliRunner() + obj = {'db':db.cfgdb} + config.ADHOC_VALIDATION = False + + result = runner.invoke(config.config.commands["sflow"]. + commands["interface"].commands["enable"], ["Ethernet1"], obj=obj) + print(result.exit_code, result.output) + assert "Invalid ConfigDB. Error" in result.output + + @patch("config.main.ConfigDBConnector.get_table", mock.Mock(return_value=None)) + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_config_sflow_nonexistent_intf_enable_yang_validation(self): + db = Db() + runner = CliRunner() + obj = {'db':db.cfgdb} + + result = runner.invoke(config.config.commands["sflow"]. + commands["interface"].commands["enable"], ["Ethernet1"], obj=obj) + print(result.exit_code, result.output) + assert "Invalid ConfigDB. Error" in result.output + def test_config_sflow_intf_enable_disable(self): db = Db() runner = CliRunner() obj = {'db':db.cfgdb} + config.ADHOC_VALIDATION = True # mock interface_name_is_valid config.interface_name_is_valid = mock.MagicMock(return_value = True) @@ -237,6 +302,17 @@ def test_config_sflow_intf_enable_disable(self): sflowSession = db.cfgdb.get_table('SFLOW_SESSION') assert sflowSession["Ethernet1"]["admin_state"] == "down" + config.interface_name_is_valid = mock.MagicMock(return_value = False) + result = runner.invoke(config.config.commands["sflow"]. + commands["interface"].commands["enable"], ["Ethernetx"], obj=obj) + print(result.exit_code, result.output) + assert "Invalid interface name" in result.output + + result = runner.invoke(config.config.commands["sflow"]. + commands["interface"].commands["disable"], ["Ethernetx"], obj=obj) + print(result.exit_code, result.output) + assert "Invalid interface name" in result.output + return def test_config_sflow_intf_sample_rate(self): diff --git a/tests/vxlan_test.py b/tests/vxlan_test.py index 61c78dc4..9775fe96 100644 --- a/tests/vxlan_test.py +++ b/tests/vxlan_test.py @@ -3,8 +3,11 @@ from unittest import mock from click.testing import CliRunner +from mock import patch +from jsonpatch import JsonPatchConflict import config.main as config +import config.validated_config_db_connector as validated_config_db_connector import show.main as show from utilities_common.db import Db from .mock_tables import dbconnector @@ -246,6 +249,34 @@ def test_show_vxlan_remotevni_specific_cnt(self): print(result.output) assert result.exit_code == 0 assert result.output == show_vxlan_remotevni_specific_cnt_output + + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=ValueError)) + @patch("config.main.ConfigDBConnector.get_entry", mock.Mock(return_value="Vlan Data")) + @patch("config.main.ConfigDBConnector.get_table", mock.Mock(return_value={'sample_key': 'sample_value'})) + def test_config_vxlan_add_yang_validation(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(config.config.commands["vxlan"].commands["map_range"].commands["del"], ["vtep1", "100", "102", "100"], obj=db) + print(result.exit_code) + assert result.exit_code != 0 + + result = runner.invoke(config.config.commands["vxlan"].commands["map_range"].commands["add"], ["vtep1", "100", "102", "100"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=JsonPatchConflict)) + def test_config_vxlan_add_yang_validation_json_error(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(config.config.commands["vxlan"].commands["map"].commands["del"], ["vtep1", "200", "200"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 def test_show_vxlan_remotemac(self): runner = CliRunner() From b2eca379c8eb567e31a0c2c795d704200a016978 Mon Sep 17 00:00:00 2001 From: Lawrence Lee Date: Mon, 12 Dec 2022 17:07:27 -0800 Subject: [PATCH 018/312] [route_check]: Ignore ASIC only SOC IPs (#2548) * [tests]: Improve route check test - Split test into separate methods based on functionality being tested - Parametrize main test method for better granularity when viewing results/running test cases - Add config DB mocking support - Move some setup/teardown code to fixtures for better consistency - Extract test data to separate file - Ignore routes for SOC IPs that are only present in the ASIC - Add test case to cover ASIC only SOC IPs Signed-off-by: Lawrence Lee --- scripts/route_check.py | 50 +++- tests/mock_tables/config_db.json | 3 +- tests/route_check_test.py | 445 +++++-------------------------- tests/route_check_test_data.py | 363 +++++++++++++++++++++++++ 4 files changed, 477 insertions(+), 384 deletions(-) create mode 100644 tests/route_check_test_data.py diff --git a/scripts/route_check.py b/scripts/route_check.py index 90bdc7ea..c6234bcc 100755 --- a/scripts/route_check.py +++ b/scripts/route_check.py @@ -450,13 +450,17 @@ def filter_out_vnet_routes(routes): return updated_routes +def is_dualtor(config_db): + device_metadata = config_db.get_table('DEVICE_METADATA') + subtype = device_metadata['localhost'].get('subtype', '') + return subtype.lower() == 'dualtor' + + def filter_out_standalone_tunnel_routes(routes): config_db = swsscommon.ConfigDBConnector() config_db.connect() - device_metadata = config_db.get_table('DEVICE_METADATA') - subtype = device_metadata['localhost'].get('subtype', '') - if subtype.lower() != 'dualtor': + if not is_dualtor(config_db): return routes app_db = swsscommon.DBConnector('APPL_DB', 0) @@ -489,6 +493,45 @@ def filter_out_standalone_tunnel_routes(routes): return updated_routes +def get_soc_ips(config_db): + mux_table = config_db.get_table('MUX_CABLE') + soc_ips = [] + for _, mux_entry in mux_table.items(): + if mux_entry.get("cable_type", "") == "active-active" and "soc_ipv4" in mux_entry: + soc_ips.append(mux_entry["soc_ipv4"]) + + return soc_ips + + +def filter_out_soc_ip_routes(routes): + """ + Ignore ASIC only routes for SOC IPs + + For active-active cables, we want the tunnel route for SOC IPs + to only be programmed to the ASIC and not to the kernel. This is to allow + gRPC connections coming from ycabled to always use the direct link (since this + will use the kernel routing table), but still provide connectivity to any external + traffic in case of a link issue (since this traffic will be forwarded by the ASIC). + """ + config_db = swsscommon.ConfigDBConnector() + config_db.connect() + + if not is_dualtor(config_db): + return routes + + soc_ips = get_soc_ips(config_db) + + if not soc_ips: + return routes + + updated_routes = [] + for route in routes: + if route not in soc_ips: + updated_routes.append(route) + + return updated_routes + + def check_routes(): """ The heart of this script which runs the checks. @@ -526,6 +569,7 @@ def check_routes(): 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) diff --git a/tests/mock_tables/config_db.json b/tests/mock_tables/config_db.json index 10024eb9..899dada2 100644 --- a/tests/mock_tables/config_db.json +++ b/tests/mock_tables/config_db.json @@ -831,8 +831,7 @@ "mac": "1d:34:db:16:a6:00", "platform": "x86_64-mlnx_msn3800-r0", "peer_switch": "sonic-switch", - "type": "ToRRouter", - "subtype": "DualToR" + "type": "ToRRouter" }, "SNMP_COMMUNITY|msft": { "TYPE": "RO" diff --git a/tests/route_check_test.py b/tests/route_check_test.py index 746e09c7..85e6a64a 100644 --- a/tests/route_check_test.py +++ b/tests/route_check_test.py @@ -1,375 +1,39 @@ import copy import json import os +import logging import sys import syslog 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 import pytest +logger = logging.getLogger(__name__) + sys.path.append("scripts") import route_check -DESCR = "Description" -ARGS = "args" -RET = "return" -APPL_DB = 0 -ASIC_DB = 1 -PRE = "pre-value" -UPD = "update" -RESULT = "res" - -OP_SET = "SET" -OP_DEL = "DEL" - -NEIGH_TABLE = 'NEIGH_TABLE' -ROUTE_TABLE = 'ROUTE_TABLE' -VNET_ROUTE_TABLE = 'VNET_ROUTE_TABLE' -INTF_TABLE = 'INTF_TABLE' -RT_ENTRY_TABLE = 'ASIC_STATE' -SEPARATOR = ":" - -RT_ENTRY_KEY_PREFIX = 'SAI_OBJECT_TYPE_ROUTE_ENTRY:{\"dest":\"' -RT_ENTRY_KEY_SUFFIX = '\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x3000000000023\"}' - -current_test_name = None -current_test_no = None current_test_data = None tables_returned = {} - selector_returned = None subscribers_returned = {} -test_data = { - "0": { - DESCR: "basic good one", - ARGS: "route_check -m INFO -i 1000", - PRE: { - APPL_DB: { - ROUTE_TABLE: { - "0.0.0.0/0" : { "ifname": "portchannel0" }, - "10.10.196.12/31" : { "ifname": "portchannel0" }, - "10.10.196.20/31" : { "ifname": "portchannel0" }, - "10.10.196.30/31" : { "ifname": "lo" } - }, - INTF_TABLE: { - "PortChannel1013:10.10.196.24/31": {}, - "PortChannel1023:2603:10b0:503:df4::5d/126": {}, - "PortChannel1024": {} - } - }, - ASIC_DB: { - RT_ENTRY_TABLE: { - RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} - } - } - } - }, - "1": { - DESCR: "With updates", - ARGS: "route_check -m DEBUG -i 1", - PRE: { - APPL_DB: { - ROUTE_TABLE: { - "0.0.0.0/0" : { "ifname": "portchannel0" }, - "10.10.196.12/31" : { "ifname": "portchannel0" }, - "10.10.196.20/31" : { "ifname": "portchannel0" }, - "10.10.196.30/31" : { "ifname": "lo" } - }, - INTF_TABLE: { - "PortChannel1013:10.10.196.24/31": {}, - "PortChannel1023:2603:10b0:503:df4::5d/126": {} - } - }, - ASIC_DB: { - RT_ENTRY_TABLE: { - RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.10.10/32" + RT_ENTRY_KEY_SUFFIX: {} - } - } - }, - UPD: { - ASIC_DB: { - RT_ENTRY_TABLE: { - OP_SET: { - RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, - }, - OP_DEL: { - RT_ENTRY_KEY_PREFIX + "10.10.10.10/32" + RT_ENTRY_KEY_SUFFIX: {} - } - } - } - } - }, - "2": { - DESCR: "basic failure one", - ARGS: "route_check -i 15", - RET: -1, - PRE: { - APPL_DB: { - ROUTE_TABLE: { - "0.0.0.0/0" : { "ifname": "portchannel0" }, - "10.10.196.12/31" : { "ifname": "portchannel0" }, - "10.10.196.20/31" : { "ifname": "portchannel0" }, - "10.10.196.30/31" : { "ifname": "lo" } - }, - INTF_TABLE: { - "PortChannel1013:90.10.196.24/31": {}, - "PortChannel1023:9603:10b0:503:df4::5d/126": {}, - "PortChannel1024": {} - } - }, - ASIC_DB: { - RT_ENTRY_TABLE: { - RT_ENTRY_KEY_PREFIX + "20.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "20.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "20.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "3603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} - } - } - }, - RESULT: { - "missed_ROUTE_TABLE_routes": [ - "10.10.196.12/31", - "10.10.196.20/31" - ], - "missed_INTF_TABLE_entries": [ - "90.10.196.24/32", - "9603:10b0:503:df4::5d/128" - ], - "Unaccounted_ROUTE_ENTRY_TABLE_entries": [ - "20.10.196.12/31", - "20.10.196.20/31", - "20.10.196.24/32", - "3603:10b0:503:df4::5d/128" - ] - } - }, - "3": { - DESCR: "basic good one with no args", - ARGS: "route_check", - PRE: { - APPL_DB: { - ROUTE_TABLE: { - "0.0.0.0/0" : { "ifname": "portchannel0" }, - "10.10.196.12/31" : { "ifname": "portchannel0" }, - "10.10.196.20/31" : { "ifname": "portchannel0" }, - "10.10.196.30/31" : { "ifname": "lo" } - }, - INTF_TABLE: { - "PortChannel1013:10.10.196.24/31": {}, - "PortChannel1023:2603:10b0:503:df4::5d/126": {}, - "PortChannel1024": {} - } - }, - ASIC_DB: { - RT_ENTRY_TABLE: { - RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} - } - } - } - }, - "4": { - DESCR: "Good one with routes on voq inband interface", - ARGS: "route_check", - PRE: { - APPL_DB: { - ROUTE_TABLE: { - "0.0.0.0/0" : { "ifname": "portchannel0" }, - "10.10.196.12/31" : { "ifname": "portchannel0" }, - "10.10.196.20/31" : { "ifname": "portchannel0" }, - "10.10.196.30/31" : { "ifname": "lo" }, - "10.10.197.1" : { "ifname": "Ethernet-IB0", "nexthop": "0.0.0.0"}, - "2603:10b0:503:df5::1" : { "ifname": "Ethernet-IB0", "nexthop": "::"}, - "100.0.0.2/32" : { "ifname": "Ethernet-IB0", "nexthop": "0.0.0.0" }, - "2064:100::2/128" : { "ifname": "Ethernet-IB0", "nexthop": "::" }, - "101.0.0.0/24" : { "ifname": "Ethernet-IB0", "nexthop": "100.0.0.2"} - }, - INTF_TABLE: { - "PortChannel1013:10.10.196.24/31": {}, - "PortChannel1023:2603:10b0:503:df4::5d/126": {}, - "PortChannel1024": {}, - "Ethernet-IB0:10.10.197.1/24": {}, - "Ethernet-IB0:2603:10b0:503:df5::1/64": {} - } - }, - ASIC_DB: { - RT_ENTRY_TABLE: { - RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.197.1/32" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df5::1/128" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "101.0.0.0/24" + RT_ENTRY_KEY_SUFFIX: {} - } - } - } - }, - "5": { - DESCR: "local route with nexthop - fail", - ARGS: "route_check -m INFO -i 1000", - RET: -1, - PRE: { - APPL_DB: { - ROUTE_TABLE: { - "0.0.0.0/0" : { "ifname": "portchannel0" }, - "10.10.196.12/31" : { "ifname": "portchannel0" }, - "10.10.196.20/31" : { "ifname": "portchannel0" }, - "10.10.196.30/31" : { "ifname": "lo", "nexthop": "100.0.0.2" } - }, - INTF_TABLE: { - "PortChannel1013:10.10.196.24/31": {}, - "PortChannel1023:2603:10b0:503:df4::5d/126": {}, - "PortChannel1024": {} - } - }, - ASIC_DB: { - RT_ENTRY_TABLE: { - RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} - } - } - }, - RESULT: { - "missed_ROUTE_TABLE_routes": [ - "10.10.196.30/31" - ] - } - }, - "6": { - DESCR: "Good one with VNET routes", - ARGS: "route_check", - PRE: { - APPL_DB: { - ROUTE_TABLE: { - "0.0.0.0/0" : { "ifname": "portchannel0" }, - "10.10.196.12/31" : { "ifname": "portchannel0" }, - "10.10.196.20/31" : { "ifname": "portchannel0" }, - "10.10.196.30/31" : { "ifname": "lo" } - }, - VNET_ROUTE_TABLE: { - "Vnet1:30.1.10.0/24": { "ifname": "Vlan3001" }, - "Vnet1:50.1.1.0/24": { "ifname": "Vlan3001" }, - "Vnet1:50.2.2.0/24": { "ifname": "Vlan3001" } - }, - INTF_TABLE: { - "PortChannel1013:10.10.196.24/31": {}, - "PortChannel1023:2603:10b0:503:df4::5d/126": {}, - "PortChannel1024": {}, - "Vlan3001": { "vnet_name": "Vnet1" }, - "Vlan3001:30.1.10.1/24": {} - } - }, - ASIC_DB: { - RT_ENTRY_TABLE: { - RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "30.1.10.1/32" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "30.1.10.0/24" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "50.1.1.0/24" + RT_ENTRY_KEY_SUFFIX: {}, - RT_ENTRY_KEY_PREFIX + "50.2.2.0/24" + RT_ENTRY_KEY_SUFFIX: {} - } - } - } - }, - "7": { - DESCR: "dualtor standalone tunnel route case", - ARGS: "route_check", - PRE: { - 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", - 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" } - }, - 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: {} - } - } - } - } -} - -def do_start_test(tname, tno, ctdata): - global current_test_name, current_test_no, current_test_data - global tables_returned, selector_returned, subscribers_returned - - current_test_name = tname - current_test_no = tno +def set_test_case_data(ctdata): + """ + Setup global variables for each test case + """ + global current_test_data, tables_returned, selector_returned, subscribers_returned + current_test_data = ctdata tables_returned = {} selector_returned = None subscribers_returned = {} - print("Starting test case {} number={}".format(tname, tno)) - - -def check_subset(d_sub, d_all): - if type(d_sub) != type(d_all): - return -1 - if not type(d_sub) is dict: - ret = 0 if d_sub == d_all else -2 - return ret - - for (k, v) in d_sub.items(): - if not k in d_all: - return -3 - ret = check_subset(v, d_all[k]) - if ret != 0: - return ret - return 0 - def recursive_update(d, t): assert (type(t) is dict) @@ -552,12 +216,22 @@ def table_side_effect(db, tbl): return tables_returned[db][tbl] -def set_mock(mock_table, mock_conn, mock_sel, mock_subs): +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 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) class TestRouteCheck(object): def setup(self): @@ -566,39 +240,58 @@ def setup(self): def init(self): route_check.UNIT_TESTING = 1 + @pytest.fixture + def force_hang(self): + old_timeout = route_check.TIMEOUT_SECONDS + route_check.TIMEOUT_SECONDS = 5 + mock_selector.EMULATE_HANG = True - @patch("route_check.swsscommon.DBConnector") - @patch("route_check.swsscommon.Table") - @patch("route_check.swsscommon.Select") - @patch("route_check.swsscommon.SubscriberStateTable") - def test_server(self, mock_subs, mock_sel, mock_table, mock_conn): + yield + + route_check.TIMEOUT_SECONDS = old_timeout + mock_selector.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): + device_info.get_platform = MagicMock(return_value='unittest') + set_mock(mock_table, mock_conn, mock_sel, mock_subs, mock_config_db) + yield + + @pytest.mark.parametrize("test_num", TEST_DATA.keys()) + def test_route_check(self, mock_dbs, test_num): self.init() ret = 0 - device_info.get_platform = MagicMock(return_value='unittest') - set_mock(mock_table, mock_conn, mock_sel, mock_subs) - for (i, ct_data) in test_data.items(): - do_start_test("route_test", i, ct_data) - - with patch('sys.argv', ct_data[ARGS].split()): - ret, res = route_check.main() - expect_ret = ct_data[RET] if RET in ct_data else 0 - expect_res = ct_data[RESULT] if RESULT in ct_data else None - if res: - print("res={}".format(json.dumps(res, indent=4))) - if expect_res: - print("expect_res={}".format(json.dumps(expect_res, indent=4))) - assert ret == expect_ret - assert res == expect_res - + ct_data = TEST_DATA[test_num] + set_test_case_data(ct_data) + logger.info("Running test case {}: {}".format(test_num, ct_data[DESCR])) + with patch('sys.argv', ct_data[ARGS].split()): + ret, res = route_check.main() + expect_ret = ct_data[RET] if RET in ct_data else 0 + expect_res = ct_data[RESULT] if RESULT in ct_data else None + if res: + print("res={}".format(json.dumps(res, indent=4))) + if expect_res: + print("expect_res={}".format(json.dumps(expect_res, indent=4))) + assert ret == expect_ret + assert res == expect_res + + def test_timeout(self, mock_dbs, force_hang): # Test timeout - route_check.TIMEOUT_SECONDS = 5 - mock_selector.EMULATE_HANG = True ex_raised = False + # Use an expected failing test case to trigger the select + set_test_case_data(TEST_DATA['2']) try: - ret, res = route_check.main() + with patch('sys.argv', [route_check.__file__.split('/')[-1]]): + ret, res = route_check.main() except Exception as err: ex_raised = True expect = "timeout occurred" @@ -606,6 +299,7 @@ def test_server(self, mock_subs, mock_sel, mock_table, mock_conn): assert ex_str == expect, "{} != {}".format(ex_str, expect) assert ex_raised, "Exception expected" + def test_logging(self): # Test print_msg route_check.PRINT_MSG_LEN_MAX = 5 msg = route_check.print_message(syslog.LOG_ERR, "abcdefghi") @@ -616,10 +310,3 @@ def test_server(self, mock_subs, mock_sel, mock_table, mock_conn): assert len(msg) == 5 msg = route_check.print_message(syslog.LOG_ERR, "a", "b", "c", "d", "e", "f") assert len(msg) == 5 - - - - - - - diff --git a/tests/route_check_test_data.py b/tests/route_check_test_data.py new file mode 100644 index 00000000..9e4cd3a0 --- /dev/null +++ b/tests/route_check_test_data.py @@ -0,0 +1,363 @@ +DESCR = "Description" +ARGS = "args" +RET = "return" +APPL_DB = 0 +ASIC_DB = 1 +CONFIG_DB = 4 +PRE = "pre-value" +UPD = "update" +RESULT = "res" + +OP_SET = "SET" +OP_DEL = "DEL" + +NEIGH_TABLE = 'NEIGH_TABLE' +ROUTE_TABLE = 'ROUTE_TABLE' +VNET_ROUTE_TABLE = 'VNET_ROUTE_TABLE' +INTF_TABLE = 'INTF_TABLE' +RT_ENTRY_TABLE = 'ASIC_STATE' +SEPARATOR = ":" +DEVICE_METADATA = "DEVICE_METADATA" +MUX_CABLE = "MUX_CABLE" + +LOCALHOST = "localhost" + +RT_ENTRY_KEY_PREFIX = 'SAI_OBJECT_TYPE_ROUTE_ENTRY:{\"dest":\"' +RT_ENTRY_KEY_SUFFIX = '\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x3000000000023\"}' + +DEFAULT_CONFIG_DB = {DEVICE_METADATA: {LOCALHOST: {}}} + +TEST_DATA = { + "0": { + DESCR: "basic good one", + ARGS: "route_check -m INFO -i 1000", + PRE: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "10.10.196.30/31" : { "ifname": "lo" } + }, + INTF_TABLE: { + "PortChannel1013:10.10.196.24/31": {}, + "PortChannel1023:2603:10b0:503:df4::5d/126": {}, + "PortChannel1024": {} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} + } + } + } + }, + "1": { + DESCR: "With updates", + ARGS: "route_check -m DEBUG -i 1", + PRE: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "10.10.196.30/31" : { "ifname": "lo" } + }, + INTF_TABLE: { + "PortChannel1013:10.10.196.24/31": {}, + "PortChannel1023:2603:10b0:503:df4::5d/126": {} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.10.10/32" + RT_ENTRY_KEY_SUFFIX: {} + } + } + }, + UPD: { + ASIC_DB: { + RT_ENTRY_TABLE: { + OP_SET: { + RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, + }, + OP_DEL: { + RT_ENTRY_KEY_PREFIX + "10.10.10.10/32" + RT_ENTRY_KEY_SUFFIX: {} + } + } + } + } + }, + "2": { + DESCR: "basic failure one", + ARGS: "route_check -i 15", + RET: -1, + PRE: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "10.10.196.30/31" : { "ifname": "lo" } + }, + INTF_TABLE: { + "PortChannel1013:90.10.196.24/31": {}, + "PortChannel1023:9603:10b0:503:df4::5d/126": {}, + "PortChannel1024": {} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "20.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "20.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "20.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "3603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} + } + } + }, + RESULT: { + "missed_ROUTE_TABLE_routes": [ + "10.10.196.12/31", + "10.10.196.20/31" + ], + "missed_INTF_TABLE_entries": [ + "90.10.196.24/32", + "9603:10b0:503:df4::5d/128" + ], + "Unaccounted_ROUTE_ENTRY_TABLE_entries": [ + "20.10.196.12/31", + "20.10.196.20/31", + "20.10.196.24/32", + "3603:10b0:503:df4::5d/128" + ] + } + }, + "3": { + DESCR: "basic good one with no args", + ARGS: "route_check", + PRE: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "10.10.196.30/31" : { "ifname": "lo" } + }, + INTF_TABLE: { + "PortChannel1013:10.10.196.24/31": {}, + "PortChannel1023:2603:10b0:503:df4::5d/126": {}, + "PortChannel1024": {} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} + } + } + } + }, + "4": { + DESCR: "Good one with routes on voq inband interface", + ARGS: "route_check", + PRE: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "10.10.196.30/31" : { "ifname": "lo" }, + "10.10.197.1" : { "ifname": "Ethernet-IB0", "nexthop": "0.0.0.0"}, + "2603:10b0:503:df5::1" : { "ifname": "Ethernet-IB0", "nexthop": "::"}, + "100.0.0.2/32" : { "ifname": "Ethernet-IB0", "nexthop": "0.0.0.0" }, + "2064:100::2/128" : { "ifname": "Ethernet-IB0", "nexthop": "::" }, + "101.0.0.0/24" : { "ifname": "Ethernet-IB0", "nexthop": "100.0.0.2"} + }, + INTF_TABLE: { + "PortChannel1013:10.10.196.24/31": {}, + "PortChannel1023:2603:10b0:503:df4::5d/126": {}, + "PortChannel1024": {}, + "Ethernet-IB0:10.10.197.1/24": {}, + "Ethernet-IB0:2603:10b0:503:df5::1/64": {} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.197.1/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df5::1/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "101.0.0.0/24" + RT_ENTRY_KEY_SUFFIX: {} + } + } + } + }, + "5": { + DESCR: "local route with nexthop - fail", + ARGS: "route_check -m INFO -i 1000", + RET: -1, + PRE: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "10.10.196.30/31" : { "ifname": "lo", "nexthop": "100.0.0.2" } + }, + INTF_TABLE: { + "PortChannel1013:10.10.196.24/31": {}, + "PortChannel1023:2603:10b0:503:df4::5d/126": {}, + "PortChannel1024": {} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {} + } + } + }, + RESULT: { + "missed_ROUTE_TABLE_routes": [ + "10.10.196.30/31" + ] + } + }, + "6": { + DESCR: "Good one with VNET routes", + ARGS: "route_check", + PRE: { + APPL_DB: { + ROUTE_TABLE: { + "0.0.0.0/0" : { "ifname": "portchannel0" }, + "10.10.196.12/31" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "10.10.196.30/31" : { "ifname": "lo" } + }, + VNET_ROUTE_TABLE: { + "Vnet1:30.1.10.0/24": { "ifname": "Vlan3001" }, + "Vnet1:50.1.1.0/24": { "ifname": "Vlan3001" }, + "Vnet1:50.2.2.0/24": { "ifname": "Vlan3001" } + }, + INTF_TABLE: { + "PortChannel1013:10.10.196.24/31": {}, + "PortChannel1023:2603:10b0:503:df4::5d/126": {}, + "PortChannel1024": {}, + "Vlan3001": { "vnet_name": "Vnet1" }, + "Vlan3001:30.1.10.1/24": {} + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "10.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "10.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "2603:10b0:503:df4::5d/128" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "0.0.0.0/0" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "30.1.10.1/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "30.1.10.0/24" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "50.1.1.0/24" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "50.2.2.0/24" + RT_ENTRY_KEY_SUFFIX: {} + } + } + } + }, + "7": { + DESCR: "dualtor standalone tunnel route case", + 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: {}, + } + } + } + }, + "8": { + DESCR: "Good one with VRF routes", + 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" } + }, + 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: {} + } + } + } + }, + "9": { + DESCR: "SOC IPs on Libra ToRs should be ignored", + 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", + "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: {} + } + } + } + } +} From 49fc3896a0ef907ff337467a3e04d2501ef850fd Mon Sep 17 00:00:00 2001 From: Sudharsan Dhamal Gopalarathnam Date: Tue, 13 Dec 2022 23:27:57 -0800 Subject: [PATCH 019/312] [show]Fix show route return code on error (#2542) - What I did Fix show route return command to return error code on failure cases. The parameter return_cmd=True in run_command will suppress the return code and return success even in error scenarios. - How I did it When run command is called with return_cmd = True, modified its return to include return code, which can then be used to assess if there is an error by the caller - How to verify it Added UT to verify it - Previous command output (if the output of a command-line utility has changed) root@sonic:/home/admin# show ip route 123 % Unknown command: show ip route 123 root@sonic:/home/admin# echo $? 0 - New command output (if the output of a command-line utility has changed) root@sonic:/home/admin# show ip route 123 % Unknown command: show ip route 123 root@sonic:/home/admin# echo $? 1 --- config/main.py | 16 +++++++-------- config/vlan.py | 2 +- scripts/sonic-bootchart | 6 ++++-- show/kdump.py | 6 +++--- tests/config_test.py | 38 +++++++++++++++++------------------ tests/conftest.py | 9 ++++++--- tests/ip_config_test.py | 9 +++++++++ tests/ip_show_routes_test.py | 24 ++++++++++++++++++++++ tests/sonic_bootchart_test.py | 4 ++-- tests/vlan_test.py | 9 +++++++++ utilities_common/bgp_util.py | 6 +++++- utilities_common/cli.py | 2 +- 12 files changed, 91 insertions(+), 40 deletions(-) diff --git a/config/main.py b/config/main.py index 1e8a120d..eb003ceb 100644 --- a/config/main.py +++ b/config/main.py @@ -858,13 +858,13 @@ def _stop_services(): def _get_sonic_services(): - out = clicommon.run_command("systemctl list-dependencies --plain sonic.target | sed '1d'", return_cmd=True) + out, _ = clicommon.run_command("systemctl list-dependencies --plain sonic.target | sed '1d'", return_cmd=True) return (unit.strip() for unit in out.splitlines()) def _get_delayed_sonic_units(get_timers=False): - rc1 = clicommon.run_command("systemctl list-dependencies --plain sonic-delayed.target | sed '1d'", return_cmd=True) - rc2 = clicommon.run_command("systemctl is-enabled {}".format(rc1.replace("\n", " ")), return_cmd=True) + rc1, _ = clicommon.run_command("systemctl list-dependencies --plain sonic-delayed.target | sed '1d'", return_cmd=True) + rc2, _ = clicommon.run_command("systemctl is-enabled {}".format(rc1.replace("\n", " ")), return_cmd=True) timer = [line.strip() for line in rc1.splitlines()] state = [line.strip() for line in rc2.splitlines()] services = [] @@ -899,16 +899,16 @@ def _restart_services(): def _delay_timers_elapsed(): for timer in _get_delayed_sonic_units(get_timers=True): - out = clicommon.run_command("systemctl show {} --property=LastTriggerUSecMonotonic --value".format(timer), return_cmd=True) + out, _ = clicommon.run_command("systemctl show {} --property=LastTriggerUSecMonotonic --value".format(timer), return_cmd=True) if out.strip() == "0": return False return True def _per_namespace_swss_ready(service_name): - out = clicommon.run_command("systemctl show {} --property ActiveState --value".format(service_name), return_cmd=True) + out, _ = clicommon.run_command("systemctl show {} --property ActiveState --value".format(service_name), return_cmd=True) if out.strip() != "active": return False - out = clicommon.run_command("systemctl show {} --property ActiveEnterTimestampMonotonic --value".format(service_name), return_cmd=True) + out, _ = clicommon.run_command("systemctl show {} --property ActiveEnterTimestampMonotonic --value".format(service_name), return_cmd=True) swss_up_time = float(out.strip())/1000000 now = time.monotonic() if (now - swss_up_time > 120): @@ -933,7 +933,7 @@ def _swss_ready(): return True def _is_system_starting(): - out = clicommon.run_command("sudo systemctl is-system-running", return_cmd=True) + out, _ = clicommon.run_command("sudo systemctl is-system-running", return_cmd=True) return out.strip() == "starting" def interface_is_in_vlan(vlan_member_table, interface_name): @@ -2813,7 +2813,7 @@ def _qos_update_ports(ctx, ports, dry_run, json_data): command = "{} {} {} -t {},config-db -t {},config-db -y {} --print-data".format( SONIC_CFGGEN_PATH, cmd_ns, from_db, buffer_template_file, qos_template_file, sonic_version_file ) - jsonstr = clicommon.run_command(command, display_cmd=False, return_cmd=True) + jsonstr, _ = clicommon.run_command(command, display_cmd=False, return_cmd=True) jsondict = json.loads(jsonstr) port_table = jsondict.get('PORT') diff --git a/config/vlan.py b/config/vlan.py index 45d698ce..7587e024 100644 --- a/config/vlan.py +++ b/config/vlan.py @@ -87,7 +87,7 @@ def restart_ndppd(): ndppd_config_gen_cmd = "sonic-cfggen -d -t /usr/share/sonic/templates/ndppd.conf.j2,/etc/ndppd.conf" ndppd_restart_cmd = "supervisorctl restart ndppd" - output = clicommon.run_command(verify_swss_running_cmd, return_cmd=True) + output, _ = clicommon.run_command(verify_swss_running_cmd, return_cmd=True) if output and output.strip() != "running": click.echo(click.style('SWSS container is not running, changes will take effect the next time the SWSS container starts', fg='red'),) diff --git a/scripts/sonic-bootchart b/scripts/sonic-bootchart index 86e993d3..0b7646c7 100755 --- a/scripts/sonic-bootchart +++ b/scripts/sonic-bootchart @@ -50,11 +50,13 @@ def check_bootchart_installed(): def get_enabled_status(): """ Get systemd-bootchart status """ - return clicommon.run_command("systemctl is-enabled systemd-bootchart", return_cmd=True) + output, _ = clicommon.run_command("systemctl is-enabled systemd-bootchart", return_cmd=True) + return output def get_active_status(): """ Get systemd-bootchart status """ - return clicommon.run_command("systemctl is-active systemd-bootchart", return_cmd=True) + output, _ = clicommon.run_command("systemctl is-active systemd-bootchart", return_cmd=True) + return output def get_output_files(): bootchart_output_files = [] diff --git a/show/kdump.py b/show/kdump.py index 2d93154c..e5ce7cde 100644 --- a/show/kdump.py +++ b/show/kdump.py @@ -49,7 +49,7 @@ def get_kdump_oper_mode(): returns "Not Ready"; """ oper_mode = "Not Ready" - command_stdout = clicommon.run_command("/usr/sbin/kdump-config status", return_cmd=True) + command_stdout, _ = clicommon.run_command("/usr/sbin/kdump-config status", return_cmd=True) for line in command_stdout.splitlines(): if ": ready to kdump" in line: @@ -99,7 +99,7 @@ def get_kdump_core_files(): dump_file_list = [] cmd_message = None - command_stdout = clicommon.run_command(find_core_dump_files, return_cmd=True) + command_stdout, _ = clicommon.run_command(find_core_dump_files, return_cmd=True) dump_file_list = command_stdout.splitlines() if not dump_file_list: @@ -123,7 +123,7 @@ def get_kdump_dmesg_files(): dmesg_file_list = [] cmd_message = None - command_stdout = clicommon.run_command(find_dmesg_files, return_cmd=True) + command_stdout, _ = clicommon.run_command(find_dmesg_files, return_cmd=True) dmesg_file_list = command_stdout.splitlines() if not dmesg_file_list: diff --git a/tests/config_test.py b/tests/config_test.py index 9a628410..98bdd116 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -142,13 +142,13 @@ def mock_run_command_side_effect(*args, **kwargs): if kwargs.get('return_cmd'): if command == "systemctl list-dependencies --plain sonic-delayed.target | sed '1d'": - return 'snmp.timer' + return 'snmp.timer' , 0 elif command == "systemctl list-dependencies --plain sonic.target | sed '1d'": - return 'swss' + return 'swss', 0 elif command == "systemctl is-enabled snmp.timer": - return 'enabled' + return 'enabled', 0 else: - return '' + return '', 0 def mock_run_command_side_effect_disabled_timer(*args, **kwargs): command = args[0] @@ -158,17 +158,17 @@ def mock_run_command_side_effect_disabled_timer(*args, **kwargs): if kwargs.get('return_cmd'): if command == "systemctl list-dependencies --plain sonic-delayed.target | sed '1d'": - return 'snmp.timer' + return 'snmp.timer', 0 elif command == "systemctl list-dependencies --plain sonic.target | sed '1d'": - return 'swss' + return 'swss', 0 elif command == "systemctl is-enabled snmp.timer": - return 'masked' + return 'masked', 0 elif command == "systemctl show swss.service --property ActiveState --value": - return 'active' + return 'active', 0 elif command == "systemctl show swss.service --property ActiveEnterTimestampMonotonic --value": - return '0' + return '0', 0 else: - return '' + return '', 0 def mock_run_command_side_effect_untriggered_timer(*args, **kwargs): command = args[0] @@ -178,15 +178,15 @@ def mock_run_command_side_effect_untriggered_timer(*args, **kwargs): if kwargs.get('return_cmd'): if command == "systemctl list-dependencies --plain sonic-delayed.target | sed '1d'": - return 'snmp.timer' + return 'snmp.timer', 0 elif command == "systemctl list-dependencies --plain sonic.target | sed '1d'": - return 'swss' + return 'swss', 0 elif command == "systemctl is-enabled snmp.timer": - return 'enabled' + return 'enabled', 0 elif command == "systemctl show snmp.timer --property=LastTriggerUSecMonotonic --value": - return '0' + return '0', 0 else: - return '' + return '', 0 def mock_run_command_side_effect_gnmi(*args, **kwargs): command = args[0] @@ -196,13 +196,13 @@ def mock_run_command_side_effect_gnmi(*args, **kwargs): if kwargs.get('return_cmd'): if command == "systemctl list-dependencies --plain sonic-delayed.target | sed '1d'": - return 'gnmi.timer' + return 'gnmi.timer', 0 elif command == "systemctl list-dependencies --plain sonic.target | sed '1d'": - return 'swss' + return 'swss', 0 elif command == "systemctl is-enabled gnmi.timer": - return 'enabled' + return 'enabled', 0 else: - return '' + return '', 0 # Load sonic-cfggen from source since /usr/local/bin/sonic-cfggen does not have .py extension. diff --git a/tests/conftest.py b/tests/conftest.py index a3bea71f..f4c29f82 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -145,9 +145,13 @@ def mock_show_bgp_summary( bgp_mocked_json = os.path.join( test_path, 'mock_tables', 'ipv6_bgp_summary_chassis.json') + _old_run_bgp_command = bgp_util.run_bgp_command bgp_util.run_bgp_command = mock.MagicMock( return_value=mock_show_bgp_summary("", "")) + yield + bgp_util.run_bgp_command = _old_run_bgp_command + @pytest.fixture def setup_t1_topo(): @@ -213,6 +217,7 @@ def mock_run_bgp_command(vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.RVT else: return "" + _old_run_bgp_command = bgp_util.run_bgp_command if any ([request.param == 'ip_route',\ request.param == 'ip_specific_route', request.param == 'ip_special_route',\ request.param == 'ipv6_route', request.param == 'ipv6_specific_route']): @@ -230,7 +235,6 @@ def mock_run_bgp_command(vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.RVT bgp_util.run_bgp_command = mock.MagicMock( return_value=mock_show_bgp_network_single_asic(request)) elif request.param == 'ip_route_for_int_ip': - _old_run_bgp_command = bgp_util.run_bgp_command bgp_util.run_bgp_command = mock_run_bgp_command_for_static elif request.param == "show_bgp_summary_no_neigh": bgp_util.run_bgp_command = mock.MagicMock( @@ -241,8 +245,7 @@ def mock_run_bgp_command(vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.RVT yield - if request.param == 'ip_route_for_int_ip': - bgp_util.run_bgp_command = _old_run_bgp_command + bgp_util.run_bgp_command = _old_run_bgp_command @pytest.fixture diff --git a/tests/ip_config_test.py b/tests/ip_config_test.py index 2b92546d..f315b11d 100644 --- a/tests/ip_config_test.py +++ b/tests/ip_config_test.py @@ -12,6 +12,7 @@ import show.main as show import config.validated_config_db_connector as validated_config_db_connector from utilities_common.db import Db +import utilities_common.bgp_util as bgp_util test_path = os.path.dirname(os.path.abspath(__file__)) ip_config_input_path = os.path.join(test_path, "ip_config_input") @@ -33,13 +34,20 @@ """ class TestConfigIP(object): + _old_run_bgp_command = None @classmethod def setup_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "1" + cls._old_run_bgp_command = bgp_util.run_bgp_command + bgp_util.run_bgp_command = mock.MagicMock( + return_value=cls.mock_run_bgp_command()) print("SETUP") ''' Tests for IPv4 ''' + def mock_run_bgp_command(): + return "" + def test_add_del_interface_valid_ipv4(self): db = Db() runner = CliRunner() @@ -330,4 +338,5 @@ def test_del_vrf_invalid_configdb_yang_validation(self): @classmethod def teardown_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "0" + bgp_util.run_bgp_command = cls._old_run_bgp_command print("TEARDOWN") diff --git a/tests/ip_show_routes_test.py b/tests/ip_show_routes_test.py index 1032fc06..f39ccc52 100644 --- a/tests/ip_show_routes_test.py +++ b/tests/ip_show_routes_test.py @@ -3,11 +3,15 @@ from . import show_ip_route_common from click.testing import CliRunner +import mock +import sys test_path = os.path.dirname(os.path.abspath(__file__)) modules_path = os.path.dirname(test_path) scripts_path = os.path.join(modules_path, "scripts") +sys.path.insert(0, test_path) + class TestShowIpRouteCommands(object): @classmethod @@ -18,6 +22,25 @@ def setup_class(cls): os.environ["UTILITIES_UNIT_TESTING"] = "0" os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "" import mock_tables.dbconnector + + def test_show_ip_route_err( + self, + setup_ip_route_commands): + show = setup_ip_route_commands + + def mock_run_bgp_command(*args, **kwargs): + command = args[0] + return "% Unknown command: show ip route unknown", 1 + + with mock.patch('utilities_common.cli.run_command', mock.MagicMock(side_effect=mock_run_bgp_command)) as mock_run_command: + runner = CliRunner() + result = runner.invoke( + show.cli.commands["ip"].commands["route"], ["unknown"]) + print("{}".format(result.output)) + print(result.exit_code) + assert result.exit_code == 1 + assert result.output == "% Unknown command: show ip route unknown" + "\n" + @pytest.mark.parametrize('setup_single_bgp_instance', ['ip_route'], indirect=['setup_single_bgp_instance']) def test_show_ip_route( @@ -117,3 +140,4 @@ def test_show_ipv6_route_err( print("{}".format(result.output)) assert result.exit_code == 0 assert result.output == show_ip_route_common.show_ipv6_route_err_expected_output + "\n" + diff --git a/tests/sonic_bootchart_test.py b/tests/sonic_bootchart_test.py index f9ecdab1..c9d796a5 100755 --- a/tests/sonic_bootchart_test.py +++ b/tests/sonic_bootchart_test.py @@ -51,9 +51,9 @@ def test_disable(self, mock_run_command): def test_config_show(self, mock_run_command): def run_command_side_effect(command, **kwargs): if "is-enabled" in command: - return "enabled" + return "enabled", 0 elif "is-active" in command: - return "active" + return "active", 0 else: raise Exception("unknown command") diff --git a/tests/vlan_test.py b/tests/vlan_test.py index 241cab0c..66ec3606 100644 --- a/tests/vlan_test.py +++ b/tests/vlan_test.py @@ -8,6 +8,7 @@ import show.main as show from utilities_common.db import Db from importlib import reload +import utilities_common.bgp_util as bgp_util show_vlan_brief_output="""\ +-----------+-----------------+-----------------+----------------+-------------+ @@ -143,16 +144,23 @@ +-----------+-----------------+-----------------+----------------+-------------+ """ class TestVlan(object): + _old_run_bgp_command = None @classmethod def setup_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "1" # ensure that we are working with single asic config + cls._old_run_bgp_command = bgp_util.run_bgp_command + bgp_util.run_bgp_command = mock.MagicMock( + return_value=cls.mock_run_bgp_command()) from .mock_tables import dbconnector from .mock_tables import mock_single_asic reload(mock_single_asic) dbconnector.load_namespace_config() print("SETUP") + def mock_run_bgp_command(): + return "" + def test_show_vlan(self): runner = CliRunner() result = runner.invoke(show.cli.commands["vlan"], []) @@ -579,4 +587,5 @@ def test_config_vlan_add_member_of_portchannel(self): @classmethod def teardown_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "0" + bgp_util.run_bgp_command = cls._old_run_bgp_command print("TEARDOWN") diff --git a/utilities_common/bgp_util.py b/utilities_common/bgp_util.py index 60b7a7a9..3897d4a1 100644 --- a/utilities_common/bgp_util.py +++ b/utilities_common/bgp_util.py @@ -1,6 +1,7 @@ import ipaddress import json import re +import sys import click import utilities_common.cli as clicommon @@ -185,7 +186,10 @@ def run_bgp_command(vtysh_cmd, bgp_namespace=multi_asic.DEFAULT_NAMESPACE, vtysh cmd = 'sudo {} {} -c "{}"'.format( vtysh_shell_cmd, bgp_instance_id, vtysh_cmd) try: - output = clicommon.run_command(cmd, return_cmd=True) + output, ret = clicommon.run_command(cmd, return_cmd=True) + if ret != 0: + click.echo(output.rstrip('\n')) + sys.exit(ret) except Exception: ctx = click.get_current_context() ctx.fail("Unable to get summary from bgp {}".format(bgp_instance_id)) diff --git a/utilities_common/cli.py b/utilities_common/cli.py index 1845d84e..ca9e0610 100644 --- a/utilities_common/cli.py +++ b/utilities_common/cli.py @@ -539,7 +539,7 @@ def run_command(command, display_cmd=False, ignore_error=False, return_cmd=False if return_cmd: output = proc.communicate()[0] - return output + return output, proc.returncode if not interactive_mode: (out, err) = proc.communicate() From ce1c44496603cd895d02a33bb0fcacd33a5f41bf Mon Sep 17 00:00:00 2001 From: Jing Zhang Date: Wed, 14 Dec 2022 10:13:43 -0800 Subject: [PATCH 020/312] [muxcable][show] update `show mux tunnel-route` to separate ASIC and kernel into two columns (#2553) Stemming from sonic-net/sonic-swss#2557. This PR is to update show mux tunnel-route command to show status of both ASIC and kernel tunnel routes. sign-off: Jing Zhang zhangjing@microsoft.com What I did How I did it How to verify it Previous command output (if the output of a command-line utility has changed) Only check Kernel Route, if removing tunnel route for server_ipv4 in kernel, it won't show in CMD output: zhangjing@********************:~$ show mux tunnel-route Ethernet4 PORT DEST_TYPE DEST_ADDRESS --------- ----------- -------------------------------- Ethernet4 server_ipv6 2603:10b0:d11:8614::a32:9112/128 New command output (if the output of a command-line utility has changed) Check both ASIC and APP DB for tunnel route status zhangjing@********************:~$ show mux tunnel-route Ethernet4 PORT DEST_TYPE DEST_ADDRESS kernel asic --------- ----------- -------------------------------- -------- ------ Ethernet4 server_ipv4 10.50.145.18/32 - added Ethernet4 server_ipv6 2603:10b0:d11:8614::a32:9112/128 added added --- show/muxcable.py | 41 ++++++++++++++++++++++------------ tests/mock_tables/asic_db.json | 6 ++++- tests/muxcable_test.py | 26 ++++++++++++--------- 3 files changed, 48 insertions(+), 25 deletions(-) diff --git a/show/muxcable.py b/show/muxcable.py index 9e56514c..d9f0a94f 100644 --- a/show/muxcable.py +++ b/show/muxcable.py @@ -549,7 +549,7 @@ def create_json_dump_per_port_config(db, port_status_dict, per_npu_configdb, asi if soc_ipv4_value is not None: port_status_dict["MUX_CABLE"]["PORTS"][port_name]["SERVER"]["soc_ipv4"] = soc_ipv4_value -def get_tunnel_route_per_port(db, port_tunnel_route, per_npu_configdb, per_npu_appl_db, asic_id, port): +def get_tunnel_route_per_port(db, port_tunnel_route, per_npu_configdb, per_npu_appl_db, per_npu_asic_db, asic_id, port): mux_cfg_dict = per_npu_configdb[asic_id].get_all( per_npu_configdb[asic_id].CONFIG_DB, 'MUX_CABLE|{}'.format(port)) @@ -559,24 +559,31 @@ def get_tunnel_route_per_port(db, port_tunnel_route, per_npu_configdb, per_npu_a dest_address = mux_cfg_dict.get(name, None) if dest_address is not None: - route_keys = per_npu_appl_db[asic_id].keys( + kernel_route_keys = per_npu_appl_db[asic_id].keys( per_npu_appl_db[asic_id].APPL_DB, 'TUNNEL_ROUTE_TABLE:*{}'.format(dest_address)) - - if route_keys is not None and len(route_keys): + if_kernel_tunnel_route_programed = kernel_route_keys is not None and len(kernel_route_keys) + + asic_route_keys = per_npu_asic_db[asic_id].keys( + per_npu_asic_db[asic_id].ASIC_DB, 'ASIC_STATE:SAI_OBJECT_TYPE_ROUTE_ENTRY:*{}*'.format(dest_address)) + if_asic_tunnel_route_programed = asic_route_keys is not None and len(asic_route_keys) + if if_kernel_tunnel_route_programed or if_asic_tunnel_route_programed: port_tunnel_route["TUNNEL_ROUTE"][port] = port_tunnel_route["TUNNEL_ROUTE"].get(port, {}) port_tunnel_route["TUNNEL_ROUTE"][port][name] = {} port_tunnel_route["TUNNEL_ROUTE"][port][name]['DEST'] = dest_address -def create_json_dump_per_port_tunnel_route(db, port_tunnel_route, per_npu_configdb, per_npu_appl_db, asic_id, port): + port_tunnel_route["TUNNEL_ROUTE"][port][name]['kernel'] = if_kernel_tunnel_route_programed + port_tunnel_route["TUNNEL_ROUTE"][port][name]['asic'] = if_asic_tunnel_route_programed - get_tunnel_route_per_port(db, port_tunnel_route, per_npu_configdb, per_npu_appl_db, asic_id, port) +def create_json_dump_per_port_tunnel_route(db, port_tunnel_route, per_npu_configdb, per_npu_appl_db, per_npu_asic_db, asic_id, port): -def create_table_dump_per_port_tunnel_route(db, print_data, per_npu_configdb, per_npu_appl_db, asic_id, port): + get_tunnel_route_per_port(db, port_tunnel_route, per_npu_configdb, per_npu_appl_db, per_npu_asic_db, asic_id, port) + +def create_table_dump_per_port_tunnel_route(db, print_data, per_npu_configdb, per_npu_appl_db, per_npu_asic_db, asic_id, port): port_tunnel_route = {} port_tunnel_route["TUNNEL_ROUTE"] = {} - get_tunnel_route_per_port(db, port_tunnel_route, per_npu_configdb, per_npu_appl_db, asic_id, port) + get_tunnel_route_per_port(db, port_tunnel_route, per_npu_configdb, per_npu_appl_db, per_npu_asic_db, asic_id, port) for port, route in port_tunnel_route["TUNNEL_ROUTE"].items(): for dest_name, values in route.items(): @@ -584,6 +591,8 @@ def create_table_dump_per_port_tunnel_route(db, print_data, per_npu_configdb, pe print_line.append(port) print_line.append(dest_name) print_line.append(values['DEST']) + print_line.append('added' if values['kernel'] else '-') + print_line.append('added' if values['asic'] else '-') print_data.append(print_line) @muxcable.command() @@ -1904,6 +1913,7 @@ def tunnel_route(db, port, json_output): port = platform_sfputil_helper.get_interface_name(port, db) per_npu_appl_db = {} + per_npu_asic_db = {} per_npu_configdb = {} mux_tbl_keys = {} @@ -1914,6 +1924,9 @@ def tunnel_route(db, port, json_output): per_npu_appl_db[asic_id] = swsscommon.SonicV2Connector(use_unix_socket_path=False, namespace=namespace) per_npu_appl_db[asic_id].connect(per_npu_appl_db[asic_id].APPL_DB) + per_npu_asic_db[asic_id] = swsscommon.SonicV2Connector(use_unix_socket_path=False, namespace=namespace) + per_npu_asic_db[asic_id].connect(per_npu_asic_db[asic_id].ASIC_DB) + per_npu_configdb[asic_id] = swsscommon.SonicV2Connector(use_unix_socket_path=False, namespace=namespace) per_npu_configdb[asic_id].connect(per_npu_configdb[asic_id].CONFIG_DB) @@ -1947,16 +1960,16 @@ def tunnel_route(db, port, json_output): port_tunnel_route = {} port_tunnel_route["TUNNEL_ROUTE"] = {} - create_json_dump_per_port_tunnel_route(db, port_tunnel_route, per_npu_configdb, per_npu_appl_db, asic_index, port) + create_json_dump_per_port_tunnel_route(db, port_tunnel_route, per_npu_configdb, per_npu_appl_db, per_npu_asic_db, asic_index, port) click.echo("{}".format(json.dumps(port_tunnel_route, indent=4))) else: print_data = [] - create_table_dump_per_port_tunnel_route(db, print_data, per_npu_configdb, per_npu_appl_db, asic_index, port) + create_table_dump_per_port_tunnel_route(db, print_data, per_npu_configdb, per_npu_appl_db, per_npu_asic_db, asic_index, port) - headers = ['PORT', 'DEST_TYPE', 'DEST_ADDRESS'] + headers = ['PORT', 'DEST_TYPE', 'DEST_ADDRESS', 'kernel', 'asic'] click.echo(tabulate(print_data, headers=headers)) else: @@ -1972,7 +1985,7 @@ def tunnel_route(db, port, json_output): for key in natsorted(mux_tbl_keys[asic_id]): port = key.split("|")[1] - create_json_dump_per_port_tunnel_route(db, port_tunnel_route, per_npu_configdb, per_npu_appl_db, asic_id, port) + create_json_dump_per_port_tunnel_route(db, port_tunnel_route, per_npu_configdb, per_npu_appl_db, per_npu_asic_db, asic_id, port) click.echo("{}".format(json.dumps(port_tunnel_route, indent=4))) else: @@ -1983,9 +1996,9 @@ def tunnel_route(db, port, json_output): for key in natsorted(mux_tbl_keys[asic_id]): port = key.split("|")[1] - create_table_dump_per_port_tunnel_route(db, print_data, per_npu_configdb, per_npu_appl_db, asic_id, port) + create_table_dump_per_port_tunnel_route(db, print_data, per_npu_configdb, per_npu_appl_db, per_npu_asic_db, asic_id, port) - headers = ['PORT', 'DEST_TYPE', 'DEST_ADDRESS'] + headers = ['PORT', 'DEST_TYPE', 'DEST_ADDRESS', 'kernel', 'asic'] click.echo(tabulate(print_data, headers=headers)) diff --git a/tests/mock_tables/asic_db.json b/tests/mock_tables/asic_db.json index 333899f2..e16fc315 100644 --- a/tests/mock_tables/asic_db.json +++ b/tests/mock_tables/asic_db.json @@ -19,5 +19,9 @@ "VIDTORID":{ "oid:0xd00000000056d": "oid:0xd", "oid:0x10000000004a4": "oid:0x1690000000001" - } + }, + "ASIC_STATE:SAI_OBJECT_TYPE_ROUTE_ENTRY:{\"dest\":\"10.2.1.1\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x300000000007c\"}": { + "SAI_ROUTE_ENTRY_ATTR_PACKET_ACTION": "SAI_PACKET_ACTION_FORWARD", + "SAI_ROUTE_ENTRY_ATTR_NEXT_HOP_ID": "oid:0x40000000015d8" + } } diff --git a/tests/muxcable_test.py b/tests/muxcable_test.py index fa050aa0..5a84a654 100644 --- a/tests/muxcable_test.py +++ b/tests/muxcable_test.py @@ -515,12 +515,16 @@ "TUNNEL_ROUTE": { "Ethernet0": { "server_ipv4": { - "DEST": "10.2.1.1" + "DEST": "10.2.1.1", + "kernel": 1, + "asic": 1 } }, "Ethernet4": { "server_ipv4": { - "DEST": "10.3.1.1" + "DEST": "10.3.1.1", + "kernel": 1, + "asic": false } } } @@ -528,10 +532,10 @@ """ show_muxcable_tunnel_route_expected_output="""\ -PORT DEST_TYPE DEST_ADDRESS ---------- ----------- -------------- -Ethernet0 server_ipv4 10.2.1.1 -Ethernet4 server_ipv4 10.3.1.1 +PORT DEST_TYPE DEST_ADDRESS kernel asic +--------- ----------- -------------- -------- ------ +Ethernet0 server_ipv4 10.2.1.1 added added +Ethernet4 server_ipv4 10.3.1.1 added - """ show_muxcable_tunnel_route_expected_output_port_json="""\ @@ -539,7 +543,9 @@ "TUNNEL_ROUTE": { "Ethernet0": { "server_ipv4": { - "DEST": "10.2.1.1" + "DEST": "10.2.1.1", + "kernel": 1, + "asic": 1 } } } @@ -547,9 +553,9 @@ """ show_muxcable_tunnel_route_expected_port_output="""\ -PORT DEST_TYPE DEST_ADDRESS ---------- ----------- -------------- -Ethernet0 server_ipv4 10.2.1.1 +PORT DEST_TYPE DEST_ADDRESS kernel asic +--------- ----------- -------------- -------- ------ +Ethernet0 server_ipv4 10.2.1.1 added added """ class TestMuxcable(object): From 572c8cffdddb7683e158d36067398600a71512ea Mon Sep 17 00:00:00 2001 From: Vadym Hlushko <62022266+vadymhlushko-mlnx@users.noreply.github.com> Date: Thu, 15 Dec 2022 09:55:08 +0200 Subject: [PATCH 021/312] Optimize the execution time of the 'show techsupport' script to 5-10%, (#2504) - What I did Optimize the execution time of the 'show techsupport' script to 5-10%. - How I did it The show techsupport CLI command calls the generate_dump bash script. In the script, there are a many functions that do the next scenario: 1. Run some CLI command 2. Save output from step 1 to the temporary file 3. Append the temporary file from step 2 to the `/var/dump/sonic_dump_XXXX.tar` file 4. Delete the temporary file from step 2 This PR removes the 3 and 4 step from those functions and creates a new function save_to_tar() which will add to .tar archive the whole directory with temporary files (which means it will not spawn a tar -v -rhf ... process for each temporary file) - How to verify it Run the time show techsupport CLI command and compare the execution time to the original script, the execution time will be decreased by 5-10%. Signed-off-by: Vadym Hlushko --- scripts/generate_dump | 118 +++++++++++++++++------------------------- 1 file changed, 48 insertions(+), 70 deletions(-) diff --git a/scripts/generate_dump b/scripts/generate_dump index e7e378c2..54b01e1e 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -106,7 +106,6 @@ save_bcmcmd() { local filename=$2 local filepath="${LOGDIR}/$filename" local do_gzip=${3:-false} - local tarpath="${BASE}/dump/$filename" local timeout_cmd="timeout --foreground ${TIMEOUT_MIN}m" local cmd=$(escape_quotes "$cmd") if [ ! -d $LOGDIR ]; then @@ -141,12 +140,9 @@ save_bcmcmd() { fi if $do_gzip; then gzip ${filepath} 2>/dev/null - tarpath="${tarpath}.gz" filepath="${filepath}.gz" fi - ($TAR $V -rhf $TARFILE -C $DUMPDIR "$tarpath" \ - || abort "${EXT_TAR_FAILED}" "tar append operation failed. Aborting to prevent data loss.") \ - && $RM $V -rf "$filepath" + end_t=$(date +%s%3N) echo "[ save_bcmcmd:$cmd ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO } @@ -180,7 +176,7 @@ save_bcmcmd_all_ns() { } ############################################################################### -# Runs a comamnd and saves its output to the incrementally built tar. +# Runs a comamnd and saves its output to the file. # Command gets timedout if it runs for more than TIMEOUT_MIN minutes. # Globals: # LOGDIR @@ -208,7 +204,6 @@ save_cmd() { local filename=$2 local filepath="${LOGDIR}/$filename" local do_gzip=${3:-false} - local tarpath="${BASE}/dump/$filename" local timeout_cmd="timeout --foreground ${TIMEOUT_MIN}m" local cleanup_method=${4:-dummy_cleanup_method} local redirect='&>' @@ -230,7 +225,6 @@ save_cmd() { # as one argument, e.g. vtysh -c "COMMAND HERE" needs to have # "COMMAND HERE" bunched together as 1 arg to vtysh -c if $do_gzip; then - tarpath="${tarpath}.gz" filepath="${filepath}.gz" # cleanup_method will run in a sub-shell, need declare it first local cmds="$cleanup_method_declration; $cmd $redirect_eval | $cleanup_method | gzip -c > '${filepath}'" @@ -260,13 +254,35 @@ save_cmd() { fi fi - ($TAR $V -rhf $TARFILE -C $DUMPDIR "$tarpath" \ - || abort "${EXT_TAR_FAILED}" "tar append operation failed. Aborting to prevent data loss.") \ - && $RM $V -rf "$filepath" end_t=$(date +%s%3N) echo "[ save_cmd:$cmd ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO } +############################################################################### +# Save all collected data to tar archive. +# Globals: +# DUMPDIR +# TAR +# TARFILE +# V +# BASE +# Arguments: +# None +# Returns: +# None +############################################################################### +save_to_tar() { + trap 'handle_error $? $LINENO' ERR + local start_t=$(date +%s%3N) + local end_t=0 + + cd $DUMPDIR + $TAR $V -rhf $TARFILE "$BASE" + + end_t=$(date +%s%3N) + echo "[ save_to_tar ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO +} + ############################################################################### # Dummy cleanup method. # Globals: @@ -407,7 +423,7 @@ get_vtysh_namespace() { ############################################################################### # Runs a vtysh command in all namesapces for a multi ASIC platform, and in # default (host) namespace in single ASIC platforms. Saves its output to the -# incrementally built tar. +# file. # Globals: # None # Arguments: @@ -437,7 +453,7 @@ save_vtysh() { } ############################################################################### -# Runs an ip command and saves its output to the incrementally built tar. +# Runs an ip command and saves its output to the file. # Globals: # None # Arguments: @@ -456,7 +472,7 @@ save_ip() { } ############################################################################### -# Runs a bridge command and saves its output to the incrementally built tar. +# Runs a bridge command and saves its output to the file. # Globals: # None # Arguments: @@ -770,8 +786,8 @@ save_proc() { ( [ -e $f ] && $CP $V -r $f $TARDIR/proc ) || echo "$f not found" > $TARDIR/$f fi done - $TAR $V -rhf $TARFILE -C $DUMPDIR --mode=+rw $BASE/proc - $RM $V -rf $TARDIR/proc + + chmod ugo+rw -R $DUMPDIR/$BASE/proc } ############################################################################### @@ -822,9 +838,7 @@ save_proc_stats() { ( $CP $V -r $stats_file $TARDIR/proc_stats ) || echo "$stats_file error" > $TARDIR/$stats_file fi - $TAR $V -rhf $TARFILE -C $DUMPDIR --mode=+rw $BASE/proc_stats - $RM $V -rf $TARDIR/proc_stats - $RM -rf $stats_file + chmod ugo+rw -R $DUMPDIR/$BASE/proc_stats } ############################################################################### @@ -916,16 +930,13 @@ save_file() { local orig_path=$1 local supp_dir=$2 local gz_path="$TARDIR/$supp_dir/$(basename $orig_path)" - local tar_path="${BASE}/$supp_dir/$(basename $orig_path)" local do_gzip=${3:-true} - local do_tar_append=${4:-true} if [ ! -d "$TARDIR/$supp_dir" ]; then $MKDIR $V -p "$TARDIR/$supp_dir" fi if $do_gzip; then gz_path="${gz_path}.gz" - tar_path="${tar_path}.gz" if $NOOP; then echo "gzip -c $orig_path > $gz_path" else @@ -939,11 +950,6 @@ save_file() { fi fi - if $do_tar_append; then - ($TAR $V -rhf $TARFILE -C $DUMPDIR "$tar_path" \ - || abort "${EXT_PROCFS_SAVE_FAILED}" "tar append operation failed. Aborting to prevent data loss.") \ - && $RM $V -f "$gz_path" - fi end_t=$(date +%s%3N) echo "[ save_file:$orig_path] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO } @@ -1290,7 +1296,7 @@ collect_barefoot() { done for file in $(find /tmp/bf_logs -type f); do - save_file "${file}" log true true + save_file "${file}" log true done } @@ -1346,16 +1352,12 @@ save_log_files() { # don't gzip already-gzipped log files :) # do not append the individual files to the main tarball if [ -z "${file##*.gz}" ]; then - save_file $file log false false + save_file $file log false else - save_file $file log true false + save_file $file log true fi done - # Append the log folder to the main tarball - ($TAR $V -rhf $TARFILE -C $DUMPDIR ${BASE}/log \ - || abort "${EXT_TAR_FAILED}" "tar append operation failed. Aborting for safety") \ - && $RM $V -rf $TARDIR/log end_t=$(date +%s%3N) echo "[ TAR /var/log Files ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO @@ -1380,11 +1382,7 @@ save_warmboot_files() { else mkdir -p $TARDIR $CP $V -rf /host/warmboot $TARDIR - - ($TAR $V --warning=no-file-removed -rhf $TARFILE -C $DUMPDIR --mode=+rw \ - $BASE/warmboot \ - || abort "${EXT_TAR_FAILED}" "Tar append operation failed. Aborting for safety.") \ - && $RM $V -rf $TARDIR + chmod ugo+rw -R $DUMPDIR/$BASE/warmboot fi end_t=$(date +%s%3N) echo "[ Warm-boot Files ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO @@ -1546,8 +1544,7 @@ main() { /proc/pagetypeinfo /proc/partitions /proc/sched_debug /proc/slabinfo \ /proc/softirqs /proc/stat /proc/swaps /proc/sysvipc /proc/timer_list \ /proc/uptime /proc/version /proc/vmallocinfo /proc/vmstat \ - /proc/zoneinfo \ - || abort "${EXT_PROCFS_SAVE_FAILED}" "Proc saving operation failed. Aborting for safety." + /proc/zoneinfo save_proc_stats end_t=$(date +%s%3N) echo "[ Capture Proc State ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO @@ -1567,7 +1564,6 @@ main() { save_cmd "systemd-analyze plot" "systemd.analyze.plot.svg" save_platform_info - save_cmd "show vlan brief" "vlan.summary" save_cmd "show version" "version" save_cmd "show platform summary" "platform.summary" @@ -1582,8 +1578,8 @@ main() { save_ip_info save_bridge_info - save_frr_info + save_bgp_info save_evpn_info @@ -1663,9 +1659,6 @@ main() { # 2nd counter snapshot late. Need 2 snapshots to make sense of counters trend. save_counter_snapshot $asic 2 - $RM $V -rf $TARDIR - $MKDIR $V -p $TARDIR - $MKDIR $V -p $LOGDIR # Copying the /etc files to a directory and then tar it $CP -r /etc $TARDIR/etc rm_list=$(find -L $TARDIR/etc -maxdepth 5 -type l) @@ -1677,30 +1670,13 @@ main() { # Remove secret from /etc files before tar remove_secret_from_etc_files $TARDIR - start_t=$(date +%s%3N) - ($TAR $V --warning=no-file-removed -rhf $TARFILE -C $DUMPDIR --mode=+rw \ - --exclude="etc/alternatives" \ - --exclude="*/etc/passwd*" \ - --exclude="*/etc/shadow*" \ - --exclude="*/etc/group*" \ - --exclude="*/etc/gshadow*" \ - --exclude="*/etc/ssh*" \ - --exclude="*get_creds*" \ - --exclude="*snmpd.conf*" \ - --exclude="*/etc/mlnx" \ - --exclude="*/etc/mft" \ - --exclude="*/etc/sonic/*.cer" \ - --exclude="*/etc/sonic/*.crt" \ - --exclude="*/etc/sonic/*.pem" \ - --exclude="*/etc/sonic/*.key" \ - --exclude="*/etc/ssl/*.pem" \ - --exclude="*/etc/ssl/certs/*" \ - --exclude="*/etc/ssl/private/*" \ - $BASE/etc \ - || abort "${EXT_TAR_FAILED}" "Tar append operation failed. Aborting for safety.") \ - && $RM $V -rf $TARDIR - end_t=$(date +%s%3N) - echo "[ TAR /etc Files ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO + # Remove unecessary files + $RM $V -rf $TARDIR/etc/alternatives $TARDIR/etc/passwd* \ + $TARDIR/etc/shadow* $TARDIR/etc/group* $TARDIR/etc/gshadow* \ + $TARDIR/etc/ssh* $TARDIR/get_creds* $TARDIR/snmpd.conf* \ + $TARDIR/etc/mlnx $TARDIR/etc/mft $TARDIR/etc/sonic/*.cer \ + $TARDIR/etc/sonic/*.crt $TARDIR/etc/sonic/*.pem $TARDIR/etc/sonic/*.key \ + $TARDIR/etc/ssl/*.pem $TARDIR/etc/ssl/certs/ $TARDIR/etc/ssl/private/* save_log_files save_crash_files @@ -1720,6 +1696,8 @@ finalize() { # Save techsupport timing profile info save_file $TECHSUPPORT_TIME_INFO log false + save_to_tar + if $DO_COMPRESS; then RC=0 $GZIP $V $TARFILE || RC=$? From caf92aa3aa64c6bbafb959fce1c2a5fdfad110c7 Mon Sep 17 00:00:00 2001 From: Vaibhav Hemant Dixit Date: Thu, 15 Dec 2022 23:21:58 -0800 Subject: [PATCH 022/312] [db_migrator] Fix migration of Loopback data: handle all Loopback interfaces (#2560) Fix the issue where cross branch upgrades (base DB version 1_0_1) lead to a OA crash due to a duplicate IP2ME route being added when there are more than one Loopback interfaces. The issue happens as in current implementation lo is hardcoded to be replaced as Loopback0. When the base image's APP DB has more than one IP assigned to lo interface, upon migration, all the IPs are assinged to same loopback Loopback0. This is incorrect, as in newer images different IPs are assinged to distinct Loopback interfaces. How to verify it Verified on a physical testbed that this change fixes the OA crash issue. Also added a unit test to catch this issue in PR tests. --- scripts/db_migrator.py | 43 +++++++++++++------ ...interface_migrate_from_1_0_1_expected.json | 8 ++++ ...ck_interface_migrate_from_1_0_1_input.json | 18 ++++++++ ...interface_migrate_from_1_0_1_expected.json | 8 ++++ ...ck_interface_migrate_from_1_0_1_input.json | 7 +++ tests/db_migrator_test.py | 42 ++++++++++++++++++ 6 files changed, 113 insertions(+), 13 deletions(-) create mode 100644 tests/db_migrator_input/appl_db/loopback_interface_migrate_from_1_0_1_expected.json create mode 100644 tests/db_migrator_input/appl_db/loopback_interface_migrate_from_1_0_1_input.json create mode 100644 tests/db_migrator_input/config_db/loopback_interface_migrate_from_1_0_1_expected.json create mode 100644 tests/db_migrator_input/config_db/loopback_interface_migrate_from_1_0_1_input.json diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index 95062c42..c63d5640 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -178,22 +178,39 @@ def migrate_intf_table(self): if self.appDB is None: return - data = self.appDB.keys(self.appDB.APPL_DB, "INTF_TABLE:*") - - if data is None: + # Get Lo interface corresponding to IP(v4/v6) address from CONFIG_DB. + configdb_data = self.configDB.get_keys('LOOPBACK_INTERFACE') + lo_addr_to_int = dict() + for int_data in configdb_data: + if type(int_data) == tuple and len(int_data) > 1: + intf_name = int_data[0] + intf_addr = int_data[1] + lo_addr_to_int.update({intf_addr: intf_name}) + + lo_data = self.appDB.keys(self.appDB.APPL_DB, "INTF_TABLE:*") + if lo_data is None: return if_db = [] - for key in data: - if_name = key.split(":")[1] - if if_name == "lo": - self.appDB.delete(self.appDB.APPL_DB, key) - key = key.replace(if_name, "Loopback0") - log.log_info('Migrating lo entry to ' + key) - self.appDB.set(self.appDB.APPL_DB, key, 'NULL', 'NULL') - - if '/' not in key: - if_db.append(key.split(":")[1]) + for lo_row in lo_data: + # Example of lo_row: 'INTF_TABLE:lo:10.1.0.32/32' + # Delete the old row with name as 'lo'. A new row with name as Loopback will be added + lo_name_appdb = lo_row.split(":")[1] + if lo_name_appdb == "lo": + self.appDB.delete(self.appDB.APPL_DB, lo_row) + lo_addr = lo_row.split('INTF_TABLE:lo:')[1] + lo_name_configdb = lo_addr_to_int.get(lo_addr) + if lo_name_configdb is None or lo_name_configdb == '': + # an unlikely case where a Loopback address is present in APPLDB, but + # there is no corresponding interface for this address in CONFIGDB: + # Default to legacy implementation: hardcode interface name as Loopback0 + lo_new_row = lo_row.replace(lo_name_appdb, "Loopback0") + else: + lo_new_row = lo_row.replace(lo_name_appdb, lo_name_configdb) + self.appDB.set(self.appDB.APPL_DB, lo_new_row, 'NULL', 'NULL') + + if '/' not in lo_row: + if_db.append(lo_row.split(":")[1]) continue data = self.appDB.keys(self.appDB.APPL_DB, "INTF_TABLE:*") diff --git a/tests/db_migrator_input/appl_db/loopback_interface_migrate_from_1_0_1_expected.json b/tests/db_migrator_input/appl_db/loopback_interface_migrate_from_1_0_1_expected.json new file mode 100644 index 00000000..5d40ad31 --- /dev/null +++ b/tests/db_migrator_input/appl_db/loopback_interface_migrate_from_1_0_1_expected.json @@ -0,0 +1,8 @@ +{ + "INTF_TABLE:Loopback0" : {"NULL": "NULL"}, + "INTF_TABLE:Loopback0:10.1.0.32/32" : {"NULL": "NULL"}, + "INTF_TABLE:Loopback0:FC00:1::32/128" : {"NULL": "NULL"}, + "INTF_TABLE:Loopback1" : {"NULL": "NULL"}, + "INTF_TABLE:Loopback1:10.20.8.199/32" : {"NULL": "NULL"}, + "INTF_TABLE:Loopback1:2001:506:28:500::1/128" : {"NULL": "NULL"} +} diff --git a/tests/db_migrator_input/appl_db/loopback_interface_migrate_from_1_0_1_input.json b/tests/db_migrator_input/appl_db/loopback_interface_migrate_from_1_0_1_input.json new file mode 100644 index 00000000..4326e37e --- /dev/null +++ b/tests/db_migrator_input/appl_db/loopback_interface_migrate_from_1_0_1_input.json @@ -0,0 +1,18 @@ +{ + "INTF_TABLE:lo:10.1.0.32/32" : { + "scope": "global", + "family": "IPv4" + }, + "INTF_TABLE:lo:FC00:1::32/128" : { + "scope": "global", + "family": "IPv6" + }, + "INTF_TABLE:lo:10.20.8.199/32" : { + "scope": "global", + "family": "IPv4" + }, + "INTF_TABLE:lo:2001:506:28:500::1/128" : { + "scope": "global", + "family": "IPv6" + } +} \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/loopback_interface_migrate_from_1_0_1_expected.json b/tests/db_migrator_input/config_db/loopback_interface_migrate_from_1_0_1_expected.json new file mode 100644 index 00000000..0d98a49f --- /dev/null +++ b/tests/db_migrator_input/config_db/loopback_interface_migrate_from_1_0_1_expected.json @@ -0,0 +1,8 @@ +{ + "LOOPBACK_INTERFACE|Loopback0" : {"NULL": "NULL"}, + "LOOPBACK_INTERFACE|Loopback0|10.1.0.32/32" : {"NULL": "NULL"}, + "LOOPBACK_INTERFACE|Loopback0|FC00:1::32/128" : {"NULL": "NULL"}, + "LOOPBACK_INTERFACE|Loopback1" : {"NULL": "NULL"}, + "LOOPBACK_INTERFACE|Loopback1|10.20.8.199/32" : {"NULL": "NULL"}, + "LOOPBACK_INTERFACE|Loopback1|2001:506:28:500::1/128" : {"NULL": "NULL"} +} diff --git a/tests/db_migrator_input/config_db/loopback_interface_migrate_from_1_0_1_input.json b/tests/db_migrator_input/config_db/loopback_interface_migrate_from_1_0_1_input.json new file mode 100644 index 00000000..58832dc5 --- /dev/null +++ b/tests/db_migrator_input/config_db/loopback_interface_migrate_from_1_0_1_input.json @@ -0,0 +1,7 @@ +{ + "LOOPBACK_INTERFACE|Loopback0|10.1.0.32/32" : {"NULL": "NULL"}, + "LOOPBACK_INTERFACE|Loopback0|FC00:1::32/128" : {"NULL": "NULL"}, + "LOOPBACK_INTERFACE|Loopback1|10.20.8.199/32" : {"NULL": "NULL"}, + "LOOPBACK_INTERFACE|Loopback1|2001:506:28:500::1/128" : {"NULL": "NULL"}, + "VERSIONS|DATABASE": {"VERSION": "version_1_0_1"} +} diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index 4571d9b1..223f5d58 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -476,3 +476,45 @@ def test_warm_upgrade_to_2_0_2(self): expected_table = expected_db.cfgdb.get_table(table) diff = DeepDiff(resulting_table, expected_table, ignore_order=True) assert not diff + +class Test_Migrate_Loopback(object): + @classmethod + def setup_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "2" + + @classmethod + def teardown_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "0" + dbconnector.dedicated_dbs['CONFIG_DB'] = None + dbconnector.dedicated_dbs['APPL_DB'] = None + + def test_migrate_loopback_int(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'loopback_interface_migrate_from_1_0_1_input') + dbconnector.dedicated_dbs['APPL_DB'] = os.path.join(mock_db_path, 'appl_db', 'loopback_interface_migrate_from_1_0_1_input') + + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + dbmgtr.migrate() + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'loopback_interface_migrate_from_1_0_1_expected') + dbconnector.dedicated_dbs['APPL_DB'] = os.path.join(mock_db_path, 'appl_db', 'loopback_interface_migrate_from_1_0_1_expected') + expected_db = Db() + + # verify migrated configDB + resulting_table = dbmgtr.configDB.get_table("LOOPBACK_INTERFACE") + expected_table = expected_db.cfgdb.get_table("LOOPBACK_INTERFACE") + diff = DeepDiff(resulting_table, expected_table, ignore_order=True) + assert not diff + + # verify migrated appDB + expected_appl_db = SonicV2Connector(host='127.0.0.1') + expected_appl_db.connect(expected_appl_db.APPL_DB) + expected_keys = expected_appl_db.keys(expected_appl_db.APPL_DB, "INTF_TABLE:*") + expected_keys.sort() + resulting_keys = dbmgtr.appDB.keys(dbmgtr.appDB.APPL_DB, "INTF_TABLE:*") + resulting_keys.sort() + assert expected_keys == resulting_keys + for key in expected_keys: + resulting_keys = dbmgtr.appDB.get_all(dbmgtr.appDB.APPL_DB, key) + expected_keys = expected_appl_db.get_all(expected_appl_db.APPL_DB, key) + diff = DeepDiff(resulting_keys, expected_keys, ignore_order=True) + assert not diff From 748540c9d801f6d945a40f0f5e436267672fa231 Mon Sep 17 00:00:00 2001 From: Preetham <51771885+preetham-singh@users.noreply.github.com> Date: Fri, 16 Dec 2022 23:38:03 +0530 Subject: [PATCH 023/312] Fixes #12170: Delete subinterface and recreate the subinterface in (#2513) * Fixes #12170: Delete subinterface and recreate the subinterface in default-vrf while unbinding subinterface from user defined vrf. --- config/main.py | 16 ++++++++++++++++ tests/vrf_test.py | 49 +++++++++++++++++++++++++++++++++++++---------- 2 files changed, 55 insertions(+), 10 deletions(-) diff --git a/config/main.py b/config/main.py index eb003ceb..5ec91158 100644 --- a/config/main.py +++ b/config/main.py @@ -5144,6 +5144,22 @@ def unbind(ctx, interface_name): for ipaddress in interface_ipaddresses: remove_router_interface_ip_address(config_db, interface_name, ipaddress) if table_name == "VLAN_SUB_INTERFACE": + # First delete subinterface, once subinterface deletion successful, + # recreate same with same config on default vrf + if 'state_db' not in ctx.obj: + if ctx.obj['namespace'] is DEFAULT_NAMESPACE: + state_db = SonicV2Connector(use_unix_socket_path=True) + else: + state_db = SonicV2Connector(use_unix_socket_path=True, namespace=ctx.obj['namespace']) + state_db.connect(state_db.STATE_DB, False) + else: + state_db = ctx.obj['state_db'] + + config_db.set_entry(table_name, interface_name, None) + _hash = '{}{}'.format('INTERFACE_TABLE|', interface_name) + while state_db.exists(state_db.STATE_DB, _hash): + time.sleep(0.01) + state_db.close(state_db.STATE_DB) config_db.set_entry(table_name, interface_name, subintf_entry) else: config_db.set_entry(table_name, interface_name, None) diff --git a/tests/vrf_test.py b/tests/vrf_test.py index 954fbf69..323f61de 100644 --- a/tests/vrf_test.py +++ b/tests/vrf_test.py @@ -6,7 +6,9 @@ import config.main as config import show.main as show +import threading +DEFAULT_NAMESPACE = '' test_path = os.path.dirname(os.path.abspath(__file__)) mock_db_path = os.path.join(test_path, "vrf_input") @@ -16,6 +18,11 @@ def setup_class(cls): print("SETUP") os.environ["UTILITIES_UNIT_TESTING"] = "1" + def update_statedb(self, db, db_name, key): + import time + time.sleep(0.5) + db.delete(db_name, key) + def test_vrf_show(self): from .mock_tables import dbconnector jsonfile_config = os.path.join(mock_db_path, "config_db") @@ -64,59 +71,81 @@ def test_vrf_bind_unbind(self): assert result.exit_code == 0 assert result.output == expected_output - obj = {'config_db':db.cfgdb} + + vrf_obj = {'config_db':db.cfgdb, 'namespace':db.db.namespace} expected_output_unbind = "Interface Ethernet4 IP disabled and address(es) removed due to unbinding VRF.\n" - result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Ethernet4"], obj=obj) + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Ethernet4"], obj=vrf_obj) + print(result.exit_code, result.output) assert result.exit_code == 0 assert 'Ethernet4' not in db.cfgdb.get_table('INTERFACE') assert result.output == expected_output_unbind expected_output_unbind = "Interface Loopback0 IP disabled and address(es) removed due to unbinding VRF.\n" - result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Loopback0"], obj=obj) + + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Loopback0"], obj=vrf_obj) + print(result.exit_code, result.output) assert result.exit_code == 0 assert 'Loopback0' not in db.cfgdb.get_table('LOOPBACK_INTERFACE') assert result.output == expected_output_unbind expected_output_unbind = "Interface Vlan40 IP disabled and address(es) removed due to unbinding VRF.\n" - result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Vlan40"], obj=obj) + + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Vlan40"], obj=vrf_obj) + print(result.exit_code, result.output) assert result.exit_code == 0 assert 'Vlan40' not in db.cfgdb.get_table('VLAN_INTERFACE') assert result.output == expected_output_unbind expected_output_unbind = "Interface PortChannel0002 IP disabled and address(es) removed due to unbinding VRF.\n" - result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["PortChannel0002"], obj=obj) + + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["PortChannel0002"], obj=vrf_obj) + print(result.exit_code, result.output) assert result.exit_code == 0 assert 'PortChannel002' not in db.cfgdb.get_table('PORTCHANNEL_INTERFACE') assert result.output == expected_output_unbind + vrf_obj = {'config_db':db.cfgdb, 'namespace':DEFAULT_NAMESPACE} + state_db = SonicV2Connector(use_unix_socket_path=True, namespace='') + state_db.connect(state_db.STATE_DB, False) + _hash = "INTERFACE_TABLE|Eth36.10" + state_db.set(db.db.STATE_DB, _hash, "state", "ok") + vrf_obj['state_db'] = state_db + expected_output_unbind = "Interface Eth36.10 IP disabled and address(es) removed due to unbinding VRF.\n" - result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Eth36.10"], obj=obj) + T1 = threading.Thread( target = self.update_statedb, args = (state_db, db.db.STATE_DB, _hash)) + T1.start() + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Eth36.10"], obj=vrf_obj) + T1.join() print(result.exit_code, result.output) assert result.exit_code == 0 assert ('vrf_name', 'Vrf102') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE')['Eth36.10'] assert result.output == expected_output_unbind + vrf_obj = {'config_db':db.cfgdb, 'namespace':DEFAULT_NAMESPACE} + expected_output_unbind = "Interface Ethernet0.10 IP disabled and address(es) removed due to unbinding VRF.\n" - result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Ethernet0.10"], obj=obj) + + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Ethernet0.10"], obj=vrf_obj) + print(result.exit_code, result.output) assert result.exit_code == 0 assert ('vrf_name', 'Vrf101') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE')['Ethernet0.10'] assert result.output == expected_output_unbind expected_output_unbind = "Interface Po0002.101 IP disabled and address(es) removed due to unbinding VRF.\n" - result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Po0002.101"], obj=obj) + + result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Po0002.101"], obj=vrf_obj) + print(result.exit_code, result.output) assert result.exit_code == 0 assert ('vrf_name', 'Vrf103') not in db.cfgdb.get_table('VLAN_SUB_INTERFACE')['Po0002.101'] assert result.output == expected_output_unbind - vrf_obj = {'config_db':db.cfgdb, 'namespace':db.db.namespace} - expected_output_bind = "Interface Ethernet0 IP disabled and address(es) removed due to binding VRF Vrf1.\n" result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["bind"], ["Ethernet0", "Vrf1"], obj=vrf_obj) assert result.exit_code == 0 From 739e4d75a8ca7e13ebec5658567491ce1edb74e3 Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak <38952541+stepanblyschak@users.noreply.github.com> Date: Mon, 19 Dec 2022 07:32:18 +0200 Subject: [PATCH 024/312] [timer.unit.j2] use wanted-by in timer unit (#2546) Signed-off-by: Stepan Blyschak Signed-off-by: Stepan Blyschak --- sonic-utilities-data/templates/timer.unit.j2 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sonic-utilities-data/templates/timer.unit.j2 b/sonic-utilities-data/templates/timer.unit.j2 index 250bf446..09989f2c 100644 --- a/sonic-utilities-data/templates/timer.unit.j2 +++ b/sonic-utilities-data/templates/timer.unit.j2 @@ -13,3 +13,7 @@ Unit={{ manifest.service.name }}{% if multi_instance %}@%i{% endif %}.service [Install] WantedBy=timers.target sonic.target sonic-delayed.target +{%- for service in manifest.service["wanted-by"] %} +WantedBy={{ service }}{% if multi_instance and service in multi_instance_services %}@%i{% endif %}.service +{%- endfor %} + From 258ffa0928ce2c74ebdc180e13c6476dc2534983 Mon Sep 17 00:00:00 2001 From: Vadym Hlushko <62022266+vadymhlushko-mlnx@users.noreply.github.com> Date: Tue, 20 Dec 2022 11:04:02 +0200 Subject: [PATCH 025/312] [generate_dump] Optimize the execution time of 'show techsupport' CLI by parallel function execution (#2512) - What I did Optimize the execution time of the 'show techsupport' script. - How I did it The show techsupport CLI command calls the generate_dump bash script. In the script, there are a many functions that do the next scenario: 1. Run some CLI command 2. Save output from step 1 to the temporary file 3. Append the temporary file from step 2 to the `/var/dump/sonic_dump_XXXX.tar` file 4. Delete the temporary file from step 2 This PR will add the execution of these functions in parallel manner. Also, it will not spawn too many processes to not waste all CPU time. - How to verify it First test scenario Run the `time show techsupport` CLI command and compare the execution time to the original script (with no parallelism), the execution time will be decreased by 10-20%. Second test scenario 1. Stuck the FW by using next commands a. mcra /dev/mst/mt52100_pci_cr0 0xa01e4 0x10 b. mcra /dev/mst/mt52100_pci_cr0 0xa05e4 0x10 c. mcra /dev/mst/mt52100_pci_cr0 0xa07e4 0x10 d. mcra /dev/mst/mt52100_pci_cr0 0xa09e4 0x10 e. mcra /dev/mst/mt52100_pci_cr0 0xa0be4 0x10 f. mcra /dev/mst/mt52100_pci_cr0 0xa0de4 0x10 g. mcra /dev/mst/mt52100_pci_cr0 0xa0fe4 0x10 2. Run the `time show techsupport` CLI command and compare the execution time to the original script (with no parallelism), the execution time will be decreased by up to 50% because inside the script we launch CLI commands with `timeout --foreground 5m`. Signed-off-by: Vadym Hlushko --- scripts/generate_dump | 159 ++++++++++++++++++++++++------------------ 1 file changed, 92 insertions(+), 67 deletions(-) diff --git a/scripts/generate_dump b/scripts/generate_dump index 54b01e1e..ddb2727e 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -1544,101 +1544,121 @@ main() { /proc/pagetypeinfo /proc/partitions /proc/sched_debug /proc/slabinfo \ /proc/softirqs /proc/stat /proc/swaps /proc/sysvipc /proc/timer_list \ /proc/uptime /proc/version /proc/vmallocinfo /proc/vmstat \ - /proc/zoneinfo - save_proc_stats + /proc/zoneinfo & + save_proc_stats & end_t=$(date +%s%3N) echo "[ Capture Proc State ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO + wait # Save all the processes within each docker - save_cmd "show services" services.summary + save_cmd "show services" services.summary & # Save reboot cause information - save_cmd "show reboot-cause" reboot.cause + save_cmd "show reboot-cause" reboot.cause & + wait local asic="$(/usr/local/bin/sonic-cfggen -y /etc/sonic/sonic_version.yml -v asic_type)" # 1st counter snapshot early. Need 2 snapshots to make sense of counters trend. save_counter_snapshot $asic 1 - save_cmd "systemd-analyze blame" "systemd.analyze.blame" - save_cmd "systemd-analyze dump" "systemd.analyze.dump" - save_cmd "systemd-analyze plot" "systemd.analyze.plot.svg" - - save_platform_info - save_cmd "show vlan brief" "vlan.summary" - save_cmd "show version" "version" - save_cmd "show platform summary" "platform.summary" - save_cmd "cat /host/machine.conf" "machine.conf" - save_cmd "cat /boot/config-$(uname -r)" "boot.conf" - save_cmd "docker stats --no-stream" "docker.stats" - - save_cmd "sensors" "sensors" - save_cmd "lspci -vvv -xx" "lspci" - save_cmd "lsusb -v" "lsusb" - save_cmd "sysctl -a" "sysctl" - - save_ip_info - save_bridge_info - save_frr_info - - save_bgp_info - save_evpn_info - - save_cmd "show interface status -d all" "interface.status" - save_cmd "show interface transceiver presence" "interface.xcvrs.presence" - save_cmd "show interface transceiver eeprom --dom" "interface.xcvrs.eeprom" - save_cmd "show ip interface -d all" "ip.interface" - - save_cmd "lldpctl" "lldpctl" + save_cmd "systemd-analyze blame" "systemd.analyze.blame" & + save_cmd "systemd-analyze dump" "systemd.analyze.dump" & + save_cmd "systemd-analyze plot" "systemd.analyze.plot.svg" & + wait + + save_platform_info & + save_cmd "show vlan brief" "vlan.summary" & + save_cmd "show version" "version" & + save_cmd "show platform summary" "platform.summary" & + wait + + save_cmd "cat /host/machine.conf" "machine.conf" & + save_cmd "cat /boot/config-$(uname -r)" "boot.conf" & + save_cmd "docker stats --no-stream" "docker.stats" & + wait + + save_cmd "sensors" "sensors" & + save_cmd "lspci -vvv -xx" "lspci" & + save_cmd "lsusb -v" "lsusb" & + save_cmd "sysctl -a" "sysctl" & + wait + + save_ip_info & + save_bridge_info & + wait + + save_frr_info & + + save_bgp_info & + save_evpn_info & + wait + + save_cmd "show interface status -d all" "interface.status" & + save_cmd "show interface transceiver presence" "interface.xcvrs.presence" & + save_cmd "show interface transceiver eeprom --dom" "interface.xcvrs.eeprom" & + save_cmd "show ip interface -d all" "ip.interface" & + wait + + save_cmd "lldpctl" "lldpctl" & if [[ ( "$NUM_ASICS" > 1 ) ]]; then for (( i=0; i<$NUM_ASICS; i++ )) do - save_cmd "docker exec lldp$i lldpcli show statistics" "lldp$i.statistics" - save_cmd "docker logs bgp$i" "docker.bgp$i.log" - save_cmd "docker logs swss$i" "docker.swss$i.log" + save_cmd "docker exec lldp$i lldpcli show statistics" "lldp$i.statistics" & + save_cmd "docker logs bgp$i" "docker.bgp$i.log" & + save_cmd "docker logs swss$i" "docker.swss$i.log" & done else - save_cmd "docker exec lldp lldpcli show statistics" "lldp.statistics" - save_cmd "docker logs bgp" "docker.bgp.log" - save_cmd "docker logs swss" "docker.swss.log" + save_cmd "docker exec lldp lldpcli show statistics" "lldp.statistics" & + save_cmd "docker logs bgp" "docker.bgp.log" & + save_cmd "docker logs swss" "docker.swss.log" & fi - - save_cmd "ps aux" "ps.aux" - save_cmd "top -b -n 1" "top" - save_cmd "free" "free" - save_cmd "vmstat 1 5" "vmstat" - save_cmd "vmstat -m" "vmstat.m" - save_cmd "vmstat -s" "vmstat.s" - save_cmd "mount" "mount" - save_cmd "df" "df" - save_cmd "dmesg" "dmesg" - - save_nat_info - save_bfd_info - save_redis_info + wait + + save_cmd "ps aux" "ps.aux" & + save_cmd "top -b -n 1" "top" & + save_cmd "free" "free" & + wait + save_cmd "vmstat 1 5" "vmstat" & + save_cmd "vmstat -m" "vmstat.m" & + save_cmd "vmstat -s" "vmstat.s" & + wait + save_cmd "mount" "mount" & + save_cmd "df" "df" & + save_cmd "dmesg" "dmesg" & + wait + + save_nat_info & + save_bfd_info & + wait + save_redis_info & if $DEBUG_DUMP then - save_dump_state_all_ns + save_dump_state_all_ns & fi + wait - save_cmd "docker ps -a" "docker.ps" - save_cmd "docker top pmon" "docker.pmon" + save_cmd "docker ps -a" "docker.ps" & + save_cmd "docker top pmon" "docker.pmon" & if [[ -d ${PLUGINS_DIR} ]]; then local -r dump_plugins="$(find ${PLUGINS_DIR} -type f -executable)" for plugin in $dump_plugins; do # save stdout output of plugin and gzip it - save_cmd "$plugin" "$(basename $plugin)" true + save_cmd "$plugin" "$(basename $plugin)" true & done fi + wait - save_cmd "dpkg -l" "dpkg" - save_cmd "who -a" "who" - save_cmd "swapon -s" "swapon" - save_cmd "hdparm -i /dev/sda" "hdparm" - save_cmd "ps -AwwL -o user,pid,lwp,ppid,nlwp,pcpu,pri,nice,vsize,rss,tty,stat,wchan:12,start,bsdtime,command" "ps.extended" + save_cmd "dpkg -l" "dpkg" & + save_cmd "who -a" "who" & + save_cmd "swapon -s" "swapon" & + wait + save_cmd "hdparm -i /dev/sda" "hdparm" & + save_cmd "ps -AwwL -o user,pid,lwp,ppid,nlwp,pcpu,pri,nice,vsize,rss,tty,stat,wchan:12,start,bsdtime,command" "ps.extended" & - save_saidump + save_saidump & + wait if [ "$asic" = "barefoot" ]; then collect_barefoot @@ -1659,6 +1679,10 @@ main() { # 2nd counter snapshot late. Need 2 snapshots to make sense of counters trend. save_counter_snapshot $asic 2 + $RM $V -rf $TARDIR + $MKDIR $V -p $TARDIR + $MKDIR $V -p $LOGDIR + # Copying the /etc files to a directory and then tar it $CP -r /etc $TARDIR/etc rm_list=$(find -L $TARDIR/etc -maxdepth 5 -type l) @@ -1678,9 +1702,10 @@ main() { $TARDIR/etc/sonic/*.crt $TARDIR/etc/sonic/*.pem $TARDIR/etc/sonic/*.key \ $TARDIR/etc/ssl/*.pem $TARDIR/etc/ssl/certs/ $TARDIR/etc/ssl/private/* - save_log_files - save_crash_files - save_warmboot_files + save_log_files & + save_crash_files & + save_warmboot_files & + wait if [[ "$asic" = "mellanox" ]]; then collect_mellanox_dfw_dumps From d00780e851b0b34d191e558e4f0703664ebaca4e Mon Sep 17 00:00:00 2001 From: Junchao-Mellanox <57339448+Junchao-Mellanox@users.noreply.github.com> Date: Tue, 20 Dec 2022 17:05:23 +0800 Subject: [PATCH 026/312] [Command Ref] Add doc for syslog rate limit (#2508) - What I did Add command reference doc for syslog rate limit feature - How I did it Add command reference doc for syslog rate limit feature - How to verify it Manual check 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) admin@sonic:~$ show syslog rate-limit-container SERVICE INTERVAL BURST -------------- ---------- ------- bgp 0 0 database 300 20000 lldp 300 20000 mgmt-framework 300 20000 pmon 300 20000 radv 300 20000 snmp 300 20000 swss 300 20000 syncd 300 20000 teamd 300 20000 telemetry 300 20000 admin@sonic:~$ show syslog rate-limit-container bgp SERVICE INTERVAL BURST -------------- ---------- ------- bgp 0 0 --- doc/Command-Reference.md | 92 ++++++++++++++++++++++++++++++++++++++-- 1 file changed, 89 insertions(+), 3 deletions(-) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 79d31145..c6985b59 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -3357,7 +3357,7 @@ This command displays basic information about the gearbox phys configured on the PHY Id Name Firmware -------- ------- ---------- 1 sesto-1 v0.1 - + ``` Go Back To [Beginning of the document](#) or [Beginning of this section](#gearbox) @@ -8702,7 +8702,7 @@ Go Back To [Beginning of the document](#) or [Beginning of this section](#subint ### Syslog Show Commands -This subsection explains how to display configured syslog servers. +This subsection explains how to display syslog related configuration. **show syslog** @@ -8721,9 +8721,58 @@ This command displays configured syslog servers. 2.2.2.2 1.1.1.1 514 default ``` +**show syslog rate-limit-host** + +This command displays rate limit configuration for host. + +- Usage + ``` + show syslog rate-limit-host + ``` + +- Example: + ``` + admin@sonic:~$ show syslog rate-limit-host + INTERVAL BURST + ---------- -------- + 500 50000 + ``` + +**show syslog rate-limit-container** + +This command displays rate limit configuration for containers. + +- Usage + ``` + show syslog rate-limit-container [] + ``` + +- Example: + ``` + admin@sonic:~$ show syslog rate-limit-container + SERVICE INTERVAL BURST + -------------- ---------- ------- + bgp 0 0 + database 300 20000 + lldp 300 20000 + mgmt-framework 300 20000 + pmon 300 20000 + radv 300 20000 + snmp 300 20000 + swss 300 20000 + syncd 300 20000 + teamd 300 20000 + telemetry 300 20000 + + admin@sonic:~$ show syslog rate-limit-container bgp + SERVICE INTERVAL BURST + -------------- ---------- ------- + bgp 0 0 + ``` + ### Syslog Config Commands -This subsection explains how to configure syslog servers. +This subsection explains how to configure syslog. **config syslog add** @@ -8767,6 +8816,43 @@ This command is used to delete the configured syslog server. Running command: systemctl restart rsyslog-config ``` +**config syslog rate-limit-host** + +This command is used to configure syslog rate limit for host. + +- Usage: + ``` + config syslog rate-limit-host + ``` + +- Parameters: + - _interval_: determines the amount of time that is being measured for rate limiting. + - _burst_: defines the amount of messages, that have to occur in the time limit of interval, to trigger rate limiting + +- Example: + ``` + admin@sonic:~$ sudo config syslog rate-limit-host --interval 300 --burst 20000 + ``` + +**config syslog rate-limit-container** + +This command is used to configure syslog rate limit for containers. + +- Usage: + ``` + config syslog rate-limit-container + ``` + +- Parameters: + - _interval_: determines the amount of time that is being measured for rate limiting. + - _burst_: defines the amount of messages, that have to occur in the time limit of interval, to trigger rate limiting + +- Example: + ``` + admin@sonic:~$ sudo config syslog rate-limit-container bgp --interval 300 --burst 20000 + ``` + + Go Back To [Beginning of the document](#) or [Beginning of this section](#syslog) ## System State From ba45b81b1d8ce478972747bf8b510d6e0440bc25 Mon Sep 17 00:00:00 2001 From: Stephen Sun <5379172+stephenxs@users.noreply.github.com> Date: Mon, 26 Dec 2022 16:00:31 +0800 Subject: [PATCH 027/312] Fix issue: unconfigured PGs are displayed in watermarkstat (#2556) - What I did All the PGs between minimal and maximal indexes are displayed regardless of whether they are configured. Originally, watermark counters were enabled for all PGs, so there is no issue. Now, watermark counters are enabled only for PGs with buffer configured, eg. if PG 0/2/3/4/6, is configured, PG 0-6 will be displayed, which is confusing by giving users a feeling that PG 7 is lost - How I did it Display valid PGs only - How to verify it Manually test and unit test. - Previous command output (if the output of a command-line utility has changed) Port PG0 PG1 PG2 PG3 PG4 ----------- ----- ----- ----- ----- ----- Ethernet0 0 0 0 0 0 Ethernet2 0 0 0 0 0 Ethernet8 0 0 0 0 0 Ethernet10 0 0 0 0 0 Ethernet16 0 0 0 0 0 Ethernet18 0 0 0 0 0 Ethernet32 0 0 0 0 0 - New command output (if the output of a command-line utility has changed) PG1 won't be displayed if it is not configured Port PG0 PG3 PG4 ----------- ----- ----- ----- Ethernet0 0 0 0 Ethernet2 0 0 0 Ethernet8 0 0 0 Ethernet10 0 0 0 Ethernet16 0 0 0 Ethernet18 0 0 0 Ethernet32 0 0 0 Signed-off-by: Stephen Sun --- scripts/pg-drop | 23 +++++++++++++---------- scripts/watermarkstat | 23 +++++++++++++---------- 2 files changed, 26 insertions(+), 20 deletions(-) diff --git a/scripts/pg-drop b/scripts/pg-drop index 4f58f84c..40b4e863 100755 --- a/scripts/pg-drop +++ b/scripts/pg-drop @@ -117,22 +117,25 @@ class PgDropStat(object): self.header_list = ['Port'] header_map = pg_drop_type["obj_map"] - max_idx = 0 - min_idx = sys.maxsize + header_idx_set = set() for port in header_map.keys(): for element in header_map[port].keys(): element_idx = int(element.split(':')[1]) - if element_idx > max_idx: - max_idx = element_idx - if min_idx > element_idx: - min_idx = element_idx + header_idx_set.add(element_idx) - if min_idx == sys.maxsize: + if len(header_idx_set) == 0: print("Header info is not available!") sys.exit(1) - self.min_idx = min_idx - self.header_list += ["{}{}".format(pg_drop_type["header_prefix"], idx) for idx in range(self.min_idx, max_idx + 1)] + header_idx_list = list(header_idx_set) + header_idx_list.sort() + + self.header_idx_to_pos = {} + for i in header_idx_list: + self.header_idx_to_pos[i] = header_idx_list.index(i) + + self.min_idx = header_idx_list[0] + self.header_list += ["{}{}".format(pg_drop_type["header_prefix"], idx) for idx in header_idx_list] def get_counters(self, table_prefix, port_obj, idx_func, counter_name): """ @@ -150,7 +153,7 @@ class PgDropStat(object): full_table_id = table_prefix + obj_id old_collected_data = port_drop_ckpt.get(name,{})[full_table_id] if len(port_drop_ckpt) > 0 else 0 idx = int(idx_func(obj_id)) - pos = idx - self.min_idx + pos = self.header_idx_to_pos[idx] counter_data = self.counters_db.get(self.counters_db.COUNTERS_DB, full_table_id, counter_name) if counter_data is None: fields[pos] = STATUS_NA diff --git a/scripts/watermarkstat b/scripts/watermarkstat index 229f9ceb..99a46d54 100755 --- a/scripts/watermarkstat +++ b/scripts/watermarkstat @@ -217,17 +217,13 @@ class Watermarkstat(object): self.header_list = ['Port'] header_map = wm_type["obj_map"] - max_idx = 0 - min_idx = sys.maxsize + header_idx_set = set() for port in header_map.keys(): for element in header_map[port].keys(): element_idx = int(element.split(':')[1]) - if element_idx > max_idx: - max_idx = element_idx - if min_idx > element_idx: - min_idx = element_idx + header_idx_set.add(element_idx) - if min_idx == sys.maxsize: + if len(header_idx_set) == 0: if counter_type != 'q_shared_multi': print("Object map is empty!", file=sys.stderr) sys.exit(1) @@ -235,8 +231,15 @@ class Watermarkstat(object): print("Object map from the COUNTERS_DB is empty because the multicast queues are not configured in the CONFIG_DB!") sys.exit(0) - self.min_idx = min_idx - self.header_list += ["{}{}".format(wm_type["header_prefix"], idx) for idx in range(self.min_idx, max_idx + 1)] + header_idx_list = list(header_idx_set) + header_idx_list.sort() + + self.header_idx_to_pos = {} + for i in header_idx_list: + self.header_idx_to_pos[i] = header_idx_list.index(i) + + self.min_idx = header_idx_list[0] + self.header_list += ["{}{}".format(wm_type["header_prefix"], idx) for idx in header_idx_list] def get_counters(self, table_prefix, port_obj, idx_func, watermark): """ @@ -252,7 +255,7 @@ class Watermarkstat(object): for name, obj_id in port_obj.items(): full_table_id = table_prefix + obj_id idx = int(idx_func(obj_id)) - pos = idx - self.min_idx + pos = self.header_idx_to_pos[idx] counter_data = self.counters_db.get(self.counters_db.COUNTERS_DB, full_table_id, watermark) if counter_data is None or counter_data == '': fields[pos] = STATUS_NA From a09461d77eb0aafaea904912e3d90bde0724d402 Mon Sep 17 00:00:00 2001 From: Stephen Sun <5379172+stephenxs@users.noreply.github.com> Date: Thu, 29 Dec 2022 15:37:38 +0800 Subject: [PATCH 028/312] [Mellanox] Change severity to NOTICE in Mellanox buffer migrator when unable to fetch DEVICE_METADATA due to empty CONFIG_DB during initialization (#2569) - What I did It is expected that db_migrator is not able to fetch DEVICE_METADATA when it is invoked before the CONFIG_DB is initialized. In this case, we should not use ERROR to log the message since it's not an error. Change the severity to NOTICE - How I did it Change the severity. - How to verify it Manually test. Signed-off-by: Stephen Sun --- scripts/mellanox_buffer_migrator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/mellanox_buffer_migrator.py b/scripts/mellanox_buffer_migrator.py index 6706969b..187e77af 100755 --- a/scripts/mellanox_buffer_migrator.py +++ b/scripts/mellanox_buffer_migrator.py @@ -101,7 +101,7 @@ def __init__(self, configDB, appDB, stateDB): self.sku = device_data.get('hwsku') self.ready = True if not self.platform or not self.sku: - log.log_error("Trying to get DEVICE_METADATA from DB but doesn't exist, skip migration") + log.log_notice("Trying to get DEVICE_METADATA from DB but doesn't exist, skip migration") self.ready = False self.spc1_platforms = ["x86_64-mlnx_msn2010-r0", "x86_64-mlnx_msn2100-r0", "x86_64-mlnx_msn2410-r0", "x86_64-mlnx_msn2700-r0", "x86_64-mlnx_msn2740-r0"] From fd4d9c0c8f2fe2182e18bd445a0eb0e2d2a9ca6a Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak <38952541+stepanblyschak@users.noreply.github.com> Date: Mon, 2 Jan 2023 15:01:09 +0200 Subject: [PATCH 029/312] [sonic_installer] use /etc/resolv.conf from the host when migrating packages (#2573) - What I did SONiC package migration has been failing due to the lack of DNS configuration for registries domain names. I used /etc/resolv.conf from host OS when migrating. - How I did it Copy /etc/resolv.conf into new image filesystem during migration, then, restore it back. - How to verify it Run sonic-installer install. Signed-off-by: Stepan Blyschak --- sonic_installer/main.py | 19 +++++++++++++------ tests/test_sonic_installer.py | 3 +++ 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/sonic_installer/main.py b/sonic_installer/main.py index 9b75db6a..ce1c1586 100644 --- a/sonic_installer/main.py +++ b/sonic_installer/main.py @@ -318,13 +318,15 @@ def get_docker_opts(): def migrate_sonic_packages(bootloader, binary_image_version): """ Migrate SONiC packages to new SONiC image. """ + TMP_DIR = "tmp" SONIC_PACKAGE_MANAGER = "sonic-package-manager" PACKAGE_MANAGER_DIR = "/var/lib/sonic-package-manager/" DOCKER_CTL_SCRIPT = "/usr/lib/docker/docker.sh" DOCKERD_SOCK = "docker.sock" VAR_RUN_PATH = "/var/run/" + RESOLV_CONF_FILE = os.path.join("etc", "resolv.conf") + RESOLV_CONF_BACKUP_FILE = os.path.join("/", TMP_DIR, "resolv.conf.backup") - tmp_dir = "tmp" packages_file = "packages.json" packages_path = os.path.join(PACKAGE_MANAGER_DIR, packages_file) sonic_version = re.sub(IMAGE_PREFIX, '', binary_image_version, 1) @@ -332,10 +334,10 @@ def migrate_sonic_packages(bootloader, binary_image_version): new_image_upper_dir = os.path.join(new_image_dir, UPPERDIR_NAME) new_image_work_dir = os.path.join(new_image_dir, WORKDIR_NAME) new_image_docker_dir = os.path.join(new_image_dir, DOCKERDIR_NAME) - new_image_mount = os.path.join("/", tmp_dir, "image-{0}-fs".format(sonic_version)) + new_image_mount = os.path.join("/", TMP_DIR, "image-{0}-fs".format(sonic_version)) new_image_docker_mount = os.path.join(new_image_mount, "var", "lib", "docker") docker_default_config = os.path.join(new_image_mount, "etc", "default", "docker") - docker_default_config_backup = os.path.join(new_image_mount, tmp_dir, "docker_config_backup") + docker_default_config_backup = os.path.join(new_image_mount, TMP_DIR, "docker_config_backup") if not os.path.isdir(new_image_docker_dir): # NOTE: This codepath can be reached if the installation process did not @@ -370,21 +372,26 @@ def migrate_sonic_packages(bootloader, binary_image_version): run_command_or_raise(["chroot", new_image_mount, DOCKER_CTL_SCRIPT, "start"]) docker_started = True - run_command_or_raise(["cp", packages_path, os.path.join(new_image_mount, tmp_dir, packages_file)]) + run_command_or_raise(["cp", packages_path, os.path.join(new_image_mount, TMP_DIR, packages_file)]) run_command_or_raise(["touch", os.path.join(new_image_mount, "tmp", DOCKERD_SOCK)]) run_command_or_raise(["mount", "--bind", os.path.join(VAR_RUN_PATH, DOCKERD_SOCK), os.path.join(new_image_mount, "tmp", DOCKERD_SOCK)]) + + run_command_or_raise(["cp", os.path.join(new_image_mount, RESOLV_CONF_FILE), RESOLV_CONF_BACKUP_FILE]) + run_command_or_raise(["cp", os.path.join("/", RESOLV_CONF_FILE), os.path.join(new_image_mount, RESOLV_CONF_FILE)]) + run_command_or_raise(["chroot", new_image_mount, "sh", "-c", "command -v {}".format(SONIC_PACKAGE_MANAGER)]) run_command_or_raise(["chroot", new_image_mount, SONIC_PACKAGE_MANAGER, "migrate", - os.path.join("/", tmp_dir, packages_file), - "--dockerd-socket", os.path.join("/", tmp_dir, DOCKERD_SOCK), + os.path.join("/", TMP_DIR, packages_file), + "--dockerd-socket", os.path.join("/", TMP_DIR, DOCKERD_SOCK), "-y"]) finally: if docker_started: run_command_or_raise(["chroot", new_image_mount, DOCKER_CTL_SCRIPT, "stop"], raise_exception=False) if os.path.exists(docker_default_config_backup): run_command_or_raise(["mv", docker_default_config_backup, docker_default_config], raise_exception=False); + run_command_or_raise(["cp", RESOLV_CONF_BACKUP_FILE, os.path.join(new_image_mount, RESOLV_CONF_FILE)], raise_exception=False) umount(new_image_mount, recursive=True, read_only=False, remove_dir=False, raise_exception=False) umount(new_image_mount, raise_exception=False) diff --git a/tests/test_sonic_installer.py b/tests/test_sonic_installer.py index c004bba9..c445dfb6 100644 --- a/tests/test_sonic_installer.py +++ b/tests/test_sonic_installer.py @@ -73,9 +73,12 @@ def rootfs_path_mock(path): call(["cp", "/var/lib/sonic-package-manager/packages.json", f"{mounted_image_folder}/tmp/packages.json"]), call(["touch", f"{mounted_image_folder}/tmp/docker.sock"]), call(["mount", "--bind", "/var/run/docker.sock", f"{mounted_image_folder}/tmp/docker.sock"]), + call(["cp", f"{mounted_image_folder}/etc/resolv.conf", "/tmp/resolv.conf.backup"]), + call(["cp", "/etc/resolv.conf", f"{mounted_image_folder}/etc/resolv.conf"]), call(["chroot", mounted_image_folder, "sh", "-c", "command -v sonic-package-manager"]), call(["chroot", mounted_image_folder, "sonic-package-manager", "migrate", "/tmp/packages.json", "--dockerd-socket", "/tmp/docker.sock", "-y"]), call(["chroot", mounted_image_folder, "/usr/lib/docker/docker.sh", "stop"], raise_exception=False), + call(["cp", "/tmp/resolv.conf.backup", f"{mounted_image_folder}/etc/resolv.conf"], raise_exception=False), call(["umount", "-f", "-R", mounted_image_folder], raise_exception=False), call(["umount", "-r", "-f", mounted_image_folder], raise_exception=False), call(["rm", "-rf", mounted_image_folder], raise_exception=False), From b34a540cca5555ab3aa74e19e81f24c2a20d311b Mon Sep 17 00:00:00 2001 From: Vadym Hlushko <62022266+vadymhlushko-mlnx@users.noreply.github.com> Date: Tue, 3 Jan 2023 11:21:52 +0200 Subject: [PATCH 030/312] [generate_dump] Fix for deletion flow for all secret files from show-techsupport dump (#2571) - What I did Fixed a deletion flow for all secret files in the tech support dump. - How I did it Delete files by using the find and rm Linux utilities. - How to verify it Run the show_techsupport/test_techsupport_no_secret.py Signed-off-by: Vadym Hlushko --- scripts/generate_dump | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/scripts/generate_dump b/scripts/generate_dump index ddb2727e..00b71eb7 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -1697,10 +1697,14 @@ main() { # Remove unecessary files $RM $V -rf $TARDIR/etc/alternatives $TARDIR/etc/passwd* \ $TARDIR/etc/shadow* $TARDIR/etc/group* $TARDIR/etc/gshadow* \ - $TARDIR/etc/ssh* $TARDIR/get_creds* $TARDIR/snmpd.conf* \ - $TARDIR/etc/mlnx $TARDIR/etc/mft $TARDIR/etc/sonic/*.cer \ - $TARDIR/etc/sonic/*.crt $TARDIR/etc/sonic/*.pem $TARDIR/etc/sonic/*.key \ - $TARDIR/etc/ssl/*.pem $TARDIR/etc/ssl/certs/ $TARDIR/etc/ssl/private/* + $TARDIR/etc/ssh* $TARDIR/etc/mlnx $TARDIR/etc/mft \ + $TARDIR/etc/ssl/certs/ $TARDIR/etc/ssl/private/* + rm_list=$(find -L $TARDIR -type f \( -iname \*.cer -o -iname \*.crt -o \ + -iname \*.pem -o -iname \*.key -o -iname \*snmpd.conf\* -o -iname \*get_creds\* \)) + if [ ! -z "$rm_list" ] + then + rm $rm_list + fi save_log_files & save_crash_files & From 65cf00a01de096bd8901d5cb9b3ee55a33a70906 Mon Sep 17 00:00:00 2001 From: Jing Zhang Date: Fri, 6 Jan 2023 13:28:14 -0800 Subject: [PATCH 031/312] [storyteller] add link prober state change to story teller (#2585) What I did Add linkprober category to story teller. It will reflect dualtor heartbeat events. sign-off: Jing Zhang zhangjing@microsoft.com How to verify it Tested on dualtor device, was able to grep link prober state change events. --- scripts/storyteller | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/storyteller b/scripts/storyteller index b342c722..5d142067 100755 --- a/scripts/storyteller +++ b/scripts/storyteller @@ -20,6 +20,7 @@ regex_dict = { 'lag' : r'link becomes\|addLag\|PortChannel.*oper state', 'reboot' : r'BOOT\|rc.local\|old_config\|minigraph.xml\|Rebooting\|reboot\|executeOperationsOnAsic\|getAsicView\|dumpVidToAsicOperatioId\|neighbor_adv\|Pausing\|shutdown\|warm', 'service' : r'Starting\|Stopping\|Started\|Stopped', + 'linkprober': r'Received link prober event, new state' } @@ -86,7 +87,7 @@ def main(): parser.add_argument('-l', '--log', help='log file prefix, e.g. syslog; default: syslog', type=str, required=False, default='syslog') - parser.add_argument('-c', '--category', help='Categories: bgp, crash, interface, lag, reboot, service Specify multiple categories as c1,c2,c3; default: reboot', + parser.add_argument('-c', '--category', help='Categories: bgp, crash, interface, lag, reboot, service, linkprober Specify multiple categories as c1,c2,c3; default: reboot', type=str, required=False, default='reboot') parser.add_argument('-p', '--logpath', help='log file path, e.g. /var/log; default: /var/log', type=str, required=False, default='/var/log') From 3a09ecba43351f99b1033d82178f739ea99bc205 Mon Sep 17 00:00:00 2001 From: wenyiz2021 <91497961+wenyiz2021@users.noreply.github.com> Date: Fri, 6 Jan 2023 15:24:02 -0800 Subject: [PATCH 032/312] [masic] 'show interfaces counters' reminds to use '-d all' option to check for internal links (#2466) Print reminder to check internal links on multi-asic platforms Signed-off-by: Wenyi Zhang --- scripts/portstat | 5 ++++- tests/conftest.py | 2 +- tests/portstat_test.py | 33 ++++++++++++++++++++++++++++++++- 3 files changed, 37 insertions(+), 3 deletions(-) diff --git a/scripts/portstat b/scripts/portstat index 3c3c5117..0e3b9c43 100755 --- a/scripts/portstat +++ b/scripts/portstat @@ -337,6 +337,8 @@ class Portstat(object): print(table_as_json(table, header)) else: print(tabulate(table, header, tablefmt='simple', stralign='right')) + if multi_asic.is_multi_asic(): + print("\nReminder: Please execute 'show interface counters -d all' to include internal links\n") def cnstat_intf_diff_print(self, cnstat_new_dict, cnstat_old_dict, intf_list): """ @@ -553,7 +555,8 @@ class Portstat(object): print(table_as_json(table, header)) else: print(tabulate(table, header, tablefmt='simple', stralign='right')) - + if multi_asic.is_multi_asic(): + print("\nReminder: Please execute 'show interface counters -d all' to include internal links\n") def main(): parser = argparse.ArgumentParser(description='Display the ports state and counters', diff --git a/tests/conftest.py b/tests/conftest.py index f4c29f82..96b80df3 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -331,9 +331,9 @@ def setup_bgp_commands(): @pytest.fixture def setup_ip_route_commands(): import show.main as show - return show + @pytest.fixture def setup_fib_commands(): import show.main as show diff --git a/tests/portstat_test.py b/tests/portstat_test.py index 2a70d0be..d418a16f 100644 --- a/tests/portstat_test.py +++ b/tests/portstat_test.py @@ -75,6 +75,9 @@ --------- ------- ------- -------- --------- -------- -------- -------- ------- -------- --------- -------- -------- -------- Ethernet0 U 8 0.00 B/s 0.00% 10 100 N/A 10 0.00 B/s 0.00% N/A N/A N/A Ethernet4 U 4 0.00 B/s 0.00% 0 1,000 N/A 40 0.00 B/s 0.00% N/A N/A N/A + +Reminder: Please execute 'show interface counters -d all' to include internal links + """ multi_asic_all_intf_counters = """\ @@ -86,6 +89,9 @@ Ethernet-BP4 U 8 0.00 B/s 0.00% 0 1,000 N/A 80 0.00 B/s 0.00% N/A N/A N/A Ethernet-BP256 U 8 0.00 B/s 0.00% 10 100 N/A 10 0.00 B/s 0.00% N/A N/A N/A Ethernet-BP260 U 4 0.00 B/s 0.00% 0 1,000 N/A 40 0.00 B/s 0.00% N/A N/A N/A + +Reminder: Please execute 'show interface counters -d all' to include internal links + """ multi_asic_intf_counters_asic0 = """\ IFACE STATE RX_OK RX_BPS RX_UTIL RX_ERR RX_DRP RX_OVR TX_OK TX_BPS TX_UTIL TX_ERR TX_DRP TX_OVR @@ -94,6 +100,9 @@ Ethernet4 U 4 0.00 B/s 0.00% 0 1,000 N/A 40 0.00 B/s 0.00% N/A N/A N/A Ethernet-BP0 U 6 0.00 B/s 0.00% 0 1,000 N/A 60 0.00 B/s 0.00% N/A N/A N/A Ethernet-BP4 U 8 0.00 B/s 0.00% 0 1,000 N/A 80 0.00 B/s 0.00% N/A N/A N/A + +Reminder: Please execute 'show interface counters -d all' to include internal links + """ multi_asic_external_intf_counters_printall = """\ @@ -101,6 +110,9 @@ --------- ------- ------- -------- -------- --------- -------- -------- -------- ------- -------- -------- --------- -------- -------- -------- Ethernet0 U 8 0.00 B/s 0.00/s 0.00% 10 100 N/A 10 0.00 B/s 0.00/s 0.00% N/A N/A N/A Ethernet4 U 4 0.00 B/s 0.00/s 0.00% 0 1,000 N/A 40 0.00 B/s 0.00/s 0.00% N/A N/A N/A + +Reminder: Please execute 'show interface counters -d all' to include internal links + """ multi_asic_intf_counters_printall = """\ @@ -112,6 +124,9 @@ Ethernet-BP4 U 8 0.00 B/s 0.00/s 0.00% 0 1,000 N/A 80 0.00 B/s 0.00/s 0.00% N/A N/A N/A Ethernet-BP256 U 8 0.00 B/s 0.00/s 0.00% 10 100 N/A 10 0.00 B/s 0.00/s 0.00% N/A N/A N/A Ethernet-BP260 U 4 0.00 B/s 0.00/s 0.00% 0 1,000 N/A 40 0.00 B/s 0.00/s 0.00% N/A N/A N/A + +Reminder: Please execute 'show interface counters -d all' to include internal links + """ multi_asic_intf_counters_asic0_printall = """\ @@ -121,6 +136,9 @@ Ethernet4 U 4 0.00 B/s 0.00/s 0.00% 0 1,000 N/A 40 0.00 B/s 0.00/s 0.00% N/A N/A N/A Ethernet-BP0 U 6 0.00 B/s 0.00/s 0.00% 0 1,000 N/A 60 0.00 B/s 0.00/s 0.00% N/A N/A N/A Ethernet-BP4 U 8 0.00 B/s 0.00/s 0.00% 0 1,000 N/A 80 0.00 B/s 0.00/s 0.00% N/A N/A N/A + +Reminder: Please execute 'show interface counters -d all' to include internal links + """ multi_asic_intf_counters_period = """\ The rates are calculated within 3 seconds period @@ -128,6 +146,9 @@ --------- ------- ------- -------- --------- -------- -------- -------- ------- -------- --------- -------- -------- -------- Ethernet0 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A Ethernet4 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A + +Reminder: Please execute 'show interface counters -d all' to include internal links + """ multi_asic_intf_counters_period_all = """\ @@ -140,6 +161,9 @@ Ethernet-BP4 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A Ethernet-BP256 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A Ethernet-BP260 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A + +Reminder: Please execute 'show interface counters -d all' to include internal links + """ multi_asic_intf_counter_period_asic_all = """\ @@ -150,6 +174,9 @@ Ethernet4 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A Ethernet-BP0 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A Ethernet-BP4 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A + +Reminder: Please execute 'show interface counters -d all' to include internal links + """ mutli_asic_intf_counters_after_clear = """\ @@ -160,7 +187,11 @@ Ethernet-BP0 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A Ethernet-BP4 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A Ethernet-BP256 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A -Ethernet-BP260 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A""" +Ethernet-BP260 U 0 0.00 B/s 0.00% 0 0 N/A 0 0.00 B/s 0.00% N/A N/A N/A + +Reminder: Please execute 'show interface counters -d all' to include internal links +""" + intf_invalid_asic_error = """ValueError: Unknown Namespace asic99""" From f63ef9a182890f43b1375a38c14112ad5dab20c7 Mon Sep 17 00:00:00 2001 From: Qi Luo Date: Fri, 6 Jan 2023 17:37:51 -0800 Subject: [PATCH 033/312] Revert "sonic-utilities: Update config reload() to verify formatting of an input file (#2529)" (#2586) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 42f51c26d1d0017f3211904ca19c023b5d784463. Reverts sonic-net/sonic-utilities#2529 Reason: There are use cases like `config reload /dev/stdin`, for example [L2 Switch mode · sonic-net/SONiC Wiki (github.com)](https://github.com/sonic-net/SONiC/wiki/L2-Switch-mode). The original PR would read input file twice, so /dev/stdin does not work. --- config/main.py | 39 +----- .../config_db_invalid.json | 62 ---------- tests/config_test.py | 115 +----------------- 3 files changed, 8 insertions(+), 208 deletions(-) delete mode 100644 tests/config_reload_input/config_db_invalid.json diff --git a/config/main.py b/config/main.py index 5ec91158..5fdc177e 100644 --- a/config/main.py +++ b/config/main.py @@ -1189,17 +1189,6 @@ def load_backend_acl(cfg_db, device_type): if os.path.isfile(BACKEND_ACL_FILE): clicommon.run_command("acl-loader update incremental {}".format(BACKEND_ACL_FILE), display_cmd=True) -def validate_config_file(file): - """ - A validator to check config files for syntax errors - """ - try: - # Load golden config json - read_json_file(file) - except Exception as e: - click.secho("Bad format: json file '{}' broken.\n{}".format(file, str(e)), - fg='magenta') - sys.exit(1) # This is our main entrypoint - the main 'config' command @click.group(cls=clicommon.AbbreviationGroup, context_settings=CONTEXT_SETTINGS) @@ -1578,8 +1567,10 @@ def reload(db, filename, yes, load_sysinfo, no_service_restart, force, file_form click.echo("Input {} config file(s) separated by comma for multiple files ".format(num_cfg_file)) return - # Create a dictionary to store each cfg_file, namespace, and a bool representing if a the file exists - cfg_file_dict = {} + #Stop services before config push + if not no_service_restart: + log.log_info("'reload' stopping services...") + _stop_services() # In Single ASIC platforms we have single DB service. In multi-ASIC platforms we have a global DB # service running in the host + DB services running in each ASIC namespace created per ASIC. @@ -1604,27 +1595,9 @@ def reload(db, filename, yes, load_sysinfo, no_service_restart, force, file_form else: file = DEFAULT_CONFIG_YANG_FILE - # Check if the file exists before proceeding - # Instead of exiting, skip the current namespace and check the next one - if not os.path.exists(file): - cfg_file_dict[inst] = [file, namespace, False] - continue - cfg_file_dict[inst] = [file, namespace, True] - - # Check the file is properly formatted before proceeding. - validate_config_file(file) - - #Validate INIT_CFG_FILE if it exits - if os.path.isfile(INIT_CFG_FILE): - validate_config_file(INIT_CFG_FILE) - - #Stop services before config push - if not no_service_restart: - log.log_info("'reload' stopping services...") - _stop_services() - for file, namespace, file_exists in cfg_file_dict.values(): - if not file_exists: + # Check the file exists before proceeding. + if not os.path.exists(file): click.echo("The config file {} doesn't exist".format(file)) continue diff --git a/tests/config_reload_input/config_db_invalid.json b/tests/config_reload_input/config_db_invalid.json deleted file mode 100644 index cb394023..00000000 --- a/tests/config_reload_input/config_db_invalid.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "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" - } - } - "VLAN_MEMBER": { - "Vlan1000|Ethernet0": { - "tagging_mode": "untagged", - }, - "Vlan1000|Ethernet4": { - "tagging_mode": "untagged" - }, - "Vlan1000|Ethernet8": { - "tagging_mode": "untagged" - } - }, - "VLAN": { - "Vlan1000": { - "vlanid": "1000", - "dhcp_servers": [ - "192.0.0.1", - "192.0.0.2", - "192.0.0.3", - "192.0.0.4" - ] - } - }, - "PORT": { - "Ethernet0": { - "alias": "Eth1", - "lanes": "65, 66, 67, 68", - "description": "Ethernet0 100G link", - "speed": "100000" - }, - "Ethernet4": { - "admin_status": "up", - "alias": "fortyGigE0/4", - "description": "Servers0:eth0", - "index": "1", - "lanes": "29,30,31,32", - "mtu": "9100", - "pfc_asym": "off", - "speed": "40000" - }, - "Ethernet8": { - "admin_status": "up", - "alias": "fortyGigE0/8", - "description": "Servers1:eth0", - "index": "2", - "lanes": "33,34,35,36", - "mtu": "9100", - "pfc_asym": "off", - "speed": "40000" - } - } -} diff --git a/tests/config_test.py b/tests/config_test.py index 98bdd116..5fa50abd 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -4,7 +4,6 @@ import traceback import json import jsonpatch -import shutil import sys import unittest import ipaddress @@ -89,12 +88,6 @@ Reloading Monit configuration ... """ -RELOAD_CONFIG_DB_OUTPUT_INVALID_MSG = """\ -Bad format: json file""" - -RELOAD_CONFIG_DB_OUTPUT_INVALID_ERROR = """\ -Expecting ',' delimiter: line 12 column 5 (char 321)""" - RELOAD_YANG_CFG_OUTPUT = """\ Stopping SONiC target ... Running command: /usr/local/bin/sonic-cfggen -Y /tmp/config.json --write-to-db @@ -111,15 +104,6 @@ Reloading Monit configuration ... """ -RELOAD_MASIC_CONFIG_DB_OUTPUT_FILE_NOT_EXIST = """\ -Stopping SONiC target ... -Running command: /usr/local/bin/sonic-cfggen -j /tmp/config.json --write-to-db -The config file non_exist.json doesn't exist -Running command: /usr/local/bin/sonic-cfggen -j /tmp/config.json -n asic1 --write-to-db -Restarting SONiC target ... -Reloading Monit configuration ... -""" - reload_config_with_sys_info_command_output="""\ Running command: /usr/local/bin/sonic-cfggen -H -k Seastone-DX010-25-50 --write-to-db""" @@ -211,7 +195,6 @@ def mock_run_command_side_effect_gnmi(*args, **kwargs): class TestConfigReload(object): dummy_cfg_file = os.path.join(os.sep, "tmp", "config.json") - dummy_cfg_file_contents = os.path.join(mock_db_path, "config_db.json") @classmethod def setup_class(cls): @@ -223,8 +206,7 @@ def setup_class(cls): import config.main importlib.reload(config.main) - shutil.copyfile(cls.dummy_cfg_file_contents, cls.dummy_cfg_file) - open(cls.dummy_cfg_file, 'r').close() + open(cls.dummy_cfg_file, 'w').close() def test_config_reload(self, get_cmd_module, setup_single_broadcom_asic): with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command: @@ -497,8 +479,6 @@ def teardown_class(cls): class TestReloadConfig(object): dummy_cfg_file = os.path.join(os.sep, "tmp", "config.json") - dummy_cfg_file_contents = os.path.join(mock_db_path, "config_db.json") - dummy_cfg_file_invalid = os.path.join(mock_db_path, "config_db_invalid.json") @classmethod def setup_class(cls): @@ -506,8 +486,7 @@ def setup_class(cls): print("SETUP") import config.main importlib.reload(config.main) - shutil.copyfile(cls.dummy_cfg_file_contents, cls.dummy_cfg_file) - open(cls.dummy_cfg_file, 'r').close() + open(cls.dummy_cfg_file, 'w').close() def test_reload_config(self, get_cmd_module, setup_single_broadcom_asic): with mock.patch( @@ -528,27 +507,6 @@ def test_reload_config(self, get_cmd_module, setup_single_broadcom_asic): assert "\n".join([l.rstrip() for l in result.output.split('\n')]) \ == RELOAD_CONFIG_DB_OUTPUT - def test_reload_config_invalid_config_file(self, get_cmd_module, setup_single_broadcom_asic): - with mock.patch( - "utilities_common.cli.run_command", - mock.MagicMock(side_effect=mock_run_command_side_effect) - ) as mock_run_command: - (config, show) = get_cmd_module - runner = CliRunner() - - result = runner.invoke( - config.config.commands["reload"], - [self.dummy_cfg_file_invalid, '-y', '-f']) - - print(result.exit_code) - print(result.output) - traceback.print_tb(result.exc_info[2]) - assert result.exit_code == 1 - - output = "\n".join([l.rstrip() for l in result.output.split('\n')]) - assert RELOAD_CONFIG_DB_OUTPUT_INVALID_MSG in output - assert RELOAD_CONFIG_DB_OUTPUT_INVALID_ERROR in output - def test_config_reload_disabled_service(self, get_cmd_module, setup_single_broadcom_asic): with mock.patch( "utilities_common.cli.run_command", @@ -591,54 +549,6 @@ def test_reload_config_masic(self, get_cmd_module, setup_multi_broadcom_masic): assert "\n".join([l.rstrip() for l in result.output.split('\n')]) \ == RELOAD_MASIC_CONFIG_DB_OUTPUT - def test_reload_config_masic_invalid(self, get_cmd_module, setup_multi_broadcom_masic): - 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() - # 3 config files: 1 for host and 2 for asic - cfg_files = "{},{},{}".format( - self.dummy_cfg_file, - self.dummy_cfg_file_invalid, - self.dummy_cfg_file) - result = runner.invoke( - config.config.commands["reload"], - [cfg_files, '-y', '-f']) - - print(result.exit_code) - print(result.output) - traceback.print_tb(result.exc_info[2]) - assert result.exit_code == 1 - - output = "\n".join([l.rstrip() for l in result.output.split('\n')]) - assert RELOAD_CONFIG_DB_OUTPUT_INVALID_MSG in output - assert RELOAD_CONFIG_DB_OUTPUT_INVALID_ERROR in output - - def test_reload_config_masic_non_exist_file(self, get_cmd_module, setup_multi_broadcom_masic): - 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() - # 3 config files: 1 for host and 2 for asic - cfg_files = "{},{},{}".format( - self.dummy_cfg_file, - "non_exist.json", - self.dummy_cfg_file) - result = runner.invoke( - config.config.commands["reload"], - [cfg_files, '-y', '-f']) - - 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')]) \ - == RELOAD_MASIC_CONFIG_DB_OUTPUT_FILE_NOT_EXIST - def test_reload_yang_config(self, get_cmd_module, setup_single_broadcom_asic): with mock.patch( @@ -658,27 +568,6 @@ def test_reload_yang_config(self, get_cmd_module, assert "\n".join([l.rstrip() for l in result.output.split('\n')]) \ == RELOAD_YANG_CFG_OUTPUT - def test_reload_yang_config_invalid(self, get_cmd_module, - setup_single_broadcom_asic): - with mock.patch( - "utilities_common.cli.run_command", - mock.MagicMock(side_effect=mock_run_command_side_effect) - ) as mock_run_command: - (config, show) = get_cmd_module - runner = CliRunner() - - result = runner.invoke(config.config.commands["reload"], - [self.dummy_cfg_file_invalid, '-y', '-f', '-t', 'config_yang']) - - print(result.exit_code) - print(result.output) - traceback.print_tb(result.exc_info[2]) - assert result.exit_code == 1 - - output = "\n".join([l.rstrip() for l in result.output.split('\n')]) - assert RELOAD_CONFIG_DB_OUTPUT_INVALID_MSG in output - assert RELOAD_CONFIG_DB_OUTPUT_INVALID_ERROR in output - @classmethod def teardown_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "0" From 4aa512c9742d412df8a94a7ae59291515cb25d09 Mon Sep 17 00:00:00 2001 From: CliveNi Date: Tue, 10 Jan 2023 01:11:19 +0800 Subject: [PATCH 034/312] [sfputil] Firmware download/upgrade CLI support for QSFP-DD (#1947) (#2349) * [sfputil] Firmware download/upgrade CLI support for QSFP-DD (#1947) - Description Checking that the running image is switched or not after CDB_run during firmware upgrade process. - Motivation and Context CDB_run will maybe cause several seconds NACK or stretching on i2c bus which depend on the implementation of module vendor, checking the status after CDB_run for compatible with different implementation. * Update unit tests for sfputil. Test : Creating "is_fw_switch_done" test, this function expected to return 1 when 'status' == True and running image('result'[1, 5]) different with committed('result'[2, 6]) one, otherwise return -1. * [sfputil] Firmware download/upgrade CLI support for QSFP-DD (#1947) - Description Adding error judgements in "is_fw_switch_done" function. Update unit tests for "is_fw_switch_done". - Motivation and Context Checking status of images to avoid committing image with a wrong status. * [sfputil] Firmware download/upgrade CLI support for QSFP-DD (#1947) Fixing : Comparing error code with a wrong variable. Refactor : Renaming variables for more suitable its purpose. Refactor : Removing if case which is low correlation with function. Feat : Adding "echo" to display detail result. * Update unit tests for sfputil. * [sfputil] Firmware download/upgrade CLI support for QSFP-DD (#1947) Feat : Reducing frequency of check during "is_fw_switch_done". Refactor : Removing a repeated line. --- sfputil/main.py | 57 +++++++++++++++++++++++++++++++++++++++++++ tests/sfputil_test.py | 24 ++++++++++++++++++ 2 files changed, 81 insertions(+) diff --git a/sfputil/main.py b/sfputil/main.py index b3bf001b..8992e923 100644 --- a/sfputil/main.py +++ b/sfputil/main.py @@ -1244,6 +1244,59 @@ def run_firmware(port_name, mode): return status +def is_fw_switch_done(port_name): + """ + Make sure the run_firmware cmd is done + @port_name: + Returns 1 on success, and exit_code = -1 on failure + """ + status = 0 + physical_port = logical_port_to_physical_port_index(port_name) + sfp = platform_chassis.get_sfp(physical_port) + + try: + api = sfp.get_xcvr_api() + except NotImplementedError: + click.echo("This functionality is currently not implemented for this platform") + sys.exit(ERROR_NOT_IMPLEMENTED) + + try: + MAX_WAIT = 60 # 60s timeout. + is_busy = 1 # Initial to 1 for entering while loop at least one time. + timeout_time = time.time() + MAX_WAIT + while is_busy and (time.time() < timeout_time): + fw_info = api.get_module_fw_info() + is_busy = 1 if (fw_info['status'] == False) and (fw_info['result'] is not None) else 0 + time.sleep(2) + + if fw_info['status'] == True: + (ImageA, ImageARunning, ImageACommitted, ImageAInvalid, + ImageB, ImageBRunning, ImageBCommitted, ImageBInvalid) = fw_info['result'] + + if (ImageARunning == 1) and (ImageAInvalid == 1): # ImageA is running, but also invalid. + click.echo("FW info error : ImageA shows running, but also shows invalid!") + status = -1 # Abnormal status. + elif (ImageBRunning == 1) and (ImageBInvalid == 1): # ImageB is running, but also invalid. + click.echo("FW info error : ImageB shows running, but also shows invalid!") + status = -1 # Abnormal status. + elif (ImageARunning == 1) and (ImageACommitted == 0): # ImageA is running, but not committed. + click.echo("FW images switch successful : ImageA is running") + status = 1 # run_firmware is done. + elif (ImageBRunning == 1) and (ImageBCommitted == 0): # ImageB is running, but not committed. + click.echo("FW images switch successful : ImageB is running") + status = 1 # run_firmware is done. + else: # No image is running, or running and committed image is same. + click.echo("FW info error : Failed to switch into uncommitted image!") + status = -1 # Failure for Switching images. + else: + click.echo("FW switch : Timeout!") + status = -1 # Timeout or check code error or CDB not supported. + + except NotImplementedError: + click.echo("This functionality is not applicable for this transceiver") + + return status + def commit_firmware(port_name): status = 0 physical_port = logical_port_to_physical_port_index(port_name) @@ -1412,6 +1465,10 @@ def upgrade(port_name, filepath): click.echo("Firmware run in mode 1 successful") + if is_fw_switch_done(port_name) != 1: + click.echo('Failed to switch firmware images!') + sys.exit(EXIT_FAIL) + status = commit_firmware(port_name) if status != 1: click.echo('Failed to commit firmware! CDB status: {}'.format(status)) diff --git a/tests/sfputil_test.py b/tests/sfputil_test.py index 89faa55a..e059d87f 100644 --- a/tests/sfputil_test.py +++ b/tests/sfputil_test.py @@ -706,6 +706,30 @@ def test_run_firmwre(self, mock_chassis): status = sfputil.run_firmware("Ethernet0", 1) assert status == 1 + @patch('sfputil.main.platform_chassis') + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + @pytest.mark.parametrize("mock_response, expected", [ + ({'status': False, 'result': None} , -1), + ({'status': True, 'result': ("1.0.1", 1, 1, 0, "1.0.2", 0, 0, 0)} , -1), + ({'status': True, 'result': ("1.0.1", 0, 0, 0, "1.0.2", 1, 1, 0)} , -1), + ({'status': True, 'result': ("1.0.1", 1, 0, 0, "1.0.2", 0, 1, 0)} , 1), + ({'status': True, 'result': ("1.0.1", 0, 1, 0, "1.0.2", 1, 0, 0)} , 1), + ({'status': True, 'result': ("1.0.1", 1, 0, 1, "1.0.2", 0, 1, 0)} , -1), + ({'status': True, 'result': ("1.0.1", 0, 1, 0, "1.0.2", 1, 0, 1)} , -1), + + # "is_fw_switch_done" function will waiting until timeout under below condition, so that this test will spend around 1min. + ({'status': False, 'result': 0} , -1), + ]) + def test_is_fw_switch_done(self, mock_chassis, mock_response, expected): + mock_sfp = MagicMock() + mock_api = MagicMock() + mock_sfp.get_xcvr_api = MagicMock(return_value=mock_api) + mock_sfp.get_presence.return_value = True + mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) + mock_api.get_module_fw_info.return_value = mock_response + status = sfputil.is_fw_switch_done("Ethernet0") + assert status == expected + @patch('sfputil.main.platform_chassis') @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) def test_commit_firmwre(self, mock_chassis): From fb8f98bfa672a80f56398d57a470a02d031d3da3 Mon Sep 17 00:00:00 2001 From: Aryeh Feigin <101218333+arfeigin@users.noreply.github.com> Date: Wed, 11 Jan 2023 10:18:07 +0200 Subject: [PATCH 035/312] Preserve copp tables through DB migration (#2524) This PR should be merged together with sonic-net/sonic-swss#2548 and is required to 202205 and 202211. This PR implements [fastboot] Preserve CoPP table HLD to improve fastboot flow (sonic-net/SONiC#1107). - What I did Preserve COPP table contents through DB migration. (Mellanox only) - How I did it Skipped deleting of COPP tables in DB migrator. - How to verify it Observe COPP table contents are preserved right after reboot. --- scripts/db_migrator.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index c63d5640..6c8ef21b 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -884,7 +884,12 @@ def common_migration_ops(self): new_cfg = {**init_cfg, **curr_cfg} self.configDB.set_entry(init_cfg_table, key, new_cfg) - self.migrate_copp_table() + # Avoiding copp table migration is platform specific at the moment as I understood this might cause issues for some + # vendors, probably Broadcom. This change can be checked with any specific vendor and if this works fine the platform + # condition can be modified and extend. If no vendor has an issue with not clearing copp tables the condition can be + # removed together with calling to migrate_copp_table function. + if self.asic_type != "mellanox": + self.migrate_copp_table() if self.asic_type == "broadcom" and 'Force10-S6100' in self.hwsku: self.migrate_mgmt_ports_on_s6100() else: From 39ac5641bb8d256b83d4a5e5e6189ba70b6c028c Mon Sep 17 00:00:00 2001 From: Aryeh Feigin <101218333+arfeigin@users.noreply.github.com> Date: Fri, 13 Jan 2023 05:47:22 +0200 Subject: [PATCH 036/312] Extend fast-reboot STATE_DB entry timer (#2577) *Due to an issue of fallback from to cold-boot when using upgrade with fast-reboot combined with FW upgrade a short term solution is to extend the timer. Long term solution of using fast-reboot finalizer replacing the timer is in work. --- scripts/fast-reboot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/fast-reboot b/scripts/fast-reboot index 9491c5a2..da93901d 100755 --- a/scripts/fast-reboot +++ b/scripts/fast-reboot @@ -532,7 +532,7 @@ case "$REBOOT_TYPE" in check_warm_restart_in_progress BOOT_TYPE_ARG=$REBOOT_TYPE trap clear_boot EXIT HUP INT QUIT TERM KILL ABRT ALRM - sonic-db-cli STATE_DB SET "FAST_REBOOT|system" "1" "EX" "180" &>/dev/null + sonic-db-cli STATE_DB SET "FAST_REBOOT|system" "1" "EX" "210" &>/dev/null config warm_restart enable system ;; "warm-reboot") From f09da998371077ebf60532996312c6888cc4a65b Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Sat, 14 Jan 2023 09:34:36 +0800 Subject: [PATCH 037/312] [show] Add bgpraw to show run all (#2537) #### What I did Add bgpraw output to `show runningconfiguration all` ``` Requirements: 1. current `show runningconfig` will print all the ConfigDB in a json format, we need to add a new key-value into the json output "bgpraw" with a long string value 2. The long string value should be the output of `vtysh -c "show run"`. It is normally multiline string, may include special characters like \". Need to make sure the escaping properly 3. We do not need to insert the key-value into ConfigDB is not existing there 4. If ConfigDB already has the key-value, we do not need to override it by vtysh command output 5. Not break multi-asic use ``` #### How I did it Generate bgpraw output then append it to `show runnningconfiguration all`'s output #### How to verify it Mannual test #### Previous command output (if the output of a command-line utility has changed) ``` admin@vlab-01:~$ show run all { "ACL_TABLE": { ...... "WRED_PROFILE": { "AZURE_LOSSLESS": { "ecn": "ecn_all", "green_drop_probability": "5", "green_max_threshold": "2097152", "green_min_threshold": "1048576", "red_drop_probability": "5", "red_max_threshold": "2097152", "red_min_threshold": "1048576", "wred_green_enable": "true", "wred_red_enable": "true", "wred_yellow_enable": "true", "yellow_drop_probability": "5", "yellow_max_threshold": "2097152", "yellow_min_threshold": "1048576" } } } ``` #### New command output (if the output of a command-line utility has changed) ``` admin@vlab-01:~$ show run all { "ACL_TABLE": { ...... "WRED_PROFILE": { "AZURE_LOSSLESS": { "ecn": "ecn_all", "green_drop_probability": "5", "green_max_threshold": "2097152", "green_min_threshold": "1048576", "red_drop_probability": "5", "red_max_threshold": "2097152", "red_min_threshold": "1048576", "wred_green_enable": "true", "wred_red_enable": "true", "wred_yellow_enable": "true", "yellow_drop_probability": "5", "yellow_max_threshold": "2097152", "yellow_min_threshold": "1048576" } }, "bgpraw": "Building configuration...\n\nCurrent configuration......end\n" } ``` --- show/main.py | 26 +++++++++++++++++++++-- tests/show_test.py | 51 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 75 insertions(+), 2 deletions(-) create mode 100644 tests/show_test.py diff --git a/show/main.py b/show/main.py index b206b486..2ab65549 100755 --- a/show/main.py +++ b/show/main.py @@ -19,6 +19,7 @@ from datetime import datetime import utilities_common.constants as constants from utilities_common.general import load_db_config +from json.decoder import JSONDecodeError # mock the redis for unit test purposes # try: @@ -129,6 +130,10 @@ def run_command(command, display_cmd=False, return_cmd=False): if rc != 0: sys.exit(rc) +def get_cmd_output(cmd): + proc = subprocess.Popen(cmd, text=True, stdout=subprocess.PIPE) + return proc.communicate()[0], proc.returncode + # Lazy global class instance for SONiC interface name to alias conversion iface_alias_converter = lazy_object_proxy.Proxy(lambda: clicommon.InterfaceAliasConverter()) @@ -1383,8 +1388,25 @@ def runningconfiguration(): @click.option('--verbose', is_flag=True, help="Enable verbose output") def all(verbose): """Show full running configuration""" - cmd = "sonic-cfggen -d --print-data" - run_command(cmd, display_cmd=verbose) + cmd = ['sonic-cfggen', '-d', '--print-data'] + stdout, rc = get_cmd_output(cmd) + if rc: + click.echo("Failed to get cmd output '{}':rc {}".format(cmd, rc)) + raise click.Abort() + + try: + output = json.loads(stdout) + except JSONDecodeError as e: + click.echo("Failed to load output '{}':{}".format(cmd, e)) + raise click.Abort() + + if not multi_asic.is_multi_asic(): + bgpraw_cmd = [constants.RVTYSH_COMMAND, '-c', 'show running-config'] + bgpraw, rc = get_cmd_output(bgpraw_cmd) + if rc: + bgpraw = "" + output['bgpraw'] = bgpraw + click.echo(json.dumps(output, indent=4)) # 'acl' subcommand ("show runningconfiguration acl") diff --git a/tests/show_test.py b/tests/show_test.py new file mode 100644 index 00000000..87c1b5a1 --- /dev/null +++ b/tests/show_test.py @@ -0,0 +1,51 @@ +import os +import sys +import show.main as show +from click.testing import CliRunner +from unittest import mock +from unittest.mock import call, MagicMock + +test_path = os.path.dirname(os.path.abspath(__file__)) +modules_path = os.path.dirname(test_path) +sys.path.insert(0, test_path) +sys.path.insert(0, modules_path) + + +class TestShowRunAllCommands(object): + @classmethod + def setup_class(cls): + print("SETUP") + os.environ["UTILITIES_UNIT_TESTING"] = "1" + + def test_show_runningconfiguration_all_json_loads_failure(self): + def get_cmd_output_side_effect(*args, **kwargs): + return "", 0 + with mock.patch('show.main.get_cmd_output', + mock.MagicMock(side_effect=get_cmd_output_side_effect)) as mock_get_cmd_output: + result = CliRunner().invoke(show.cli.commands['runningconfiguration'].commands['all'], []) + assert result.exit_code != 0 + + def test_show_runningconfiguration_all_get_cmd_ouput_failure(self): + def get_cmd_output_side_effect(*args, **kwargs): + return "{}", 2 + with mock.patch('show.main.get_cmd_output', + mock.MagicMock(side_effect=get_cmd_output_side_effect)) as mock_get_cmd_output: + result = CliRunner().invoke(show.cli.commands['runningconfiguration'].commands['all'], []) + assert result.exit_code != 0 + + def test_show_runningconfiguration_all(self): + def get_cmd_output_side_effect(*args, **kwargs): + return "{}", 0 + with mock.patch('show.main.get_cmd_output', + mock.MagicMock(side_effect=get_cmd_output_side_effect)) as mock_get_cmd_output: + result = CliRunner().invoke(show.cli.commands['runningconfiguration'].commands['all'], []) + assert mock_get_cmd_output.call_count == 2 + assert mock_get_cmd_output.call_args_list == [ + call(['sonic-cfggen', '-d', '--print-data']), + call(['rvtysh', '-c', 'show running-config'])] + + @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 c2d746d4f763d00fcb5d6c97d879de3f2a9eaca8 Mon Sep 17 00:00:00 2001 From: Lior Avramov <73036155+liorghub@users.noreply.github.com> Date: Tue, 17 Jan 2023 18:37:54 +0200 Subject: [PATCH 038/312] Remove TODO comment which is no longer relevant (#2600) --- scripts/fast-reboot | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/fast-reboot b/scripts/fast-reboot index da93901d..2fa0106a 100755 --- a/scripts/fast-reboot +++ b/scripts/fast-reboot @@ -727,8 +727,6 @@ for service in ${SERVICES_TO_STOP}; do sonic-db-cli FLEX_COUNTER_DB FLUSHDB > /dev/null fi - # TODO: backup_database preserves FDB_TABLE - # need to cleanup as well for fastfast boot case backup_database fi From 8703773eb1f01b1c174a62e31fe3dc14c2d1129e Mon Sep 17 00:00:00 2001 From: isabelmsft <67024108+isabelmsft@users.noreply.github.com> Date: Tue, 17 Jan 2023 15:31:46 -0600 Subject: [PATCH 039/312] YANG Validation for ConfigDB Updates: RADIUS_SERVER (#2604) #### What I did Add YANG validation using GCU for writes to RADIUS_SERVER table in ConfigDB #### How I did it Using same method as https://github.com/sonic-net/sonic-utilities/pull/2190/files, extend to RADIUS table #### How to verify it verified testing on virtual switch CLI, unit tests --- config/aaa.py | 52 ++++++++++++++++++++++++++++---------------- tests/radius_test.py | 25 +++++++++++++++++++++ 2 files changed, 58 insertions(+), 19 deletions(-) diff --git a/config/aaa.py b/config/aaa.py index ffe974d4..6f4a42b3 100644 --- a/config/aaa.py +++ b/config/aaa.py @@ -4,6 +4,7 @@ from swsscommon.swsscommon import ConfigDBConnector from .validated_config_db_connector import ValidatedConfigDBConnector from jsonpatch import JsonPatchConflict +from jsonpointer import JsonPointerException import utilities_common.cli as clicommon ADHOC_VALIDATION = True @@ -498,15 +499,16 @@ def statistics(option): def add(address, retransmit, timeout, key, auth_type, auth_port, pri, use_mgmt_vrf, source_interface): """Specify a RADIUS server""" - if key: - if len(key) > RADIUS_PASSKEY_MAX_LEN: - click.echo('--key: Maximum of %d chars can be configured' % RADIUS_PASSKEY_MAX_LEN) - return - elif not is_secret(key): - click.echo('--key: ' + VALID_CHARS_MSG) - return + if ADHOC_VALIDATION: + if key: + if len(key) > RADIUS_PASSKEY_MAX_LEN: + click.echo('--key: Maximum of %d chars can be configured' % RADIUS_PASSKEY_MAX_LEN) + return + elif not is_secret(key): + click.echo('--key: ' + VALID_CHARS_MSG) + return - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() old_data = config_db.get_table('RADIUS_SERVER') if address in old_data : @@ -529,16 +531,24 @@ def add(address, retransmit, timeout, key, auth_type, auth_port, pri, use_mgmt_v data['passkey'] = key if use_mgmt_vrf : data['vrf'] = "mgmt" - if source_interface : - if (source_interface.startswith("Ethernet") or \ - source_interface.startswith("PortChannel") or \ - source_interface.startswith("Vlan") or \ - source_interface.startswith("Loopback") or \ - source_interface == "eth0"): + if ADHOC_VALIDATION: + if source_interface : + if (source_interface.startswith("Ethernet") or \ + source_interface.startswith("PortChannel") or \ + source_interface.startswith("Vlan") or \ + source_interface.startswith("Loopback") or \ + source_interface == "eth0"): + data['src_intf'] = source_interface + else: + click.echo('Not supported interface name (valid interface name: Etherent/PortChannel/Vlan/Loopback/eth0)') + else: + if source_interface: data['src_intf'] = source_interface - else: - click.echo('Not supported interface name (valid interface name: Etherent/PortChannel/Vlan/Loopback/eth0)') - config_db.set_entry('RADIUS_SERVER', address, data) + try: + config_db.set_entry('RADIUS_SERVER', address, data) + except ValueError as e: + ctx = click.get_current_context() + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) radius.add_command(add) @@ -549,7 +559,11 @@ def add(address, retransmit, timeout, key, auth_type, auth_port, pri, use_mgmt_v def delete(address): """Delete a RADIUS server""" - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() - config_db.set_entry('RADIUS_SERVER', address, None) + try: + config_db.set_entry('RADIUS_SERVER', address, None) + except (JsonPointerException, JsonPatchConflict) as e: + ctx = click.get_current_context() + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) radius.add_command(delete) diff --git a/tests/radius_test.py b/tests/radius_test.py index 117e19bd..49a1ac3e 100644 --- a/tests/radius_test.py +++ b/tests/radius_test.py @@ -1,11 +1,16 @@ import imp import os import sys +import mock +import jsonpatch from click.testing import CliRunner from utilities_common.db import Db +from mock import patch +from jsonpointer import JsonPointerException import config.main as config +import config.aaa as aaa import show.main as show test_path = os.path.dirname(os.path.abspath(__file__)) @@ -192,3 +197,23 @@ def test_config_radius_authtype(self, get_cmd_module): assert result.exit_code == 0 assert result.output == show_radius_default_output + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=ValueError)) + def test_config_radius_server_invalidkey_yang_validation(self): + aaa.ADHOC_VALIDATION = False + runner = CliRunner() + result = runner.invoke(config.config.commands["radius"],\ + ["add", "10.10.10.10", "-r", "1", "-t", "3",\ + "-k", "comma,invalid", "-s", "eth0"]) + print(result.output) + assert "Invalid ConfigDB. Error" in result.output + + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=JsonPointerException)) + def test_config_radius_server_invalid_delete_yang_validation(self): + aaa.ADHOC_VALIDATION = False + runner = CliRunner() + result = runner.invoke(config.config.commands["radius"],\ + ["delete", "10.10.10.x"]) + print(result.output) + assert "Invalid ConfigDB. Error" in result.output From 163e766ccda6abf7b15ef2d6f2df611ec984b0ea Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak <38952541+stepanblyschak@users.noreply.github.com> Date: Thu, 19 Jan 2023 17:33:38 +0200 Subject: [PATCH 040/312] [techsupport] include APPL_STATE_DB dump (#2607) - What I did I added APPL_STATE_DB to techsupport dump - How I did it Added a call to save APPL_STATE_DB - How to verify it Run techsupport and verify dump/APPL_STATE_DB.json Signed-off-by: Stepan Blyschak --- scripts/generate_dump | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/generate_dump b/scripts/generate_dump index 00b71eb7..f58c2d0c 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -752,6 +752,7 @@ save_redis_info() { save_redis "CONFIG_DB" "CONFIG_DB" remove_secret_from_config_db_dump save_redis "FLEX_COUNTER_DB" save_redis "STATE_DB" + save_redis "APPL_STATE_DB" } ############################################################################### From 3d8e9c62d46e60384cfa03fb4032c4c6143e2254 Mon Sep 17 00:00:00 2001 From: isabelmsft <67024108+isabelmsft@users.noreply.github.com> Date: Thu, 19 Jan 2023 14:01:17 -0600 Subject: [PATCH 041/312] [GCU] Prohibit removal of PFC_WD POLL_INTERVAL field (#2545) --- generic_config_updater/generic_updater.py | 4 ++++ generic_config_updater/gu_common.py | 19 +++++++++++++++++++ .../generic_config_updater/gu_common_test.py | 12 ++++++++++++ 3 files changed, 35 insertions(+) diff --git a/generic_config_updater/generic_updater.py b/generic_config_updater/generic_updater.py index be2ddb00..aa418532 100644 --- a/generic_config_updater/generic_updater.py +++ b/generic_config_updater/generic_updater.py @@ -47,6 +47,10 @@ def apply(self, patch): # Generate target config self.logger.log_notice("Simulating the target full config after applying the patch.") target_config = self.patch_wrapper.simulate_patch(patch, old_config) + + # Validate all JsonPatch operations on specified fields + self.logger.log_notice("Validating all JsonPatch operations are permitted on the specified fields") + self.config_wrapper.validate_field_operation(old_config, target_config) # Validate target config does not have empty tables since they do not show up in ConfigDb self.logger.log_notice("Validating target config does not have empty tables, " \ diff --git a/generic_config_updater/gu_common.py b/generic_config_updater/gu_common.py index 22e8d820..d2561d05 100644 --- a/generic_config_updater/gu_common.py +++ b/generic_config_updater/gu_common.py @@ -16,6 +16,9 @@ class GenericConfigUpdaterError(Exception): pass +class IllegalPatchOperationError(ValueError): + pass + class EmptyTableError(ValueError): pass @@ -136,6 +139,22 @@ def validate_config_db_config(self, config_db_as_json): return True, None + def validate_field_operation(self, old_config, target_config): + """ + Some fields in ConfigDB are restricted and may not allow third-party addition, replacement, or removal. + Because YANG only validates state and not transitions, this method helps to JsonPatch operations/transitions for the specified fields. + """ + patch = jsonpatch.JsonPatch.from_diff(old_config, target_config) + + # illegal_operations_to_fields_map['remove'] yields a list of fields for which `remove` is an illegal operation + illegal_operations_to_fields_map = {'add':[], + 'replace': [], + 'remove': ['/PFC_WD/GLOBAL/POLL_INTERVAL', '/PFC_WD/GLOBAL']} + for operation, field_list in illegal_operations_to_fields_map.items(): + for field in field_list: + if any(op['op'] == operation and field == op['path'] for op in patch): + raise IllegalPatchOperationError("Given patch operation is invalid. Operation: {} is illegal on field: {}".format(operation, field)) + def validate_lanes(self, config_db): if "PORT" not in config_db: return True, None diff --git a/tests/generic_config_updater/gu_common_test.py b/tests/generic_config_updater/gu_common_test.py index 6ba49236..398558bd 100644 --- a/tests/generic_config_updater/gu_common_test.py +++ b/tests/generic_config_updater/gu_common_test.py @@ -57,6 +57,18 @@ def setUp(self): self.config_wrapper_mock = gu_common.ConfigWrapper() self.config_wrapper_mock.get_config_db_as_json=MagicMock(return_value=Files.CONFIG_DB_AS_JSON) + def test_validate_field_operation_legal(self): + old_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "60"}}} + target_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "40"}}} + config_wrapper = gu_common.ConfigWrapper() + config_wrapper.validate_field_operation(old_config, target_config) + + def test_validate_field_operation_illegal(self): + old_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": 60}}} + target_config = {"PFC_WD": {"GLOBAL": {}}} + config_wrapper = gu_common.ConfigWrapper() + self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) + def test_ctor__default_values_set(self): config_wrapper = gu_common.ConfigWrapper() From db4683d40c599fc54939e89567a6e7448e9e6031 Mon Sep 17 00:00:00 2001 From: pettershao-ragilenetworks <81281940+pettershao-ragilenetworks@users.noreply.github.com> Date: Fri, 20 Jan 2023 06:17:18 +0800 Subject: [PATCH 042/312] fix show techsupport error (#2597) *Modify the order of "--allow-process-stop" option, it belongs to 'generate_dump'. --- show/main.py | 6 +++--- tests/techsupport_test.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/show/main.py b/show/main.py index 2ab65549..505768e6 100755 --- a/show/main.py +++ b/show/main.py @@ -1352,15 +1352,15 @@ def techsupport(since, global_timeout, cmd_timeout, verbose, allow_process_stop, if global_timeout: cmd += " timeout --kill-after={}s -s SIGTERM --foreground {}m".format(COMMAND_TIMEOUT, global_timeout) - if allow_process_stop: - cmd += " -a" - if silent: cmd += " generate_dump" click.echo("Techsupport is running with silent option. This command might take a long time.") else: cmd += " generate_dump -v" + if allow_process_stop: + cmd += " -a" + if since: cmd += " -s '{}'".format(since) diff --git a/tests/techsupport_test.py b/tests/techsupport_test.py index 8effa898..41664e35 100644 --- a/tests/techsupport_test.py +++ b/tests/techsupport_test.py @@ -12,7 +12,7 @@ ([], 'generate_dump -v -t 5'), (['--since', '2 days ago'], "generate_dump -v -s '2 days ago' -t 5"), (['-g', '50'], 'timeout --kill-after=300s -s SIGTERM --foreground 50m generate_dump -v -t 5'), - (['--allow-process-stop'], '-a generate_dump -v -t 5'), + (['--allow-process-stop'], 'generate_dump -v -a -t 5'), (['--silent'], 'generate_dump -t 5'), (['--debug-dump', '--redirect-stderr'], 'generate_dump -v -d -t 5 -r'), ] From d6d7ab37f0eb9468f464252227503ed705cd36bc Mon Sep 17 00:00:00 2001 From: Saikrishna Arcot Date: Thu, 19 Jan 2023 14:42:14 -0800 Subject: [PATCH 043/312] [warm-reboot] Use kexec_file_load instead of kexec_load when available (#2608) On some dev VMs, warm reboot on a VS image fails. Specifically, after kexec is called and the new kernel starts, the new kernel tries to load the initramfs, but fails to do so for whatever reason. There may be messages about gzip decompression failing and that it's corrupted. After some experimentation, it was found that when first loading the new kernel and initramfs into memory, using the `kexec_file_load` syscall (`-s` flag in kexec) worked fine, whereas using the default `kexec_load` syscall resulted in a failure. It's unknown why `kexec_file_load` worked fine when `kexec_load` didn't; there shouldn't be any difference for non-secure boot kernels, as far as I can tell. What was seen, however, was that when taking a KVM dump in the failure case, the memory that stored the initramfs had differences compared to what was on disk. It's unknown what caused these differences. As a workaround (and as a bit of a feature enhancement), use the `-a` flag with kexec, which tells it to use `kexec_file_load` if available, and `kexec_load` if it's not available or otherwise fails. armhf doesn't support `kexec_file_load`, whereas arm64 gained support for `kexec_file_load` in the 5.19 kernel (we're currently on 5.10). `amd64` has supported `kexec_file_load` since 3.17. This also makes it possible to do kexec on secure boot systems, where the kernel image must be loaded via `kexec_file_load`. Signed-off-by: Saikrishna Arcot Signed-off-by: Saikrishna Arcot --- scripts/fast-reboot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/fast-reboot b/scripts/fast-reboot index 2fa0106a..bfdc191b 100755 --- a/scripts/fast-reboot +++ b/scripts/fast-reboot @@ -444,7 +444,7 @@ function load_aboot_secureboot_kernel() { function load_kernel() { # Load kernel into the memory - /sbin/kexec -l "$KERNEL_IMAGE" --initrd="$INITRD" --append="$BOOT_OPTIONS" + /sbin/kexec -a -l "$KERNEL_IMAGE" --initrd="$INITRD" --append="$BOOT_OPTIONS" } function unload_kernel() From fba87f43f9e0e6cc9bfc1db78e2c34742ae32f40 Mon Sep 17 00:00:00 2001 From: Vadym Hlushko <62022266+vadymhlushko-mlnx@users.noreply.github.com> Date: Mon, 23 Jan 2023 17:39:58 +0200 Subject: [PATCH 044/312] Revert (#2599) b34a540c [generate_dump] Fix for deletion flow for all secret files from show-techsupport dump (#2571) 258ffa09 [generate_dump] Optimize the execution time of 'show techsupport' CLI by parallel function execution (#2512) 572c8cff Optimize the execution time of the 'show techsupport' script to 5-10%, (#2504) This reverts commits b34a540cca5555ab3aa74e19e81f24c2a20d311b 258ffa0928ce2c74ebdc180e13c6476dc2534983 572c8cffdddb7683e158d36067398600a71512ea --- scripts/generate_dump | 271 ++++++++++++++++++++---------------------- 1 file changed, 132 insertions(+), 139 deletions(-) diff --git a/scripts/generate_dump b/scripts/generate_dump index f58c2d0c..7587e9fa 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -106,6 +106,7 @@ save_bcmcmd() { local filename=$2 local filepath="${LOGDIR}/$filename" local do_gzip=${3:-false} + local tarpath="${BASE}/dump/$filename" local timeout_cmd="timeout --foreground ${TIMEOUT_MIN}m" local cmd=$(escape_quotes "$cmd") if [ ! -d $LOGDIR ]; then @@ -140,9 +141,12 @@ save_bcmcmd() { fi if $do_gzip; then gzip ${filepath} 2>/dev/null + tarpath="${tarpath}.gz" filepath="${filepath}.gz" fi - + ($TAR $V -rhf $TARFILE -C $DUMPDIR "$tarpath" \ + || abort "${EXT_TAR_FAILED}" "tar append operation failed. Aborting to prevent data loss.") \ + && $RM $V -rf "$filepath" end_t=$(date +%s%3N) echo "[ save_bcmcmd:$cmd ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO } @@ -176,7 +180,7 @@ save_bcmcmd_all_ns() { } ############################################################################### -# Runs a comamnd and saves its output to the file. +# Runs a comamnd and saves its output to the incrementally built tar. # Command gets timedout if it runs for more than TIMEOUT_MIN minutes. # Globals: # LOGDIR @@ -204,6 +208,7 @@ save_cmd() { local filename=$2 local filepath="${LOGDIR}/$filename" local do_gzip=${3:-false} + local tarpath="${BASE}/dump/$filename" local timeout_cmd="timeout --foreground ${TIMEOUT_MIN}m" local cleanup_method=${4:-dummy_cleanup_method} local redirect='&>' @@ -225,6 +230,7 @@ save_cmd() { # as one argument, e.g. vtysh -c "COMMAND HERE" needs to have # "COMMAND HERE" bunched together as 1 arg to vtysh -c if $do_gzip; then + tarpath="${tarpath}.gz" filepath="${filepath}.gz" # cleanup_method will run in a sub-shell, need declare it first local cmds="$cleanup_method_declration; $cmd $redirect_eval | $cleanup_method | gzip -c > '${filepath}'" @@ -254,35 +260,13 @@ save_cmd() { fi fi + ($TAR $V -rhf $TARFILE -C $DUMPDIR "$tarpath" \ + || abort "${EXT_TAR_FAILED}" "tar append operation failed. Aborting to prevent data loss.") \ + && $RM $V -rf "$filepath" end_t=$(date +%s%3N) echo "[ save_cmd:$cmd ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO } -############################################################################### -# Save all collected data to tar archive. -# Globals: -# DUMPDIR -# TAR -# TARFILE -# V -# BASE -# Arguments: -# None -# Returns: -# None -############################################################################### -save_to_tar() { - trap 'handle_error $? $LINENO' ERR - local start_t=$(date +%s%3N) - local end_t=0 - - cd $DUMPDIR - $TAR $V -rhf $TARFILE "$BASE" - - end_t=$(date +%s%3N) - echo "[ save_to_tar ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO -} - ############################################################################### # Dummy cleanup method. # Globals: @@ -423,7 +407,7 @@ get_vtysh_namespace() { ############################################################################### # Runs a vtysh command in all namesapces for a multi ASIC platform, and in # default (host) namespace in single ASIC platforms. Saves its output to the -# file. +# incrementally built tar. # Globals: # None # Arguments: @@ -453,7 +437,7 @@ save_vtysh() { } ############################################################################### -# Runs an ip command and saves its output to the file. +# Runs an ip command and saves its output to the incrementally built tar. # Globals: # None # Arguments: @@ -472,7 +456,7 @@ save_ip() { } ############################################################################### -# Runs a bridge command and saves its output to the file. +# Runs a bridge command and saves its output to the incrementally built tar. # Globals: # None # Arguments: @@ -787,8 +771,8 @@ save_proc() { ( [ -e $f ] && $CP $V -r $f $TARDIR/proc ) || echo "$f not found" > $TARDIR/$f fi done - - chmod ugo+rw -R $DUMPDIR/$BASE/proc + $TAR $V -rhf $TARFILE -C $DUMPDIR --mode=+rw $BASE/proc + $RM $V -rf $TARDIR/proc } ############################################################################### @@ -839,7 +823,9 @@ save_proc_stats() { ( $CP $V -r $stats_file $TARDIR/proc_stats ) || echo "$stats_file error" > $TARDIR/$stats_file fi - chmod ugo+rw -R $DUMPDIR/$BASE/proc_stats + $TAR $V -rhf $TARFILE -C $DUMPDIR --mode=+rw $BASE/proc_stats + $RM $V -rf $TARDIR/proc_stats + $RM -rf $stats_file } ############################################################################### @@ -931,13 +917,16 @@ save_file() { local orig_path=$1 local supp_dir=$2 local gz_path="$TARDIR/$supp_dir/$(basename $orig_path)" + local tar_path="${BASE}/$supp_dir/$(basename $orig_path)" local do_gzip=${3:-true} + local do_tar_append=${4:-true} if [ ! -d "$TARDIR/$supp_dir" ]; then $MKDIR $V -p "$TARDIR/$supp_dir" fi if $do_gzip; then gz_path="${gz_path}.gz" + tar_path="${tar_path}.gz" if $NOOP; then echo "gzip -c $orig_path > $gz_path" else @@ -951,6 +940,11 @@ save_file() { fi fi + if $do_tar_append; then + ($TAR $V -rhf $TARFILE -C $DUMPDIR "$tar_path" \ + || abort "${EXT_PROCFS_SAVE_FAILED}" "tar append operation failed. Aborting to prevent data loss.") \ + && $RM $V -f "$gz_path" + fi end_t=$(date +%s%3N) echo "[ save_file:$orig_path] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO } @@ -1297,7 +1291,7 @@ collect_barefoot() { done for file in $(find /tmp/bf_logs -type f); do - save_file "${file}" log true + save_file "${file}" log true true done } @@ -1353,12 +1347,16 @@ 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 log false false else - save_file $file log true + save_file $file log true false fi done + # Append the log folder to the main tarball + ($TAR $V -rhf $TARFILE -C $DUMPDIR ${BASE}/log \ + || abort "${EXT_TAR_FAILED}" "tar append operation failed. Aborting for safety") \ + && $RM $V -rf $TARDIR/log end_t=$(date +%s%3N) echo "[ TAR /var/log Files ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO @@ -1383,7 +1381,11 @@ save_warmboot_files() { else mkdir -p $TARDIR $CP $V -rf /host/warmboot $TARDIR - chmod ugo+rw -R $DUMPDIR/$BASE/warmboot + + ($TAR $V --warning=no-file-removed -rhf $TARFILE -C $DUMPDIR --mode=+rw \ + $BASE/warmboot \ + || abort "${EXT_TAR_FAILED}" "Tar append operation failed. Aborting for safety.") \ + && $RM $V -rf $TARDIR fi end_t=$(date +%s%3N) echo "[ Warm-boot Files ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO @@ -1545,121 +1547,103 @@ main() { /proc/pagetypeinfo /proc/partitions /proc/sched_debug /proc/slabinfo \ /proc/softirqs /proc/stat /proc/swaps /proc/sysvipc /proc/timer_list \ /proc/uptime /proc/version /proc/vmallocinfo /proc/vmstat \ - /proc/zoneinfo & - save_proc_stats & + /proc/zoneinfo \ + || abort "${EXT_PROCFS_SAVE_FAILED}" "Proc saving operation failed. Aborting for safety." + save_proc_stats end_t=$(date +%s%3N) echo "[ Capture Proc State ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO - wait # Save all the processes within each docker - save_cmd "show services" services.summary & + save_cmd "show services" services.summary # Save reboot cause information - save_cmd "show reboot-cause" reboot.cause & - wait + save_cmd "show reboot-cause" reboot.cause local asic="$(/usr/local/bin/sonic-cfggen -y /etc/sonic/sonic_version.yml -v asic_type)" # 1st counter snapshot early. Need 2 snapshots to make sense of counters trend. save_counter_snapshot $asic 1 - save_cmd "systemd-analyze blame" "systemd.analyze.blame" & - save_cmd "systemd-analyze dump" "systemd.analyze.dump" & - save_cmd "systemd-analyze plot" "systemd.analyze.plot.svg" & - wait - - save_platform_info & - save_cmd "show vlan brief" "vlan.summary" & - save_cmd "show version" "version" & - save_cmd "show platform summary" "platform.summary" & - wait - - save_cmd "cat /host/machine.conf" "machine.conf" & - save_cmd "cat /boot/config-$(uname -r)" "boot.conf" & - save_cmd "docker stats --no-stream" "docker.stats" & - wait - - save_cmd "sensors" "sensors" & - save_cmd "lspci -vvv -xx" "lspci" & - save_cmd "lsusb -v" "lsusb" & - save_cmd "sysctl -a" "sysctl" & - wait - - save_ip_info & - save_bridge_info & - wait - - save_frr_info & - - save_bgp_info & - save_evpn_info & - wait - - save_cmd "show interface status -d all" "interface.status" & - save_cmd "show interface transceiver presence" "interface.xcvrs.presence" & - save_cmd "show interface transceiver eeprom --dom" "interface.xcvrs.eeprom" & - save_cmd "show ip interface -d all" "ip.interface" & - wait - - save_cmd "lldpctl" "lldpctl" & + save_cmd "systemd-analyze blame" "systemd.analyze.blame" + save_cmd "systemd-analyze dump" "systemd.analyze.dump" + save_cmd "systemd-analyze plot" "systemd.analyze.plot.svg" + + save_platform_info + + save_cmd "show vlan brief" "vlan.summary" + save_cmd "show version" "version" + save_cmd "show platform summary" "platform.summary" + save_cmd "cat /host/machine.conf" "machine.conf" + save_cmd "cat /boot/config-$(uname -r)" "boot.conf" + save_cmd "docker stats --no-stream" "docker.stats" + + save_cmd "sensors" "sensors" + save_cmd "lspci -vvv -xx" "lspci" + save_cmd "lsusb -v" "lsusb" + save_cmd "sysctl -a" "sysctl" + + save_ip_info + save_bridge_info + + save_frr_info + save_bgp_info + save_evpn_info + + save_cmd "show interface status -d all" "interface.status" + save_cmd "show interface transceiver presence" "interface.xcvrs.presence" + save_cmd "show interface transceiver eeprom --dom" "interface.xcvrs.eeprom" + save_cmd "show ip interface -d all" "ip.interface" + + save_cmd "lldpctl" "lldpctl" if [[ ( "$NUM_ASICS" > 1 ) ]]; then for (( i=0; i<$NUM_ASICS; i++ )) do - save_cmd "docker exec lldp$i lldpcli show statistics" "lldp$i.statistics" & - save_cmd "docker logs bgp$i" "docker.bgp$i.log" & - save_cmd "docker logs swss$i" "docker.swss$i.log" & + save_cmd "docker exec lldp$i lldpcli show statistics" "lldp$i.statistics" + save_cmd "docker logs bgp$i" "docker.bgp$i.log" + save_cmd "docker logs swss$i" "docker.swss$i.log" done else - save_cmd "docker exec lldp lldpcli show statistics" "lldp.statistics" & - save_cmd "docker logs bgp" "docker.bgp.log" & - save_cmd "docker logs swss" "docker.swss.log" & + save_cmd "docker exec lldp lldpcli show statistics" "lldp.statistics" + save_cmd "docker logs bgp" "docker.bgp.log" + save_cmd "docker logs swss" "docker.swss.log" fi - wait - - save_cmd "ps aux" "ps.aux" & - save_cmd "top -b -n 1" "top" & - save_cmd "free" "free" & - wait - save_cmd "vmstat 1 5" "vmstat" & - save_cmd "vmstat -m" "vmstat.m" & - save_cmd "vmstat -s" "vmstat.s" & - wait - save_cmd "mount" "mount" & - save_cmd "df" "df" & - save_cmd "dmesg" "dmesg" & - wait - - save_nat_info & - save_bfd_info & - wait - save_redis_info & + + save_cmd "ps aux" "ps.aux" + save_cmd "top -b -n 1" "top" + save_cmd "free" "free" + save_cmd "vmstat 1 5" "vmstat" + save_cmd "vmstat -m" "vmstat.m" + save_cmd "vmstat -s" "vmstat.s" + save_cmd "mount" "mount" + save_cmd "df" "df" + save_cmd "dmesg" "dmesg" + + save_nat_info + save_bfd_info + save_redis_info if $DEBUG_DUMP then - save_dump_state_all_ns & + save_dump_state_all_ns fi - wait - save_cmd "docker ps -a" "docker.ps" & - save_cmd "docker top pmon" "docker.pmon" & + save_cmd "docker ps -a" "docker.ps" + save_cmd "docker top pmon" "docker.pmon" if [[ -d ${PLUGINS_DIR} ]]; then local -r dump_plugins="$(find ${PLUGINS_DIR} -type f -executable)" for plugin in $dump_plugins; do # save stdout output of plugin and gzip it - save_cmd "$plugin" "$(basename $plugin)" true & + save_cmd "$plugin" "$(basename $plugin)" true done fi - wait - save_cmd "dpkg -l" "dpkg" & - save_cmd "who -a" "who" & - save_cmd "swapon -s" "swapon" & - wait - save_cmd "hdparm -i /dev/sda" "hdparm" & - save_cmd "ps -AwwL -o user,pid,lwp,ppid,nlwp,pcpu,pri,nice,vsize,rss,tty,stat,wchan:12,start,bsdtime,command" "ps.extended" & + save_cmd "dpkg -l" "dpkg" + save_cmd "who -a" "who" + save_cmd "swapon -s" "swapon" + save_cmd "hdparm -i /dev/sda" "hdparm" + save_cmd "ps -AwwL -o user,pid,lwp,ppid,nlwp,pcpu,pri,nice,vsize,rss,tty,stat,wchan:12,start,bsdtime,command" "ps.extended" - save_saidump & - wait + save_saidump if [ "$asic" = "barefoot" ]; then collect_barefoot @@ -1683,7 +1667,6 @@ main() { $RM $V -rf $TARDIR $MKDIR $V -p $TARDIR $MKDIR $V -p $LOGDIR - # Copying the /etc files to a directory and then tar it $CP -r /etc $TARDIR/etc rm_list=$(find -L $TARDIR/etc -maxdepth 5 -type l) @@ -1695,22 +1678,34 @@ main() { # Remove secret from /etc files before tar remove_secret_from_etc_files $TARDIR - # Remove unecessary files - $RM $V -rf $TARDIR/etc/alternatives $TARDIR/etc/passwd* \ - $TARDIR/etc/shadow* $TARDIR/etc/group* $TARDIR/etc/gshadow* \ - $TARDIR/etc/ssh* $TARDIR/etc/mlnx $TARDIR/etc/mft \ - $TARDIR/etc/ssl/certs/ $TARDIR/etc/ssl/private/* - rm_list=$(find -L $TARDIR -type f \( -iname \*.cer -o -iname \*.crt -o \ - -iname \*.pem -o -iname \*.key -o -iname \*snmpd.conf\* -o -iname \*get_creds\* \)) - if [ ! -z "$rm_list" ] - then - rm $rm_list - fi + start_t=$(date +%s%3N) + ($TAR $V --warning=no-file-removed -rhf $TARFILE -C $DUMPDIR --mode=+rw \ + --exclude="etc/alternatives" \ + --exclude="*/etc/passwd*" \ + --exclude="*/etc/shadow*" \ + --exclude="*/etc/group*" \ + --exclude="*/etc/gshadow*" \ + --exclude="*/etc/ssh*" \ + --exclude="*get_creds*" \ + --exclude="*snmpd.conf*" \ + --exclude="*/etc/mlnx" \ + --exclude="*/etc/mft" \ + --exclude="*/etc/sonic/*.cer" \ + --exclude="*/etc/sonic/*.crt" \ + --exclude="*/etc/sonic/*.pem" \ + --exclude="*/etc/sonic/*.key" \ + --exclude="*/etc/ssl/*.pem" \ + --exclude="*/etc/ssl/certs/*" \ + --exclude="*/etc/ssl/private/*" \ + $BASE/etc \ + || abort "${EXT_TAR_FAILED}" "Tar append operation failed. Aborting for safety.") \ + && $RM $V -rf $TARDIR + end_t=$(date +%s%3N) + echo "[ TAR /etc Files ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO - save_log_files & - save_crash_files & - save_warmboot_files & - wait + save_log_files + save_crash_files + save_warmboot_files if [[ "$asic" = "mellanox" ]]; then collect_mellanox_dfw_dumps @@ -1726,8 +1721,6 @@ finalize() { # Save techsupport timing profile info save_file $TECHSUPPORT_TIME_INFO log false - save_to_tar - if $DO_COMPRESS; then RC=0 $GZIP $V $TARFILE || RC=$? From 981f9531e7d147f25837f5a3f3ae7a51b28699ed Mon Sep 17 00:00:00 2001 From: jfeng-arista <98421150+jfeng-arista@users.noreply.github.com> Date: Mon, 23 Jan 2023 13:23:31 -0800 Subject: [PATCH 045/312] [chassis][voq] Add "show fabric reachability" command. (#2528) What I did Added "show fabric reachability" command. The output of this command : Local Link Remote Module Remote Link Status ------------ --------------- ------------- -------- 0 304 171 up 1 304 156 up 2 304 147 up Added test for the change at tests/fabricstat_test.py. The test is at sonic-net/sonic-mgmt#6620 --- scripts/fabricstat | 38 +++++++++++++++++++++++++++++++++- show/fabric.py | 12 +++++++++++ tests/fabricstat_test.py | 44 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 93 insertions(+), 1 deletion(-) diff --git a/scripts/fabricstat b/scripts/fabricstat index 18200785..e5c7d09f 100755 --- a/scripts/fabricstat +++ b/scripts/fabricstat @@ -178,6 +178,33 @@ class FabricQueueStat(FabricStat): print(tabulate(table, queuestat_header, tablefmt='simple', stralign='right')) print() +class FabricReachability(FabricStat): + def reachability_print(self): + # Connect to database + self.db = multi_asic.connect_to_all_dbs_for_ns(self.namespace) + # Get the set of all fabric port keys + port_keys = self.db.keys(self.db.STATE_DB, FABRIC_PORT_STATUS_TABLE_PREFIX + '*') + # Create a new dictionary. The key values are the local port values + # in integer format. Only ports that have remote port data are added. + # Only ports that are "up" will be connected to a remote peer. + port_dict = {} + for port_key in port_keys: + port_data = self.db.get_all(self.db.STATE_DB, port_key) + if "REMOTE_PORT" in port_data: + port_number = int(port_key.replace("FABRIC_PORT_TABLE|PORT", "")) + port_dict.update({port_number: port_data}) + # Create ordered table of port data + header = ["Local Link", "Remote Module", "Remote Link", "Status"] + body = [] + for port_number in sorted(port_dict.keys()): + port_data = port_dict[port_number] + body.append((port_number, port_data["REMOTE_MOD"], \ + port_data["REMOTE_PORT"], port_data["STATUS"])) + if self.namespace: + print(f"\n{self.namespace}") + print(tabulate(body, header, tablefmt='simple', stralign='right')) + return + def main(): parser = argparse.ArgumentParser(description='Display the fabric port state and counters', formatter_class=argparse.RawTextHelpFormatter, @@ -191,16 +218,25 @@ Examples: """) 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') args = parser.parse_args() queue = args.queue + reachability = args.reachability namespace = args.namespace errors_only = args.errors def nsStat(ns, errors_only): - stat = FabricQueueStat(ns) if queue else FabricPortStat(ns) + if queue: + stat = FabricQueueStat(ns) + elif reachability: + stat = FabricReachability(ns) + stat.reachability_print() + return + else: + stat = FabricPortStat(ns) cnstat_dict = stat.get_cnstat_dict() stat.cnstat_print(cnstat_dict, errors_only) diff --git a/show/fabric.py b/show/fabric.py index 8dfbc50f..2e55887a 100644 --- a/show/fabric.py +++ b/show/fabric.py @@ -13,6 +13,18 @@ def counters(): """Show fabric port counters""" pass +@fabric.group(invoke_without_command=True) +@multi_asic_util.multi_asic_click_option_namespace +@click.option('-e', '--errors', is_flag=True) +def reachability(namespace, errors): + """Show fabric reachability""" + cmd = "fabricstat -r" + if namespace is not None: + cmd += " -n {}".format(namespace) + if errors: + cmd += " -e" + clicommon.run_command(cmd) + @counters.command() @multi_asic_util.multi_asic_click_option_namespace @click.option('-e', '--errors', is_flag=True) diff --git a/tests/fabricstat_test.py b/tests/fabricstat_test.py index 23bb37d2..fb76bb41 100644 --- a/tests/fabricstat_test.py +++ b/tests/fabricstat_test.py @@ -90,6 +90,36 @@ """ +multi_asic_fabric_reachability = """\ + +asic0 + Local Link Remote Module Remote Link Status +------------ --------------- ------------- -------- + 0 0 79 up + 2 0 94 up + 4 0 85 up + 6 0 84 up + 7 0 93 up + +asic1 + Local Link Remote Module Remote Link Status +------------ --------------- ------------- -------- + 0 0 69 up + 4 0 75 up +""" + +multi_asic_fabric_reachability_asic0 = """\ + +asic0 + Local Link Remote Module Remote Link Status +------------ --------------- ------------- -------- + 0 0 79 up + 2 0 94 up + 4 0 85 up + 6 0 84 up + 7 0 93 up +""" + class TestMultiAsicFabricStat(object): @classmethod def setup_class(cls): @@ -133,6 +163,20 @@ 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_reachability(self): + return_code, result = get_result_and_return_code('fabricstat -r') + print("return_code: {}".format(return_code)) + print("result = {}".format(result)) + assert return_code == 0 + assert result == multi_asic_fabric_reachability + + def test_multi_show_fabric_reachability_asic(self): + return_code, result = get_result_and_return_code('fabricstat -r -n asic0') + print("return_code: {}".format(return_code)) + print("result = {}".format(result)) + assert return_code == 0 + assert result == multi_asic_fabric_reachability_asic0 + @classmethod def teardown_class(cls): print("TEARDOWN") From b5ac600367ad6c1ce2a9bffe2d53d5e2d77c5ea1 Mon Sep 17 00:00:00 2001 From: Jing Zhang Date: Mon, 23 Jan 2023 15:49:32 -0800 Subject: [PATCH 046/312] [muxcable][config] Add support to enable/disable ceasing to be an advertisement interface when `radv` service is stopped (#2622) This PR is to add CLI support to enable or disable the feature to send out a good-bye packet when radv service is stopped on active-active dualtor devices. sign-off: Jing Zhang zhangjing@microsoft.com --- config/muxcable.py | 16 ++++++++++++++++ tests/muxcable_test.py | 9 +++++++++ 2 files changed, 25 insertions(+) diff --git a/config/muxcable.py b/config/muxcable.py index 8344606e..f53eae22 100644 --- a/config/muxcable.py +++ b/config/muxcable.py @@ -370,6 +370,22 @@ def mode(db, state, port, json_output): sys.exit(CONFIG_SUCCESSFUL) +# 'muxcable' command ("config muxcable kill-radv ") +@muxcable.command(short_help="Kill radv service when it is meant to be stopped, so no good-bye packet is sent for ceasing To Be an Advertising Interface") +@click.argument('knob', metavar='', required=True, type=click.Choice(["enable", "disable"])) +@clicommon.pass_db +def kill_radv(db, knob): + """config muxcable kill radv""" + + namespaces = multi_asic.get_front_end_namespaces() + for namespace in namespaces: + config_db = ConfigDBConnector(use_unix_socket_path=True, namespace=namespace) + config_db.connect() + + mux_lmgrd_cfg_tbl = config_db.get_table("MUX_LINKMGR") + config_db.mod_entry("MUX_LINKMGR", "SERVICE_MGMT", {"kill_radv": "True" if knob == "enable" else "False"}) + + #'muxcable' command ("config muxcable packetloss reset ") @muxcable.command() @click.argument('action', metavar='', required=True, type=click.Choice(["reset"])) diff --git a/tests/muxcable_test.py b/tests/muxcable_test.py index 5a84a654..b8eb3dce 100644 --- a/tests/muxcable_test.py +++ b/tests/muxcable_test.py @@ -959,6 +959,15 @@ def test_config_muxcable_packetloss_reset_Ethernet0(self): assert result.exit_code == 0 + def test_config_muxcable_kill_radv_enable(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(config.config.commands["muxcable"].commands["kill-radv"], ["enable"], obj=db) + + assert result.exit_code == 0 + assert result.output == "" + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, 1: "active"})) From f4f857e103daa746ab4f2e7a908c1aefc299a713 Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Wed, 25 Jan 2023 08:51:16 +0800 Subject: [PATCH 047/312] [GCU] Ignore bgpraw in GCU applier (#2623) What I did show run all output will include bgpraw for business needs. GCU ipv6 test will update BGP_NEIGHBOR table which caused bgpraw content change, which will make the apply-patch operation fail. The solution is to add bgpraw to ignored tables. How I did it Add new added bgpraw table to ignored backend table. How to verify it Existing Unit test and local E2E GCU test. --- generic_config_updater/change_applier.py | 1 + 1 file changed, 1 insertion(+) diff --git a/generic_config_updater/change_applier.py b/generic_config_updater/change_applier.py index f5a365d5..30d81f91 100644 --- a/generic_config_updater/change_applier.py +++ b/generic_config_updater/change_applier.py @@ -76,6 +76,7 @@ class ChangeApplier: def __init__(self): self.config_db = get_config_db() self.backend_tables = [ + "bgpraw", "BUFFER_PG", "BUFFER_PROFILE", "FLEX_COUNTER_TABLE" From 22757b1f39ead10bb5fc7d991c207f4e888a1e61 Mon Sep 17 00:00:00 2001 From: "Dante (Kuo-Jung) Su" Date: Thu, 26 Jan 2023 01:30:55 +0800 Subject: [PATCH 048/312] Add interface link-training command into the CLI doc (#2257) * LT Admin/Oper: Use 'N/A' when the data is unavailable Signed-off-by: Dante Su * fix test failure Signed-off-by: Dante Su * fix coverage failure Signed-off-by: Dante Su * [doc]: Update Command-Reference.md (#2257) Add interface link-training command into the CLI doc Use 'N/A' if link-training attribute is not supported in the SAI. Signed-off-by: Dante Su Signed-off-by: Dante Su --- doc/Command-Reference.md | 70 +++++++++++++++++++++++++++++++++++----- scripts/intfutil | 4 +-- tests/intfutil_test.py | 14 ++++---- 3 files changed, 70 insertions(+), 18 deletions(-) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index c6985b59..063db2cc 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -441,14 +441,15 @@ The same syntax applies to all subgroups of `show` which themselves contain subc -?, -h, --help Show this message and exit. Commands: - counters Show interface counters - description Show interface status, protocol and... - naming_mode Show interface naming_mode status - neighbor Show neighbor related information - portchannel Show PortChannel information - status Show Interface status information - tpid Show Interface tpid information - transceiver Show SFP Transceiver information + counters Show interface counters + description Show interface status, protocol and... + link-training Show interface link-training information + naming_mode Show interface naming_mode status + neighbor Show neighbor related information + portchannel Show PortChannel information + status Show Interface status information + tpid Show Interface tpid information + transceiver Show SFP Transceiver information ``` Go Back To [Beginning of the document](#) or [Beginning of this section](#getting-help) @@ -3643,6 +3644,35 @@ This command displays the key fields of the interfaces such as Operational Statu Ethernet4 down up hundredGigE1/2 T0-2:hundredGigE1/30 ``` +**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. + +- Usage: + ``` + show interfaces link-training status [] + ``` + +- Example: + ``` + admin@sonic:~$ show interfaces link-training status + Interface LT Oper LT Admin Oper Admin + ----------- ----------- ---------- ------ ------- + Ethernet0 trained on up up + Ethernet8 trained on up up + Ethernet16 off off down up + Ethernet24 not trained on down up + Ethernet32 off off down up + ``` + +- Example (to only display the link-training status of interface Ethernet8): + ``` + admin@sonic:~$ show interfaces link-training status Ethernet8 + Interface LT Oper LT Admin Oper Admin + ----------- ----------- ---------- ------ ------- + Ethernet8 trained on up up + ``` + **show interfaces mpls** This command is used to display the configured MPLS state for the list of configured interfaces. @@ -3841,6 +3871,7 @@ This sub-section explains the following list of configuration on the interfaces. 10) type - to set interface type 11) mpls - To add or remove MPLS operation for the interface 12) loopback-action - to set action for packet that ingress and gets routed on the same IP interface +13) link-training - to set interface link-training mode From 201904 release onwards, the “config interface” command syntax is changed and the format is as follows: @@ -4411,6 +4442,29 @@ Loopback action can be drop or forward. admin@sonic:~$ config interface ip loopback-action Ethernet0 forward ``` + +**config interface link-training (Versions >= 202211)** + +This command is used for setting link-training mode of a interface. + +- Usage: + ``` + sudo config interface link-training --help + Usage: config interface link-training [OPTIONS] + + Set interface link-training mode + + Options: + -v, --verbose Enable verbose output + -h, -?, --help Show this message and exit. + ``` + +- Example: + ``` + admin@sonic:~$ sudo config interface link-training Ethernet0 on + admin@sonic:~$ sudo config interface link-training Ethernet0 off + ``` + Go Back To [Beginning of the document](#) or [Beginning of this section](#interfaces) ## Interface Naming Mode diff --git a/scripts/intfutil b/scripts/intfutil index fb351687..285863d7 100755 --- a/scripts/intfutil +++ b/scripts/intfutil @@ -797,10 +797,8 @@ class IntfLinkTrainingStatus(object): continue lt_admin = appl_db_port_status_get(self.db, key, PORT_LINK_TRAINING) if lt_admin not in ['on', 'off']: - lt_admin = '-' + lt_admin = 'N/A' lt_status = state_db_port_status_get(self.db, key, PORT_LINK_TRAINING_STATUS) - if lt_status in ['N/A', '', None]: - lt_status = 'off' table.append((key, lt_status.replace('_', ' '), lt_admin, diff --git a/tests/intfutil_test.py b/tests/intfutil_test.py index 2a130759..988c5329 100644 --- a/tests/intfutil_test.py +++ b/tests/intfutil_test.py @@ -101,15 +101,15 @@ Interface LT Oper LT Admin Oper Admin ----------- ----------- ---------- ------ ------- Ethernet0 not trained on down up - Ethernet16 off - up up - Ethernet24 off - up up - Ethernet28 off - up up + Ethernet16 N/A N/A up up + Ethernet24 N/A N/A up up + Ethernet28 N/A N/A up up Ethernet32 trained on up up - Ethernet36 off - up up + Ethernet36 N/A N/A up up Ethernet112 off off up up -Ethernet116 off - up up -Ethernet120 off - up up -Ethernet124 off - up up +Ethernet116 N/A N/A up up +Ethernet120 N/A N/A up up +Ethernet124 N/A N/A up up """ class TestIntfutil(TestCase): From 0d5e68f5a1c6519d22a518f741af0ba59bbc29b3 Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Fri, 27 Jan 2023 15:48:15 +0800 Subject: [PATCH 049/312] [GCU] Ignore bgpraw table in GCU operation (#2628) What I did After the previous fix #2623 , GCU still fails in the rollback operation. The bgpraw table should be discard in all GCU operation. Thus, I change get_config_db_as_json function to crop out "bgpraw" table. How I did it Pop "bgpraw" table if exists. How to verify it Unittest --- generic_config_updater/change_applier.py | 1 - generic_config_updater/gu_common.py | 4 +++- tests/generic_config_updater/gu_common_test.py | 14 +++++++++++++- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/generic_config_updater/change_applier.py b/generic_config_updater/change_applier.py index 30d81f91..f5a365d5 100644 --- a/generic_config_updater/change_applier.py +++ b/generic_config_updater/change_applier.py @@ -76,7 +76,6 @@ class ChangeApplier: def __init__(self): self.config_db = get_config_db() self.backend_tables = [ - "bgpraw", "BUFFER_PG", "BUFFER_PROFILE", "FLEX_COUNTER_TABLE" diff --git a/generic_config_updater/gu_common.py b/generic_config_updater/gu_common.py index d2561d05..743253cc 100644 --- a/generic_config_updater/gu_common.py +++ b/generic_config_updater/gu_common.py @@ -54,7 +54,9 @@ def __init__(self, yang_dir = YANG_DIR): def get_config_db_as_json(self): text = self._get_config_db_as_text() - return json.loads(text) + config_db_json = json.loads(text) + config_db_json.pop("bgpraw", None) + return config_db_json def _get_config_db_as_text(self): # TODO: Getting configs from CLI is very slow, need to get it from sonic-cffgen directly diff --git a/tests/generic_config_updater/gu_common_test.py b/tests/generic_config_updater/gu_common_test.py index 398558bd..dc183236 100644 --- a/tests/generic_config_updater/gu_common_test.py +++ b/tests/generic_config_updater/gu_common_test.py @@ -3,12 +3,24 @@ import jsonpatch import sonic_yang import unittest -from unittest.mock import MagicMock, Mock +from unittest.mock import MagicMock, Mock, patch from .gutest_helpers import create_side_effect_dict, Files import generic_config_updater.gu_common as gu_common class TestDryRunConfigWrapper(unittest.TestCase): + @patch('generic_config_updater.gu_common.subprocess.Popen') + def test_get_config_db_as_json(self, mock_popen): + config_wrapper = gu_common.DryRunConfigWrapper() + mock_proc = MagicMock() + mock_proc.communicate = MagicMock( + return_value=('{"PORT": {}, "bgpraw": ""}', None)) + mock_proc.returncode = 0 + mock_popen.return_value = mock_proc + actual = config_wrapper.get_config_db_as_json() + expected = {"PORT": {}} + self.assertDictEqual(actual, expected) + def test_get_config_db_as_json__returns_imitated_config_db(self): # Arrange config_wrapper = gu_common.DryRunConfigWrapper(Files.CONFIG_DB_AS_JSON) From 1b21201321f54cfd8462b7379c288e4610bfd8a0 Mon Sep 17 00:00:00 2001 From: Baorong Liu <96146196+baorliu@users.noreply.github.com> Date: Fri, 27 Jan 2023 11:19:23 -0800 Subject: [PATCH 050/312] [show_bfd] add local discriminator in show bfd command (#2625) --- show/main.py | 12 ++++++++---- tests/show_bfd_test.py | 40 ++++++++++++++++++++-------------------- 2 files changed, 28 insertions(+), 24 deletions(-) diff --git a/show/main.py b/show/main.py index 505768e6..091b2d1a 100755 --- a/show/main.py +++ b/show/main.py @@ -2005,7 +2005,7 @@ def bfd(): def summary(db): """Show bfd session information""" bfd_headers = ["Peer Addr", "Interface", "Vrf", "State", "Type", "Local Addr", - "TX Interval", "RX Interval", "Multiplier", "Multihop"] + "TX Interval", "RX Interval", "Multiplier", "Multihop", "Local Discriminator"] bfd_keys = db.db.keys(db.db.STATE_DB, "BFD_SESSION_TABLE|*") @@ -2016,8 +2016,10 @@ def summary(db): for key in bfd_keys: key_values = key.split('|') values = db.db.get_all(db.db.STATE_DB, key) + if "local_discriminator" not in values.keys(): + values["local_discriminator"] = "NA" bfd_body.append([key_values[3], key_values[2], key_values[1], values["state"], values["type"], values["local_addr"], - values["tx_interval"], values["rx_interval"], values["multiplier"], values["multihop"]]) + values["tx_interval"], values["rx_interval"], values["multiplier"], values["multihop"], values["local_discriminator"]]) click.echo(tabulate(bfd_body, bfd_headers)) @@ -2029,7 +2031,7 @@ def summary(db): def peer(db, peer_ip): """Show bfd session information for BFD peer""" bfd_headers = ["Peer Addr", "Interface", "Vrf", "State", "Type", "Local Addr", - "TX Interval", "RX Interval", "Multiplier", "Multihop"] + "TX Interval", "RX Interval", "Multiplier", "Multihop", "Local Discriminator"] bfd_keys = db.db.keys(db.db.STATE_DB, "BFD_SESSION_TABLE|*|{}".format(peer_ip)) delimiter = db.db.get_db_separator(db.db.STATE_DB) @@ -2045,8 +2047,10 @@ def peer(db, peer_ip): for key in bfd_keys: key_values = key.split(delimiter) values = db.db.get_all(db.db.STATE_DB, key) + if "local_discriminator" not in values.keys(): + values["local_discriminator"] = "NA" bfd_body.append([key_values[3], key_values[2], key_values[1], values.get("state"), values.get("type"), values.get("local_addr"), - values.get("tx_interval"), values.get("rx_interval"), values.get("multiplier"), values.get("multihop")]) + values.get("tx_interval"), values.get("rx_interval"), values.get("multiplier"), values.get("multihop"), values.get("local_discriminator")]) click.echo(tabulate(bfd_body, bfd_headers)) diff --git a/tests/show_bfd_test.py b/tests/show_bfd_test.py index bd2df5f5..c92fb769 100644 --- a/tests/show_bfd_test.py +++ b/tests/show_bfd_test.py @@ -29,7 +29,7 @@ def test_bfd_show(self): "tx_interval" :"300", "rx_interval" : "500", "multiplier" : "3", "multihop": "true"}) self.set_db_values(dbconnector, "BFD_SESSION_TABLE|default|Ethernet12|10.0.2.1", {"state": "UP", "type": "async_active", "local_addr" : "10.0.0.1", - "tx_interval" :"200", "rx_interval" : "600", "multiplier" : "3", "multihop": "false"}) + "tx_interval" :"200", "rx_interval" : "600", "multiplier" : "3", "multihop": "false", "local_discriminator": "88"}) self.set_db_values(dbconnector, "BFD_SESSION_TABLE|default|default|2000::10:1", {"state": "UP", "type": "async_active", "local_addr" : "2000::1", "tx_interval" :"100", "rx_interval" : "700", "multiplier" : "3", "multihop": "false"}) @@ -39,14 +39,14 @@ def test_bfd_show(self): expected_output = """\ Total number of BFD sessions: 6 -Peer Addr Interface Vrf State Type Local Addr TX Interval RX Interval Multiplier Multihop ---------------------- ----------- ------- ------- ------------ --------------------- ------------- ------------- ------------ ---------- -100.251.7.1 default default Up async_active 10.0.0.1 300 500 3 true -fddd:a101:a251::a10:1 default default Down async_active fddd:c101:a251::a10:2 300 500 3 true -10.0.1.1 default default DOWN async_active 10.0.0.1 300 500 3 true -10.0.2.1 Ethernet12 default UP async_active 10.0.0.1 200 600 3 false -2000::10:1 default default UP async_active 2000::1 100 700 3 false -10.0.1.1 default VrfRed UP async_active 10.0.0.1 400 500 5 false +Peer Addr Interface Vrf State Type Local Addr TX Interval RX Interval Multiplier Multihop Local Discriminator +--------------------- ----------- ------- ------- ------------ --------------------- ------------- ------------- ------------ ---------- --------------------- +100.251.7.1 default default Up async_active 10.0.0.1 300 500 3 true NA +fddd:a101:a251::a10:1 default default Down async_active fddd:c101:a251::a10:2 300 500 3 true NA +10.0.1.1 default default DOWN async_active 10.0.0.1 300 500 3 true NA +10.0.2.1 Ethernet12 default UP async_active 10.0.0.1 200 600 3 false 88 +2000::10:1 default default UP async_active 2000::1 100 700 3 false NA +10.0.1.1 default VrfRed UP async_active 10.0.0.1 400 500 5 false NA """ result = runner.invoke(show.cli.commands['bfd'].commands['summary'], [], obj=db) @@ -55,10 +55,10 @@ def test_bfd_show(self): expected_output = """\ Total number of BFD sessions for peer IP 10.0.1.1: 2 -Peer Addr Interface Vrf State Type Local Addr TX Interval RX Interval Multiplier Multihop ------------ ----------- ------- ------- ------------ ------------ ------------- ------------- ------------ ---------- -10.0.1.1 default default DOWN async_active 10.0.0.1 300 500 3 true -10.0.1.1 default VrfRed UP async_active 10.0.0.1 400 500 5 false +Peer Addr Interface Vrf State Type Local Addr TX Interval RX Interval Multiplier Multihop Local Discriminator +----------- ----------- ------- ------- ------------ ------------ ------------- ------------- ------------ ---------- --------------------- +10.0.1.1 default default DOWN async_active 10.0.0.1 300 500 3 true NA +10.0.1.1 default VrfRed UP async_active 10.0.0.1 400 500 5 false NA """ result = runner.invoke(show.cli.commands['bfd'].commands['peer'], ['10.0.1.1'], obj=db) @@ -67,9 +67,9 @@ def test_bfd_show(self): expected_output = """\ Total number of BFD sessions for peer IP 10.0.2.1: 1 -Peer Addr Interface Vrf State Type Local Addr TX Interval RX Interval Multiplier Multihop ------------ ----------- ------- ------- ------------ ------------ ------------- ------------- ------------ ---------- -10.0.2.1 Ethernet12 default UP async_active 10.0.0.1 200 600 3 false +Peer Addr Interface Vrf State Type Local Addr TX Interval RX Interval Multiplier Multihop Local Discriminator +----------- ----------- ------- ------- ------------ ------------ ------------- ------------- ------------ ---------- --------------------- +10.0.2.1 Ethernet12 default UP async_active 10.0.0.1 200 600 3 false 88 """ result = runner.invoke(show.cli.commands['bfd'].commands['peer'], ['10.0.2.1'], obj=db) @@ -91,10 +91,10 @@ def test_bfd_show_no_session(self): expected_output = """\ Total number of BFD sessions: 2 -Peer Addr Interface Vrf State Type Local Addr TX Interval RX Interval Multiplier Multihop ---------------------- ----------- ------- ------- ------------ --------------------- ------------- ------------- ------------ ---------- -100.251.7.1 default default Up async_active 10.0.0.1 300 500 3 true -fddd:a101:a251::a10:1 default default Down async_active fddd:c101:a251::a10:2 300 500 3 true +Peer Addr Interface Vrf State Type Local Addr TX Interval RX Interval Multiplier Multihop Local Discriminator +--------------------- ----------- ------- ------- ------------ --------------------- ------------- ------------- ------------ ---------- --------------------- +100.251.7.1 default default Up async_active 10.0.0.1 300 500 3 true NA +fddd:a101:a251::a10:1 default default Down async_active fddd:c101:a251::a10:2 300 500 3 true NA """ result = runner.invoke(show.cli.commands['bfd'].commands['summary'], [], obj=db) From c4c6808371e93393dd4738d8cac2e6f9c91328e4 Mon Sep 17 00:00:00 2001 From: zhixzhu <44230426+zhixzhu@users.noreply.github.com> Date: Tue, 31 Jan 2023 02:02:33 +0800 Subject: [PATCH 051/312] suppport multi asic for show queue counter (#2439) Added option -n for both "show queue counter" and "queuestat", using multi_asic module in queuestat to query database of specified namespace. Removed function get_queue_port() to decrease the times of connecting database. --- scripts/queuestat | 22 +- show/main.py | 6 +- tests/mock_tables/asic0/counters_db.json | 646 ++++++++++++++++++++--- tests/multi_asic_queue_counter_test.py | 151 ++++++ 4 files changed, 756 insertions(+), 69 deletions(-) create mode 100644 tests/multi_asic_queue_counter_test.py diff --git a/scripts/queuestat b/scripts/queuestat index bb6539bb..96a24b51 100755 --- a/scripts/queuestat +++ b/scripts/queuestat @@ -15,6 +15,7 @@ import sys from collections import namedtuple, OrderedDict from natsort import natsorted from tabulate import tabulate +from sonic_py_common import multi_asic # mock the redis for unit test purposes # try: @@ -24,12 +25,17 @@ try: sys.path.insert(0, modules_path) sys.path.insert(0, tests_path) import mock_tables.dbconnector # lgtm [py/unused-import] + if os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] == "multi_asic": + import mock_tables.mock_multi_asic + mock_tables.dbconnector.load_namespace_config() except KeyError: pass from swsscommon.swsscommon import SonicV2Connector from utilities_common.cli import UserCache +from utilities_common import constants +import utilities_common.multi_asic as multi_asic_util QueueStats = namedtuple("QueueStats", "queueindex, queuetype, totalpacket, totalbytes, droppacket, dropbytes") header = ['Port', 'TxQ', 'Counter/pkts', 'Counter/bytes', 'Drop/pkts', 'Drop/bytes'] @@ -85,9 +91,15 @@ def build_json(port, cnstat): class Queuestat(object): - def __init__(self, voq=False): - self.db = SonicV2Connector(use_unix_socket_path=False) - self.db.connect(self.db.COUNTERS_DB) + def __init__(self, namespace, voq=False): + self.db = None + self.multi_asic = multi_asic_util.MultiAsic(constants.DISPLAY_ALL, namespace) + if namespace is not None: + for ns in self.multi_asic.get_ns_list_based_on_options(): + self.db = multi_asic.connect_to_all_dbs_for_ns(ns) + else: + self.db = SonicV2Connector(use_unix_socket_path=False) + self.db.connect(self.db.COUNTERS_DB) self.voq = voq def get_queue_port(table_id): @@ -345,12 +357,14 @@ Examples: parser.add_argument('-v', '--version', action='version', version='%(prog)s 1.0') parser.add_argument('-j', '--json_opt', action='store_true', help='Print in JSON format') parser.add_argument('-V', '--voq', action='store_true', help='display voq stats') + parser.add_argument('-n','--namespace', default=None, help='Display queue counters for specific namespace') args = parser.parse_args() save_fresh_stats = args.clear delete_stats = args.delete voq = args.voq json_opt = args.json_opt + namespace = args.namespace port_to_show_stats = args.port @@ -362,7 +376,7 @@ Examples: if delete_stats: cache.remove() - queuestat = Queuestat( voq ) + queuestat = Queuestat( namespace, voq ) if save_fresh_stats: queuestat.save_fresh_stats() diff --git a/show/main.py b/show/main.py index 091b2d1a..0c9fd467 100755 --- a/show/main.py +++ b/show/main.py @@ -704,10 +704,11 @@ def queue(): # 'counters' subcommand ("show queue counters") @queue.command() @click.argument('interfacename', required=False) +@multi_asic_util.multi_asic_click_options @click.option('--verbose', is_flag=True, help="Enable verbose output") @click.option('--json', is_flag=True, help="JSON output") @click.option('--voq', is_flag=True, help="VOQ counters") -def counters(interfacename, verbose, json, voq): +def counters(interfacename, namespace, display, verbose, json, voq): """Show queue counters""" cmd = "queuestat" @@ -719,6 +720,9 @@ def counters(interfacename, verbose, json, voq): if interfacename is not None: cmd += " -p {}".format(interfacename) + if namespace is not None: + cmd += " -n {}".format(namespace) + if json: cmd += " -j" diff --git a/tests/mock_tables/asic0/counters_db.json b/tests/mock_tables/asic0/counters_db.json index 2e268109..53e3b558 100644 --- a/tests/mock_tables/asic0/counters_db.json +++ b/tests/mock_tables/asic0/counters_db.json @@ -77,7 +77,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "499", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "2", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "7886", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "13" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "13", + "SAI_QUEUE_STAT_BYTES": "30", + "SAI_QUEUE_STAT_DROPPED_BYTES": "74", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "56", + "SAI_QUEUE_STAT_PACKETS": "68", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "61" }, "COUNTERS:oid:0x1000000001001": { @@ -98,7 +103,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "226", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "5", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "8318", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "92" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "92", + "SAI_QUEUE_STAT_BYTES": "31", + "SAI_QUEUE_STAT_DROPPED_BYTES": "73", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "55", + "SAI_QUEUE_STAT_PACKETS": "69", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "62" }, "COUNTERS:oid:0x1000000001002": { @@ -119,7 +129,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "999", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "0", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "9885", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "99" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "99", + "SAI_QUEUE_STAT_BYTES": "32", + "SAI_QUEUE_STAT_DROPPED_BYTES": "72", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "54", + "SAI_QUEUE_STAT_PACKETS": "70", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "63" }, "COUNTERS:oid:0x1000000001003": { @@ -140,7 +155,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "470", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "5", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "9734", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "35" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "35", + "SAI_QUEUE_STAT_BYTES": "33", + "SAI_QUEUE_STAT_DROPPED_BYTES": "71", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "53", + "SAI_QUEUE_STAT_PACKETS": "71", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "64" }, "COUNTERS:oid:0x1000000001004": { @@ -161,7 +181,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "880", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "1", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "8957", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "10" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "10", + "SAI_QUEUE_STAT_BYTES": "34", + "SAI_QUEUE_STAT_DROPPED_BYTES": "70", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "52", + "SAI_QUEUE_STAT_PACKETS": "72", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "65" }, "COUNTERS:oid:0x1000000001005": { @@ -182,7 +207,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "633", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "9538", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "54" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "54", + "SAI_QUEUE_STAT_BYTES": "35", + "SAI_QUEUE_STAT_DROPPED_BYTES": "69", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "51", + "SAI_QUEUE_STAT_PACKETS": "73", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "66" }, "COUNTERS:oid:0x1000000001006": { @@ -203,7 +233,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "934", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "6", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "1060", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "53" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "53", + "SAI_QUEUE_STAT_BYTES": "36", + "SAI_QUEUE_STAT_DROPPED_BYTES": "68", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "50", + "SAI_QUEUE_STAT_PACKETS": "74", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "67" }, "COUNTERS:oid:0x1000000001007": { @@ -224,7 +259,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "216", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "7", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "4283", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "0" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "0", + "SAI_QUEUE_STAT_BYTES": "37", + "SAI_QUEUE_STAT_DROPPED_BYTES": "67", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "49", + "SAI_QUEUE_STAT_PACKETS": "75", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "68" }, "COUNTERS:oid:0x1000000001008": { @@ -245,7 +285,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "235", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "6", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "3256", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "22" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "22", + "SAI_QUEUE_STAT_BYTES": "38", + "SAI_QUEUE_STAT_DROPPED_BYTES": "66", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "48", + "SAI_QUEUE_STAT_PACKETS": "76", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "67" }, "COUNTERS:oid:0x1000000001009": { @@ -266,7 +311,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "172", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "9", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "8458", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "35" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "35", + "SAI_QUEUE_STAT_BYTES": "39", + "SAI_QUEUE_STAT_DROPPED_BYTES": "65", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "47", + "SAI_QUEUE_STAT_PACKETS": "77", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "68" }, "COUNTERS:oid:0x1000000001010": { @@ -287,7 +337,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "360", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "1", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "1394", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "13" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "13", + "SAI_QUEUE_STAT_BYTES": "40", + "SAI_QUEUE_STAT_DROPPED_BYTES": "64", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "46", + "SAI_QUEUE_STAT_PACKETS": "78", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "69" }, "COUNTERS:oid:0x1000000001011": { @@ -308,7 +363,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "777", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "4", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "8694", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "34" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "34", + "SAI_QUEUE_STAT_BYTES": "41", + "SAI_QUEUE_STAT_DROPPED_BYTES": "63", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "45", + "SAI_QUEUE_STAT_PACKETS": "79", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "70" }, "COUNTERS:oid:0x1000000001012": { @@ -329,7 +389,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "444", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "4", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "6390", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "11" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "11", + "SAI_QUEUE_STAT_BYTES": "42", + "SAI_QUEUE_STAT_DROPPED_BYTES": "62", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "44", + "SAI_QUEUE_STAT_PACKETS": "80", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "71" }, "COUNTERS:oid:0x1000000001013": { @@ -350,7 +415,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "496", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "5", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "3181", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "96" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "96", + "SAI_QUEUE_STAT_BYTES": "43", + "SAI_QUEUE_STAT_DROPPED_BYTES": "61", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "43", + "SAI_QUEUE_STAT_PACKETS": "81", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "72" }, "COUNTERS:oid:0x1000000001014": { @@ -371,7 +441,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "126", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "1", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "487", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "69" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "69", + "SAI_QUEUE_STAT_BYTES": "44", + "SAI_QUEUE_STAT_DROPPED_BYTES": "60", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "42", + "SAI_QUEUE_STAT_PACKETS": "82", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "73" }, "COUNTERS:oid:0x1000000001015": { @@ -392,7 +467,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "347", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "6", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "2844", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "88" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "88", + "SAI_QUEUE_STAT_BYTES": "45", + "SAI_QUEUE_STAT_DROPPED_BYTES": "59", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "41", + "SAI_QUEUE_STAT_PACKETS": "83", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "74" }, "COUNTERS:oid:0x1000000002000": { @@ -413,7 +493,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "997", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "3", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "4406", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "93" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "93", + "SAI_QUEUE_STAT_BYTES": "46", + "SAI_QUEUE_STAT_DROPPED_BYTES": "58", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "40", + "SAI_QUEUE_STAT_PACKETS": "84", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "75" }, "COUNTERS:oid:0x1000000002001": { @@ -434,7 +519,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "560", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "7", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "4320", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "95" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "95", + "SAI_QUEUE_STAT_BYTES": "47", + "SAI_QUEUE_STAT_DROPPED_BYTES": "57", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "39", + "SAI_QUEUE_STAT_PACKETS": "85", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "76" }, "COUNTERS:oid:0x1000000002002": { @@ -455,7 +545,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "196", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "2", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "150", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "56" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "56", + "SAI_QUEUE_STAT_BYTES": "48", + "SAI_QUEUE_STAT_DROPPED_BYTES": "56", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "38", + "SAI_QUEUE_STAT_PACKETS": "86", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "77" }, "COUNTERS:oid:0x1000000002003": { @@ -476,7 +571,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "515", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "3", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "5525", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "57" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "57", + "SAI_QUEUE_STAT_BYTES": "49", + "SAI_QUEUE_STAT_DROPPED_BYTES": "55", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "37", + "SAI_QUEUE_STAT_PACKETS": "87", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "78" }, "COUNTERS:oid:0x1000000002004": { @@ -497,7 +597,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "995", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "6", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "9133", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "46" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "46", + "SAI_QUEUE_STAT_BYTES": "50", + "SAI_QUEUE_STAT_DROPPED_BYTES": "54", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "36", + "SAI_QUEUE_STAT_PACKETS": "88", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "79" }, "COUNTERS:oid:0x1000000002005": { @@ -518,7 +623,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "30", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "1972", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "4" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "4", + "SAI_QUEUE_STAT_BYTES": "51", + "SAI_QUEUE_STAT_DROPPED_BYTES": "53", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "35", + "SAI_QUEUE_STAT_PACKETS": "89", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "80" }, "COUNTERS:oid:0x1000000002006": { @@ -539,7 +649,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "908", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "3", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "6804", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "10" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "10", + "SAI_QUEUE_STAT_BYTES": "52", + "SAI_QUEUE_STAT_DROPPED_BYTES": "52", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "34", + "SAI_QUEUE_STAT_PACKETS": "90", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "81" }, "COUNTERS:oid:0x1000000002007": { @@ -560,7 +675,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "875", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "0", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "2979", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "48" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "48", + "SAI_QUEUE_STAT_BYTES": "53", + "SAI_QUEUE_STAT_DROPPED_BYTES": "51", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "33", + "SAI_QUEUE_STAT_PACKETS": "91", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "82" }, "COUNTERS:oid:0x1000000002008": { @@ -581,7 +701,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "67", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "2", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "4005", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "8" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "8", + "SAI_QUEUE_STAT_BYTES": "54", + "SAI_QUEUE_STAT_DROPPED_BYTES": "50", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "32", + "SAI_QUEUE_STAT_PACKETS": "92", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "83" }, "COUNTERS:oid:0x1000000002009": { @@ -602,7 +727,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "226", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "1732", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "86" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "86", + "SAI_QUEUE_STAT_BYTES": "55", + "SAI_QUEUE_STAT_DROPPED_BYTES": "49", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "31", + "SAI_QUEUE_STAT_PACKETS": "93", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "84" }, "COUNTERS:oid:0x1000000002010": { @@ -623,7 +753,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "567", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "5", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "9822", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "32" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "32", + "SAI_QUEUE_STAT_BYTES": "56", + "SAI_QUEUE_STAT_DROPPED_BYTES": "48", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "30", + "SAI_QUEUE_STAT_PACKETS": "94", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "85" }, "COUNTERS:oid:0x1000000002011": { @@ -644,7 +779,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "527", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "7", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "2772", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "1" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "1", + "SAI_QUEUE_STAT_BYTES": "57", + "SAI_QUEUE_STAT_DROPPED_BYTES": "47", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "29", + "SAI_QUEUE_STAT_PACKETS": "95", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "86" }, "COUNTERS:oid:0x1000000002012": { @@ -665,7 +805,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "537", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "4", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "4423", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "30" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "30", + "SAI_QUEUE_STAT_BYTES": "58", + "SAI_QUEUE_STAT_DROPPED_BYTES": "46", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "28", + "SAI_QUEUE_STAT_PACKETS": "96", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "87" }, "COUNTERS:oid:0x1000000002013": { @@ -686,7 +831,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "364", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "3", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "6280", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "94" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "94", + "SAI_QUEUE_STAT_BYTES": "59", + "SAI_QUEUE_STAT_DROPPED_BYTES": "45", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "27", + "SAI_QUEUE_STAT_PACKETS": "97", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "88" }, "COUNTERS:oid:0x1000000002014": { @@ -707,7 +857,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "69", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "5812", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "39" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "39", + "SAI_QUEUE_STAT_BYTES": "60", + "SAI_QUEUE_STAT_DROPPED_BYTES": "44", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "26", + "SAI_QUEUE_STAT_PACKETS": "98", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "89" }, "COUNTERS:oid:0x1000000002015": { @@ -728,7 +883,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "115", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "7589", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "9" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "9", + "SAI_QUEUE_STAT_BYTES": "61", + "SAI_QUEUE_STAT_DROPPED_BYTES": "43", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "25", + "SAI_QUEUE_STAT_PACKETS": "99", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "90" }, "COUNTERS:oid:0x1000000003000": { @@ -749,7 +909,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "719", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "9", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "7806", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "73" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "73", + "SAI_QUEUE_STAT_BYTES": "62", + "SAI_QUEUE_STAT_DROPPED_BYTES": "42", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "24", + "SAI_QUEUE_STAT_PACKETS": "100", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "91" }, "COUNTERS:oid:0x1000000003001": { @@ -770,7 +935,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "737", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "4", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "6904", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "71" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "71", + "SAI_QUEUE_STAT_BYTES": "63", + "SAI_QUEUE_STAT_DROPPED_BYTES": "41", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "23", + "SAI_QUEUE_STAT_PACKETS": "101", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "92" }, "COUNTERS:oid:0x1000000003002": { @@ -791,7 +961,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "946", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "9", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "7498", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "13" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "13", + "SAI_QUEUE_STAT_BYTES": "64", + "SAI_QUEUE_STAT_DROPPED_BYTES": "40", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "22", + "SAI_QUEUE_STAT_PACKETS": "102", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "93" }, "COUNTERS:oid:0x1000000003003": { @@ -812,7 +987,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "5", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "0", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "1876", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "43" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "43", + "SAI_QUEUE_STAT_BYTES": "65", + "SAI_QUEUE_STAT_DROPPED_BYTES": "39", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "21", + "SAI_QUEUE_STAT_PACKETS": "103", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "94" }, "COUNTERS:oid:0x1000000003004": { @@ -833,7 +1013,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "648", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "1599", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "78" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "78", + "SAI_QUEUE_STAT_BYTES": "66", + "SAI_QUEUE_STAT_DROPPED_BYTES": "38", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "20", + "SAI_QUEUE_STAT_PACKETS": "104", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "95" }, "COUNTERS:oid:0x1000000003005": { @@ -854,7 +1039,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "127", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "2939", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "48" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "48", + "SAI_QUEUE_STAT_BYTES": "67", + "SAI_QUEUE_STAT_DROPPED_BYTES": "37", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "19", + "SAI_QUEUE_STAT_PACKETS": "105", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "96" }, "COUNTERS:oid:0x1000000003006": { @@ -875,7 +1065,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "940", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "0", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "3828", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "20" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "20", + "SAI_QUEUE_STAT_BYTES": "68", + "SAI_QUEUE_STAT_DROPPED_BYTES": "36", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "18", + "SAI_QUEUE_STAT_PACKETS": "106", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "97" }, "COUNTERS:oid:0x1000000003007": { @@ -896,7 +1091,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "685", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "9", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "9058", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "54" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "54", + "SAI_QUEUE_STAT_BYTES": "69", + "SAI_QUEUE_STAT_DROPPED_BYTES": "35", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "17", + "SAI_QUEUE_STAT_PACKETS": "107", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "98" }, "COUNTERS:oid:0x1000000003008": { @@ -917,7 +1117,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "181", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "4", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "4963", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "85" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "85", + "SAI_QUEUE_STAT_BYTES": "70", + "SAI_QUEUE_STAT_DROPPED_BYTES": "34", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "16", + "SAI_QUEUE_STAT_PACKETS": "108", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "99" }, "COUNTERS:oid:0x1000000003009": { @@ -938,7 +1143,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "359", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "5498", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "36" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "36", + "SAI_QUEUE_STAT_BYTES": "71", + "SAI_QUEUE_STAT_DROPPED_BYTES": "33", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "15", + "SAI_QUEUE_STAT_PACKETS": "109", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "100" }, "COUNTERS:oid:0x1000000003010": { @@ -959,7 +1169,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "902", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "0", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "8748", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "26" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "26", + "SAI_QUEUE_STAT_BYTES": "72", + "SAI_QUEUE_STAT_DROPPED_BYTES": "32", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "14", + "SAI_QUEUE_STAT_PACKETS": "110", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "101" }, "COUNTERS:oid:0x1000000003011": { @@ -980,7 +1195,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "116", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "4", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "8272", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "94" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "94", + "SAI_QUEUE_STAT_BYTES": "73", + "SAI_QUEUE_STAT_DROPPED_BYTES": "31", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "13", + "SAI_QUEUE_STAT_PACKETS": "111", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "102" }, "COUNTERS:oid:0x1000000003012": { @@ -1001,7 +1221,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "74", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "5817", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "0" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "0", + "SAI_QUEUE_STAT_BYTES": "74", + "SAI_QUEUE_STAT_DROPPED_BYTES": "30", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "12", + "SAI_QUEUE_STAT_PACKETS": "112", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "103" }, "COUNTERS:oid:0x1000000003013": { @@ -1022,7 +1247,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "253", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "4", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "4833", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "65" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "65", + "SAI_QUEUE_STAT_BYTES": "75", + "SAI_QUEUE_STAT_DROPPED_BYTES": "29", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "11", + "SAI_QUEUE_STAT_PACKETS": "113", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "104" }, "COUNTERS:oid:0x1000000003014": { @@ -1043,7 +1273,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "573", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "5", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "2860", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "48" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "48", + "SAI_QUEUE_STAT_BYTES": "76", + "SAI_QUEUE_STAT_DROPPED_BYTES": "28", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "10", + "SAI_QUEUE_STAT_PACKETS": "114", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "105" }, "COUNTERS:oid:0x1000000003015": { @@ -1064,7 +1299,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "230", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "4", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "6469", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "50" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "50", + "SAI_QUEUE_STAT_BYTES": "77", + "SAI_QUEUE_STAT_DROPPED_BYTES": "27", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "9", + "SAI_QUEUE_STAT_PACKETS": "115", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "106" }, "COUNTERS:oid:0x1000000004000": { @@ -1085,7 +1325,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "962", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "2", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "3473", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "45" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "45", + "SAI_QUEUE_STAT_BYTES": "78", + "SAI_QUEUE_STAT_DROPPED_BYTES": "26", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "8", + "SAI_QUEUE_STAT_PACKETS": "116", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "107" }, "COUNTERS:oid:0x1000000004001": { @@ -1106,7 +1351,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "788", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "8089", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "15" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "15", + "SAI_QUEUE_STAT_BYTES": "79", + "SAI_QUEUE_STAT_DROPPED_BYTES": "25", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "7", + "SAI_QUEUE_STAT_PACKETS": "117", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "108" }, "COUNTERS:oid:0x1000000004002": { @@ -1127,7 +1377,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "413", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "3", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "9569", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "8" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "8", + "SAI_QUEUE_STAT_BYTES": "80", + "SAI_QUEUE_STAT_DROPPED_BYTES": "24", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "6", + "SAI_QUEUE_STAT_PACKETS": "118", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "109" }, "COUNTERS:oid:0x1000000004003": { @@ -1148,7 +1403,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "701", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "7", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "8669", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "96" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "96", + "SAI_QUEUE_STAT_BYTES": "81", + "SAI_QUEUE_STAT_DROPPED_BYTES": "23", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "5", + "SAI_QUEUE_STAT_PACKETS": "119", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "110" }, "COUNTERS:oid:0x1000000004004": { @@ -1169,7 +1429,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "860", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "4", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "3633", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "92" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "92", + "SAI_QUEUE_STAT_BYTES": "82", + "SAI_QUEUE_STAT_DROPPED_BYTES": "22", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "4", + "SAI_QUEUE_STAT_PACKETS": "120", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "111" }, "COUNTERS:oid:0x1000000004005": { @@ -1190,7 +1455,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "45", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "5074", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "10" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "10", + "SAI_QUEUE_STAT_BYTES": "83", + "SAI_QUEUE_STAT_DROPPED_BYTES": "21", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "3", + "SAI_QUEUE_STAT_PACKETS": "121", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "112" }, "COUNTERS:oid:0x1000000004006": { @@ -1211,7 +1481,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "6", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "7", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "3372", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "93" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "93", + "SAI_QUEUE_STAT_BYTES": "84", + "SAI_QUEUE_STAT_DROPPED_BYTES": "20", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "2", + "SAI_QUEUE_STAT_PACKETS": "122", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "113" }, "COUNTERS:oid:0x1000000004007": { @@ -1232,7 +1507,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "440", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "1", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "1084", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "7" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "7", + "SAI_QUEUE_STAT_BYTES": "85", + "SAI_QUEUE_STAT_DROPPED_BYTES": "19", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "1", + "SAI_QUEUE_STAT_PACKETS": "123", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "114" }, "COUNTERS:oid:0x1000000004008": { @@ -1253,7 +1533,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "281", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "1", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "5858", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "45" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "45", + "SAI_QUEUE_STAT_BYTES": "86", + "SAI_QUEUE_STAT_DROPPED_BYTES": "18", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "0", + "SAI_QUEUE_STAT_PACKETS": "124", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "115" }, "COUNTERS:oid:0x1000000004009": { @@ -1274,7 +1559,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "636", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "8", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "1734", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "63" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "63", + "SAI_QUEUE_STAT_BYTES": "87", + "SAI_QUEUE_STAT_DROPPED_BYTES": "17", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "1", + "SAI_QUEUE_STAT_PACKETS": "125", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "116" }, "COUNTERS:oid:0x1000000004010": { @@ -1295,7 +1585,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "625", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "7", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "3991", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "1" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "1", + "SAI_QUEUE_STAT_BYTES": "88", + "SAI_QUEUE_STAT_DROPPED_BYTES": "16", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "2", + "SAI_QUEUE_STAT_PACKETS": "126", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "117" }, "COUNTERS:oid:0x1000000004011": { @@ -1316,7 +1611,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "778", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "0", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "133", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "29" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "29", + "SAI_QUEUE_STAT_BYTES": "89", + "SAI_QUEUE_STAT_DROPPED_BYTES": "15", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "3", + "SAI_QUEUE_STAT_PACKETS": "127", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "118" }, "COUNTERS:oid:0x1000000004012": { @@ -1337,7 +1637,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "573", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "7", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "6631", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "57" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "57", + "SAI_QUEUE_STAT_BYTES": "90", + "SAI_QUEUE_STAT_DROPPED_BYTES": "14", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "4", + "SAI_QUEUE_STAT_PACKETS": "128", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "119" }, "COUNTERS:oid:0x1000000004013": { @@ -1358,7 +1663,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "768", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "1", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "9010", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "41" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "41", + "SAI_QUEUE_STAT_BYTES": "91", + "SAI_QUEUE_STAT_DROPPED_BYTES": "13", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "5", + "SAI_QUEUE_STAT_PACKETS": "129", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "120" }, "COUNTERS:oid:0x1000000004014": { @@ -1379,7 +1689,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "288", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "1", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "4343", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "60" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "60", + "SAI_QUEUE_STAT_BYTES": "92", + "SAI_QUEUE_STAT_DROPPED_BYTES": "12", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "6", + "SAI_QUEUE_STAT_PACKETS": "130", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "121" }, "COUNTERS:oid:0x1000000004015": { @@ -1400,7 +1715,12 @@ "PFC_WD_QUEUE_STATS_TX_PACKETS_LAST": "758", "PFC_WD_QUEUE_STATS_TX_DROPPED_PACKETS_LAST": "7", "PFC_WD_QUEUE_STATS_RX_PACKETS_LAST": "7599", - "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "8" + "PFC_WD_QUEUE_STATS_RX_DROPPED_PACKETS_LAST": "8", + "SAI_QUEUE_STAT_BYTES": "93", + "SAI_QUEUE_STAT_DROPPED_BYTES": "11", + "SAI_QUEUE_STAT_DROPPED_PACKETS": "7", + "SAI_QUEUE_STAT_PACKETS": "131", + "SAI_QUEUE_STAT_SHARED_WATERMARK_BYTES": "122" }, "COUNTERS_RIF_NAME_MAP": { @@ -1693,6 +2013,204 @@ "Ethernet-BP4:14": "oid:0x1000000004014", "Ethernet-BP4:15": "oid:0x1000000004015" }, + "COUNTERS_QUEUE_PORT_MAP": { + "oid:0x1000000001000": "oid:0x1000000000002", + "oid:0x1000000001001": "oid:0x1000000000002", + "oid:0x1000000001002": "oid:0x1000000000002", + "oid:0x1000000001003": "oid:0x1000000000002", + "oid:0x1000000001004": "oid:0x1000000000002", + "oid:0x1000000001005": "oid:0x1000000000002", + "oid:0x1000000001006": "oid:0x1000000000002", + "oid:0x1000000001007": "oid:0x1000000000002", + "oid:0x1000000001008": "oid:0x1000000000002", + "oid:0x1000000001009": "oid:0x1000000000002", + "oid:0x1000000001010": "oid:0x1000000000002", + "oid:0x1000000001011": "oid:0x1000000000002", + "oid:0x1000000001012": "oid:0x1000000000002", + "oid:0x1000000001013": "oid:0x1000000000002", + "oid:0x1000000001014": "oid:0x1000000000002", + "oid:0x1000000001015": "oid:0x1000000000002", + "oid:0x1000000002000": "oid:0x1000000000004", + "oid:0x1000000002001": "oid:0x1000000000004", + "oid:0x1000000002002": "oid:0x1000000000004", + "oid:0x1000000002003": "oid:0x1000000000004", + "oid:0x1000000002004": "oid:0x1000000000004", + "oid:0x1000000002005": "oid:0x1000000000004", + "oid:0x1000000002006": "oid:0x1000000000004", + "oid:0x1000000002007": "oid:0x1000000000004", + "oid:0x1000000002008": "oid:0x1000000000004", + "oid:0x1000000002009": "oid:0x1000000000004", + "oid:0x1000000002010": "oid:0x1000000000004", + "oid:0x1000000002011": "oid:0x1000000000004", + "oid:0x1000000002012": "oid:0x1000000000004", + "oid:0x1000000002013": "oid:0x1000000000004", + "oid:0x1000000002014": "oid:0x1000000000004", + "oid:0x1000000002015": "oid:0x1000000000004", + "oid:0x1000000003000": "oid:0x1000000000006", + "oid:0x1000000003001": "oid:0x1000000000006", + "oid:0x1000000003002": "oid:0x1000000000006", + "oid:0x1000000003003": "oid:0x1000000000006", + "oid:0x1000000003004": "oid:0x1000000000006", + "oid:0x1000000003005": "oid:0x1000000000006", + "oid:0x1000000003006": "oid:0x1000000000006", + "oid:0x1000000003007": "oid:0x1000000000006", + "oid:0x1000000003008": "oid:0x1000000000006", + "oid:0x1000000003009": "oid:0x1000000000006", + "oid:0x1000000003010": "oid:0x1000000000006", + "oid:0x1000000003011": "oid:0x1000000000006", + "oid:0x1000000003012": "oid:0x1000000000006", + "oid:0x1000000003013": "oid:0x1000000000006", + "oid:0x1000000003014": "oid:0x1000000000006", + "oid:0x1000000003015": "oid:0x1000000000006", + "oid:0x1000000004000": "oid:0x1000000000008", + "oid:0x1000000004001": "oid:0x1000000000008", + "oid:0x1000000004002": "oid:0x1000000000008", + "oid:0x1000000004003": "oid:0x1000000000008", + "oid:0x1000000004004": "oid:0x1000000000008", + "oid:0x1000000004005": "oid:0x1000000000008", + "oid:0x1000000004006": "oid:0x1000000000008", + "oid:0x1000000004007": "oid:0x1000000000008", + "oid:0x1000000004008": "oid:0x1000000000008", + "oid:0x1000000004009": "oid:0x1000000000008", + "oid:0x1000000004010": "oid:0x1000000000008", + "oid:0x1000000004011": "oid:0x1000000000008", + "oid:0x1000000004012": "oid:0x1000000000008", + "oid:0x1000000004013": "oid:0x1000000000008", + "oid:0x1000000004014": "oid:0x1000000000008", + "oid:0x1000000004015": "oid:0x1000000000008" + }, + "COUNTERS_QUEUE_INDEX_MAP": { + "oid:0x1000000001000": "0", + "oid:0x1000000001001": "1", + "oid:0x1000000001002": "2", + "oid:0x1000000001003": "3", + "oid:0x1000000001004": "4", + "oid:0x1000000001005": "5", + "oid:0x1000000001006": "6", + "oid:0x1000000001007": "7", + "oid:0x1000000001008": "8", + "oid:0x1000000001009": "9", + "oid:0x1000000001010": "10", + "oid:0x1000000001011": "11", + "oid:0x1000000001012": "12", + "oid:0x1000000001013": "13", + "oid:0x1000000001014": "14", + "oid:0x1000000001015": "15", + "oid:0x1000000002000": "0", + "oid:0x1000000002001": "1", + "oid:0x1000000002002": "2", + "oid:0x1000000002003": "3", + "oid:0x1000000002004": "4", + "oid:0x1000000002005": "5", + "oid:0x1000000002006": "6", + "oid:0x1000000002007": "7", + "oid:0x1000000002008": "8", + "oid:0x1000000002009": "9", + "oid:0x1000000002010": "10", + "oid:0x1000000002011": "11", + "oid:0x1000000002012": "12", + "oid:0x1000000002013": "13", + "oid:0x1000000002014": "14", + "oid:0x1000000002015": "15", + "oid:0x1000000003000": "0", + "oid:0x1000000003001": "1", + "oid:0x1000000003002": "2", + "oid:0x1000000003003": "3", + "oid:0x1000000003004": "4", + "oid:0x1000000003005": "5", + "oid:0x1000000003006": "6", + "oid:0x1000000003007": "7", + "oid:0x1000000003008": "8", + "oid:0x1000000003009": "9", + "oid:0x1000000003010": "10", + "oid:0x1000000003011": "11", + "oid:0x1000000003012": "12", + "oid:0x1000000003013": "13", + "oid:0x1000000003014": "14", + "oid:0x1000000003015": "15", + "oid:0x1000000004000": "0", + "oid:0x1000000004001": "1", + "oid:0x1000000004002": "2", + "oid:0x1000000004003": "3", + "oid:0x1000000004004": "4", + "oid:0x1000000004005": "5", + "oid:0x1000000004006": "6", + "oid:0x1000000004007": "7", + "oid:0x1000000004008": "8", + "oid:0x1000000004009": "9", + "oid:0x1000000004010": "10", + "oid:0x1000000004011": "11", + "oid:0x1000000004012": "12", + "oid:0x1000000004013": "13", + "oid:0x1000000004014": "14", + "oid:0x1000000004015": "15" + }, + "COUNTERS_QUEUE_TYPE_MAP": { + "oid:0x1000000001000": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000001001": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000001002": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000001003": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000001004": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000001005": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000001006": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000001007": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000001008": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000001009": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000001010": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000001011": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000001012": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000001013": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000001014": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000001015": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000002000": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000002001": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000002002": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000002003": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000002004": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000002005": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000002006": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000002007": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000002008": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000002009": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000002010": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000002011": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000002012": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000002013": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000002014": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000002015": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000003000": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000003001": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000003002": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000003003": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000003004": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000003005": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000003006": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000003007": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000003008": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000003009": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000003010": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000003011": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000003012": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000003013": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000003014": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000003015": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000004000": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000004001": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000004002": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000004003": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000004004": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000004005": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000004006": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000004007": "SAI_QUEUE_TYPE_UNICAST", + "oid:0x1000000004008": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000004009": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000004010": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000004011": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000004012": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000004013": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000004014": "SAI_QUEUE_TYPE_MULTICAST", + "oid:0x1000000004015": "SAI_QUEUE_TYPE_MULTICAST" + }, "COUNTERS_FABRIC_PORT_NAME_MAP" : { "PORT0": "oid:0x1000000000143", "PORT1": "oid:0x1000000000144", diff --git a/tests/multi_asic_queue_counter_test.py b/tests/multi_asic_queue_counter_test.py new file mode 100644 index 00000000..c501c686 --- /dev/null +++ b/tests/multi_asic_queue_counter_test.py @@ -0,0 +1,151 @@ +import imp +import json +import os +import sys + +from click.testing import CliRunner +from unittest import TestCase +from swsscommon.swsscommon import ConfigDBConnector + +from .mock_tables import dbconnector + +import show.main as show +from utilities_common.cli import json_dump +from utilities_common.db import Db +from .utils import get_result_and_return_code + +test_path = os.path.dirname(os.path.abspath(__file__)) +modules_path = os.path.dirname(test_path) +scripts_path = os.path.join(modules_path, "scripts") +sys.path.insert(0, test_path) +sys.path.insert(0, modules_path) + + +show_queue_counters = """\ + Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes +--------- ----- -------------- --------------- ----------- ------------ +Ethernet0 UC0 68 30 56 74 +Ethernet0 UC1 69 31 55 73 +Ethernet0 UC2 70 32 54 72 +Ethernet0 UC3 71 33 53 71 +Ethernet0 UC4 72 34 52 70 +Ethernet0 UC5 73 35 51 69 +Ethernet0 UC6 74 36 50 68 +Ethernet0 UC7 75 37 49 67 +Ethernet0 MC8 76 38 48 66 +Ethernet0 MC9 77 39 47 65 +Ethernet0 MC10 78 40 46 64 +Ethernet0 MC11 79 41 45 63 +Ethernet0 MC12 80 42 44 62 +Ethernet0 MC13 81 43 43 61 +Ethernet0 MC14 82 44 42 60 +Ethernet0 MC15 83 45 41 59 + + Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes +--------- ----- -------------- --------------- ----------- ------------ +Ethernet4 UC0 84 46 40 58 +Ethernet4 UC1 85 47 39 57 +Ethernet4 UC2 86 48 38 56 +Ethernet4 UC3 87 49 37 55 +Ethernet4 UC4 88 50 36 54 +Ethernet4 UC5 89 51 35 53 +Ethernet4 UC6 90 52 34 52 +Ethernet4 UC7 91 53 33 51 +Ethernet4 MC8 92 54 32 50 +Ethernet4 MC9 93 55 31 49 +Ethernet4 MC10 94 56 30 48 +Ethernet4 MC11 95 57 29 47 +Ethernet4 MC12 96 58 28 46 +Ethernet4 MC13 97 59 27 45 +Ethernet4 MC14 98 60 26 44 +Ethernet4 MC15 99 61 25 43 + + Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes +------------ ----- -------------- --------------- ----------- ------------ +Ethernet-BP0 UC0 100 62 24 42 +Ethernet-BP0 UC1 101 63 23 41 +Ethernet-BP0 UC2 102 64 22 40 +Ethernet-BP0 UC3 103 65 21 39 +Ethernet-BP0 UC4 104 66 20 38 +Ethernet-BP0 UC5 105 67 19 37 +Ethernet-BP0 UC6 106 68 18 36 +Ethernet-BP0 UC7 107 69 17 35 +Ethernet-BP0 MC8 108 70 16 34 +Ethernet-BP0 MC9 109 71 15 33 +Ethernet-BP0 MC10 110 72 14 32 +Ethernet-BP0 MC11 111 73 13 31 +Ethernet-BP0 MC12 112 74 12 30 +Ethernet-BP0 MC13 113 75 11 29 +Ethernet-BP0 MC14 114 76 10 28 +Ethernet-BP0 MC15 115 77 9 27 + + Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes +------------ ----- -------------- --------------- ----------- ------------ +Ethernet-BP4 UC0 116 78 8 26 +Ethernet-BP4 UC1 117 79 7 25 +Ethernet-BP4 UC2 118 80 6 24 +Ethernet-BP4 UC3 119 81 5 23 +Ethernet-BP4 UC4 120 82 4 22 +Ethernet-BP4 UC5 121 83 3 21 +Ethernet-BP4 UC6 122 84 2 20 +Ethernet-BP4 UC7 123 85 1 19 +Ethernet-BP4 MC8 124 86 0 18 +Ethernet-BP4 MC9 125 87 1 17 +Ethernet-BP4 MC10 126 88 2 16 +Ethernet-BP4 MC11 127 89 3 15 +Ethernet-BP4 MC12 128 90 4 14 +Ethernet-BP4 MC13 129 91 5 13 +Ethernet-BP4 MC14 130 92 6 12 +Ethernet-BP4 MC15 131 93 7 11 + +""" + + +show_queue_counters_port = """\ + Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes +------------ ----- -------------- --------------- ----------- ------------ +Ethernet-BP4 UC0 116 78 8 26 +Ethernet-BP4 UC1 117 79 7 25 +Ethernet-BP4 UC2 118 80 6 24 +Ethernet-BP4 UC3 119 81 5 23 +Ethernet-BP4 UC4 120 82 4 22 +Ethernet-BP4 UC5 121 83 3 21 +Ethernet-BP4 UC6 122 84 2 20 +Ethernet-BP4 UC7 123 85 1 19 +Ethernet-BP4 MC8 124 86 0 18 +Ethernet-BP4 MC9 125 87 1 17 +Ethernet-BP4 MC10 126 88 2 16 +Ethernet-BP4 MC11 127 89 3 15 +Ethernet-BP4 MC12 128 90 4 14 +Ethernet-BP4 MC13 129 91 5 13 +Ethernet-BP4 MC14 130 92 6 12 +Ethernet-BP4 MC15 131 93 7 11 + +""" + +class TestQueueMultiAsic(object): + @classmethod + def setup_class(cls): + os.environ["PATH"] += os.pathsep + scripts_path + os.environ['UTILITIES_UNIT_TESTING'] = "2" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "multi_asic" + print("SETUP") + + def test_queue_counters(self): + return_code, result = get_result_and_return_code('queuestat -n asic0') + assert return_code == 0 + print(result) + assert result == show_queue_counters + + def test_queue_counters_port(self): + return_code, result = get_result_and_return_code('queuestat -p Ethernet-BP4 -n asic0') + assert return_code == 0 + print(result) + assert result == show_queue_counters_port + + @classmethod + def teardown_class(cls): + os.environ["PATH"] = os.pathsep.join(os.environ["PATH"].split(os.pathsep)[:-1]) + os.environ['UTILITIES_UNIT_TESTING'] = "0" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "" + print("TEARDOWN") From 5782da4fcc5326e8731eb996427f31e1dd0f3e12 Mon Sep 17 00:00:00 2001 From: anamehra <54692434+anamehra@users.noreply.github.com> Date: Mon, 30 Jan 2023 10:05:10 -0800 Subject: [PATCH 052/312] Fixed admin state config CLI for Backport interfaces (#2557) Fixed admin state config CLI for Backport interfaces Fixes sonic-net/sonic-buildimage#13057 --- tests/interfaces_test.py | 22 ++++++++++++++++++++++ utilities_common/intf_filter.py | 16 ++++++++++++++-- 2 files changed, 36 insertions(+), 2 deletions(-) diff --git a/tests/interfaces_test.py b/tests/interfaces_test.py index 7fc6152c..c3246ba0 100644 --- a/tests/interfaces_test.py +++ b/tests/interfaces_test.py @@ -3,6 +3,7 @@ from click.testing import CliRunner from unittest import mock +from utilities_common.intf_filter import parse_interface_in_filter import show.main as show @@ -315,6 +316,27 @@ def test_supervisor_show_interfaces_alias_etp1_without_waring(self): print(result.output) assert result.exit_code != 0 + def test_parse_interface_in_filter(self): + intf_filter = "Ethernet0" + intf_list = parse_interface_in_filter(intf_filter) + assert len(intf_list) == 1 + assert intf_list[0] == "Ethernet0" + + intf_filter = "Ethernet1-3" + intf_list = parse_interface_in_filter(intf_filter) + assert len(intf_list) == 3 + assert intf_list == ["Ethernet1", "Ethernet2", "Ethernet3"] + + intf_filter = "Ethernet-BP10" + intf_list = parse_interface_in_filter(intf_filter) + assert len(intf_list) == 1 + assert intf_list[0] == "Ethernet-BP10" + + intf_filter = "Ethernet-BP10-12" + intf_list = parse_interface_in_filter(intf_filter) + assert len(intf_list) == 3 + assert intf_list == ["Ethernet-BP10", "Ethernet-BP11", "Ethernet-BP12"] + @classmethod def teardown_class(cls): print("TEARDOWN") diff --git a/utilities_common/intf_filter.py b/utilities_common/intf_filter.py index be5ddaed..190445c6 100755 --- a/utilities_common/intf_filter.py +++ b/utilities_common/intf_filter.py @@ -2,6 +2,7 @@ SONIC_PORT_NAME_PREFIX = "Ethernet" SONIC_LAG_NAME_PREFIX = "PortChannel" +SONIC_BACK_PORT_NAME_PREFIX = "Ethernet-BP" def parse_interface_in_filter(intf_filter): intf_fs = [] @@ -11,7 +12,19 @@ def parse_interface_in_filter(intf_filter): fs = intf_filter.split(',') for x in fs: - if '-' in x: + if x.startswith(SONIC_BACK_PORT_NAME_PREFIX): + intf = SONIC_BACK_PORT_NAME_PREFIX + x = x.split(intf)[1] + if '-' in x: + start = x.split('-')[0] + end = x.split('-')[1] + if not start.isdigit() or not end.isdigit(): + continue + for i in range(int(start), int(end)+1): + intf_fs.append(intf+str(i)) + else: + intf_fs.append(intf+x) + elif '-' in x: # handle range if not x.startswith(SONIC_PORT_NAME_PREFIX) and not x.startswith(SONIC_LAG_NAME_PREFIX): continue @@ -40,4 +53,3 @@ def interface_in_filter(intf, filter): return True return False - From 75d233fef15f36744785b6e1a7aa0f277c339603 Mon Sep 17 00:00:00 2001 From: Junchao-Mellanox <57339448+Junchao-Mellanox@users.noreply.github.com> Date: Tue, 31 Jan 2023 02:15:01 +0800 Subject: [PATCH 053/312] [system-health] Fix issue: show system-health CLI crashes (#2635) - What I did Fix issue: show system-health CLI crashes root@switch:/home/admin# show system-health summary Traceback (most recent call last): File "/usr/local/bin/show", line 8, in sys.exit(cli()) File "/usr/local/lib/python3.9/dist-packages/click/core.py", line 764, in __call__ return self.main(*args, **kwargs) File "/usr/local/lib/python3.9/dist-packages/click/core.py", line 717, in main rv = self.invoke(ctx) File "/usr/local/lib/python3.9/dist-packages/click/core.py", line 1137, in invoke return _process_result(sub_ctx.command.invoke(sub_ctx)) File "/usr/local/lib/python3.9/dist-packages/click/core.py", line 1137, in invoke return _process_result(sub_ctx.command.invoke(sub_ctx)) File "/usr/local/lib/python3.9/dist-packages/click/core.py", line 956, in invoke return ctx.invoke(self.callback, **ctx.params) File "/usr/local/lib/python3.9/dist-packages/click/core.py", line 555, in invoke return callback(*args, **kwargs) File "/usr/local/lib/python3.9/dist-packages/show/system_health.py", line 113, in summary _, chassis, stat = get_system_health_status() File "/usr/local/lib/python3.9/dist-packages/show/system_health.py", line 10, in get_system_health_status if os.environ["UTILITIES_UNIT_TESTING"] == "1": File "/usr/lib/python3.9/os.py", line 679, in __getitem__ raise KeyError(key) from None KeyError: 'UTILITIES_UNIT_TESTING' - How I did it Use dict.get instead of [] operator. - How to verify it Manual test --- show/system_health.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/show/system_health.py b/show/system_health.py index a97214e7..08e9e705 100644 --- a/show/system_health.py +++ b/show/system_health.py @@ -7,7 +7,7 @@ def get_system_health_status(): - if os.environ["UTILITIES_UNIT_TESTING"] == "1": + if os.environ.get("UTILITIES_UNIT_TESTING") == "1": modules_path = os.path.join(os.path.dirname(__file__), "..") sys.path.insert(0, modules_path) from tests.system_health_test import MockerManager From 6fe8599216afb1c302e77c52235c4849be6042b2 Mon Sep 17 00:00:00 2001 From: ycoheNvidia <99744138+ycoheNvidia@users.noreply.github.com> Date: Mon, 30 Jan 2023 23:28:15 +0200 Subject: [PATCH 054/312] Secure upgrade (#2337) #### What I did Added support for secure upgrade #### How I did it It includes image signing during build (in sonic buildimage repo) and verification during image install (in sonic-utilities). HLD can be found in the following PR: https://github.com/sonic-net/SONiC/pull/1024 #### How to verify it Feature is used to allow image was not modified since built from vendor. During installation, image can be verified with a signature attached to it. In order for image verification - image must be signed - need to provide signing key and certificate (paths in SECURE_UPGRADE_DEV_SIGNING_KEY and SECURE_UPGRADE_DEV_SIGNING_CERT in rules/config) during build , and during image install, need to enable secure boot flag in bios, and signing_certificate should be available in bios. #### Feature dependencies In order for this feature to work smoothly, need to have secure boot feature implemented as well. The Secure boot feature will be merged in the near future. sonic-buildimage PR: https://github.com/sonic-net/sonic-buildimage/pull/11862 --- scripts/verify_image_sign.sh | 75 +++++++++++++++ scripts/verify_image_sign_common.sh | 34 +++++++ setup.py | 2 + sonic_installer/bootloader/grub.py | 11 +++ sonic_installer/main.py | 12 ++- tests/installer_bootloader_grub_test.py | 8 ++ tests/scripts/create_mock_image.sh | 40 ++++++++ .../create_sign_and_verify_test_files.sh | 91 +++++++++++++++++++ tests/scripts/verify_image_sign_test.sh | 29 ++++++ tests/sign_and_verify_test.py | 70 ++++++++++++++ tests/test_sonic_installer.py | 9 +- tests/verify_image_sign_test.sh | 29 ++++++ 12 files changed, 408 insertions(+), 2 deletions(-) create mode 100644 scripts/verify_image_sign.sh create mode 100755 scripts/verify_image_sign_common.sh create mode 100755 tests/scripts/create_mock_image.sh create mode 100755 tests/scripts/create_sign_and_verify_test_files.sh create mode 100755 tests/scripts/verify_image_sign_test.sh create mode 100644 tests/sign_and_verify_test.py create mode 100755 tests/verify_image_sign_test.sh diff --git a/scripts/verify_image_sign.sh b/scripts/verify_image_sign.sh new file mode 100644 index 00000000..d66148d5 --- /dev/null +++ b/scripts/verify_image_sign.sh @@ -0,0 +1,75 @@ +#!/bin/sh +image_file="${1}" +cms_sig_file="sig.cms" +lines_for_lookup=50 +SECURE_UPGRADE_ENABLED=0 +DIR="$(dirname "$0")" +if [ -d "/sys/firmware/efi/efivars" ]; 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 + SECURE_UPGRADE_ENABLED=$(bootctl status 2>/dev/null | grep -c "Secure Boot: enabled") +else + echo "efi not supported - exiting without verification" + exit 0 +fi + +. /usr/local/bin/verify_image_sign_common.sh + +if [ ${SECURE_UPGRADE_ENABLED} -eq 0 ]; then + echo "secure boot not enabled - exiting without image verification" + exit 0 +fi + +clean_up () +{ + if [ -d ${EFI_CERTS_DIR} ]; then rm -rf ${EFI_CERTS_DIR}; fi + if [ -d "${TMP_DIR}" ]; then rm -rf ${TMP_DIR}; fi + exit $1 +} + +TMP_DIR=$(mktemp -d) +DATA_FILE="${TMP_DIR}/data.bin" +CMS_SIG_FILE="${TMP_DIR}/${cms_sig_file}" +TAR_SIZE=$(head -n $lines_for_lookup $image_file | grep "payload_image_size=" | cut -d"=" -f2- ) +SHARCH_SIZE=$(sed '/^exit_marker$/q' $image_file | wc -c) +SIG_PAYLOAD_SIZE=$(($TAR_SIZE + $SHARCH_SIZE )) +# Extract cms signature from signed file +# Add extra byte for payload +sed -e '1,/^exit_marker$/d' $image_file | tail -c +$(( $TAR_SIZE + 1 )) > $CMS_SIG_FILE +# Extract image from signed file +head -c $SIG_PAYLOAD_SIZE $image_file > $DATA_FILE +# verify signature with certificate fetched with efi tools +EFI_CERTS_DIR=/tmp/efi_certs +[ -d $EFI_CERTS_DIR ] && rm -rf $EFI_CERTS_DIR +mkdir $EFI_CERTS_DIR +efi-readvar -v db -o $EFI_CERTS_DIR/db_efi >/dev/null || +{ + echo "Error: unable to read certs from efi db: $?" + clean_up 1 +} +# Convert one file to der certificates +sig-list-to-certs $EFI_CERTS_DIR/db_efi $EFI_CERTS_DIR/db >/dev/null|| +{ + echo "Error: convert sig list to certs: $?" + clean_up 1 +} +for file in $(ls $EFI_CERTS_DIR | grep "db-"); do + LOG=$(openssl x509 -in $EFI_CERTS_DIR/$file -inform der -out $EFI_CERTS_DIR/cert.pem 2>&1) + if [ $? -ne 0 ]; then + logger "cms_validation: $LOG" + fi + # Verify detached signature + LOG=$(verify_image_sign_common $image_file $DATA_FILE $CMS_SIG_FILE) + VALIDATION_RES=$? + if [ $VALIDATION_RES -eq 0 ]; then + RESULT="CMS Verified OK using efi keys" + echo "verification ok:$RESULT" + # No need to continue. + # Exit without error if any success signature verification. + clean_up 0 + fi +done +echo "Failure: CMS signature Verification Failed: $LOG" + +clean_up 1 \ No newline at end of file diff --git a/scripts/verify_image_sign_common.sh b/scripts/verify_image_sign_common.sh new file mode 100755 index 00000000..ec6511bc --- /dev/null +++ b/scripts/verify_image_sign_common.sh @@ -0,0 +1,34 @@ +#!/bin/bash +verify_image_sign_common() { + image_file="${1}" + cms_sig_file="sig.cms" + TMP_DIR=$(mktemp -d) + DATA_FILE="${2}" + CMS_SIG_FILE="${3}" + + openssl version | awk '$2 ~ /(^0\.)|(^1\.(0\.|1\.0))/ { exit 1 }' + if [ $? -eq 0 ]; then + # for version 1.1.1 and later + no_check_time="-no_check_time" + else + # for version older than 1.1.1 use noattr + no_check_time="-noattr" + fi + + # making sure image verification is supported + EFI_CERTS_DIR=/tmp/efi_certs + RESULT="CMS Verification Failure" + LOG=$(openssl cms -verify $no_check_time -noout -CAfile $EFI_CERTS_DIR/cert.pem -binary -in ${CMS_SIG_FILE} -content ${DATA_FILE} -inform pem 2>&1 > /dev/null ) + VALIDATION_RES=$? + if [ $VALIDATION_RES -eq 0 ]; then + RESULT="CMS Verified OK" + if [ -d "${TMP_DIR}" ]; then rm -rf ${TMP_DIR}; fi + echo "verification ok:$RESULT" + # No need to continue. + # Exit without error if any success signature verification. + return 0 + fi + + if [ -d "${TMP_DIR}" ]; then rm -rf ${TMP_DIR}; fi + return 1 +} diff --git a/setup.py b/setup.py index 70d7473b..231b80c8 100644 --- a/setup.py +++ b/setup.py @@ -154,6 +154,8 @@ 'scripts/memory_threshold_check_handler.py', 'scripts/techsupport_cleanup.py', 'scripts/storm_control.py', + 'scripts/verify_image_sign.sh', + 'scripts/verify_image_sign_common.sh', 'scripts/check_db_integrity.py', 'scripts/sysreadyshow' ], diff --git a/sonic_installer/bootloader/grub.py b/sonic_installer/bootloader/grub.py index 7ab5c6c0..dcafc3f8 100644 --- a/sonic_installer/bootloader/grub.py +++ b/sonic_installer/bootloader/grub.py @@ -153,6 +153,17 @@ def verify_image_platform(self, image_path): # Check if platform is inside image's target platforms return self.platform_in_platforms_asic(platform, image_path) + def verify_image_sign(self, image_path): + click.echo('Verifying image signature') + verification_script_name = 'verify_image_sign.sh' + script_path = os.path.join('/usr', 'local', 'bin', verification_script_name) + if not os.path.exists(script_path): + click.echo("Unable to find verification script in path " + script_path) + return False + verification_result = subprocess.run([script_path, image_path], capture_output=True) + click.echo(str(verification_result.stdout) + " " + str(verification_result.stderr)) + return verification_result.returncode == 0 + @classmethod def detect(cls): return os.path.isfile(os.path.join(HOST_PATH, 'grub/grub.cfg')) diff --git a/sonic_installer/main.py b/sonic_installer/main.py index ce1c1586..d7825931 100644 --- a/sonic_installer/main.py +++ b/sonic_installer/main.py @@ -511,7 +511,8 @@ def sonic_installer(): @click.option('-y', '--yes', is_flag=True, callback=abort_if_false, expose_value=False, prompt='New image will be installed, continue?') @click.option('-f', '--force', '--skip-secure-check', is_flag=True, - help="Force installation of an image of a non-secure type than secure running image") + help="Force installation of an image of a non-secure type than secure running " + + " image, this flag does not affect secure upgrade image verification") @click.option('--skip-platform-check', is_flag=True, help="Force installation of an image of a type which is not of the same platform") @click.option('--skip_migration', is_flag=True, @@ -576,6 +577,14 @@ def install(url, force, skip_platform_check=False, skip_migration=False, skip_pa "Aborting...", LOG_ERR) raise click.Abort() + # Calling verification script by default - signature will be checked if enabled in bios + echo_and_log("Verifing image {} signature...".format(binary_image_version)) + if not bootloader.verify_image_sign(image_path): + echo_and_log('Error: Failed verify image signature', LOG_ERR) + raise click.Abort() + else: + echo_and_log('Verification successful') + echo_and_log("Installing image {} and setting it as default...".format(binary_image_version)) with SWAPAllocator(not skip_setup_swap, swap_mem_size, total_mem_threshold, available_mem_threshold): bootloader.install_image(image_path) @@ -958,5 +967,6 @@ def verify_next_image(): sys.exit(1) click.echo('Image successfully verified') + if __name__ == '__main__': sonic_installer() diff --git a/tests/installer_bootloader_grub_test.py b/tests/installer_bootloader_grub_test.py index ff35e13b..10c9dc5b 100644 --- a/tests/installer_bootloader_grub_test.py +++ b/tests/installer_bootloader_grub_test.py @@ -53,3 +53,11 @@ def test_set_fips_grub(): # Cleanup the _tmp_host folder shutil.rmtree(tmp_host_path) + +def test_verify_image(): + + bootloader = grub.GrubBootloader() + image = f'{grub.IMAGE_PREFIX}expeliarmus-{grub.IMAGE_PREFIX}abcde' + + # command should fail + assert not bootloader.verify_image_sign(image) diff --git a/tests/scripts/create_mock_image.sh b/tests/scripts/create_mock_image.sh new file mode 100755 index 00000000..f23032af --- /dev/null +++ b/tests/scripts/create_mock_image.sh @@ -0,0 +1,40 @@ +repo_dir=$1 +input_image=$2 +output_file=$3 +cert_file=$4 +key_file=$5 +tmp_dir= +clean_up() +{ + sudo rm -rf $tmp_dir + sudo rm -rf $output_file + exit $1 +} + +DIR="$(dirname "$0")" + +tmp_dir=$(mktemp -d) +sha1=$(cat $input_image | sha1sum | awk '{print $1}') +echo -n "." +cp $repo_dir/installer/sharch_body.sh $output_file || { + echo "Error: Problems copying sharch_body.sh" + clean_up 1 +} +# Replace variables in the sharch template +sed -i -e "s/%%IMAGE_SHA1%%/$sha1/" $output_file +echo -n "." +tar_size="$(wc -c < "${input_image}")" +cat $input_image >> $output_file +sed -i -e "s|%%PAYLOAD_IMAGE_SIZE%%|${tar_size}|" ${output_file} +CMS_SIG="${tmp_dir}/signature.sig" + +echo "$0 CMS signing ${input_image} with ${key_file}. Output file ${output_file}" +. $repo_dir/scripts/sign_image_dev.sh +sign_image_dev ${cert_file} ${key_file} $output_file ${CMS_SIG} || clean_up 1 + +cat ${CMS_SIG} >> ${output_file} +echo "Signature done." +# append signature to binary +sudo rm -rf ${CMS_SIG} +sudo rm -rf $tmp_dir +exit 0 diff --git a/tests/scripts/create_sign_and_verify_test_files.sh b/tests/scripts/create_sign_and_verify_test_files.sh new file mode 100755 index 00000000..0040c04a --- /dev/null +++ b/tests/scripts/create_sign_and_verify_test_files.sh @@ -0,0 +1,91 @@ +repo_dir=$1 +out_dir=$2 +mock_image="mock_img.bin" +output_file=$out_dir/output_file.bin +cert_file=$3 +other_cert_file=$4 +tmp_dir= +clean_up() +{ + sudo rm -rf $tmp_dir + sudo rm -rf $mock_image + exit $1 +} +DIR="$(dirname "$0")" +[ -d $out_dir ] || rm -rf $out_dir +mkdir $out_dir +tmp_dir=$(mktemp -d) +#generate self signed keys and certificate +key_file=$tmp_dir/private-key.pem +pub_key_file=$tmp_dir/public-key.pem +openssl ecparam -name secp256r1 -genkey -noout -out $key_file +openssl ec -in $key_file -pubout -out $pub_key_file +openssl req -new -x509 -key $key_file -out $cert_file -days 360 -subj "/C=US/ST=Test/L=Test/O=Test/CN=Test" +alt_key_file=$tmp_dir/alt-private-key.pem +alt_pub_key_file=$tmp_dir/alt-public-key.pem +openssl ecparam -name secp256r1 -genkey -noout -out $alt_key_file +openssl ec -in $alt_key_file -pubout -out $alt_pub_key_file +openssl req -new -x509 -key $alt_key_file -out $other_cert_file -days 360 -subj "/C=US/ST=Test/L=Test/O=Test/CN=Test" + +echo "this is a mock image\nThis is another line !2#4%6\n" > $mock_image +echo "Created a mock image with following text:" +cat $mock_image +# create signed mock image + +sh $DIR/create_mock_image.sh $repo_dir $mock_image $output_file $cert_file $key_file || { + echo "Error: unable to create mock image" + clean_up 1 +} + +[ -f "$output_file" ] || { + echo "signed mock image not created - exiting without testing" + clean_up 1 +} + +test_image_1=$out_dir/test_image_1.bin +cp -v $output_file $test_image_1 || { + echo "Error: Problems copying image" + clean_up 1 +} + +# test_image_1 = modified image size to something else - should fail on signature verification +image_size=$(sed -n 's/^payload_image_size=\(.*\)/\1/p' < $test_image_1) +sed -i "/payload_image_size=/c\payload_image_size=$(($image_size - 5))" $test_image_1 + +test_image_2=$out_dir/test_image_2.bin +cp -v $output_file $test_image_2 || { + echo "Error: Problems copying image" + clean_up 1 +} + +# test_image_2 = modified image sha1 to other sha1 value - should fail on signature verification +im_sha=$(sed -n 's/^payload_sha1=\(.*\)/\1/p' < $test_image_2) +sed -i "/payload_sha1=/c\payload_sha1=2f1bbd5a0d411253103e688e4e66c00c94bedd40" $test_image_2 + +tmp_image=$tmp_dir/"tmp_image.bin" +echo "this is a different image now" >> $mock_image +sh $DIR/create_mock_image.sh $repo_dir $mock_image $tmp_image $cert_file $key_file || { + echo "Error: unable to create mock image" + clean_up 1 +} +# test_image_3 = original mock image with wrong signature +# Extract cms signature from signed file +test_image_3=$out_dir/"test_image_3.bin" +tmp_sig="${tmp_dir}/tmp_sig.sig" +TMP_TAR_SIZE=$(head -n 50 $tmp_image | grep "payload_image_size=" | cut -d"=" -f2- ) +sed -e '1,/^exit_marker$/d' $tmp_image | tail -c +$(( $TMP_TAR_SIZE + 1 )) > $tmp_sig + +TAR_SIZE=$(head -n 50 $output_file | grep "payload_image_size=" | cut -d"=" -f2- ) +SHARCH_SIZE=$(sed '/^exit_marker$/q' $output_file | wc -c) +SIG_PAYLOAD_SIZE=$(($TAR_SIZE + $SHARCH_SIZE )) +head -c $SIG_PAYLOAD_SIZE $output_file > $test_image_3 +sudo rm -rf $tmp_image + +cat ${tmp_sig} >> ${test_image_3} + +# test_image_4 = modified image with original mock image signature +test_image_4=$out_dir/"test_image_4.bin" +head -c $SIG_PAYLOAD_SIZE $output_file > $test_image_4 +echo "this is additional line" >> $test_image_4 +cat ${tmp_sig} >> ${test_image_4} +clean_up 0 \ No newline at end of file diff --git a/tests/scripts/verify_image_sign_test.sh b/tests/scripts/verify_image_sign_test.sh new file mode 100755 index 00000000..f4abd258 --- /dev/null +++ b/tests/scripts/verify_image_sign_test.sh @@ -0,0 +1,29 @@ +#!/bin/bash +image_file="${1}" +cert_path="${2}" +cms_sig_file="sig.cms" +TMP_DIR=$(mktemp -d) +DATA_FILE="${TMP_DIR}/data.bin" +CMS_SIG_FILE="${TMP_DIR}/${cms_sig_file}" +lines_for_lookup=50 + +TAR_SIZE=$(head -n $lines_for_lookup $image_file | grep "payload_image_size=" | cut -d"=" -f2- ) +SHARCH_SIZE=$(sed '/^exit_marker$/q' $image_file | wc -c) +SIG_PAYLOAD_SIZE=$(($TAR_SIZE + $SHARCH_SIZE )) +# Extract cms signature from signed file - exit marker marks last sharch prefix + number of image lines + 1 for next linel +# Add extra byte for payload - extracting image signature from line after data file +sed -e '1,/^exit_marker$/d' $image_file | tail -c +$(( $TAR_SIZE + 1 )) > $CMS_SIG_FILE +# Extract image from signed file +head -c $SIG_PAYLOAD_SIZE $image_file > $DATA_FILE +EFI_CERTS_DIR=/tmp/efi_certs +[ -d $EFI_CERTS_DIR ] && rm -rf $EFI_CERTS_DIR +mkdir $EFI_CERTS_DIR +cp $cert_path $EFI_CERTS_DIR/cert.pem + +DIR="$(dirname "$0")" +. $DIR/verify_image_sign_common.sh +verify_image_sign_common $image_file $DATA_FILE $CMS_SIG_FILE +VERIFICATION_RES=$? +if [ -d "${TMP_DIR}" ]; then rm -rf ${TMP_DIR}; fi +[ -d $EFI_CERTS_DIR ] && rm -rf $EFI_CERTS_DIR +exit $VERIFICATION_RES \ No newline at end of file diff --git a/tests/sign_and_verify_test.py b/tests/sign_and_verify_test.py new file mode 100644 index 00000000..77d58a4a --- /dev/null +++ b/tests/sign_and_verify_test.py @@ -0,0 +1,70 @@ + +import subprocess +import os +import sys +import shutil + + +class TestSignVerify(object): + def _run_verification_script_and_check(self, image, cert_file_path, success_str, expected_value=0): + res = subprocess.run(['sh', self._verification_script, image, cert_file_path]) + assert res.returncode == expected_value + print(success_str) + + def test_basic_signature_verification(self): + self._run_verification_script_and_check(os.path.join(self._out_dir_path, 'output_file.bin'), + self._cert_file_path, "test case 1 - basic verify signature - SUCCESS") + + # change image size to something else - should fail on signature verification + def test_modified_image_size(self): + self._run_verification_script_and_check(os.path.join(self._out_dir_path, 'test_image_1.bin'), + self._cert_file_path, "test case 2 - modified image size - SUCCESS", 1) + + def test_modified_image_sha1(self): + self._run_verification_script_and_check(os.path.join(self._out_dir_path, 'test_image_2.bin'), + self._cert_file_path, "test case 3 - modified image sha1 - SUCCESS", 1) + + def test_modified_image_data(self): + self._run_verification_script_and_check(os.path.join(self._out_dir_path, 'test_image_3.bin'), + self._cert_file_path, "test case 4 - modified image data - SUCCESS", 1) + + def test_modified_image_signature(self): + self._run_verification_script_and_check(os.path.join(self._out_dir_path, 'test_image_4.bin'), + self._cert_file_path, "test case 5 - modified image data - SUCCESS", 1) + + def test_verify_image_with_wrong_certificate(self): + self._run_verification_script_and_check(os.path.join(self._out_dir_path, 'output_file.bin'), + self._alt_cert_path, "test case 6 - verify with wrong signature - SUCCESS", 1) + + def __init__(self): + self._test_path = os.path.dirname(os.path.abspath(__file__)) + self._modules_path = os.path.dirname(self._test_path) + self._repo_path = os.path.join(self._modules_path, '../..') + self._test_scripts_path = os.path.join(self._test_path, "scripts") + sys.path.insert(0, self._test_path) + sys.path.insert(0, self._modules_path) + sys.path.insert(0, self._test_scripts_path) + script_path = os.path.join(self._test_scripts_path, 'create_sign_and_verify_test_files.sh') + self._verification_script = os.path.join(self._test_scripts_path, 'verify_image_sign_test.sh') + self._out_dir_path = '/tmp/sign_verify_test' + self._cert_file_path = os.path.join(self._out_dir_path, 'self_certificate.pem') + self._alt_cert_path = os.path.join(self._out_dir_path, 'alt_self_certificate.pem') + create_files_result = subprocess.run(['sh', script_path, self._repo_path, self._out_dir_path, + self._cert_file_path, + self._alt_cert_path]) + print(create_files_result) + assert create_files_result.returncode == 0 + + def __del__(self): + shutil.rmtree(self._out_dir_path) + + +if __name__ == '__main__': + t = TestSignVerify() + t.test_basic_signature_verification() + subprocess.run(['ls', '/tmp/sign_verify_test']) + t.test_modified_image_data() + t.test_modified_image_sha1() + t.test_modified_image_signature() + t.test_modified_image_size() + t.test_verify_image_with_wrong_certificate() diff --git a/tests/test_sonic_installer.py b/tests/test_sonic_installer.py index c445dfb6..0f8fcdb8 100644 --- a/tests/test_sonic_installer.py +++ b/tests/test_sonic_installer.py @@ -3,6 +3,7 @@ from sonic_installer.main import sonic_installer from click.testing import CliRunner from unittest.mock import patch, Mock, call +from sonic_installer.bootloader import GrubBootloader @patch("sonic_installer.main.SWAPAllocator") @patch("sonic_installer.main.get_bootloader") @@ -31,7 +32,7 @@ def test_install(run_command, run_command_or_raise, get_bootloader, swap, fs): mock_bootloader.get_binary_image_version = Mock(return_value=new_image_version) mock_bootloader.get_installed_images = Mock(return_value=[current_image_version]) mock_bootloader.get_image_path = Mock(return_value=new_image_folder) - + mock_bootloader.verify_image_sign = Mock(return_value=True) @contextmanager def rootfs_path_mock(path): yield mounted_image_folder @@ -45,7 +46,13 @@ def rootfs_path_mock(path): print(result.output) assert result.exit_code == 0 + mock_bootloader_verify_image_sign_fail = mock_bootloader + mock_bootloader_verify_image_sign_fail.verify_image_sign = Mock(return_value=False) + get_bootloader.return_value=mock_bootloader_verify_image_sign_fail + result = runner.invoke(sonic_installer.commands["install"], [sonic_image_filename, "-y"]) + print(result.output) + assert result.exit_code != 0 # Assert bootloader install API was called mock_bootloader.install_image.assert_called_with(f"./{sonic_image_filename}") # Assert all below commands were called, so we ensure that diff --git a/tests/verify_image_sign_test.sh b/tests/verify_image_sign_test.sh new file mode 100755 index 00000000..f4abd258 --- /dev/null +++ b/tests/verify_image_sign_test.sh @@ -0,0 +1,29 @@ +#!/bin/bash +image_file="${1}" +cert_path="${2}" +cms_sig_file="sig.cms" +TMP_DIR=$(mktemp -d) +DATA_FILE="${TMP_DIR}/data.bin" +CMS_SIG_FILE="${TMP_DIR}/${cms_sig_file}" +lines_for_lookup=50 + +TAR_SIZE=$(head -n $lines_for_lookup $image_file | grep "payload_image_size=" | cut -d"=" -f2- ) +SHARCH_SIZE=$(sed '/^exit_marker$/q' $image_file | wc -c) +SIG_PAYLOAD_SIZE=$(($TAR_SIZE + $SHARCH_SIZE )) +# Extract cms signature from signed file - exit marker marks last sharch prefix + number of image lines + 1 for next linel +# Add extra byte for payload - extracting image signature from line after data file +sed -e '1,/^exit_marker$/d' $image_file | tail -c +$(( $TAR_SIZE + 1 )) > $CMS_SIG_FILE +# Extract image from signed file +head -c $SIG_PAYLOAD_SIZE $image_file > $DATA_FILE +EFI_CERTS_DIR=/tmp/efi_certs +[ -d $EFI_CERTS_DIR ] && rm -rf $EFI_CERTS_DIR +mkdir $EFI_CERTS_DIR +cp $cert_path $EFI_CERTS_DIR/cert.pem + +DIR="$(dirname "$0")" +. $DIR/verify_image_sign_common.sh +verify_image_sign_common $image_file $DATA_FILE $CMS_SIG_FILE +VERIFICATION_RES=$? +if [ -d "${TMP_DIR}" ]; then rm -rf ${TMP_DIR}; fi +[ -d $EFI_CERTS_DIR ] && rm -rf $EFI_CERTS_DIR +exit $VERIFICATION_RES \ No newline at end of file From c3c92a47451241a85f2a071d19d61a648e312767 Mon Sep 17 00:00:00 2001 From: abdosi <58047199+abdosi@users.noreply.github.com> Date: Mon, 30 Jan 2023 17:52:50 -0800 Subject: [PATCH 055/312] Skip saidump for Spine Router as this can take more than 5 sec (#2637) To address sonic-net/sonic-buildimage#13561 skip saidump on T2 platforms for time-being. --- scripts/generate_dump | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/generate_dump b/scripts/generate_dump index 7587e9fa..7c948069 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -1560,6 +1560,7 @@ main() { save_cmd "show reboot-cause" reboot.cause local asic="$(/usr/local/bin/sonic-cfggen -y /etc/sonic/sonic_version.yml -v asic_type)" + local device_type=`sonic-db-cli CONFIG_DB hget 'DEVICE_METADATA|localhost' type` # 1st counter snapshot early. Need 2 snapshots to make sense of counters trend. save_counter_snapshot $asic 1 @@ -1643,7 +1644,9 @@ main() { save_cmd "hdparm -i /dev/sda" "hdparm" save_cmd "ps -AwwL -o user,pid,lwp,ppid,nlwp,pcpu,pri,nice,vsize,rss,tty,stat,wchan:12,start,bsdtime,command" "ps.extended" - save_saidump + if [[ "$device_type" != "SpineRouter" ]]; then + save_saidump + fi if [ "$asic" = "barefoot" ]; then collect_barefoot From 9ee6ac29bbd8a181d2a7e02cef082b6badcd5a27 Mon Sep 17 00:00:00 2001 From: Yaqiang Zhu Date: Mon, 30 Jan 2023 21:07:12 -0800 Subject: [PATCH 056/312] [doc] Update docs for dhcp_relay config cli (#2598) What I did Updated docs about dhcp_relay config cli How I did it Updated docs about dhcp_relay config cli Signed-off-by: Yaqiang Zhu --- doc/Command-Reference.md | 68 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 063db2cc..f2a4ada1 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -2349,6 +2349,74 @@ This command is used to delete a configured DHCP Relay Destination IP address or Restarting DHCP relay service... ``` +**config dhcp_relay ipv4 helper add/del** + +This command is used to add or delete IPv4 DHCP Relay helper addresses to a VLAN. Note that more than one DHCP Relay helper addresses can be operated on a VLAN interface. + +- Usage: + ``` + config dhcp_relay ipv4 helper (add | del) + ``` + +- Example: + ``` + admin@sonic:~$ sudo config dhcp_relay ipv4 helper add 1000 7.7.7.7 + Added DHCP relay address [7.7.7.7] to Vlan1000 + Restarting DHCP relay service... + ``` + + ``` + admin@sonic:~$ sudo config dhcp_relay ipv4 helper add 1000 7.7.7.7 1.1.1.1 + Added DHCP relay address [7.7.7.7, 1.1.1.1] to Vlan1000 + Restarting DHCP relay service... + ``` + + ``` + admin@sonic:~$ sudo config dhcp_relay ipv4 helper del 1000 7.7.7.7 + Removed DHCP relay address [7.7.7.7] from Vlan1000 + Restarting DHCP relay service... + ``` + + ``` + admin@sonic:~$ sudo config dhcp_relay ipv4 helper del 1000 7.7.7.7 1.1.1.1 + Removed DHCP relay address [7.7.7.7, 1.1.1.1] from Vlan1000 + Restarting DHCP relay service... + ``` + +**config dhcp_relay ipv6 destination add/del** + +This command is used to add or del IPv6 DHCP Relay destination addresses to a VLAN. Note that more than one DHCP Relay Destination addresses can be operated on a VLAN interface. + +- Usage: + ``` + config dhcp_relay ipv6 destination (add | del) + ``` + +- Example: + ``` + admin@sonic:~$ sudo config dhcp_relay ipv6 destination add 1000 fc02:2000::1 + Added DHCP relay address [fc02:2000::1] to Vlan1000 + Restarting DHCP relay service... + ``` + + ``` + admin@sonic:~$ sudo config dhcp_relay ipv6 destination add 1000 fc02:2000::1 fc02:2000::2 + Added DHCP relay address [fc02:2000::1, fc02:2000::2] to Vlan1000 + Restarting DHCP relay service... + ``` + + ``` + admin@sonic:~$ sudo config dhcp_relay ipv6 destination del 1000 fc02:2000::1 + Removed DHCP relay address [fc02:2000::1] from Vlan1000 + Restarting DHCP relay service... + ``` + + ``` + admin@sonic:~$ sudo config dhcp_relay ipv6 destination del 1000 fc02:2000::1 fc02:2000::2 + Removed DHCP relay address [fc02:2000::1, fc02:2000::2] from Vlan1000 + Restarting DHCP relay service... + ``` + Go Back To [Beginning of the document](#) or [Beginning of this section](#dhcp-relay) From 8239e9ab234000b2c1c0eebe5196c05856a75792 Mon Sep 17 00:00:00 2001 From: kartik-arista <61531803+kartik-arista@users.noreply.github.com> Date: Tue, 31 Jan 2023 10:19:26 -0800 Subject: [PATCH 057/312] Making 'show feature autorestart' more resilient to missing auto_restart config in CONFIG_DB (#2592) Fixes BUG 762723 --- show/feature.py | 4 ++-- tests/feature_test.py | 45 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+), 2 deletions(-) diff --git a/show/feature.py b/show/feature.py index 547d8d17..60ff8032 100644 --- a/show/feature.py +++ b/show/feature.py @@ -156,11 +156,11 @@ def feature_autorestart(db, feature_name): feature_table = db.cfgdb.get_table('FEATURE') if feature_name: if feature_table and feature_name in feature_table: - body.append([feature_name, feature_table[feature_name]['auto_restart']]) + body.append([feature_name, feature_table[ feature_name ].get('auto_restart', 'unknown')]) else: click.echo("Can not find feature {}".format(feature_name)) sys.exit(1) else: for name in natsorted(list(feature_table.keys())): - body.append([name, feature_table[name]['auto_restart']]) + body.append([name, feature_table[ name ].get('auto_restart', 'unknown')]) click.echo(tabulate(body, header)) diff --git a/tests/feature_test.py b/tests/feature_test.py index fa5c2870..8706e2a9 100644 --- a/tests/feature_test.py +++ b/tests/feature_test.py @@ -130,6 +130,32 @@ telemetry enabled """ +show_feature_autorestart_missing_output="""\ +Feature AutoRestart +---------- -------------- +bar unknown +bgp enabled +database always_enabled +dhcp_relay enabled +lldp enabled +nat enabled +pmon enabled +radv enabled +restapi enabled +sflow enabled +snmp enabled +swss enabled +syncd enabled +teamd enabled +telemetry enabled +""" + +show_feature_autorestart_bar_missing_output="""\ +Feature AutoRestart +--------- ------------- +bar unknown +""" + show_feature_bgp_autorestart_output="""\ Feature AutoRestart --------- ------------- @@ -277,6 +303,25 @@ def test_show_unknown_autorestart_status(self, get_cmd_module): print(result.output) assert result.exit_code == 1 + def test_show_feature_autorestart_missing(self, get_cmd_module): + (config, show) = get_cmd_module + db = Db() + dbconn = db.db + db.cfgdb.set_entry("FEATURE", "bar", { "state": "enabled" }) + runner = CliRunner() + + result = runner.invoke(show.cli.commands["feature"].commands["autorestart"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_feature_autorestart_missing_output + + result = runner.invoke(show.cli.commands["feature"].commands["autorestart"], ["bar"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_feature_autorestart_bar_missing_output + def test_config_bgp_feature_state(self, get_cmd_module): (config, show) = get_cmd_module db = Db() From 1b71985e350a3c57b4fb2f4fe83e330fcbeeee31 Mon Sep 17 00:00:00 2001 From: wenyiz2021 <91497961+wenyiz2021@users.noreply.github.com> Date: Wed, 1 Feb 2023 09:33:14 -0800 Subject: [PATCH 058/312] [masic support] 'show run bgp' support for multi-asic (#2427) Support 'show run bgp' for multi-asics Add mock tables and UTs for single-asic, multi-asic, bgp not running cases --- show/main.py | 38 ++- tests/conftest.py | 17 ++ .../asic0/show_not_running_bgp.txt | 1 + tests/mock_tables/asic0/show_run_bgp.txt | 12 + tests/mock_tables/asic1/show_run_bgp.txt | 12 + tests/mock_tables/show_run_bgp.txt | 64 +++++ tests/show_run_bgp_test.py | 228 ++++++++++++++++++ 7 files changed, 368 insertions(+), 4 deletions(-) create mode 100644 tests/mock_tables/asic0/show_not_running_bgp.txt create mode 100644 tests/mock_tables/asic0/show_run_bgp.txt create mode 100644 tests/mock_tables/asic1/show_run_bgp.txt create mode 100644 tests/mock_tables/show_run_bgp.txt create mode 100644 tests/show_run_bgp_test.py diff --git a/show/main.py b/show/main.py index 0c9fd467..e8c607fa 100755 --- a/show/main.py +++ b/show/main.py @@ -1439,10 +1439,40 @@ def ports(portname, verbose): # 'bgp' subcommand ("show runningconfiguration bgp") @runningconfiguration.command() @click.option('--verbose', is_flag=True, help="Enable verbose output") -def bgp(verbose): - """Show BGP running configuration""" - cmd = 'sudo {} -c "show running-config"'.format(constants.RVTYSH_COMMAND) - run_command(cmd, display_cmd=verbose) +@click.option('--namespace', '-n', 'namespace', required=False, default=None, type=str, show_default=False, + help='Option needed for multi-asic only: provide namespace name', + callback=multi_asic_util.multi_asic_namespace_validation_callback) +def bgp(namespace, verbose): + """ + Show BGP running configuration + Note: + multi-asic can run 'show run bgp' and show from all asics, or 'show run bgp -n ' + single-asic only run 'show run bgp', '-n' is not available + """ + + if multi_asic.is_multi_asic(): + if namespace and namespace not in multi_asic.get_namespace_list(): + ctx = click.get_current_context() + ctx.fail("invalid value for -n/--namespace option. provide namespace from list {}".format(multi_asic.get_namespace_list())) + if not multi_asic.is_multi_asic() and namespace: + ctx = click.get_current_context() + ctx.fail("-n/--namespace is not available for single asic") + + output = "" + cmd = "show running-config bgp" + import utilities_common.bgp_util as bgp_util + if multi_asic.is_multi_asic(): + if not namespace: + ns_list = multi_asic.get_namespace_list() + for ns in ns_list: + output += "\n------------Showing running config bgp on {}------------\n".format(ns) + output += bgp_util.run_bgp_show_command(cmd, ns) + else: + output += "\n------------Showing running config bgp on {}------------\n".format(namespace) + output += bgp_util.run_bgp_show_command(cmd, namespace) + else: + output += bgp_util.run_bgp_show_command(cmd) + print(output) # 'interfaces' subcommand ("show runningconfiguration interfaces") diff --git a/tests/conftest.py b/tests/conftest.py index 96b80df3..bf4c2a40 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -169,6 +169,9 @@ def setup_single_bgp_instance(request): elif request.param == 'v6': bgp_mocked_json = os.path.join( test_path, 'mock_tables', 'ipv6_bgp_summary.json') + elif request.param == 'show_run_bgp': + bgp_mocked_json = os.path.join( + test_path, 'mock_tables', 'show_run_bgp.txt') elif request.param == 'ip_route': bgp_mocked_json = 'ip_route.json' elif request.param == 'ip_specific_route': @@ -193,6 +196,13 @@ def mock_show_bgp_summary(vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.RV return mock_frr_data return "" + def mock_show_run_bgp(request): + if os.path.isfile(bgp_mocked_json): + with open(bgp_mocked_json) as json_data: + mock_frr_data = json_data.read() + return mock_frr_data + return "" + def mock_run_bgp_command_for_static(vtysh_cmd, bgp_namespace="", vtysh_shell_cmd=constants.RVTYSH_COMMAND): if vtysh_cmd == "show ip route vrf all static": return config_int_ip_common.show_ip_route_with_static_expected_output @@ -239,6 +249,9 @@ def mock_run_bgp_command(vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.RVT elif request.param == "show_bgp_summary_no_neigh": bgp_util.run_bgp_command = mock.MagicMock( return_value=mock_show_bgp_summary_no_neigh("", "")) + elif request.param.startswith('show_run_bgp'): + bgp_util.run_bgp_command = mock.MagicMock( + return_value=mock_show_run_bgp(request)) else: bgp_util.run_bgp_command = mock.MagicMock( return_value=mock_show_bgp_summary("", "")) @@ -270,6 +283,10 @@ def setup_multi_asic_bgp_instance(request): m_asic_json_file = 'ip_special_recursive_route.json' elif request.param == 'ip_route_summary': m_asic_json_file = 'ip_route_summary.txt' + elif request.param == 'show_run_bgp': + m_asic_json_file = 'show_run_bgp.txt' + elif request.param == 'show_not_running_bgp': + m_asic_json_file = 'show_not_running_bgp.txt' elif request.param.startswith('bgp_v4_network') or \ request.param.startswith('bgp_v6_network') or \ request.param.startswith('bgp_v4_neighbor') or \ diff --git a/tests/mock_tables/asic0/show_not_running_bgp.txt b/tests/mock_tables/asic0/show_not_running_bgp.txt new file mode 100644 index 00000000..b156e857 --- /dev/null +++ b/tests/mock_tables/asic0/show_not_running_bgp.txt @@ -0,0 +1 @@ +Error response from daemon: Container 70e3d3bafd1ab5faf796892acff3e2ccbea3dcd5dcfefcc34f25f7cc916b67bb is not running diff --git a/tests/mock_tables/asic0/show_run_bgp.txt b/tests/mock_tables/asic0/show_run_bgp.txt new file mode 100644 index 00000000..e5c9a998 --- /dev/null +++ b/tests/mock_tables/asic0/show_run_bgp.txt @@ -0,0 +1,12 @@ +neighbor 10.0.0.1 remote-as 65200 +neighbor 10.0.0.1 peer-group TIER2_V4 +neighbor 10.0.0.1 description ARISTA01T2 +neighbor 10.0.0.5 remote-as 65200 +neighbor 10.0.0.5 peer-group TIER2_V4 +neighbor 10.0.0.5 description ARISTA03T2 +neighbor fc00::2 remote-as 65200 +neighbor fc00::2 peer-group TIER2_V6 +neighbor fc00::2 description ARISTA01T2 +neighbor fc00::6 remote-as 65200 +neighbor fc00::6 peer-group TIER2_V6 +neighbor fc00::6 description ARISTA03T2 diff --git a/tests/mock_tables/asic1/show_run_bgp.txt b/tests/mock_tables/asic1/show_run_bgp.txt new file mode 100644 index 00000000..de81748c --- /dev/null +++ b/tests/mock_tables/asic1/show_run_bgp.txt @@ -0,0 +1,12 @@ +neighbor 10.0.0.9 remote-as 65200 +neighbor 10.0.0.9 peer-group TIER2_V4 +neighbor 10.0.0.9 description ARISTA05T2 +neighbor 10.0.0.13 remote-as 65200 +neighbor 10.0.0.13 peer-group TIER2_V4 +neighbor 10.0.0.13 description ARISTA07T2 +neighbor fc00::a remote-as 65200 +neighbor fc00::a peer-group TIER2_V6 +neighbor fc00::a description ARISTA05T2 +neighbor fc00::e remote-as 65200 +neighbor fc00::e peer-group TIER2_V6 +neighbor fc00::e description ARISTA07T2 diff --git a/tests/mock_tables/show_run_bgp.txt b/tests/mock_tables/show_run_bgp.txt new file mode 100644 index 00000000..9a3ae8b1 --- /dev/null +++ b/tests/mock_tables/show_run_bgp.txt @@ -0,0 +1,64 @@ +router bgp 65100 +bgp router-id 10.1.0.32 +bgp log-neighbor-changes +no bgp ebgp-requires-policy +no bgp default ipv4-unicast +bgp graceful-restart restart-time 240 +bgp graceful-restart select-defer-time 45 +bgp graceful-restart +bgp graceful-restart preserve-fw-state +bgp bestpath as-path multipath-relax +neighbor BGPSLBPassive peer-group +neighbor BGPSLBPassive remote-as 65432 +neighbor BGPSLBPassive passive +neighbor BGPSLBPassive ebgp-multihop 255 +neighbor BGPSLBPassive update-source 10.1.0.32 +neighbor BGPVac peer-group +neighbor BGPVac remote-as 65432 +neighbor BGPVac passive +neighbor BGPVac ebgp-multihop 255 +neighbor BGPVac update-source 10.1.0.32 +neighbor PEER_V4 peer-group +neighbor PEER_V6 peer-group +neighbor 10.0.0.57 remote-as 64600 +neighbor 10.0.0.57 peer-group PEER_V4 +neighbor 10.0.0.57 description ARISTA01T1 +neighbor 10.0.0.57 timers 3 10 +neighbor 10.0.0.57 timers connect 10 +neighbor 10.0.0.59 remote-as 64600 +neighbor 10.0.0.59 peer-group PEER_V4 +neighbor 10.0.0.59 description ARISTA02T1 +neighbor 10.0.0.59 timers 3 10 +neighbor 10.0.0.59 timers connect 10 +neighbor 10.0.0.61 remote-as 64600 +neighbor 10.0.0.61 peer-group PEER_V4 +neighbor 10.0.0.61 description ARISTA03T1 +neighbor 10.0.0.61 timers 3 10 +neighbor 10.0.0.61 timers connect 10 +neighbor 10.0.0.63 remote-as 64600 +neighbor 10.0.0.63 peer-group PEER_V4 +neighbor 10.0.0.63 description ARISTA04T1 +neighbor 10.0.0.63 timers 3 10 +neighbor 10.0.0.63 timers connect 10 +neighbor fc00::72 remote-as 64600 +neighbor fc00::72 peer-group PEER_V6 +neighbor fc00::72 description ARISTA01T1 +neighbor fc00::72 timers 3 10 +neighbor fc00::72 timers connect 10 +neighbor fc00::76 remote-as 64600 +neighbor fc00::76 peer-group PEER_V6 +neighbor fc00::76 description ARISTA02T1 +neighbor fc00::76 timers 3 10 +neighbor fc00::76 timers connect 10 +neighbor fc00::7a remote-as 64600 +neighbor fc00::7a peer-group PEER_V6 +neighbor fc00::7a description ARISTA03T1 +neighbor fc00::7a timers 3 10 +neighbor fc00::7a timers connect 10 +neighbor fc00::7e remote-as 64600 +neighbor fc00::7e peer-group PEER_V6 +neighbor fc00::7e description ARISTA04T1 +neighbor fc00::7e timers 3 10 +neighbor fc00::7e timers connect 10 +bgp listen range 10.255.0.0/25 peer-group BGPSLBPassive +bgp listen range 192.168.0.0/21 peer-group BGPVac diff --git a/tests/show_run_bgp_test.py b/tests/show_run_bgp_test.py new file mode 100644 index 00000000..4d3ff843 --- /dev/null +++ b/tests/show_run_bgp_test.py @@ -0,0 +1,228 @@ +import os +import pytest +import importlib +from click.testing import CliRunner + +from utilities_common import multi_asic +from utilities_common import constants + +from unittest.mock import patch + +from sonic_py_common import device_info +import show.main as show + + +show_run_bgp_sasic = \ +"""router bgp 65100 +bgp router-id 10.1.0.32 +bgp log-neighbor-changes +no bgp ebgp-requires-policy +no bgp default ipv4-unicast +bgp graceful-restart restart-time 240 +bgp graceful-restart select-defer-time 45 +bgp graceful-restart +bgp graceful-restart preserve-fw-state +bgp bestpath as-path multipath-relax +neighbor BGPSLBPassive peer-group +neighbor BGPSLBPassive remote-as 65432 +neighbor BGPSLBPassive passive +neighbor BGPSLBPassive ebgp-multihop 255 +neighbor BGPSLBPassive update-source 10.1.0.32 +neighbor BGPVac peer-group +neighbor BGPVac remote-as 65432 +neighbor BGPVac passive +neighbor BGPVac ebgp-multihop 255 +neighbor BGPVac update-source 10.1.0.32 +neighbor PEER_V4 peer-group +neighbor PEER_V6 peer-group +neighbor 10.0.0.57 remote-as 64600 +neighbor 10.0.0.57 peer-group PEER_V4 +neighbor 10.0.0.57 description ARISTA01T1 +neighbor 10.0.0.57 timers 3 10 +neighbor 10.0.0.57 timers connect 10 +neighbor 10.0.0.59 remote-as 64600 +neighbor 10.0.0.59 peer-group PEER_V4 +neighbor 10.0.0.59 description ARISTA02T1 +neighbor 10.0.0.59 timers 3 10 +neighbor 10.0.0.59 timers connect 10 +neighbor 10.0.0.61 remote-as 64600 +neighbor 10.0.0.61 peer-group PEER_V4 +neighbor 10.0.0.61 description ARISTA03T1 +neighbor 10.0.0.61 timers 3 10 +neighbor 10.0.0.61 timers connect 10 +neighbor 10.0.0.63 remote-as 64600 +neighbor 10.0.0.63 peer-group PEER_V4 +neighbor 10.0.0.63 description ARISTA04T1 +neighbor 10.0.0.63 timers 3 10 +neighbor 10.0.0.63 timers connect 10 +neighbor fc00::72 remote-as 64600 +neighbor fc00::72 peer-group PEER_V6 +neighbor fc00::72 description ARISTA01T1 +neighbor fc00::72 timers 3 10 +neighbor fc00::72 timers connect 10 +neighbor fc00::76 remote-as 64600 +neighbor fc00::76 peer-group PEER_V6 +neighbor fc00::76 description ARISTA02T1 +neighbor fc00::76 timers 3 10 +neighbor fc00::76 timers connect 10 +neighbor fc00::7a remote-as 64600 +neighbor fc00::7a peer-group PEER_V6 +neighbor fc00::7a description ARISTA03T1 +neighbor fc00::7a timers 3 10 +neighbor fc00::7a timers connect 10 +neighbor fc00::7e remote-as 64600 +neighbor fc00::7e peer-group PEER_V6 +neighbor fc00::7e description ARISTA04T1 +neighbor fc00::7e timers 3 10 +neighbor fc00::7e timers connect 10 +bgp listen range 10.255.0.0/25 peer-group BGPSLBPassive +bgp listen range 192.168.0.0/21 peer-group BGPVac + +""" + +show_run_bgp_masic = \ +""" +------------Showing running config bgp on asic0------------ +neighbor 10.0.0.1 remote-as 65200 +neighbor 10.0.0.1 peer-group TIER2_V4 +neighbor 10.0.0.1 description ARISTA01T2 +neighbor 10.0.0.5 remote-as 65200 +neighbor 10.0.0.5 peer-group TIER2_V4 +neighbor 10.0.0.5 description ARISTA03T2 +neighbor fc00::2 remote-as 65200 +neighbor fc00::2 peer-group TIER2_V6 +neighbor fc00::2 description ARISTA01T2 +neighbor fc00::6 remote-as 65200 +neighbor fc00::6 peer-group TIER2_V6 +neighbor fc00::6 description ARISTA03T2 + +------------Showing running config bgp on asic1------------ +neighbor 10.0.0.9 remote-as 65200 +neighbor 10.0.0.9 peer-group TIER2_V4 +neighbor 10.0.0.9 description ARISTA05T2 +neighbor 10.0.0.13 remote-as 65200 +neighbor 10.0.0.13 peer-group TIER2_V4 +neighbor 10.0.0.13 description ARISTA07T2 +neighbor fc00::a remote-as 65200 +neighbor fc00::a peer-group TIER2_V6 +neighbor fc00::a description ARISTA05T2 +neighbor fc00::e remote-as 65200 +neighbor fc00::e peer-group TIER2_V6 +neighbor fc00::e description ARISTA07T2 + +""" + +show_run_bgp_masic_asic0 = \ +""" +------------Showing running config bgp on asic0------------ +neighbor 10.0.0.1 remote-as 65200 +neighbor 10.0.0.1 peer-group TIER2_V4 +neighbor 10.0.0.1 description ARISTA01T2 +neighbor 10.0.0.5 remote-as 65200 +neighbor 10.0.0.5 peer-group TIER2_V4 +neighbor 10.0.0.5 description ARISTA03T2 +neighbor fc00::2 remote-as 65200 +neighbor fc00::2 peer-group TIER2_V6 +neighbor fc00::2 description ARISTA01T2 +neighbor fc00::6 remote-as 65200 +neighbor fc00::6 peer-group TIER2_V6 +neighbor fc00::6 description ARISTA03T2 + +""" + +show_run_bgp_not_running = \ +""" +------------Showing running config bgp on asic0------------ +Error response from daemon: Container 70e3d3bafd1ab5faf796892acff3e2ccbea3dcd5dcfefcc34f25f7cc916b67bb is not running + +""" + +class TestShowRunBgpSingleAsic(object): + @classmethod + def setup_class(cls): + print("SETUP") + from .mock_tables import mock_single_asic + importlib.reload(mock_single_asic) + from .mock_tables import dbconnector + dbconnector.load_namespace_config() + + @pytest.mark.parametrize('setup_single_bgp_instance', + [ + 'show_run_bgp', + ], + indirect=['setup_single_bgp_instance']) + + def test_show_run_bgp_single(self, + setup_single_bgp_instance): + runner = CliRunner() + result = runner.invoke(show.cli.commands["runningconfiguration"].commands["bgp"], []) + print("{}".format(result.output)) + assert result.exit_code == 0 + assert result.output == show_run_bgp_sasic + + @classmethod + def teardown_class(cls): + print("TEARDOWN") + os.environ['UTILITIES_UNIT_TESTING'] = "0" + from .mock_tables import mock_single_asic + importlib.reload(mock_single_asic) + from .mock_tables import dbconnector + dbconnector.load_database_config() + + +class TestShowRunBgpMultiAsic(object): + @classmethod + def setup_class(cls): + print("SETUP") + from .mock_tables import mock_multi_asic + importlib.reload(mock_multi_asic) + from .mock_tables import dbconnector + dbconnector.load_namespace_config() + + @pytest.mark.parametrize('setup_multi_asic_bgp_instance', + [ + 'show_run_bgp', + ], + indirect=['setup_multi_asic_bgp_instance']) + def test_show_run_bgp_all_asics(self, + setup_multi_asic_bgp_instance): + runner = CliRunner() + result = runner.invoke(show.cli.commands["runningconfiguration"].commands["bgp"], []) + print("{}".format(result.output)) + assert result.exit_code == 0 + assert result.output == show_run_bgp_masic + + + @pytest.mark.parametrize('setup_multi_asic_bgp_instance', + [ + 'show_run_bgp', + ], + indirect=['setup_multi_asic_bgp_instance']) + def test_show_run_bgp_asic0(self, + setup_multi_asic_bgp_instance): + runner = CliRunner() + result = runner.invoke(show.cli.commands["runningconfiguration"].commands["bgp"], ["-nasic0"]) + print("{}".format(result.output)) + assert result.exit_code == 0 + assert result.output == show_run_bgp_masic_asic0 + + @pytest.mark.parametrize('setup_multi_asic_bgp_instance', + [ + 'show_not_running_bgp', + ], + indirect=['setup_multi_asic_bgp_instance']) + def test_bgp0_not_running(self, + setup_multi_asic_bgp_instance): + runner = CliRunner() + result = runner.invoke(show.cli.commands["runningconfiguration"].commands["bgp"], ["-nasic0"]) + print("{}".format(result.output)) + assert result.exit_code == 0 + assert result.output == show_run_bgp_not_running + + @classmethod + def teardown_class(cls): + print("TEARDOWN") + from .mock_tables import mock_single_asic + importlib.reload(mock_single_asic) + from .mock_tables import dbconnector + dbconnector.load_database_config From 79ffd9fde54aa8247714ef8734a22c3ece018cac Mon Sep 17 00:00:00 2001 From: longhuan-cisco <84595962+longhuan-cisco@users.noreply.github.com> Date: Wed, 1 Feb 2023 11:12:41 -0800 Subject: [PATCH 059/312] Add Transceiver PM basic CLI support to show output from TRANSCEIVER_PM table for ZR (#2615) * Transceiver PM basic CLI support to show output from TRANSCEIVER_PM table * Fix alert typo * Fix display format and add cd short link * Add doc for pm * Update Command-Reference.md --- doc/Command-Reference.md | 26 +++++- scripts/sfpshow | 129 ++++++++++++++++++++++++++++ show/interfaces/__init__.py | 23 +++++ tests/mock_tables/state_db.json | 146 ++++++++++++++++++++++++++++++++ tests/sfp_test.py | 57 +++++++++++-- 5 files changed, 373 insertions(+), 8 deletions(-) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index f2a4ada1..6882e48e 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -927,7 +927,7 @@ This command displays information for all the interfaces for the transceiver req - Usage: ``` - show interfaces transceiver (eeprom [-d|--dom] | lpmode | presence | error-status [-hw|--fetch-from-hardware]) [] + show interfaces transceiver (eeprom [-d|--dom] | lpmode | presence | error-status [-hw|--fetch-from-hardware] | pm) [] ``` - Example (Decode and display information stored on the EEPROM of SFP transceiver connected to Ethernet0): @@ -990,6 +990,30 @@ This command displays information for all the interfaces for the transceiver req Ethernet100 OK ``` +- Example (Display performance monitoring info of SFP transceiver connected to Ethernet100): + ``` + admin@sonic:~$ show interfaces transceiver pm Ethernet100 + Ethernet100: + Parameter Unit Min Avg Max Threshold Threshold Threshold Threshold Threshold Threshold + High High Crossing Low Low Crossing + Alarm Warning Alert-High Alarm Warning Alert-Low + --------------- ------ -------- -------- -------- ----------- ----------- ------------ ----------- ----------- ----------- + Tx Power dBm -8.22 -8.23 -8.24 -5.0 -6.0 False -16.99 -16.003 False + Rx Total Power dBm -10.61 -10.62 -10.62 2.0 0.0 False -21.0 -18.0 False + Rx Signal Power dBm -40.0 0.0 40.0 13.0 10.0 True -18.0 -15.0 True + CD-short link ps/nm 0.0 0.0 0.0 1000.0 500.0 False -1000.0 -500.0 False + PDL dB 0.5 0.6 0.6 4.0 4.0 False 0.0 0.0 False + OSNR dB 36.5 36.5 36.5 99.0 99.0 False 0.0 0.0 False + eSNR dB 30.5 30.5 30.5 99.0 99.0 False 0.0 0.0 False + CFO MHz 54.0 70.0 121.0 3800.0 3800.0 False -3800.0 -3800.0 False + DGD ps 5.37 5.56 5.81 7.0 7.0 False 0.0 0.0 False + SOPMD ps^2 0.0 0.0 0.0 655.35 655.35 False 0.0 0.0 False + SOP ROC krad/s 1.0 1.0 2.0 N/A N/A N/A N/A N/A N/A + Pre-FEC BER N/A 4.58E-04 4.66E-04 5.76E-04 1.25E-02 1.10E-02 0.0 0.0 0.0 0.0 + Post-FEC BER N/A 0.0 0.0 0.0 1000.0 1.0 False 0.0 0.0 False + EVM % 100.0 100.0 100.0 N/A N/A N/A N/A N/A N/A + ``` + Go Back To [Beginning of the document](#) or [Beginning of this section](#basic-show-commands) ## AAA & TACACS+ diff --git a/scripts/sfpshow b/scripts/sfpshow index 07876889..7b3c0cac 100755 --- a/scripts/sfpshow +++ b/scripts/sfpshow @@ -202,6 +202,36 @@ QSFP_DD_DOM_VALUE_UNIT_MAP = { 'voltage': 'Volts' } +ZR_PM_HEADER = ['Parameter', 'Unit', 'Min', 'Avg', 'Max', + 'Threshold\nHigh\nAlarm', 'Threshold\nHigh\nWarning', + 'Threshold\nCrossing\nAlert-High', + 'Threshold\nLow\nAlarm', 'Threshold\nLow\nWarning', + 'Threshold\nCrossing\nAlert-Low'] + +ZR_PM_VALUE_KEY_SUFFIXS = ['min', 'avg', 'max'] + +ZR_PM_THRESHOLD_KEY_SUFFIXS = ['highalarm', + 'highwarning', 'lowalarm', 'lowwarning'] + +# mapping from parameter_name to [unit, parameter_key_prefix] +ZR_PM_INFO_MAP = { + 'Tx Power': ['dBm', 'tx_power'], + 'Rx Total Power': ['dBm', 'rx_tot_power'], + 'Rx Signal Power': ['dBm', 'rx_sig_power'], + 'CD-short link': ['ps/nm', 'cd'], + 'PDL': ['dB', 'pdl'], + 'OSNR': ['dB', 'osnr'], + 'eSNR': ['dB', 'esnr'], + 'CFO': ['MHz', 'cfo'], + 'DGD': ['ps', 'dgd'], + 'SOPMD': ['ps^2', 'sopmd'], + 'SOP ROC': ['krad/s', 'soproc'], + 'Pre-FEC BER': ['N/A', 'prefec_ber'], + 'Post-FEC BER': ['N/A', 'uncorr_frames'], + 'EVM': ['%', 'evm'] +} + +ZR_PM_NOT_APPLICABLE_STR = 'Transceiver performance monitoring not applicable' def display_invalid_intf_eeprom(intf_name): output = intf_name + ': SFP EEPROM Not detected\n' @@ -215,6 +245,10 @@ def display_invalid_intf_presence(intf_name): click.echo(tabulate(port_table, header)) +def display_invalid_intf_pm(intf_name): + output = intf_name + ': %s\n' % ZR_PM_NOT_APPLICABLE_STR + click.echo(output) + class SFPShow(object): def __init__(self, intf_name, namespace_option, dump_dom=False): super(SFPShow, self).__init__() @@ -223,6 +257,7 @@ class SFPShow(object): self.dump_dom = dump_dom self.table = [] self.intf_eeprom: Dict[str, str] = {} + self.intf_pm: Dict[str, str] = {} self.multi_asic = multi_asic_util.MultiAsic(namespace_option=namespace_option) # Convert dict values to cli output string @@ -402,6 +437,66 @@ class SFPShow(object): return output + def convert_pm_prefix_to_threshold_prefix(self, pm_prefix): + if pm_prefix == 'uncorr_frames': + return 'postfecber' + elif pm_prefix == 'cd': + return 'cdshort' + else: + return pm_prefix.replace('_', '') + + def beautify_pm_field(self, prefix, field): + if field is None: + return 'N/A' + elif prefix in {'prefec_ber'}: + return "{:.2E}".format(field) if field != 0 else '0.0' + else: + return str(field) + + def convert_interface_sfp_pm_to_cli_output_string(self, state_db, interface_name): + sfp_pm_dict = state_db.get_all( + self.db.STATE_DB, 'TRANSCEIVER_PM|{}'.format(interface_name)) + sfp_threshold_dict = state_db.get_all( + state_db.STATE_DB, 'TRANSCEIVER_DOM_THRESHOLD|{}'.format(interface_name)) + table = [] + indent_num = 4 + indent = ' ' * indent_num + if sfp_pm_dict: + output = '\n' + indent + for param_name, (unit, prefix) in ZR_PM_INFO_MAP.items(): + row = [param_name, unit] + values = [] + for suffix in ZR_PM_VALUE_KEY_SUFFIXS: + key = prefix + '_' + suffix + values.append( + float(sfp_pm_dict[key]) if key in sfp_pm_dict else None) + + thresholds = [] + for suffix in ZR_PM_THRESHOLD_KEY_SUFFIXS: + key = self.convert_pm_prefix_to_threshold_prefix( + prefix) + suffix + thresholds.append( + float(sfp_threshold_dict[key]) if key in sfp_threshold_dict else None) + + tca_high, tca_low = None, None + if values[2] is not None and thresholds[0] is not None: + # TCA-High: max > high_alarm + tca_high = values[2] > thresholds[0] + if values[0] is not None and thresholds[2] is not None: + # TCA-low: min < low_alarm + tca_low = values[0] < thresholds[2] + + for field in values + thresholds[:2] + [tca_high] + thresholds[2:] + [tca_low]: + row.append(self.beautify_pm_field(prefix, field)) + table.append(row) + + output += tabulate(table, + ZR_PM_HEADER, disable_numparse=True).replace('\n', '\n' + indent) + output += '\n' + else: + output = ZR_PM_NOT_APPLICABLE_STR + '\n' + return output + @multi_asic_util.run_on_multi_asic def get_eeprom(self): if self.intf_name is not None: @@ -441,6 +536,19 @@ class SFPShow(object): self.table += port_table + @multi_asic_util.run_on_multi_asic + def get_pm(self): + if self.intf_name is not None: + self.intf_pm[self.intf_name] = self.convert_interface_sfp_pm_to_cli_output_string( + self.db, self.intf_name) + else: + port_table_keys = self.db.keys(self.db.APPL_DB, "PORT_TABLE:*") + for i in port_table_keys: + interface = re.split(':', i, maxsplit=1)[-1].strip() + if interface and interface.startswith(front_panel_prefix()) and not interface.startswith((backplane_prefix(), inband_prefix(), recirc_prefix())): + self.intf_pm[interface] = self.convert_interface_sfp_pm_to_cli_output_string( + self.db, interface) + def display_eeprom(self): click.echo("\n".join([f"{k}: {v}" for k, v in natsorted(self.intf_eeprom.items())])) @@ -449,6 +557,9 @@ class SFPShow(object): sorted_port_table = natsorted(self.table) click.echo(tabulate(sorted_port_table, header)) + def display_pm(self): + click.echo( + "\n".join([f"{k}: {v}" for k, v in natsorted(self.intf_pm.items())])) # This is our main entrypoint - the main 'sfpshow' command @@ -494,6 +605,24 @@ def presence(port, namespace): sfp.get_presence() sfp.display_presence() +# 'pm' subcommand + + +@cli.command() +@click.option('-p', '--port', metavar='', help="Display SFP PM for port only") +@click.option('-n', '--namespace', default=None, help="Display interfaces for specific namespace") +def pm(port, namespace): + if port and multi_asic.is_multi_asic() and namespace is None: + try: + namespace = multi_asic.get_namespace_for_port(port) + except Exception: + display_invalid_intf_pm(port) + sys.exit(1) + + sfp = SFPShow(port, namespace) + sfp.get_pm() + sfp.display_pm() + if __name__ == "__main__": cli() diff --git a/show/interfaces/__init__.py b/show/interfaces/__init__.py index 3e82a68e..0b172d69 100644 --- a/show/interfaces/__init__.py +++ b/show/interfaces/__init__.py @@ -446,6 +446,29 @@ def eeprom(interfacename, dump_dom, namespace, verbose): clicommon.run_command(cmd, display_cmd=verbose) +@transceiver.command() +@click.argument('interfacename', required=False) +@click.option('--namespace', '-n', 'namespace', default=None, show_default=True, + type=click.Choice(multi_asic_util.multi_asic_ns_choices()), help='Namespace name or all') +@click.option('--verbose', is_flag=True, help="Enable verbose output") +def pm(interfacename, namespace, verbose): + """Show interface transceiver performance monitoring information""" + + ctx = click.get_current_context() + + cmd = "sfpshow pm" + + if interfacename is not None: + interfacename = try_convert_interfacename_from_alias( + ctx, interfacename) + + cmd += " -p {}".format(interfacename) + + if namespace is not None: + cmd += " -n {}".format(namespace) + + clicommon.run_command(cmd, display_cmd=verbose) + @transceiver.command() @click.argument('interfacename', required=False) @click.option('--verbose', is_flag=True, help="Enable verbose output") diff --git a/tests/mock_tables/state_db.json b/tests/mock_tables/state_db.json index 12552997..9fda6fa5 100644 --- a/tests/mock_tables/state_db.json +++ b/tests/mock_tables/state_db.json @@ -227,6 +227,152 @@ "nominal_bit_rate": "Not supported for CMIS cables", "application_advertisement": "{1: {'host_electrical_interface_id': '400G CR8', 'module_media_interface_id': 'Copper cable', 'media_lane_count': 8, 'host_lane_count': 8, 'host_lane_assignment_options': 1, 'media_lane_assignment_options': 2}, 2: {'host_electrical_interface_id': '200GBASE-CR4 (Clause 136)'}}" }, + "TRANSCEIVER_DOM_THRESHOLD|Ethernet44":{ + "temphighalarm": "80.0", + "templowalarm": "-5.0", + "temphighwarning": "75.0", + "templowwarning": "0.0", + "vcchighalarm": "3.45", + "vcclowalarm": "3.1", + "vcchighwarning": "3.4", + "vcclowwarning": "3.15", + "rxpowerhighalarm": "2.0", + "rxpowerlowalarm": "-21.024", + "rxpowerhighwarning": "0.0", + "rxpowerlowwarning": "-18.013", + "txpowerhighalarm": "-5.0", + "txpowerlowalarm": "-16.99", + "txpowerhighwarning": "-6.0", + "txpowerlowwarning": "-16.003", + "txbiashighalarm": "450.0", + "txbiaslowalarm": "100.0", + "txbiashighwarning": "420.0", + "txbiaslowwarning": "110.0", + "lasertemphighalarm": "80.0", + "lasertemplowalarm": "-5.0", + "lasertemphighwarning": "75.0", + "lasertemplowwarning": "0.0", + "prefecberhighalarm": "0.0125", + "prefecberlowalarm": "0.0", + "prefecberhighwarning": "0.011000000000000001", + "prefecberlowwarning": "0.0", + "postfecberhighalarm": "1000", + "postfecberlowalarm": "0.0", + "postfecberhighwarning": "1.0", + "postfecberlowwarning": "0.0", + "biasxihighalarm": "99.00053406576639", + "biasxilowalarm": "0.9994659342336156", + "biasxihighwarning": "94.99961852445259", + "biasxilowwarning": "5.000381475547417", + "biasxqhighalarm": "99.00053406576639", + "biasxqlowalarm": "0.9994659342336156", + "biasxqhighwarning": "94.99961852445259", + "biasxqlowwarning": "5.000381475547417", + "biasxphighalarm": "99.00053406576639", + "biasxplowalarm": "0.9994659342336156", + "biasxphighwarning": "94.99961852445259", + "biasxplowwarning": "5.000381475547417", + "biasyihighalarm": "99.00053406576639", + "biasyilowalarm": "0.9994659342336156", + "biasyihighwarning": "94.99961852445259", + "biasyilowwarning": "5.000381475547417", + "biasyqhighalarm": "99.00053406576639", + "biasyqlowalarm": "0.9994659342336156", + "biasyqhighwarning": "94.99961852445259", + "biasyqlowwarning": "5.000381475547417", + "biasyphighalarm": "99.00053406576639", + "biasyplowalarm": "0.9994659342336156", + "biasyphighwarning": "94.99961852445259", + "biasyplowwarning": "5.000381475547417", + "cdshorthighalarm": "1000", + "cdshortlowalarm": "-1000", + "cdshorthighwarning": "500", + "cdshortlowwarning": "-500", + "cdlonghighalarm": "400000", + "cdlonglowalarm": "-400000", + "cdlonghighwarning": "200000", + "cdlonglowwarning": "-200000", + "dgdhighalarm": "7.0", + "dgdlowalarm": "0.0", + "dgdhighwarning": "7.0", + "dgdlowwarning": "0.0", + "sopmdhighalarm": "655.35", + "sopmdlowalarm": "0.0", + "sopmdhighwarning": "655.35", + "sopmdlowwarning": "0.0", + "pdlhighalarm": "4.0", + "pdllowalarm": "0.0", + "pdlhighwarning": "4.0", + "pdllowwarning": "0.0", + "osnrhighalarm": "99.0", + "osnrlowalarm": "0.0", + "osnrhighwarning": "99.0", + "osnrlowwarning": "0.0", + "esnrhighalarm": "99.0", + "esnrlowalarm": "0.0", + "esnrhighwarning": "99.0", + "esnrlowwarning": "0.0", + "cfohighalarm": "3800", + "cfolowalarm": "-3800", + "cfohighwarning": "3800", + "cfolowwarning": "-3800", + "txcurrpowerhighalarm": "-5.0", + "txcurrpowerlowalarm": "-17.0", + "txcurrpowerhighwarning": "-6.0", + "txcurrpowerlowwarning": "-16.0", + "rxtotpowerhighalarm": "2.0", + "rxtotpowerlowalarm": "-21.0", + "rxtotpowerhighwarning": "0.0", + "rxtotpowerlowwarning": "-18.0", + "rxsigpowerhighalarm": "13.0", + "rxsigpowerlowalarm": "-18.0", + "rxsigpowerhighwarning": "10.0", + "rxsigpowerlowwarning": "-15.0" + }, + "TRANSCEIVER_PM|Ethernet44":{ + "prefec_ber_avg": "0.00046578129838019075", + "prefec_ber_min": "0.00045750117895600233", + "prefec_ber_max": "0.000575639239547097", + "uncorr_frames_avg": "0.0", + "uncorr_frames_min": "0.0", + "uncorr_frames_max": "0.0", + "cd_avg": "0", + "cd_min": "0", + "cd_max": "0", + "dgd_avg": "5.56", + "dgd_min": "5.37", + "dgd_max": "5.81", + "sopmd_avg": "0.0", + "sopmd_min": "0.0", + "sopmd_max": "0.0", + "pdl_avg": "0.6", + "pdl_min": "0.5", + "pdl_max": "0.6", + "osnr_avg": "36.5", + "osnr_min": "36.5", + "osnr_max": "36.5", + "esnr_avg": "30.5", + "esnr_min": "30.5", + "esnr_max": "30.5", + "cfo_avg": "70", + "cfo_min": "54", + "cfo_max": "121", + "evm_avg": "100.0", + "evm_min": "100.0", + "evm_max": "100.0", + "soproc_avg": "1", + "soproc_min": "1", + "soproc_max": "2", + "tx_power_avg": "-8.23", + "tx_power_min": "-8.22", + "tx_power_max": "-8.24", + "rx_tot_power_avg": "-10.62", + "rx_tot_power_min": "-10.61", + "rx_tot_power_max": "-10.62", + "rx_sig_power_avg": "0", + "rx_sig_power_min": "-40", + "rx_sig_power_max": "40" + }, "TRANSCEIVER_STATUS|Ethernet0": { "status": "67", "error": "Blocking Error|High temperature" diff --git a/tests/sfp_test.py b/tests/sfp_test.py index 6d5d9fa7..5e2c7426 100644 --- a/tests/sfp_test.py +++ b/tests/sfp_test.py @@ -193,6 +193,28 @@ Vendor SN: INKAO2900002A """ +test_qsfp_dd_pm_output = """\ +Ethernet44: + Parameter Unit Min Avg Max Threshold Threshold Threshold Threshold Threshold Threshold + High High Crossing Low Low Crossing + Alarm Warning Alert-High Alarm Warning Alert-Low + --------------- ------ -------- -------- -------- ----------- ----------- ------------ ----------- ----------- ----------- + Tx Power dBm -8.22 -8.23 -8.24 -5.0 -6.0 False -16.99 -16.003 False + Rx Total Power dBm -10.61 -10.62 -10.62 2.0 0.0 False -21.0 -18.0 False + Rx Signal Power dBm -40.0 0.0 40.0 13.0 10.0 True -18.0 -15.0 True + CD-short link ps/nm 0.0 0.0 0.0 1000.0 500.0 False -1000.0 -500.0 False + PDL dB 0.5 0.6 0.6 4.0 4.0 False 0.0 0.0 False + OSNR dB 36.5 36.5 36.5 99.0 99.0 False 0.0 0.0 False + eSNR dB 30.5 30.5 30.5 99.0 99.0 False 0.0 0.0 False + CFO MHz 54.0 70.0 121.0 3800.0 3800.0 False -3800.0 -3800.0 False + DGD ps 5.37 5.56 5.81 7.0 7.0 False 0.0 0.0 False + SOPMD ps^2 0.0 0.0 0.0 655.35 655.35 False 0.0 0.0 False + SOP ROC krad/s 1.0 1.0 2.0 N/A N/A N/A N/A N/A N/A + Pre-FEC BER N/A 4.58E-04 4.66E-04 5.76E-04 1.25E-02 1.10E-02 0.0 0.0 0.0 0.0 + Post-FEC BER N/A 0.0 0.0 0.0 1000.0 1.0 False 0.0 0.0 False + EVM % 100.0 100.0 100.0 N/A N/A N/A N/A N/A N/A +""" + test_sfp_eeprom_dom_all_output = """\ Ethernet0: SFP EEPROM detected Application Advertisement: N/A @@ -341,6 +363,14 @@ Ethernet64 Present """ +test_qsfp_dd_pm_all_output = """\ +Ethernet0: Transceiver performance monitoring not applicable + +Ethernet4: Transceiver performance monitoring not applicable + +Ethernet64: Transceiver performance monitoring not applicable +""" + class TestSFP(object): @classmethod def setup_class(cls): @@ -441,6 +471,17 @@ def test_rj45_eeprom(self): expected = "Ethernet36: SFP EEPROM is not applicable for RJ45 port" assert result_lines == expected + def test_qsfp_dd_pm(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["pm"], ["Ethernet44"]) + assert result.exit_code == 0 + assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_qsfp_dd_pm_output + + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["pm"], ["Ethernet200"]) + result_lines = result.output.strip('\n') + expected = "Ethernet200: Transceiver performance monitoring not applicable" + assert result_lines == expected + @classmethod def teardown_class(cls): print("TEARDOWN") @@ -497,15 +538,11 @@ def test_sfp_eeprom_with_ns(self): expected = "Ethernet200: SFP EEPROM Not detected" assert result_lines == expected - def test_sfp_eeprom_with_ns(self): + def test_qsfp_dd_pm_with_ns(self): runner = CliRunner() - result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ["Ethernet0 -n asic0"]) - assert result.exit_code == 0 - assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_sfp_eeprom_output - - result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ["Ethernet200 -n asic0"]) + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["pm"], ["Ethernet0 -n asic0"]) result_lines = result.output.strip('\n') - expected = "Ethernet200: SFP EEPROM Not detected" + expected = "Ethernet0: Transceiver performance monitoring not applicable" assert result_lines == expected def test_sfp_eeprom_all(self): @@ -527,6 +564,12 @@ def test_is_rj45_port(self): sys.modules.pop('sonic_platform') assert platform_sfputil_helper.is_rj45_port("Ethernet0") == False + def test_qsfp_dd_pm_all(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["pm"]) + assert result.exit_code == 0 + assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_qsfp_dd_pm_all_output + @classmethod def teardown_class(cls): print("TEARDOWN") From 5d23934f93c9795d3f2154da83b9ed2579029d71 Mon Sep 17 00:00:00 2001 From: jfeng-arista <98421150+jfeng-arista@users.noreply.github.com> Date: Wed, 1 Feb 2023 11:29:49 -0800 Subject: [PATCH 060/312] [chassis][voq] Add asic id for linecards so "show fabric counters queue/port" can work. (#2499) * Add asic id for linecards so "show fabric counters queue/port" can work. * Add test coverage --------- Signed-off-by: Jie Feng --- scripts/fabricstat | 20 +++-- tests/fabricstat_test.py | 30 +++++++ tests/mock_tables/counters_db.json | 140 +++++++++++++++++++++++++++++ tests/mock_tables/state_db.json | 34 +++++++ 4 files changed, 218 insertions(+), 6 deletions(-) diff --git a/scripts/fabricstat b/scripts/fabricstat index e5c7d09f..fcc0983a 100755 --- a/scripts/fabricstat +++ b/scripts/fabricstat @@ -14,7 +14,7 @@ import utilities_common.multi_asic as multi_asic_util # mock the redis for unit test purposes # try: - if os.environ["UTILITIES_UNIT_TESTING"] == "2": + if os.environ["UTILITIES_UNIT_TESTING"] == "1" or os.environ["UTILITIES_UNIT_TESTING"] == "2": modules_path = os.path.join(os.path.dirname(__file__), "..") tests_path = os.path.join(modules_path, "tests") sys.path.insert(0, modules_path) @@ -122,17 +122,21 @@ class FabricPortStat(FabricStat): table = [] header = None - asic = multi_asic.get_asic_id_from_name(self.namespace) + # Default ASIC name is 0 for single-ASIC systems. For multi-ASIC systems, + # derive name from namespace. + asic_name = '0' + if self.namespace: + asic_name = multi_asic.get_asic_id_from_name(self.namespace) for key, data in cnstat_dict.items(): port_id = key[len(PORT_NAME_PREFIX):] if errors_only: header = portstat_header_errors_only - table.append((asic, port_id, self.get_port_state(key), + table.append((asic_name, port_id, self.get_port_state(key), data.crc, data.fec_correctable, data.fec_uncorrectable, data.symbol_err)) else: header = portstat_header_all - table.append((asic, port_id, self.get_port_state(key), + 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)) @@ -168,11 +172,15 @@ class FabricQueueStat(FabricStat): return table = [] - asic = multi_asic.get_asic_id_from_name(self.namespace) + # Default ASIC name is 0 for single-ASIC systems. For multi-ASIC systems, + # derive name from namespace. + asic_name = '0' + if self.namespace: + asic_name = multi_asic.get_asic_id_from_name(self.namespace) for key, data in cnstat_dict.items(): port_name, queue_id = key.split(':') port_id = port_name[len(PORT_NAME_PREFIX):] - table.append((asic, port_id, self.get_port_state(port_name), queue_id, + table.append((asic_name, port_id, self.get_port_state(port_name), queue_id, data.curbyte, data.curlevel, data.watermarklevel)) print(tabulate(table, queuestat_header, tablefmt='simple', stralign='right')) diff --git a/tests/fabricstat_test.py b/tests/fabricstat_test.py index fb76bb41..7c2174b7 100644 --- a/tests/fabricstat_test.py +++ b/tests/fabricstat_test.py @@ -120,6 +120,36 @@ 7 0 93 up """ +class TestFabricStat(object): + @classmethod + def setup_class(cls): + print("SETUP") + os.environ["PATH"] += os.pathsep + scripts_path + os.environ["UTILITIES_UNIT_TESTING"] = "1" + + def test_single_show_fabric_counters(self): + 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') + print("return_code: {}".format(return_code)) + print("result = {}".format(result)) + assert return_code == 0 + assert result == multi_asic_fabric_counters_asic0 + + @classmethod + def teardown_class(cls): + print("TEARDOWN") + os.environ["PATH"] = os.pathsep.join( + os.environ["PATH"].split(os.pathsep)[:-1]) + os.environ["UTILITIES_UNIT_TESTING"] = "0" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "" + + class TestMultiAsicFabricStat(object): @classmethod def setup_class(cls): diff --git a/tests/mock_tables/counters_db.json b/tests/mock_tables/counters_db.json index 03b29cdd..f2caba24 100644 --- a/tests/mock_tables/counters_db.json +++ b/tests/mock_tables/counters_db.json @@ -1626,6 +1626,146 @@ "oid:0x1500000000067d": "SAI_QUEUE_TYPE_UNICAST_VOQ", "oid:0x1500000000067e": "SAI_QUEUE_TYPE_UNICAST_VOQ" }, + "COUNTERS_FABRIC_PORT_NAME_MAP" : { + "PORT0": "oid:0x1000000000143", + "PORT1": "oid:0x1000000000144", + "PORT2": "oid:0x1000000000145", + "PORT3": "oid:0x1000000000146", + "PORT4": "oid:0x1000000000147", + "PORT5": "oid:0x1000000000148", + "PORT6": "oid:0x1000000000149", + "PORT7": "oid:0x100000000014a" + }, + "COUNTERS:oid:0x1000000000143": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "1113", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "6", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "5", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "1759692040", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "5" + }, + "COUNTERS:oid:0x1000000000144": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "0", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "58977677898", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS:oid:0x1000000000145": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "371", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "2", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "0", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "1769448760", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS:oid:0x1000000000146": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "0", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "58976477608", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS:oid:0x1000000000147": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "1855", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "10", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "73", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "1763293100", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "73" + }, + "COUNTERS:oid:0x1000000000148": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "44196", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "58975150569", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS:oid:0x1000000000149": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "742", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "4", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "10", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "1763174090", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "0" + }, + "COUNTERS:oid:0x100000000014a": { + "SAI_PORT_STAT_IF_OUT_FABRIC_DATA_UNITS": "0", + "SAI_PORT_STAT_IF_OUT_OCTETS": "0", + "SAI_PORT_STAT_IF_IN_OCTETS": "1855", + "SAI_PORT_STAT_IF_IN_ERRORS": "0", + "SAI_PORT_STAT_IF_IN_FABRIC_DATA_UNITS": "10", + "SAI_PORT_STAT_IF_IN_FEC_CORRECTABLE_FRAMES": "187", + "SAI_PORT_STAT_IF_IN_FEC_NOT_CORRECTABLE_FRAMES": "1768439529", + "SAI_PORT_STAT_IF_IN_FEC_SYMBOL_ERRORS": "1331" + }, + "COUNTERS_FABRIC_QUEUE_NAME_MAP" : { + "PORT0:0": "oid:0x15000000000186", + "PORT1:0": "oid:0x15000000000187", + "PORT2:0": "oid:0x15000000000188", + "PORT3:0": "oid:0x15000000000189", + "PORT4:0": "oid:0x1500000000018a", + "PORT5:0": "oid:0x1500000000018b", + "PORT6:0": "oid:0x1500000000018c", + "PORT7:0": "oid:0x1500000000018d" + }, + "COUNTERS:oid:0x15000000000186": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "20", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "763", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "12" + }, + "COUNTERS:oid:0x15000000000187": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "0" + }, + "COUNTERS:oid:0x15000000000188": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "8", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "104", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "8" + }, + "COUNTERS:oid:0x15000000000189": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "0" + }, + "COUNTERS:oid:0x1500000000018a": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "22", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "1147", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "14" + }, + "COUNTERS:oid:0x1500000000018b": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "0", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "0" + }, + "COUNTERS:oid:0x1500000000018c": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "10", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "527", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "8" + }, + "COUNTERS:oid:0x1500000000018d": { + "SAI_QUEUE_STAT_WATERMARK_LEVEL": "17", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_BYTES": "1147", + "SAI_QUEUE_STAT_CURR_OCCUPANCY_LEVEL": "14" + }, "COUNTERS_DEBUG_NAME_PORT_STAT_MAP": { "DEBUG_0": "SAI_PORT_STAT_IN_DROP_REASON_RANGE_BASE", "DEBUG_2": "SAI_PORT_STAT_OUT_CONFIGURED_DROP_REASONS_1_DROPPED_PKTS" diff --git a/tests/mock_tables/state_db.json b/tests/mock_tables/state_db.json index 9fda6fa5..d32836ae 100644 --- a/tests/mock_tables/state_db.json +++ b/tests/mock_tables/state_db.json @@ -1121,5 +1121,39 @@ }, "ADVERTISE_NETWORK_TABLE|fccc:a250:a251::a6:1/128": { "profile": "" + }, + "FABRIC_PORT_TABLE|PORT0" : { + "STATUS": "up", + "REMOTE_MOD": "0", + "REMOTE_PORT": "79" + }, + "FABRIC_PORT_TABLE|PORT1" : { + "STATUS": "down" + }, + "FABRIC_PORT_TABLE|PORT2" : { + "STATUS": "up", + "REMOTE_MOD": "0", + "REMOTE_PORT": "94" + }, + "FABRIC_PORT_TABLE|PORT3" : { + "STATUS": "down" + }, + "FABRIC_PORT_TABLE|PORT4" : { + "STATUS": "up", + "REMOTE_MOD": "0", + "REMOTE_PORT": "85" + }, + "FABRIC_PORT_TABLE|PORT5" : { + "STATUS": "down" + }, + "FABRIC_PORT_TABLE|PORT6" : { + "STATUS": "up", + "REMOTE_MOD": "0", + "REMOTE_PORT": "84" + }, + "FABRIC_PORT_TABLE|PORT7" : { + "STATUS": "up", + "REMOTE_MOD": "0", + "REMOTE_PORT": "93" } } From c57c3fadc493d219027c91ff7c26e3d810ef3693 Mon Sep 17 00:00:00 2001 From: mihirpat1 <112018033+mihirpat1@users.noreply.github.com> Date: Wed, 1 Feb 2023 13:48:57 -0800 Subject: [PATCH 061/312] show logging CLI support for logs stored in tmpfs (#2641) * show logging CLI support for logs stored in tmpfs Signed-off-by: Mihir Patel * Fixed testcase failures * Reverted unwanted change in a file * Added testcase for syslog.1 in log.tmpfs directory * mend --------- Signed-off-by: Mihir Patel --- show/main.py | 12 +++++--- tests/show_test.py | 69 +++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 76 insertions(+), 5 deletions(-) diff --git a/show/main.py b/show/main.py index e8c607fa..117958f8 100755 --- a/show/main.py +++ b/show/main.py @@ -1257,14 +1257,18 @@ def table(verbose): @click.option('--verbose', is_flag=True, help="Enable verbose output") def logging(process, lines, follow, verbose): """Show system log""" + if os.path.exists("/var/log.tmpfs"): + log_path = "/var/log.tmpfs" + else: + log_path = "/var/log" if follow: - cmd = "sudo tail -F /var/log/syslog" + cmd = "sudo tail -F {}/syslog".format(log_path) run_command(cmd, display_cmd=verbose) else: - if os.path.isfile("/var/log/syslog.1"): - cmd = "sudo cat /var/log/syslog.1 /var/log/syslog" + if os.path.isfile("{}/syslog.1".format(log_path)): + cmd = "sudo cat {}/syslog.1 {}/syslog".format(log_path, log_path) else: - cmd = "sudo cat /var/log/syslog" + cmd = "sudo cat {}/syslog".format(log_path) if process is not None: cmd += " | grep '{}'".format(process) diff --git a/tests/show_test.py b/tests/show_test.py index 87c1b5a1..114dbc3c 100644 --- a/tests/show_test.py +++ b/tests/show_test.py @@ -1,9 +1,12 @@ import os import sys +import pytest import show.main as show from click.testing import CliRunner from unittest import mock -from unittest.mock import call, MagicMock +from unittest.mock import call, MagicMock, patch + +EXPECTED_BASE_COMMAND = 'sudo ' test_path = os.path.dirname(os.path.abspath(__file__)) modules_path = os.path.dirname(test_path) @@ -49,3 +52,67 @@ 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" + +@patch('show.main.run_command') +@pytest.mark.parametrize( + "cli_arguments,expected", + [ + ([], 'cat /var/log/syslog'), + (['xcvrd'], "cat /var/log/syslog | grep 'xcvrd'"), + (['-l', '10'], 'cat /var/log/syslog | tail -10'), + (['-f'], 'tail -F /var/log/syslog'), + ] +) +def test_show_logging_default(run_command, cli_arguments, expected): + runner = CliRunner() + result = runner.invoke(show.cli.commands["logging"], cli_arguments) + run_command.assert_called_with(EXPECTED_BASE_COMMAND + expected, display_cmd=False) + +@patch('show.main.run_command') +@patch('os.path.isfile', MagicMock(return_value=True)) +@pytest.mark.parametrize( + "cli_arguments,expected", + [ + ([], 'cat /var/log/syslog.1 /var/log/syslog'), + (['xcvrd'], "cat /var/log/syslog.1 /var/log/syslog | grep 'xcvrd'"), + (['-l', '10'], 'cat /var/log/syslog.1 /var/log/syslog | tail -10'), + (['-f'], 'tail -F /var/log/syslog'), + ] +) +def test_show_logging_syslog_1(run_command, cli_arguments, expected): + runner = CliRunner() + result = runner.invoke(show.cli.commands["logging"], cli_arguments) + run_command.assert_called_with(EXPECTED_BASE_COMMAND + expected, display_cmd=False) + +@patch('show.main.run_command') +@patch('os.path.exists', MagicMock(return_value=True)) +@pytest.mark.parametrize( + "cli_arguments,expected", + [ + ([], 'cat /var/log.tmpfs/syslog'), + (['xcvrd'], "cat /var/log.tmpfs/syslog | grep 'xcvrd'"), + (['-l', '10'], 'cat /var/log.tmpfs/syslog | tail -10'), + (['-f'], 'tail -F /var/log.tmpfs/syslog'), + ] +) +def test_show_logging_tmpfs(run_command, cli_arguments, expected): + runner = CliRunner() + result = runner.invoke(show.cli.commands["logging"], cli_arguments) + run_command.assert_called_with(EXPECTED_BASE_COMMAND + expected, display_cmd=False) + +@patch('show.main.run_command') +@patch('os.path.isfile', MagicMock(return_value=True)) +@patch('os.path.exists', MagicMock(return_value=True)) +@pytest.mark.parametrize( + "cli_arguments,expected", + [ + ([], 'cat /var/log.tmpfs/syslog.1 /var/log.tmpfs/syslog'), + (['xcvrd'], "cat /var/log.tmpfs/syslog.1 /var/log.tmpfs/syslog | grep 'xcvrd'"), + (['-l', '10'], 'cat /var/log.tmpfs/syslog.1 /var/log.tmpfs/syslog | tail -10'), + (['-f'], 'tail -F /var/log.tmpfs/syslog'), + ] +) +def test_show_logging_tmpfs_syslog_1(run_command, cli_arguments, expected): + runner = CliRunner() + result = runner.invoke(show.cli.commands["logging"], cli_arguments) + run_command.assert_called_with(EXPECTED_BASE_COMMAND + expected, display_cmd=False) From a2520e60d471ebc4791a50d5bb9ca9691bd5c456 Mon Sep 17 00:00:00 2001 From: siqbal1986 Date: Mon, 6 Feb 2023 12:00:09 -0800 Subject: [PATCH 062/312] Fixed a bug in "show vnet routes all" causing screen overrun. (#2644) Signed-off-by: siqbal1486 --- show/vnet.py | 40 ++++++++++++++++++++++----- tests/mock_tables/appl_db.json | 4 +-- tests/mock_tables/state_db.json | 2 +- tests/show_vnet_test.py | 45 +++++++++++++++++++++++++++++++ tests/show_vnet_vxlan_cli_test.py | 22 ++------------- 5 files changed, 84 insertions(+), 29 deletions(-) diff --git a/show/vnet.py b/show/vnet.py index ba6f81ce..239e6d22 100644 --- a/show/vnet.py +++ b/show/vnet.py @@ -333,6 +333,29 @@ def routes(): """Show vnet routes related information""" pass +def pretty_print(table, r, epval, mac_addr, vni, state): + endpoints = epval.split(',') + row_width = 3 + max_len = 0 + for ep in endpoints: + max_len = len(ep) if len(ep) > max_len else max_len + if max_len > 15: + row_width = 2 + iter = 0 + while iter < len(endpoints): + if iter +row_width > len(endpoints): + r.append(",".join(endpoints[iter:])) + else: + r.append(",".join(endpoints[iter:iter + row_width])) + if iter == 0: + r.append(mac_addr) + r.append(vni) + r.append(state) + else: + r.extend(["", "", ""]) + iter += row_width + table.append(r) + r = ["",""] @routes.command() def all(): @@ -373,12 +396,17 @@ def all(): state_db_key = '|'.join(k.split(":",2)) val = appl_db.get_all(appl_db.APPL_DB, k) val_state = state_db.get_all(state_db.STATE_DB, state_db_key) - r.append(val.get('endpoint')) - r.append(val.get('mac_address')) - r.append(val.get('vni')) - if val_state: - r.append(val_state.get('state')) - table.append(r) + epval = val.get('endpoint') + if len(epval) < 40: + r.append(epval) + r.append(val.get('mac_address')) + r.append(val.get('vni')) + if val_state: + r.append(val_state.get('state')) + table.append(r) + continue + state = val_state.get('state') if val_state else "" + pretty_print(table, r, epval, val.get('mac_address'), val.get('vni'), state ) click.echo(tabulate(table, header)) diff --git a/tests/mock_tables/appl_db.json b/tests/mock_tables/appl_db.json index 8554a07e..e330bdad 100644 --- a/tests/mock_tables/appl_db.json +++ b/tests/mock_tables/appl_db.json @@ -329,8 +329,8 @@ "endpoint_monitor":"100.251.7.1" }, "VNET_ROUTE_TUNNEL_TABLE:Vnet_v6_in_v6-0:fddd:a156:a251::a6:1/128": { - "endpoint": "fddd:a100:a251::a10:1,fddd:a101:a251::a10:1", - "endpoint_monitor":"fddd:a100:a251::a10:1,fddd:a101:a251::a10:1" + "endpoint": "fddd:a100:a251::a10:1,fddd:a101:a251::a10:1,fddd:a102:a251::a10:1,fddd:a103:a251::a10:1", + "endpoint_monitor":"fddd:a100:a251::a10:1,fddd:a101:a251::a10:1,fddd:a102:a251::a10:1,fddd:a103:a251::a10:1" }, "VNET_ROUTE_TUNNEL_TABLE:test_v4_in_v4-0:160.162.191.1/32": { "endpoint":"100.251.7.1", diff --git a/tests/mock_tables/state_db.json b/tests/mock_tables/state_db.json index d32836ae..8462248a 100644 --- a/tests/mock_tables/state_db.json +++ b/tests/mock_tables/state_db.json @@ -1086,7 +1086,7 @@ "state":"active" }, "VNET_ROUTE_TUNNEL_TABLE|Vnet_v6_in_v6-0|fddd:a156:a251::a6:1/128": { - "active_endpoints":"fddd:a100:a251::a10:1,fddd:a101:a251::a10:1", + "active_endpoints":"fddd:a100:a251::a10:1,fddd:a101:a251::a10:1,fddd:a102:a251::a10:1,fddd:a103:a251::a10:1", "state":"active" }, "BFD_SESSION_TABLE|default|default|100.251.7.1": { diff --git a/tests/show_vnet_test.py b/tests/show_vnet_test.py index 5317b9b3..eff75a58 100644 --- a/tests/show_vnet_test.py +++ b/tests/show_vnet_test.py @@ -2,6 +2,7 @@ from click.testing import CliRunner from utilities_common.db import Db import show.main as show +import show.vnet as vnet class TestShowVnetRoutesAll(object): @classmethod @@ -9,6 +10,49 @@ def setup_class(cls): print("SETUP") os.environ["UTILITIES_UNIT_TESTING"] = "1" + def test_Preety_print(self): + table =[] + row = ["Vnet_v6_in_v6-0", "fddd:a156:a251::a6:1/128"] + mac_addr = "" + vni = "" + state = "active" + epval = "fddd:a100:a251::a10:1,fddd:a101:a251::a10:1" + + vnet.pretty_print(table, row, epval, mac_addr, vni, state) + expected_output = [['Vnet_v6_in_v6-0', 'fddd:a156:a251::a6:1/128', 'fddd:a100:a251::a10:1,fddd:a101:a251::a10:1', '', '', 'active']] + assert table == expected_output + + table =[] + row = ["Vnet_v6_in_v6-0", "fddd:a156:a251::a6:1/128"] + epval = "fddd:a100:a251::a10:1,fddd:a101:a251::a10:1,fddd:a100:a251::a11:1,fddd:a100:a251::a12:1,fddd:a100:a251::a13:1" + vnet.pretty_print(table, row, epval, mac_addr, vni, state) + expected_output = [ + ['Vnet_v6_in_v6-0', 'fddd:a156:a251::a6:1/128', 'fddd:a100:a251::a10:1,fddd:a101:a251::a10:1', '', '', 'active'], + ['', '', 'fddd:a100:a251::a11:1,fddd:a100:a251::a12:1', '', '', ''], + ['', '', 'fddd:a100:a251::a13:1', '', '', ''] + ] + assert table == expected_output + + table =[] + row = ["Vnet_v6_in_v6-0", "fddd:a156:a251::a6:1/128"] + epval = "192.168.1.1,192.168.1.2,192.168.1.3,192.168.1.4,192.168.1.5,192.168.1.6,192.168.1.7,192.168.1.8,192.168.1.9,192.168.1.10,192.168.1.11,192.168.1.12,192.168.1.13,192.168.1.14,192.168.1.15" + vnet.pretty_print(table, row, epval, mac_addr, vni, state) + expected_output =[ + ['Vnet_v6_in_v6-0', 'fddd:a156:a251::a6:1/128', '192.168.1.1,192.168.1.2,192.168.1.3', '', '', 'active'], + ['', '', '192.168.1.4,192.168.1.5,192.168.1.6', '', '', ''], + ['', '', '192.168.1.7,192.168.1.8,192.168.1.9', '', '', ''], + ['', '', '192.168.1.10,192.168.1.11,192.168.1.12', '', '', ''], + ['', '', '192.168.1.13,192.168.1.14,192.168.1.15', '', '', '']] + assert table == expected_output + + table =[] + row = ["Vnet_v6_in_v6-0", "fddd:a156:a251::a6:1/128"] + epval = "192.168.1.1" + vnet.pretty_print(table, row, epval, mac_addr, vni, state) + expected_output =[ + ['Vnet_v6_in_v6-0', 'fddd:a156:a251::a6:1/128', '192.168.1.1', '', '', 'active']] + assert table == expected_output + def test_show_vnet_routes_all_basic(self): runner = CliRunner() db = Db() @@ -22,6 +66,7 @@ def test_show_vnet_routes_all_basic(self): vnet name prefix endpoint mac address vni status --------------- ------------------------ ------------------------------------------- ------------- ----- -------- Vnet_v6_in_v6-0 fddd:a156:a251::a6:1/128 fddd:a100:a251::a10:1,fddd:a101:a251::a10:1 active + fddd:a102:a251::a10:1,fddd:a103:a251::a10:1 test_v4_in_v4-0 160.162.191.1/32 100.251.7.1 active test_v4_in_v4-0 160.163.191.1/32 100.251.7.1 active test_v4_in_v4-0 160.164.191.1/32 100.251.7.1 diff --git a/tests/show_vnet_vxlan_cli_test.py b/tests/show_vnet_vxlan_cli_test.py index f0cee3b2..c9aa5b62 100644 --- a/tests/show_vnet_vxlan_cli_test.py +++ b/tests/show_vnet_vxlan_cli_test.py @@ -9,32 +9,12 @@ #test_path = os.path.dirname(os.path.abspath(__file__)) - - class TestShowVnet(object): @classmethod def setup_class(cls): print("SETUP") os.environ["UTILITIES_UNIT_TESTING"] = "1" - def test_show_vnet_routes_all_basic(self): - runner = CliRunner() - db = Db() - result = runner.invoke(show.cli.commands['vnet'].commands['routes'].commands['all'], [], obj=db) - assert result.exit_code == 0 - expected_output = """\ -vnet name prefix nexthop interface ------------ -------- --------- ----------- - -vnet name prefix endpoint mac address vni status ---------------- ------------------------ ------------------------------------------- ------------- ----- -------- -Vnet_v6_in_v6-0 fddd:a156:a251::a6:1/128 fddd:a100:a251::a10:1,fddd:a101:a251::a10:1 active -test_v4_in_v4-0 160.162.191.1/32 100.251.7.1 active -test_v4_in_v4-0 160.163.191.1/32 100.251.7.1 active -test_v4_in_v4-0 160.164.191.1/32 100.251.7.1 -""" - assert result.output == expected_output - def test_show_vnet_endpoint(self): runner = CliRunner() db = Db() @@ -45,6 +25,8 @@ def test_show_vnet_endpoint(self): --------------------- --------------------- -------------- -------- fddd:a100:a251::a10:1 fddd:a100:a251::a10:1 1 Unknown fddd:a101:a251::a10:1 fddd:a101:a251::a10:1 1 Down +fddd:a102:a251::a10:1 fddd:a102:a251::a10:1 1 Unknown +fddd:a103:a251::a10:1 fddd:a103:a251::a10:1 1 Unknown 100.251.7.1 100.251.7.1 3 Up """ assert result.output == expected_output From f9130d1cc3e376667335919a9c6c95218412d04c Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak <38952541+stepanblyschak@users.noreply.github.com> Date: Tue, 7 Feb 2023 18:07:52 +0200 Subject: [PATCH 063/312] [db_migrator] make LOG_LEVEL_DB migration more robust (#2651) It could be that LOG_LEVEL_DB includes some invalid data and/or a KEY_SET that is not cleaned up due to an issue, for example we observed _gearsyncd_KEY_SET set included in the LOG_LEVEL_DB and preserved in warm reboot. However, this key is not of type hash which leads to an exception and migration failure. The migration logic should be more robust allowing users to upgrade even though some daemon has left overs in the LOG_LEVEL_DB or invalid data is written. - What I did To fix migration issue that leads to device configuration being lost. - How I did it Wrap the logic in try/except/finally. - How to verify it 202205 -> 202211/master upgrade. Signed-off-by: Stepan Blyschak --- scripts/db_migrator.py | 20 +++++++++++-------- .../loglevel_db/logger_tables_input.json | 7 +++++-- 2 files changed, 17 insertions(+), 10 deletions(-) diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index 6c8ef21b..c52e38bd 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -822,14 +822,18 @@ def version_3_0_5(self): keys = self.loglevelDB.keys(self.loglevelDB.LOGLEVEL_DB, "*") if keys is not None: for key in keys: - if key != "JINJA2_CACHE": - fvs = self.loglevelDB.get_all(self.loglevelDB.LOGLEVEL_DB, key) - component = key.split(":")[1] - loglevel = fvs[loglevel_field] - logoutput = fvs[logoutput_field] - self.configDB.set(self.configDB.CONFIG_DB, '{}|{}'.format(table_name, component), loglevel_field, loglevel) - self.configDB.set(self.configDB.CONFIG_DB, '{}|{}'.format(table_name, component), logoutput_field, logoutput) - self.loglevelDB.delete(self.loglevelDB.LOGLEVEL_DB, key) + try: + if key != "JINJA2_CACHE": + fvs = self.loglevelDB.get_all(self.loglevelDB.LOGLEVEL_DB, key) + component = key.split(":")[1] + loglevel = fvs[loglevel_field] + logoutput = fvs[logoutput_field] + self.configDB.set(self.configDB.CONFIG_DB, '{}|{}'.format(table_name, component), loglevel_field, loglevel) + self.configDB.set(self.configDB.CONFIG_DB, '{}|{}'.format(table_name, component), logoutput_field, logoutput) + except Exception as err: + log.log_warning('Error occured during LOGLEVEL_DB migration for {}. Ignoring key {}'.format(err, key)) + finally: + self.loglevelDB.delete(self.loglevelDB.LOGLEVEL_DB, key) self.set_version('version_3_0_6') return 'version_3_0_6' diff --git a/tests/db_migrator_input/loglevel_db/logger_tables_input.json b/tests/db_migrator_input/loglevel_db/logger_tables_input.json index 02377ea0..ed1bc805 100644 --- a/tests/db_migrator_input/loglevel_db/logger_tables_input.json +++ b/tests/db_migrator_input/loglevel_db/logger_tables_input.json @@ -7,5 +7,8 @@ "LOGLEVEL": "SAI_LOG_LEVEL_NOTICE", "LOGOUTPUT": "SYSLOG" }, - "JINJA2_CACHE": {} -} \ No newline at end of file + "JINJA2_CACHE": {}, + "INVALID:INVALID": { + "invalid": "invalid" + } +} From 6e0e1dafb6622fbb1e6ad64ded7ad79936b47ab4 Mon Sep 17 00:00:00 2001 From: Sudharsan Dhamal Gopalarathnam Date: Tue, 7 Feb 2023 12:14:49 -0800 Subject: [PATCH 064/312] [sai_failure_dump]Invoking dump during SAI failure (#2633) * Added logic in techsupport script to collect SAI failure dump --- scripts/generate_dump | 64 ++++++++++++++++++++++++++++++++++--------- 1 file changed, 51 insertions(+), 13 deletions(-) diff --git a/scripts/generate_dump b/scripts/generate_dump index 7c948069..4400f4e9 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -1053,21 +1053,26 @@ collect_mellanox() { local sai_dump_folder="/tmp/saisdkdump" local sai_dump_filename="${sai_dump_folder}/sai_sdk_dump_$(date +"%m_%d_%Y_%I_%M_%p")" - ${CMD_PREFIX}docker exec syncd mkdir -p $sai_dump_folder - ${CMD_PREFIX}docker exec syncd saisdkdump -f $sai_dump_filename - - if [ $? != 0 ]; then - echo "Failed to collect saisdkdump." - fi + if [[ "$( docker container inspect -f '{{.State.Running}}' syncd )" == "true" ]]; then + if [[ x"$(sonic-db-cli APPL_DB EXISTS PORT_TABLE:PortInitDone)" == x"1" ]]; then + # Run saisdkdump only after the create_switch is known to be successful + ${CMD_PREFIX}docker exec syncd mkdir -p $sai_dump_folder + ${CMD_PREFIX}docker exec syncd saisdkdump -f $sai_dump_filename + + if [ $? != 0 ]; then + echo "Failed to collect saisdkdump." + fi - copy_from_docker syncd $sai_dump_folder $sai_dump_folder - echo "$sai_dump_folder" - for file in `ls $sai_dump_folder`; do - save_file ${sai_dump_folder}/${file} sai_sdk_dump true - done + copy_from_docker syncd $sai_dump_folder $sai_dump_folder + echo "$sai_dump_folder" + for file in `ls $sai_dump_folder`; do + save_file ${sai_dump_folder}/${file} sai_sdk_dump true + done - ${CMD_PREFIX}rm -rf $sai_dump_folder - ${CMD_PREFIX}docker exec syncd rm -rf $sai_dump_folder + ${CMD_PREFIX}rm -rf $sai_dump_folder + ${CMD_PREFIX}docker exec syncd rm -rf $sai_dump_folder + fi + fi # run 'hw-management-generate-dump.sh' script and save the result file HW_DUMP_FILE=/usr/bin/hw-management-generate-dump.sh @@ -1429,6 +1434,38 @@ save_crash_files() { fi } +############################################################################### +# Collect SAI failure dump files under /var/log/sai_failure_dump/. These files are +# created because of the orchagent abort triggered by SAI programming failure +# Globals: +# None +# Arguments: +# None +# Returns: +# None +############################################################################### +save_sai_failure_dump(){ + for file in $(find_files "/var/log/sai_failure_dump/"); do + if $TAR -tf $TARFILE | grep $BASE/log/$(basename $file); then + # if the files are already collected under the log/ dir + # just add a symbolic link + if [ ! -z "${file##*.gz}" ]; then + # files saved under log/ are zipped with gz + file=$file.gz + fi + ${CMD_PREFIX}save_symlink ${file} sai_failure_dump log + else + if [ ! -z "${file##*.gz}" ]; then + ${CMD_PREFIX}save_file ${file} sai_failure_dump true + else + ${CMD_PREFIX}save_file ${file} sai_failure_dump false + fi + fi + #Clean up the file once its part of tech support + rm -f $file + done +} + ############################################################################### # Get number of ASICs in the platform # Globals: @@ -1709,6 +1746,7 @@ main() { save_log_files save_crash_files save_warmboot_files + save_sai_failure_dump if [[ "$asic" = "mellanox" ]]; then collect_mellanox_dfw_dumps From 5007f1f0424d517f2f852bba790553535697db42 Mon Sep 17 00:00:00 2001 From: vdahiya12 <67608553+vdahiya12@users.noreply.github.com> Date: Tue, 7 Feb 2023 12:30:18 -0800 Subject: [PATCH 065/312] [show] add support for gRPC show commands for `active-active` (#2629) Signed-off-by: vaibhav-dahiya vdahiya@microsoft.com This PR adds support for show mux hwmode muxdirection as well as show mux grpc muxdirection to show the state of gRPC connected to the SoCs for 'active-active' acble type vdahiya@sonic:~$ show mux grpc muxdirection Port Direction Presence PeerDirection ConnectivityState --------- ----------- ---------- --------------- ------------------- Ethernet0 active False active READY vdahiya@sonic:~$ vdahiya@sonic:~$ show mux grpc muxdirection --json { "HWMODE": { "Ethernet0": { "Direction": "active", "Presence": "False", "PeerDirection": "active", "ConnectivityState": "READY" } } } What I did Added support for the commands. How I did it How to verify it UT and running the changes on Testbed --- show/muxcable.py | 321 ++++++++++++++++++++++++++++---- tests/mock_tables/state_db.json | 18 ++ tests/muxcable_test.py | 187 +++++++++++++++++++ 3 files changed, 492 insertions(+), 34 deletions(-) diff --git a/show/muxcable.py b/show/muxcable.py index d9f0a94f..b640d321 100644 --- a/show/muxcable.py +++ b/show/muxcable.py @@ -36,6 +36,21 @@ VENDOR_MODEL_REGEX = re.compile(r"CAC\w{3}321P2P\w{2}MS") +def get_asic_index_for_port(port): + asic_index = None + if platform_sfputil is not None: + asic_index = platform_sfputil_helper.get_asic_id_for_logical_port(port) + if asic_index is None: + # TODO this import is only for unit test purposes, and should be removed once sonic_platform_base + # is fully mocked + import sonic_platform_base.sonic_sfp.sfputilhelper + asic_index = sonic_platform_base.sonic_sfp.sfputilhelper.SfpUtilHelper().get_asic_id_for_logical_port(port) + if asic_index is None: + port_name = platform_sfputil_helper.get_interface_alias(port, db) + click.echo("Got invalid asic index for port {}, cant retreive mux status".format(port_name)) + return 0 + return asic_index + def db_connect(db_name, namespace=EMPTY_NAMESPACE): return swsscommon.DBConnector(db_name, REDIS_TIMEOUT_MSECS, True, namespace) @@ -1239,6 +1254,67 @@ def get_hwmode_mux_direction_port(db, port): return res_dict +def create_active_active_mux_direction_json_result(result, port, db): + + port = platform_sfputil_helper.get_interface_alias(port, db) + result["HWMODE"][port] = {} + res_dict = get_grpc_cached_version_mux_direction_per_port(db, port) + result["HWMODE"][port]["Direction"] = res_dict["self_mux_direction"] + result["HWMODE"][port]["Presence"] = res_dict["presence"] + result["HWMODE"][port]["PeerDirection"] = res_dict["peer_mux_direction"] + result["HWMODE"][port]["ConnectivityState"] = res_dict["grpc_connection_status"] + + rc = res_dict["rc"] + + return rc + +def create_active_standby_mux_direction_json_result(result, port, db): + + res_dict = get_hwmode_mux_direction_port(db, port) + port = platform_sfputil_helper.get_interface_alias(port, db) + result["HWMODE"][port] = {} + result["HWMODE"][port]["Direction"] = res_dict[1] + result["HWMODE"][port]["Presence"] = res_dict[2] + + rc = res_dict[0] + + return rc + +def create_active_active_mux_direction_result(body, port, db): + + res_dict = get_grpc_cached_version_mux_direction_per_port(db, port) + temp_list = [] + port = platform_sfputil_helper.get_interface_alias(port, db) + temp_list.append(port) + temp_list.append(res_dict["self_mux_direction"]) + temp_list.append(res_dict["presence"]) + temp_list.append(res_dict["peer_mux_direction"]) + temp_list.append(res_dict["grpc_connection_status"]) + body.append(temp_list) + + rc = res_dict["rc"] + + return rc + +def create_active_standby_mux_direction_result(body, port, db): + + res_dict = get_hwmode_mux_direction_port(db, port) + + temp_list = [] + port = platform_sfputil_helper.get_interface_alias(port, db) + temp_list.append(port) + temp_list.append(res_dict[1]) + temp_list.append(res_dict[2]) + body.append(temp_list) + + rc = res_dict[0] + + delete_all_keys_in_db_table("APPL_DB", "XCVRD_SHOW_HWMODE_DIR_CMD") + delete_all_keys_in_db_table("STATE_DB", "XCVRD_SHOW_HWMODE_DIR_RSP") + delete_all_keys_in_db_table("STATE_DB", "XCVRD_SHOW_HWMODE_DIR_RES") + + return rc + @muxcable.group(cls=clicommon.AbbreviationGroup) def hwmode(): """Shows the muxcable hardware information directly""" @@ -1247,8 +1323,9 @@ def hwmode(): @hwmode.command() @click.argument('port', metavar='', required=False, default=None) +@click.option('--json', 'json_output', required=False, is_flag=True, type=click.BOOL, help="display the output in json format") @clicommon.pass_db -def muxdirection(db, port): +def muxdirection(db, port, json_output): """Shows the current direction of the muxcable {active/standy}""" port = platform_sfputil_helper.get_interface_name(port, db) @@ -1256,30 +1333,42 @@ def muxdirection(db, port): delete_all_keys_in_db_table("APPL_DB", "XCVRD_SHOW_HWMODE_DIR_CMD") delete_all_keys_in_db_table("STATE_DB", "XCVRD_SHOW_HWMODE_DIR_RSP") delete_all_keys_in_db_table("STATE_DB", "XCVRD_SHOW_HWMODE_DIR_RES") + per_npu_configdb = {} - if port is not None: + namespaces = multi_asic.get_front_end_namespaces() + for namespace in namespaces: + asic_id = multi_asic.get_asic_index_from_namespace(namespace) + per_npu_configdb[asic_id] = ConfigDBConnector(use_unix_socket_path=False, namespace=namespace) + per_npu_configdb[asic_id].connect() + + if port is not None: + + asic_index = get_asic_index_for_port(port) + cable_type = get_optional_value_for_key_in_config_tbl(per_npu_configdb[asic_index], port, "cable_type", "MUX_CABLE") if check_port_in_mux_cable_table(port) == False: click.echo("Not Y-cable port") return CONFIG_FAIL - res_dict = get_hwmode_mux_direction_port(db, port) - - body = [] - temp_list = [] - headers = ['Port', 'Direction', 'Presence'] - port = platform_sfputil_helper.get_interface_alias(port, db) - temp_list.append(port) - temp_list.append(res_dict[1]) - temp_list.append(res_dict[2]) - body.append(temp_list) - - rc = res_dict[0] - click.echo(tabulate(body, headers=headers)) + if json_output: + result = {} + result ["HWMODE"] = {} + if cable_type == "active-active": + rc = create_active_active_mux_direction_json_result(result, port, db) + else: + rc = False + rc = create_active_standby_mux_direction_json_result(result, port, db) + click.echo("{}".format(json.dumps(result, indent=4))) - delete_all_keys_in_db_table("APPL_DB", "XCVRD_SHOW_HWMODE_DIR_CMD") - delete_all_keys_in_db_table("STATE_DB", "XCVRD_SHOW_HWMODE_DIR_RSP") - delete_all_keys_in_db_table("STATE_DB", "XCVRD_SHOW_HWMODE_DIR_RES") + else: + body = [] + if cable_type == "active-active": + headers = ['Port', 'Direction', 'Presence', 'PeerDirection', 'ConnectivityState'] + rc = create_active_active_mux_direction_result(body, port, db) + else: + rc = create_active_standby_mux_direction_result(body, port, db) + headers = ['Port', 'Direction', 'Presence'] + click.echo(tabulate(body, headers=headers)) return rc @@ -1289,8 +1378,12 @@ def muxdirection(db, port): rc_exit = True body = [] + active_active = False + if json_output: + result = {} + result ["HWMODE"] = {} - for port in logical_port_list: + for port in natsorted(logical_port_list): if platform_sfputil is not None: physical_port_list = platform_sfputil_helper.logical_port_name_to_physical_port_list(port) @@ -1316,26 +1409,37 @@ def muxdirection(db, port): if port != logical_port_list_per_port[0]: continue - temp_list = [] + + asic_index = get_asic_index_for_port(port) + cable_type = get_optional_value_for_key_in_config_tbl(per_npu_configdb[asic_index], port, "cable_type", "MUX_CABLE") + if json_output: + if cable_type == "active-active": + rc = create_active_active_mux_direction_json_result(result, port, db) + active_active = True + else: + rc = create_active_standby_mux_direction_json_result(result, port, db) - res_dict = get_hwmode_mux_direction_port(db, port) + else: + if cable_type == 'active-active': + rc = create_active_active_mux_direction_result(body, port, db) + active_active = True + else: + rc = create_active_standby_mux_direction_result(body, port, db) + if rc != 0: + rc_exit = False - port = platform_sfputil_helper.get_interface_alias(port, db) - temp_list.append(port) - temp_list.append(res_dict[1]) - temp_list.append(res_dict[2]) - body.append(temp_list) - rc = res_dict[0] - if rc != 0: - rc_exit = False - headers = ['Port', 'Direction', 'Presence'] - click.echo(tabulate(body, headers=headers)) + if json_output: + click.echo("{}".format(json.dumps(result, indent=4))) + else: + if active_active: + + headers = ['Port', 'Direction', 'Presence', 'PeerDirection', 'ConnectivityState'] + else: + headers = ['Port', 'Direction', 'Presence'] + click.echo(tabulate(body, headers=headers)) - delete_all_keys_in_db_table("APPL_DB", "XCVRD_SHOW_HWMODE_DIR_CMD") - delete_all_keys_in_db_table("STATE_DB", "XCVRD_SHOW_HWMODE_DIR_RSP") - delete_all_keys_in_db_table("STATE_DB", "XCVRD_SHOW_HWMODE_DIR_RES") if rc_exit == False: sys.exit(EXIT_FAIL) @@ -2003,3 +2107,152 @@ def tunnel_route(db, port, json_output): click.echo(tabulate(print_data, headers=headers)) sys.exit(STATUS_SUCCESSFUL) + + +def get_grpc_cached_version_mux_direction_per_port(db, port): + + + state_db = {} + mux_info_dict = {} + mux_info_full_dict = {} + trans_info_full_dict = {} + mux_info_dict["rc"] = False + + # Getting all front asic namespace and correspding config and state DB connector + + namespaces = multi_asic.get_front_end_namespaces() + for namespace in namespaces: + asic_id = multi_asic.get_asic_index_from_namespace(namespace) + state_db[asic_id] = swsscommon.SonicV2Connector(use_unix_socket_path=False, namespace=namespace) + state_db[asic_id].connect(state_db[asic_id].STATE_DB) + + if platform_sfputil is not None: + asic_index = platform_sfputil_helper.get_asic_id_for_logical_port(port) + + if asic_index is None: + # TODO this import is only for unit test purposes, and should be removed once sonic_platform_base + # is fully mocked + import sonic_platform_base.sonic_sfp.sfputilhelper + asic_index = sonic_platform_base.sonic_sfp.sfputilhelper.SfpUtilHelper().get_asic_id_for_logical_port(port) + if asic_index is None: + click.echo("Got invalid asic index for port {}, cant retrieve mux cable table entries".format(port)) + return mux_info_dict + + + mux_info_full_dict[asic_index] = state_db[asic_index].get_all( + state_db[asic_index].STATE_DB, 'MUX_CABLE_INFO|{}'.format(port)) + trans_info_full_dict[asic_index] = state_db[asic_index].get_all( + state_db[asic_index].STATE_DB, 'TRANSCEIVER_STATUS|{}'.format(port)) + + res_dir = {} + res_dir = mux_info_full_dict[asic_index] + mux_info_dict["self_mux_direction"] = res_dir.get("self_mux_direction", None) + mux_info_dict["peer_mux_direction"] = res_dir.get("peer_mux_direction", None) + mux_info_dict["grpc_connection_status"] = res_dir.get("grpc_connection_status", None) + + trans_dir = {} + trans_dir = trans_info_full_dict[asic_index] + + status = trans_dir.get("status", "0") + presence = "True" if status == "1" else "False" + + mux_info_dict["presence"] = presence + + mux_info_dict["rc"] = True + + return mux_info_dict + + +@muxcable.group(cls=clicommon.AbbreviationGroup) +def grpc(): + """Shows the muxcable hardware information directly""" + pass + + +@grpc.command() +@click.argument('port', metavar='', required=False, default=None) +@click.option('--json', 'json_output', required=False, is_flag=True, type=click.BOOL, help="display the output in json format") +@clicommon.pass_db +def muxdirection(db, port, json_output): + """Shows the current direction of the FPGA facing port on Tx Side {active/standy}""" + + port = platform_sfputil_helper.get_interface_name(port, db) + + + if port is not None: + + if check_port_in_mux_cable_table(port) == False: + click.echo("Not Y-cable port") + return CONFIG_FAIL + + if json_output: + result = {} + result ["HWMODE"] = {} + rc = create_active_active_mux_direction_json_result(result, port, db) + click.echo("{}".format(json.dumps(result, indent=4))) + + else: + body = [] + + headers = ['Port', 'Direction', 'Presence', 'PeerDirection', 'ConnectivityState'] + rc = create_active_active_mux_direction_result(body, port, db) + click.echo(tabulate(body, headers=headers)) + + return rc + + else: + + + logical_port_list = platform_sfputil_helper.get_logical_list() + + rc_exit = True + body = [] + if json_output: + result = {} + result ["HWMODE"] = {} + + for port in natsorted(logical_port_list): + + if platform_sfputil is not None: + physical_port_list = platform_sfputil_helper.logical_port_name_to_physical_port_list(port) + + if not isinstance(physical_port_list, list): + continue + if len(physical_port_list) != 1: + continue + + if not check_port_in_mux_cable_table(port): + continue + + physical_port = physical_port_list[0] + logical_port_list_for_physical_port = platform_sfputil_helper.get_physical_to_logical() + + logical_port_list_per_port = logical_port_list_for_physical_port.get(physical_port, None) + + """ This check is required for checking whether or not this logical port is the one which is + actually mapped to physical port and by convention it is always the first port. + TODO: this should be removed with more logic to check which logical port maps to actual physical port + being used""" + + if port != logical_port_list_per_port[0]: + continue + + if json_output: + rc = create_active_active_mux_direction_json_result(result, port, db) + else: + rc = create_active_active_mux_direction_result(body, port, db) + + if rc != True: + rc_exit = False + + if json_output: + click.echo("{}".format(json.dumps(result, indent=4))) + else: + headers = ['Port', 'Direction', 'Presence', 'PeerDirection', 'ConnectivityState'] + + click.echo(tabulate(body, headers=headers)) + + if rc_exit == False: + sys.exit(EXIT_FAIL) + + diff --git a/tests/mock_tables/state_db.json b/tests/mock_tables/state_db.json index 8462248a..97633b3e 100644 --- a/tests/mock_tables/state_db.json +++ b/tests/mock_tables/state_db.json @@ -549,6 +549,24 @@ "version_self_next": "0.2MS", "version_self_active": "0.2MS", "version_self_inactive": "0.2MS", + "peer_mux_direction": "active", + "self_mux_direction": "active", + "grpc_connection_status": "READY", + "Value": "AABB" + }, + "MUX_CABLE_INFO|Ethernet4": { + "version_peer_next": "0.2MS", + "version_peer_active": "0.2MS", + "version_peer_inactive": "0.2MS", + "version_nic_next": "0.2MS", + "version_nic_active": "0.2MS", + "version_nic_inactive": "0.2MS", + "version_self_next": "0.2MS", + "version_self_active": "0.2MS", + "version_self_inactive": "0.2MS", + "peer_mux_direction": "active", + "self_mux_direction": "standby", + "grpc_connection_status": "READY", "Value": "AABB" }, "MUX_CABLE_INFO|Ethernet12": { diff --git a/tests/muxcable_test.py b/tests/muxcable_test.py index b8eb3dce..7e4b4b25 100644 --- a/tests/muxcable_test.py +++ b/tests/muxcable_test.py @@ -378,6 +378,50 @@ } """ +show_muxcable_grpc_muxdirection_active_expected_output = """\ +Port Direction Presence PeerDirection ConnectivityState +---------- ----------- ---------- --------------- ------------------- +Ethernet12 active True active READY +""" + +show_muxcable_grpc_muxdirection_standby_expected_output = """\ +Port Direction Presence PeerDirection ConnectivityState +--------- ----------- ---------- --------------- ------------------- +Ethernet4 standby True active READY +""" + +show_muxcable_grpc_muxdirection_active_expected_all_output = """\ +Port Direction Presence PeerDirection ConnectivityState +--------- ----------- ---------- --------------- ------------------- +Ethernet0 active False active READY +""" + +show_muxcable_grpc_muxdirection_active_expected_all_output_json = """\ +{ + "HWMODE": { + "Ethernet0": { + "Direction": "active", + "Presence": "False", + "PeerDirection": "active", + "ConnectivityState": "READY" + } + } +} +""" + +show_muxcable_grpc_muxdirection_standby_expected_output_json = """\ +{ + "HWMODE": { + "Ethernet4": { + "Direction": "standby", + "Presence": "True", + "PeerDirection": "active", + "ConnectivityState": "READY" + } + } +} +""" + expected_muxcable_cableinfo_output = """\ Vendor Model -------- --------------- @@ -395,6 +439,17 @@ Ethernet12 active True """ +show_muxcable_hwmode_muxdirection_active_expected_output_json = """\ +{ + "HWMODE": { + "Ethernet12": { + "Direction": "active", + "Presence": "True" + } + } +} +""" + show_muxcable_hwmode_muxdirection_active_expected_output_alias = """\ Port Direction Presence ------ ----------- ---------- @@ -2367,6 +2422,138 @@ def test_config_muxcable_telemetry_enable(self): "enable"], obj=db) assert result.exit_code == 0 + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "standby"})) + @mock.patch('show.muxcable.get_grpc_cached_version_mux_direction_per_port', mock.MagicMock(return_value={"self_mux_direction": "active", + "peer_mux_direction": "active", + "presence": "True", + "rc": 0, + "grpc_connection_status": "READY"})) + @mock.patch('show.muxcable.check_port_in_mux_cable_table', mock.MagicMock(return_value=True)) + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.platform_sfputil', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.get_physical_to_logical', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=[0])) + @mock.patch('sonic_y_cable.y_cable.check_read_side', mock.MagicMock(return_value=(1))) + @mock.patch('sonic_y_cable.y_cable.check_mux_direction', mock.MagicMock(return_value=(2))) + @mock.patch('re.match', mock.MagicMock(return_value=(True))) + def test_show_muxcable_grpc_muxdirection_port_standby_with_patch(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["grpc"].commands["muxdirection"], + ["Ethernet12"], obj=db) + assert result.exit_code == 0 + assert result.output == show_muxcable_grpc_muxdirection_active_expected_output + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "standby"})) + @mock.patch('show.muxcable.check_port_in_mux_cable_table', mock.MagicMock(return_value=True)) + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet4"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.platform_sfputil', mock.MagicMock(return_value={0: ["Ethernet4", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.get_physical_to_logical', mock.MagicMock(return_value={0: ["Ethernet4", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=[0])) + @mock.patch('sonic_y_cable.y_cable.check_read_side', mock.MagicMock(return_value=(1))) + @mock.patch('sonic_y_cable.y_cable.check_mux_direction', mock.MagicMock(return_value=(2))) + @mock.patch('re.match', mock.MagicMock(return_value=(True))) + def test_show_muxcable_grpc_muxdirection_port_standby(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["grpc"].commands["muxdirection"], + ["Ethernet4"], obj=db) + assert result.exit_code == 0 + assert result.output == show_muxcable_grpc_muxdirection_standby_expected_output + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "standby"})) + @mock.patch('show.muxcable.check_port_in_mux_cable_table', mock.MagicMock(return_value=True)) + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet4"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.platform_sfputil', mock.MagicMock(return_value={0: ["Ethernet4", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.get_physical_to_logical', mock.MagicMock(return_value={0: ["Ethernet4", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=[0])) + @mock.patch('sonic_y_cable.y_cable.check_read_side', mock.MagicMock(return_value=(1))) + @mock.patch('sonic_y_cable.y_cable.check_mux_direction', mock.MagicMock(return_value=(2))) + @mock.patch('re.match', mock.MagicMock(return_value=(True))) + def test_show_muxcable_grpc_muxdirection_port_standby_json(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["grpc"].commands["muxdirection"], + ["Ethernet4", "--json"], obj=db) + assert result.exit_code == 0 + assert result.output == show_muxcable_grpc_muxdirection_standby_expected_output_json + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "standby"})) + @mock.patch('show.muxcable.check_port_in_mux_cable_table', mock.MagicMock(return_value=True)) + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet4"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.platform_sfputil', mock.MagicMock(return_value={0: ["Ethernet0", "Ethernet4"]})) + @mock.patch('utilities_common.platform_sfputil_helper.get_physical_to_logical', mock.MagicMock(return_value={0: ["Ethernet0", "Ethernet4"]})) + @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=[0])) + @mock.patch('sonic_y_cable.y_cable.check_read_side', mock.MagicMock(return_value=(1))) + @mock.patch('sonic_y_cable.y_cable.check_mux_direction', mock.MagicMock(return_value=(2))) + @mock.patch('re.match', mock.MagicMock(return_value=(True))) + def test_show_muxcable_grpc_muxdirection_port_all(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["grpc"].commands["muxdirection"], obj=db) + assert result.exit_code == 0 + assert result.output == show_muxcable_grpc_muxdirection_active_expected_all_output + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "standby"})) + @mock.patch('show.muxcable.check_port_in_mux_cable_table', mock.MagicMock(return_value=True)) + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet4"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.platform_sfputil', mock.MagicMock(return_value={0: ["Ethernet0", "Ethernet4"]})) + @mock.patch('utilities_common.platform_sfputil_helper.get_physical_to_logical', mock.MagicMock(return_value={0: ["Ethernet0", "Ethernet4"]})) + @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=[0])) + @mock.patch('sonic_y_cable.y_cable.check_read_side', mock.MagicMock(return_value=(1))) + @mock.patch('sonic_y_cable.y_cable.check_mux_direction', mock.MagicMock(return_value=(2))) + @mock.patch('re.match', mock.MagicMock(return_value=(True))) + def test_show_muxcable_grpc_muxdirection_port_all_json(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["grpc"].commands["muxdirection"], ["--json"], obj=db) + assert result.exit_code == 0 + assert result.output == show_muxcable_grpc_muxdirection_active_expected_all_output_json + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "active"})) + @mock.patch('show.muxcable.get_hwmode_mux_direction_port', mock.MagicMock(return_value={0: 0, + 1: "active", + 2: "True"})) + @mock.patch('show.muxcable.check_port_in_mux_cable_table', mock.MagicMock(return_value=True)) + @mock.patch('utilities_common.platform_sfputil_helper.get_logical_list', mock.MagicMock(return_value=["Ethernet0", "Ethernet12"])) + @mock.patch('utilities_common.platform_sfputil_helper.get_asic_id_for_logical_port', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.platform_sfputil', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.get_physical_to_logical', mock.MagicMock(return_value={0: ["Ethernet12", "Ethernet0"]})) + @mock.patch('utilities_common.platform_sfputil_helper.logical_port_name_to_physical_port_list', mock.MagicMock(return_value=[0])) + @mock.patch('sonic_y_cable.y_cable.check_read_side', mock.MagicMock(return_value=(1))) + @mock.patch('sonic_y_cable.y_cable.check_mux_direction', mock.MagicMock(return_value=(1))) + @mock.patch('re.match', mock.MagicMock(return_value=(True))) + def test_show_muxcable_hwmode_muxdirection_port_active(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["hwmode"].commands["muxdirection"], + ["Ethernet12", "--json"], obj=db) + assert result.exit_code == 0 + assert result.output == show_muxcable_hwmode_muxdirection_active_expected_output_json + @classmethod def teardown_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "0" From 9e32962c55f2a1823b35673c0a7c7a5d04db5a8e Mon Sep 17 00:00:00 2001 From: mihirpat1 <112018033+mihirpat1@users.noreply.github.com> Date: Wed, 8 Feb 2023 16:39:00 -0800 Subject: [PATCH 066/312] Add transceiver info CLI support to show output from TRANSCEIVER_INFO for ZR (#2630) * Add transceiver info CLI support to show output from TRANSCEIVER_INFO for ZR Signed-off-by: Mihir Patel * Added test case for info CLI * Updated command reference * Resolved merged conflicts * Made convert_sfp_info_to_output_string generic for CMIS and non CMIS and added test case to address PR comment * Resolved test_multi_asic_interface_status_all failure * Addressed PR comments --------- Signed-off-by: Mihir Patel --- doc/Command-Reference.md | 44 ++++++- scripts/sfpshow | 29 ++++- show/interfaces/__init__.py | 22 ++++ tests/mock_tables/asic0/state_db.json | 37 ++++++ tests/mock_tables/asic1/state_db.json | 51 +++++--- tests/mock_tables/state_db.json | 37 ++++++ tests/multi_asic_intfutil_test.py | 24 ++-- tests/sfp_test.py | 162 +++++++++++++++++++++----- utilities_common/sfp_helper.py | 23 ++++ 9 files changed, 363 insertions(+), 66 deletions(-) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 6882e48e..2c3f4fb0 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -927,7 +927,7 @@ This command displays information for all the interfaces for the transceiver req - Usage: ``` - show interfaces transceiver (eeprom [-d|--dom] | lpmode | presence | error-status [-hw|--fetch-from-hardware] | pm) [] + show interfaces transceiver (eeprom [-d|--dom] | info | lpmode | presence | error-status [-hw|--fetch-from-hardware] | pm) [] ``` - Example (Decode and display information stored on the EEPROM of SFP transceiver connected to Ethernet0): @@ -965,6 +965,48 @@ This command displays information for all the interfaces for the transceiver req Vcc : 0.0000Volts ``` +- Example (Decode and display information stored on the EEPROM of SFP transceiver connected to Ethernet16): + ``` + admin@sonic:~$ show interfaces transceiver info Ethernet16 + Ethernet16: SFP EEPROM detected + Active Firmware: 61.20 + Active application selected code assigned to host lane 1: 1 + Active application selected code assigned to host lane 2: 1 + Active application selected code assigned to host lane 3: 1 + Active application selected code assigned to host lane 4: 1 + Active application selected code assigned to host lane 5: 1 + Active application selected code assigned to host lane 6: 1 + Active application selected code assigned to host lane 7: 1 + Active application selected code assigned to host lane 8: 1 + Application Advertisement: 400GAUI-8 C2M (Annex 120E) - Host Assign (0x1) - 400ZR, DWDM, amplified - Media Assign (0x1) + 400GAUI-8 C2M (Annex 120E) - Host Assign (0x1) - 400ZR, Single Wavelength, Unamplified - Media Assign (0x1) + 100GAUI-2 C2M (Annex 135G) - Host Assign (0x55) - 400ZR, DWDM, amplified - Media Assign (0x1) + CMIS Rev: 4.1 + Connector: LC + Encoding: N/A + Extended Identifier: Power Class 8 (20.0W Max) + Extended RateSelect Compliance: N/A + Host Lane Count: 8 + Identifier: QSFP-DD Double Density 8X Pluggable Transceiver + Inactive Firmware: 61.20 + Length Cable Assembly(m): 0.0 + Media Interface Technology: 1550 nm DFB + Media Lane Count: 1 + Module Hardware Rev: 49.49 + Nominal Bit Rate(100Mbs): 0 + Specification Compliance: sm_media_interface + Supported Max Laser Frequency: 196100 + Supported Max TX Power: 4.0 + Supported Min Laser Frequency: 191300 + Supported Min TX Power: -22.9 + Vendor Date Code(YYYY-MM-DD Lot): 2020-21-02 17 + Vendor Name: Acacia Comm Inc. + Vendor OUI: 7c-b2-5c + Vendor PN: DP04QSDD-E20-00E + Vendor Rev: 01 + Vendor SN: 210753986 + ``` + - Example (Display status of low-power mode of SFP transceiver connected to Ethernet100): ``` admin@sonic:~$ show interfaces transceiver lpmode Ethernet100 diff --git a/scripts/sfpshow b/scripts/sfpshow index 7b3c0cac..ac0adf5c 100755 --- a/scripts/sfpshow +++ b/scripts/sfpshow @@ -17,7 +17,7 @@ from natsort import natsorted from sonic_py_common.interface import front_panel_prefix, backplane_prefix, inband_prefix, recirc_prefix from sonic_py_common import multi_asic from utilities_common.sfp_helper import covert_application_advertisement_to_output_string -from utilities_common.sfp_helper import QSFP_DATA_MAP +from utilities_common.sfp_helper import QSFP_DATA_MAP, CMIS_DATA_MAP from tabulate import tabulate # Mock the redis DB for unit test purposes @@ -284,14 +284,16 @@ class SFPShow(object): def convert_sfp_info_to_output_string(self, sfp_info_dict): indent = ' ' * 8 output = '' + is_sfp_cmis = 'cmis_rev' in sfp_info_dict - sorted_qsfp_data_map_keys = sorted(QSFP_DATA_MAP, key=QSFP_DATA_MAP.get) - for key in sorted_qsfp_data_map_keys: + data_map = CMIS_DATA_MAP if is_sfp_cmis else QSFP_DATA_MAP + sorted_data_map_keys = sorted(data_map, key=data_map.get) + for key in sorted_data_map_keys: if key == 'cable_type': output += '{}{}: {}\n'.format(indent, sfp_info_dict['cable_type'], sfp_info_dict['cable_length']) elif key == 'cable_length': pass - elif key == 'specification_compliance': + elif key == 'specification_compliance' and not(is_sfp_cmis): if sfp_info_dict['type'] == "QSFP-DD Double Density 8X Pluggable Transceiver": output += '{}{}: {}\n'.format(indent, QSFP_DATA_MAP[key], sfp_info_dict[key]) else: @@ -308,7 +310,7 @@ class SFPShow(object): elif key == 'application_advertisement': output += covert_application_advertisement_to_output_string(indent, sfp_info_dict) else: - output += '{}{}: {}\n'.format(indent, QSFP_DATA_MAP[key], sfp_info_dict[key]) + output += '{}{}: {}\n'.format(indent, data_map[key], sfp_info_dict[key]) return output @@ -587,6 +589,23 @@ def eeprom(port, dump_dom, namespace): sfp.get_eeprom() sfp.display_eeprom() +# 'info' subcommand + +@cli.command() +@click.option('-p', '--port', metavar='', help="Display SFP EEPROM data for port only") +@click.option('-n', '--namespace', default=None, help="Display interfaces for specific namespace") +def info(port, namespace): + if port and multi_asic.is_multi_asic() and namespace is None: + try: + namespace = multi_asic.get_namespace_for_port(port) + except Exception: + display_invalid_intf_eeprom(port) + sys.exit(1) + + sfp = SFPShow(port, namespace) + sfp.get_eeprom() + sfp.display_eeprom() + # 'presence' subcommand diff --git a/show/interfaces/__init__.py b/show/interfaces/__init__.py index 0b172d69..a7a56244 100644 --- a/show/interfaces/__init__.py +++ b/show/interfaces/__init__.py @@ -469,6 +469,28 @@ def pm(interfacename, namespace, verbose): clicommon.run_command(cmd, display_cmd=verbose) +@transceiver.command() +@click.argument('interfacename', required=False) +@click.option('--namespace', '-n', 'namespace', default=None, show_default=True, + type=click.Choice(multi_asic_util.multi_asic_ns_choices()), help='Namespace name or all') +@click.option('--verbose', is_flag=True, help="Enable verbose output") +def info(interfacename, namespace, verbose): + """Show interface transceiver information""" + + ctx = click.get_current_context() + + cmd = "sfpshow info" + + if interfacename is not None: + interfacename = try_convert_interfacename_from_alias(ctx, interfacename) + + cmd += " -p {}".format(interfacename) + + if namespace is not None: + cmd += " -n {}".format(namespace) + + clicommon.run_command(cmd, display_cmd=verbose) + @transceiver.command() @click.argument('interfacename', required=False) @click.option('--verbose', is_flag=True, help="Enable verbose output") diff --git a/tests/mock_tables/asic0/state_db.json b/tests/mock_tables/asic0/state_db.json index 21b4fa0e..27564049 100644 --- a/tests/mock_tables/asic0/state_db.json +++ b/tests/mock_tables/asic0/state_db.json @@ -51,6 +51,43 @@ "vcclowalarm": "2.9700", "vcclowwarning": "3.1349" }, + "TRANSCEIVER_INFO|Ethernet48": { + "type" : "QSFP-DD Double Density 8X Pluggable Transceiver", + "hardware_rev" : "1.1", + "serial" : "214455197", + "manufacturer" : "Acacia Comm Inc.", + "model" : "DP04QSDD-E20-001", + "connector" : "LC", + "encoding" : "N/A", + "ext_identifier" : "Power Class 8 (20.0W Max)", + "ext_rateselect_compliance" : "N/A", + "cable_type" : "Length Cable Assembly(m)", + "cable_length" : "0.0", + "nominal_bit_rate" : "0", + "specification_compliance" : "sm_media_interface", + "vendor_date" : "2021-11-19", + "vendor_oui" : "7c-b2-5c", + "application_advertisement" : "{1: {'host_electrical_interface_id': '400GAUI-8 C2M (Annex 120E)', 'module_media_interface_id': '400ZR, DWDM, amplified', 'media_lane_count': 1, 'host_lane_count': 8, 'host_lane_assignment_options': 1, 'media_lane_assignment_options': 1}, 2: {'host_electrical_interface_id': '400GAUI-8 C2M (Annex 120E)', 'module_media_interface_id': '400ZR, Single Wavelength, Unamplified', 'media_lane_count': 1, 'host_lane_count': 8, 'host_lane_assignment_options': 1, 'media_lane_assignment_options': 1}, 3: {'host_electrical_interface_id': '100GAUI-2 C2M (Annex 135G)', 'module_media_interface_id': '400ZR, DWDM, amplified', 'media_lane_count': 1, 'host_lane_count': 2, 'host_lane_assignment_options': 85, 'media_lane_assignment_options': 1}}", + "host_lane_count" : "8", + "media_lane_count" : "1", + "active_apsel_hostlane1" : "1", + "active_apsel_hostlane2" : "1", + "active_apsel_hostlane3" : "1", + "active_apsel_hostlane4" : "1", + "active_apsel_hostlane5" : "1", + "active_apsel_hostlane6" : "1", + "active_apsel_hostlane7" : "1", + "active_apsel_hostlane8" : "1", + "media_interface_technology" : "1550 nm DFB", + "vendor_rev" : "A", + "cmis_rev" : "4.1", + "active_firmware" : "61.20", + "inactive_firmware" : "161.10", + "supported_max_tx_power" : "4.0", + "supported_min_tx_power" : "-22.9", + "supported_max_laser_freq" : "196100", + "supported_min_laser_freq" : "191300" + }, "CHASSIS_INFO|chassis 1": { "psu_num": "2" }, diff --git a/tests/mock_tables/asic1/state_db.json b/tests/mock_tables/asic1/state_db.json index dd775b9b..7397d25b 100644 --- a/tests/mock_tables/asic1/state_db.json +++ b/tests/mock_tables/asic1/state_db.json @@ -1,21 +1,40 @@ { "TRANSCEIVER_INFO|Ethernet64": { - "type": "QSFP28 or later", - "vendor_rev": "AC", - "serial": "MT1706FT02064", - "manufacturer": "Mellanox", - "model": "MFA1A00-C003", - "vendor_oui": "00-02-c9", - "vendor_date": "2017-01-13 ", - "connector": "No separable connector", - "encoding": "64B66B", - "ext_identifier": "Power Class 3(2.5W max), CDR present in Rx Tx", - "ext_rateselect_compliance": "QSFP+ Rate Select Version 1", - "cable_type": "Length Cable Assembly(m)", - "cable_length": "3", - "specification_compliance": "{'10/40G Ethernet Compliance Code': '40G Active Cable (XLPPI)'}", - "nominal_bit_rate": "255", - "application_advertisement": "N/A" + "type" : "QSFP-DD Double Density 8X Pluggable Transceiver", + "hardware_rev" : "X.X", + "serial" : "0123456789", + "manufacturer" : "XXXX", + "model" : "XXX", + "connector" : "LC", + "encoding" : "N/A", + "ext_identifier" : "Power Class 8 (20.0W Max)", + "ext_rateselect_compliance" : "N/A", + "cable_type" : "Length Cable Assembly(m)", + "cable_length" : "0.0", + "nominal_bit_rate" : "0", + "specification_compliance" : "sm_media_interface", + "vendor_date" : "2021-11-19", + "vendor_oui" : "XX-XX-XX", + "application_advertisement" : "{1: {'host_electrical_interface_id': '400GAUI-8 C2M (Annex 120E)', 'module_media_interface_id': '400ZR, DWDM, amplified', 'media_lane_count': 1, 'host_lane_count': 8, 'host_lane_assignment_options': 1, 'media_lane_assignment_options': 1}, 2: {'host_electrical_interface_id': '400GAUI-8 C2M (Annex 120E)', 'module_media_interface_id': '400ZR, Single Wavelength, Unamplified', 'media_lane_count': 1, 'host_lane_count': 8, 'host_lane_assignment_options': 1, 'media_lane_assignment_options': 1}, 3: {'host_electrical_interface_id': '100GAUI-2 C2M (Annex 135G)', 'module_media_interface_id': '400ZR, DWDM, amplified', 'media_lane_count': 1, 'host_lane_count': 2, 'host_lane_assignment_options': 85, 'media_lane_assignment_options': 1}}", + "host_lane_count" : "8", + "media_lane_count" : "1", + "active_apsel_hostlane1" : "1", + "active_apsel_hostlane2" : "1", + "active_apsel_hostlane3" : "1", + "active_apsel_hostlane4" : "1", + "active_apsel_hostlane5" : "1", + "active_apsel_hostlane6" : "1", + "active_apsel_hostlane7" : "1", + "active_apsel_hostlane8" : "1", + "media_interface_technology" : "1550 nm DFB", + "vendor_rev" : "XX", + "cmis_rev" : "4.1", + "active_firmware" : "X.X", + "inactive_firmware" : "X.X", + "supported_max_tx_power" : "4.0", + "supported_min_tx_power" : "-22.9", + "supported_max_laser_freq" : "196100", + "supported_min_laser_freq" : "191300" }, "TRANSCEIVER_DOM_SENSOR|Ethernet64": { "temperature": "30.9258", diff --git a/tests/mock_tables/state_db.json b/tests/mock_tables/state_db.json index 97633b3e..4cdda56b 100644 --- a/tests/mock_tables/state_db.json +++ b/tests/mock_tables/state_db.json @@ -373,6 +373,43 @@ "rx_sig_power_min": "-40", "rx_sig_power_max": "40" }, + "TRANSCEIVER_INFO|Ethernet64": { + "type" : "QSFP-DD Double Density 8X Pluggable Transceiver", + "hardware_rev" : "X.X", + "serial" : "0123456789", + "manufacturer" : "XXXX", + "model" : "XXX", + "connector" : "LC", + "encoding" : "N/A", + "ext_identifier" : "Power Class 8 (20.0W Max)", + "ext_rateselect_compliance" : "N/A", + "cable_type" : "Length Cable Assembly(m)", + "cable_length" : "0.0", + "nominal_bit_rate" : "0", + "specification_compliance" : "sm_media_interface", + "vendor_date" : "2021-11-19", + "vendor_oui" : "XX-XX-XX", + "application_advertisement" : "{1: {'host_electrical_interface_id': '400GAUI-8 C2M (Annex 120E)', 'module_media_interface_id': '400ZR, DWDM, amplified', 'media_lane_count': 1, 'host_lane_count': 8, 'host_lane_assignment_options': 1, 'media_lane_assignment_options': 1}, 2: {'host_electrical_interface_id': '400GAUI-8 C2M (Annex 120E)', 'module_media_interface_id': '400ZR, Single Wavelength, Unamplified', 'media_lane_count': 1, 'host_lane_count': 8, 'host_lane_assignment_options': 1, 'media_lane_assignment_options': 1}, 3: {'host_electrical_interface_id': '100GAUI-2 C2M (Annex 135G)', 'module_media_interface_id': '400ZR, DWDM, amplified', 'media_lane_count': 1, 'host_lane_count': 2, 'host_lane_assignment_options': 85, 'media_lane_assignment_options': 1}}", + "host_lane_count" : "8", + "media_lane_count" : "1", + "active_apsel_hostlane1" : "1", + "active_apsel_hostlane2" : "1", + "active_apsel_hostlane3" : "1", + "active_apsel_hostlane4" : "1", + "active_apsel_hostlane5" : "1", + "active_apsel_hostlane6" : "1", + "active_apsel_hostlane7" : "1", + "active_apsel_hostlane8" : "1", + "media_interface_technology" : "1550 nm DFB", + "vendor_rev" : "XX", + "cmis_rev" : "4.1", + "active_firmware" : "X.X", + "inactive_firmware" : "X.X", + "supported_max_tx_power" : "4.0", + "supported_min_tx_power" : "-22.9", + "supported_max_laser_freq" : "196100", + "supported_min_laser_freq" : "191300" + }, "TRANSCEIVER_STATUS|Ethernet0": { "status": "67", "error": "Blocking Error|High temperature" diff --git a/tests/multi_asic_intfutil_test.py b/tests/multi_asic_intfutil_test.py index 56e11fa0..37e5b5b0 100644 --- a/tests/multi_asic_intfutil_test.py +++ b/tests/multi_asic_intfutil_test.py @@ -10,18 +10,18 @@ scripts_path = os.path.join(modules_path, "scripts") intf_status_all = """\ - Interface Lanes Speed MTU FEC Alias Vlan Oper Admin Type Asym PFC ---------------- ------------ ------- ----- ----- -------------- --------------- ------ ------- --------------- ---------- - Ethernet0 33,34,35,36 40G 9100 N/A Ethernet1/1 PortChannel1002 up up QSFP28 or later off - Ethernet4 29,30,31,32 40G 9100 N/A Ethernet1/2 PortChannel1002 up up N/A off - Ethernet64 29,30,31,32 40G 9100 N/A Ethernet1/17 routed up up QSFP28 or later off - Ethernet-BP0 93,94,95,96 40G 9100 N/A Ethernet-BP0 PortChannel4001 up up N/A off - Ethernet-BP4 97,98,99,100 40G 9100 N/A Ethernet-BP4 PortChannel4001 up up N/A off - Ethernet-BP256 61,62,63,64 40G 9100 N/A Ethernet-BP256 PortChannel4009 up up N/A off - Ethernet-BP260 57,58,59,60 40G 9100 N/A Ethernet-BP260 PortChannel4009 up up N/A off -PortChannel1002 N/A 80G 9100 N/A N/A trunk up up N/A N/A -PortChannel4001 N/A 80G 9100 N/A N/A routed up up N/A N/A -PortChannel4009 N/A 80G 9100 N/A N/A routed up up N/A N/A + Interface Lanes Speed MTU FEC Alias Vlan Oper Admin Type Asym PFC +--------------- ------------ ------- ----- ----- -------------- --------------- ------ ------- ----------------------------------------------- ---------- + Ethernet0 33,34,35,36 40G 9100 N/A Ethernet1/1 PortChannel1002 up up QSFP28 or later off + Ethernet4 29,30,31,32 40G 9100 N/A Ethernet1/2 PortChannel1002 up up N/A off + Ethernet64 29,30,31,32 40G 9100 N/A Ethernet1/17 routed up up QSFP-DD Double Density 8X Pluggable Transceiver off + Ethernet-BP0 93,94,95,96 40G 9100 N/A Ethernet-BP0 PortChannel4001 up up N/A off + Ethernet-BP4 97,98,99,100 40G 9100 N/A Ethernet-BP4 PortChannel4001 up up N/A off + Ethernet-BP256 61,62,63,64 40G 9100 N/A Ethernet-BP256 PortChannel4009 up up N/A off + Ethernet-BP260 57,58,59,60 40G 9100 N/A Ethernet-BP260 PortChannel4009 up up N/A off +PortChannel1002 N/A 80G 9100 N/A N/A trunk up up N/A N/A +PortChannel4001 N/A 80G 9100 N/A N/A routed up up N/A N/A +PortChannel4009 N/A 80G 9100 N/A N/A routed up up N/A N/A """ intf_status = """\ Interface Lanes Speed MTU FEC Alias Vlan Oper Admin Type Asym PFC diff --git a/tests/sfp_test.py b/tests/sfp_test.py index 5e2c7426..b6b94ebf 100644 --- a/tests/sfp_test.py +++ b/tests/sfp_test.py @@ -215,6 +215,46 @@ EVM % 100.0 100.0 100.0 N/A N/A N/A N/A N/A N/A """ +test_cmis_eeprom_output = """\ +Ethernet64: SFP EEPROM detected + Active Firmware: X.X + Active application selected code assigned to host lane 1: 1 + Active application selected code assigned to host lane 2: 1 + Active application selected code assigned to host lane 3: 1 + Active application selected code assigned to host lane 4: 1 + Active application selected code assigned to host lane 5: 1 + Active application selected code assigned to host lane 6: 1 + Active application selected code assigned to host lane 7: 1 + Active application selected code assigned to host lane 8: 1 + Application Advertisement: 400GAUI-8 C2M (Annex 120E) - Host Assign (0x1) - 400ZR, DWDM, amplified - Media Assign (0x1) + 400GAUI-8 C2M (Annex 120E) - Host Assign (0x1) - 400ZR, Single Wavelength, Unamplified - Media Assign (0x1) + 100GAUI-2 C2M (Annex 135G) - Host Assign (0x55) - 400ZR, DWDM, amplified - Media Assign (0x1) + CMIS Rev: 4.1 + Connector: LC + Encoding: N/A + Extended Identifier: Power Class 8 (20.0W Max) + Extended RateSelect Compliance: N/A + Host Lane Count: 8 + Identifier: QSFP-DD Double Density 8X Pluggable Transceiver + Inactive Firmware: X.X + Length Cable Assembly(m): 0.0 + Media Interface Technology: 1550 nm DFB + Media Lane Count: 1 + Module Hardware Rev: X.X + Nominal Bit Rate(100Mbs): 0 + Specification compliance: sm_media_interface + Supported Max Laser Frequency: 196100 + Supported Max TX Power: 4.0 + Supported Min Laser Frequency: 191300 + Supported Min TX Power: -22.9 + Vendor Date Code(YYYY-MM-DD Lot): 2021-11-19 + Vendor Name: XXXX + Vendor OUI: XX-XX-XX + Vendor PN: XXX + Vendor Rev: XX + Vendor SN: 0123456789 +""" + test_sfp_eeprom_dom_all_output = """\ Ethernet0: SFP EEPROM detected Application Advertisement: N/A @@ -267,22 +307,42 @@ Ethernet4: SFP EEPROM Not detected Ethernet64: SFP EEPROM detected - Application Advertisement: N/A - Connector: No separable connector - Encoding: 64B66B - Extended Identifier: Power Class 3(2.5W max), CDR present in Rx Tx - Extended RateSelect Compliance: QSFP+ Rate Select Version 1 - Identifier: QSFP28 or later - Length Cable Assembly(m): 3 - Nominal Bit Rate(100Mbs): 255 - Specification compliance: - 10/40G Ethernet Compliance Code: 40G Active Cable (XLPPI) - Vendor Date Code(YYYY-MM-DD Lot): 2017-01-13 - Vendor Name: Mellanox - Vendor OUI: 00-02-c9 - Vendor PN: MFA1A00-C003 - Vendor Rev: AC - Vendor SN: MT1706FT02064 + Active Firmware: X.X + Active application selected code assigned to host lane 1: 1 + Active application selected code assigned to host lane 2: 1 + Active application selected code assigned to host lane 3: 1 + Active application selected code assigned to host lane 4: 1 + Active application selected code assigned to host lane 5: 1 + Active application selected code assigned to host lane 6: 1 + Active application selected code assigned to host lane 7: 1 + Active application selected code assigned to host lane 8: 1 + Application Advertisement: 400GAUI-8 C2M (Annex 120E) - Host Assign (0x1) - 400ZR, DWDM, amplified - Media Assign (0x1) + 400GAUI-8 C2M (Annex 120E) - Host Assign (0x1) - 400ZR, Single Wavelength, Unamplified - Media Assign (0x1) + 100GAUI-2 C2M (Annex 135G) - Host Assign (0x55) - 400ZR, DWDM, amplified - Media Assign (0x1) + CMIS Rev: 4.1 + Connector: LC + Encoding: N/A + Extended Identifier: Power Class 8 (20.0W Max) + Extended RateSelect Compliance: N/A + Host Lane Count: 8 + Identifier: QSFP-DD Double Density 8X Pluggable Transceiver + Inactive Firmware: X.X + Length Cable Assembly(m): 0.0 + Media Interface Technology: 1550 nm DFB + Media Lane Count: 1 + Module Hardware Rev: X.X + Nominal Bit Rate(100Mbs): 0 + Specification compliance: sm_media_interface + Supported Max Laser Frequency: 196100 + Supported Max TX Power: 4.0 + Supported Min Laser Frequency: 191300 + Supported Min TX Power: -22.9 + Vendor Date Code(YYYY-MM-DD Lot): 2021-11-19 + Vendor Name: XXXX + Vendor OUI: XX-XX-XX + Vendor PN: XXX + Vendor Rev: XX + Vendor SN: 0123456789 ChannelMonitorValues: RX1Power: 0.3802dBm RX2Power: -0.4871dBm @@ -337,22 +397,42 @@ Ethernet4: SFP EEPROM Not detected Ethernet64: SFP EEPROM detected - Application Advertisement: N/A - Connector: No separable connector - Encoding: 64B66B - Extended Identifier: Power Class 3(2.5W max), CDR present in Rx Tx - Extended RateSelect Compliance: QSFP+ Rate Select Version 1 - Identifier: QSFP28 or later - Length Cable Assembly(m): 3 - Nominal Bit Rate(100Mbs): 255 - Specification compliance: - 10/40G Ethernet Compliance Code: 40G Active Cable (XLPPI) - Vendor Date Code(YYYY-MM-DD Lot): 2017-01-13 - Vendor Name: Mellanox - Vendor OUI: 00-02-c9 - Vendor PN: MFA1A00-C003 - Vendor Rev: AC - Vendor SN: MT1706FT02064 + Active Firmware: X.X + Active application selected code assigned to host lane 1: 1 + Active application selected code assigned to host lane 2: 1 + Active application selected code assigned to host lane 3: 1 + Active application selected code assigned to host lane 4: 1 + Active application selected code assigned to host lane 5: 1 + Active application selected code assigned to host lane 6: 1 + Active application selected code assigned to host lane 7: 1 + Active application selected code assigned to host lane 8: 1 + Application Advertisement: 400GAUI-8 C2M (Annex 120E) - Host Assign (0x1) - 400ZR, DWDM, amplified - Media Assign (0x1) + 400GAUI-8 C2M (Annex 120E) - Host Assign (0x1) - 400ZR, Single Wavelength, Unamplified - Media Assign (0x1) + 100GAUI-2 C2M (Annex 135G) - Host Assign (0x55) - 400ZR, DWDM, amplified - Media Assign (0x1) + CMIS Rev: 4.1 + Connector: LC + Encoding: N/A + Extended Identifier: Power Class 8 (20.0W Max) + Extended RateSelect Compliance: N/A + Host Lane Count: 8 + Identifier: QSFP-DD Double Density 8X Pluggable Transceiver + Inactive Firmware: X.X + Length Cable Assembly(m): 0.0 + Media Interface Technology: 1550 nm DFB + Media Lane Count: 1 + Module Hardware Rev: X.X + Nominal Bit Rate(100Mbs): 0 + Specification compliance: sm_media_interface + Supported Max Laser Frequency: 196100 + Supported Max TX Power: 4.0 + Supported Min Laser Frequency: 191300 + Supported Min TX Power: -22.9 + Vendor Date Code(YYYY-MM-DD Lot): 2021-11-19 + Vendor Name: XXXX + Vendor OUI: XX-XX-XX + Vendor PN: XXX + Vendor Rev: XX + Vendor SN: 0123456789 """ test_sfp_presence_all_output = """\ @@ -464,6 +544,12 @@ def test_qsfp_dd_eeprom_adv_app(self): print(result.output) assert result.output == test_qsfp_dd_eeprom_adv_app_output + def test_cmis_info(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["info"], ["Ethernet64"]) + assert result.exit_code == 0 + assert result.output == test_cmis_eeprom_output + def test_rj45_eeprom(self): runner = CliRunner() result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ["Ethernet36"]) @@ -545,12 +631,24 @@ def test_qsfp_dd_pm_with_ns(self): expected = "Ethernet0: Transceiver performance monitoring not applicable" assert result_lines == expected + def test_cmis_sfp_info_with_ns(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["info"], ["Ethernet64 -n asic1"]) + assert result.exit_code == 0 + assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_cmis_eeprom_output + def test_sfp_eeprom_all(self): runner = CliRunner() result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"]) assert result.exit_code == 0 assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_sfp_eeprom_all_output + def test_sfp_info_all(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["info"]) + assert result.exit_code == 0 + assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_sfp_eeprom_all_output + def test_sfp_eeprom_dom_all(self): runner = CliRunner() result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ["-d"]) diff --git a/utilities_common/sfp_helper.py b/utilities_common/sfp_helper.py index 6ae9b85a..a5bf7839 100644 --- a/utilities_common/sfp_helper.py +++ b/utilities_common/sfp_helper.py @@ -19,6 +19,29 @@ 'application_advertisement': 'Application Advertisement' } +QSFP_CMIS_DELTA_DATA_MAP = { + 'host_lane_count': 'Host Lane Count', + 'media_lane_count': 'Media Lane Count', + 'active_apsel_hostlane1': 'Active application selected code assigned to host lane 1', + 'active_apsel_hostlane2': 'Active application selected code assigned to host lane 2', + 'active_apsel_hostlane3': 'Active application selected code assigned to host lane 3', + 'active_apsel_hostlane4': 'Active application selected code assigned to host lane 4', + 'active_apsel_hostlane5': 'Active application selected code assigned to host lane 5', + 'active_apsel_hostlane6': 'Active application selected code assigned to host lane 6', + 'active_apsel_hostlane7': 'Active application selected code assigned to host lane 7', + 'active_apsel_hostlane8': 'Active application selected code assigned to host lane 8', + 'media_interface_technology': 'Media Interface Technology', + 'hardware_rev': 'Module Hardware Rev', + 'cmis_rev': 'CMIS Rev', + 'active_firmware': 'Active Firmware', + 'inactive_firmware': 'Inactive Firmware', + 'supported_max_tx_power': 'Supported Max TX Power', + 'supported_min_tx_power': 'Supported Min TX Power', + 'supported_max_laser_freq': 'Supported Max Laser Frequency', + 'supported_min_laser_freq': 'Supported Min Laser Frequency' +} + +CMIS_DATA_MAP = {**QSFP_DATA_MAP, **QSFP_CMIS_DELTA_DATA_MAP} def covert_application_advertisement_to_output_string(indent, sfp_info_dict): key = 'application_advertisement' From 9126e7f8ab66427096b16c6e305d075767be49eb Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak <38952541+stepanblyschak@users.noreply.github.com> Date: Thu, 9 Feb 2023 05:20:11 +0200 Subject: [PATCH 067/312] [config/show] Add command to control pending FIB suppression (#2495) * [config/show] Add command to control pending FIB suppression What I did I added a command config suppress-pending-fib that will allow user to enable/disable this feature. Once it is enabled, BGP will wait for route to be programmed to HW before announcing the route to the peers. I also added a corresponding show command that prints the status of this feature. --- config/main.py | 16 +++++++++++-- doc/Command-Reference.md | 38 ++++++++++++++++++++++++++++++ show/main.py | 11 +++++++++ tests/suppress_pending_fib_test.py | 34 ++++++++++++++++++++++++++ 4 files changed, 97 insertions(+), 2 deletions(-) create mode 100644 tests/suppress_pending_fib_test.py diff --git a/config/main.py b/config/main.py index 5fdc177e..6f155ba6 100644 --- a/config/main.py +++ b/config/main.py @@ -1793,7 +1793,7 @@ def load_minigraph(db, no_service_restart, traffic_shift_away, override_config, cfggen_namespace_option = " -n {}".format(namespace) clicommon.run_command(db_migrator + ' -o set_version' + cfggen_namespace_option) - # Keep device isolated with TSA + # Keep device isolated with TSA if traffic_shift_away: clicommon.run_command("TSA", display_cmd=True) if override_config: @@ -2006,9 +2006,21 @@ def synchronous_mode(sync_mode): config reload -y \n Option 2. systemctl restart swss""" % sync_mode) +# +# 'suppress-fib-pending' command ('config suppress-fib-pending ...') +# +@config.command('suppress-fib-pending') +@click.argument('state', metavar='', required=True, type=click.Choice(['enabled', 'disabled'])) +@clicommon.pass_db +def suppress_pending_fib(db, state): + ''' Enable or disable pending FIB suppression. Once enabled, BGP will not advertise routes that are not yet installed in the hardware ''' + + config_db = db.cfgdb + config_db.mod_entry('DEVICE_METADATA' , 'localhost', {"suppress-fib-pending" : state}) + # # 'yang_config_validation' command ('config yang_config_validation ...') -# +# @config.command('yang_config_validation') @click.argument('yang_config_validation', metavar='', required=True) def yang_config_validation(yang_config_validation): diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 2c3f4fb0..7ba12dfb 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -2055,6 +2055,26 @@ This command displays the routing policy that takes precedence over the other ro Exit routemap ``` +**show suppress-fib-pending** + +This command is used to show the status of suppress pending FIB feature. +When enabled, BGP will not advertise routes which aren't yet offloaded. + +- Usage: + ``` + show suppress-fib-pending + ``` + +- Examples: + ``` + admin@sonic:~$ show suppress-fib-pending + Enabled + ``` + ``` + admin@sonic:~$ show suppress-fib-pending + Disabled + ``` + Go Back To [Beginning of the document](#) or [Beginning of this section](#bgp) ### BGP config commands @@ -2147,6 +2167,24 @@ This command is used to remove particular IPv4 or IPv6 BGP neighbor configuratio admin@sonic:~$ sudo config bgp remove neighbor SONIC02SPINE ``` +**config suppress-fib-pending** + +This command is used to enable or disable announcements of routes not yet installed in the HW. +Once enabled, BGP will not advertise routes which aren't yet offloaded. + +- Usage: + ``` + config suppress-fib-pending + ``` + +- Examples: + ``` + admin@sonic:~$ sudo config suppress-fib-pending enabled + ``` + ``` + admin@sonic:~$ sudo config suppress-fib-pending disabled + ``` + Go Back To [Beginning of the document](#) or [Beginning of this section](#bgp) ## Console diff --git a/show/main.py b/show/main.py index 117958f8..a60e8411 100755 --- a/show/main.py +++ b/show/main.py @@ -2093,6 +2093,17 @@ def peer(db, peer_ip): click.echo(tabulate(bfd_body, bfd_headers)) +# 'suppress-fib-pending' subcommand ("show suppress-fib-pending") +@cli.command('suppress-fib-pending') +@clicommon.pass_db +def suppress_pending_fib(db): + """ Show the status of suppress pending FIB feature """ + + field_values = db.cfgdb.get_entry('DEVICE_METADATA', 'localhost') + state = field_values.get('suppress-fib-pending', 'disabled').title() + click.echo(state) + + # Load plugins and register them helper = util_base.UtilHelper() helper.load_and_register_plugins(plugins, cli) diff --git a/tests/suppress_pending_fib_test.py b/tests/suppress_pending_fib_test.py new file mode 100644 index 00000000..04064d30 --- /dev/null +++ b/tests/suppress_pending_fib_test.py @@ -0,0 +1,34 @@ +from click.testing import CliRunner + +import config.main as config +import show.main as show +from utilities_common.db import Db + + +class TestSuppressFibPending: + def test_synchronous_mode(self): + runner = CliRunner() + + db = Db() + + result = runner.invoke(config.config.commands['suppress-fib-pending'], ['enabled'], obj=db) + print(result.output) + assert result.exit_code == 0 + assert db.cfgdb.get_entry('DEVICE_METADATA' , 'localhost')['suppress-fib-pending'] == 'enabled' + + result = runner.invoke(show.cli.commands['suppress-fib-pending'], obj=db) + assert result.exit_code == 0 + assert result.output == 'Enabled\n' + + result = runner.invoke(config.config.commands['suppress-fib-pending'], ['disabled'], obj=db) + print(result.output) + assert result.exit_code == 0 + assert db.cfgdb.get_entry('DEVICE_METADATA' , 'localhost')['suppress-fib-pending'] == 'disabled' + + result = runner.invoke(show.cli.commands['suppress-fib-pending'], obj=db) + assert result.exit_code == 0 + assert result.output == 'Disabled\n' + + result = runner.invoke(config.config.commands['suppress-fib-pending'], ['invalid-input'], obj=db) + print(result.output) + assert result.exit_code != 0 From 7e94c5fa9e36e8ce9c462f1a1f8249493364664b Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Fri, 10 Feb 2023 09:13:51 +0800 Subject: [PATCH 068/312] [GCU] protect loopback0 from deletion (#2638) What I did Refer to sonic-net/sonic-buildimage#11171, protect loopback0 from deletion How I did it Add patch checker to fail the validation when remove loopback0 How to verify it Unit test --- generic_config_updater/gu_common.py | 11 +++-- .../generic_config_updater/gu_common_test.py | 42 +++++++++++++++++-- 2 files changed, 47 insertions(+), 6 deletions(-) diff --git a/generic_config_updater/gu_common.py b/generic_config_updater/gu_common.py index 743253cc..0d7a5281 100644 --- a/generic_config_updater/gu_common.py +++ b/generic_config_updater/gu_common.py @@ -149,9 +149,14 @@ def validate_field_operation(self, old_config, target_config): patch = jsonpatch.JsonPatch.from_diff(old_config, target_config) # illegal_operations_to_fields_map['remove'] yields a list of fields for which `remove` is an illegal operation - illegal_operations_to_fields_map = {'add':[], - 'replace': [], - 'remove': ['/PFC_WD/GLOBAL/POLL_INTERVAL', '/PFC_WD/GLOBAL']} + illegal_operations_to_fields_map = { + 'add':[], + 'replace': [], + 'remove': [ + '/PFC_WD/GLOBAL/POLL_INTERVAL', + '/PFC_WD/GLOBAL', + '/LOOPBACK_INTERFACE/Loopback0'] + } for operation, field_list in illegal_operations_to_fields_map.items(): for field in field_list: if any(op['op'] == operation and field == op['path'] for op in patch): diff --git a/tests/generic_config_updater/gu_common_test.py b/tests/generic_config_updater/gu_common_test.py index dc183236..7fa471ee 100644 --- a/tests/generic_config_updater/gu_common_test.py +++ b/tests/generic_config_updater/gu_common_test.py @@ -69,18 +69,54 @@ def setUp(self): self.config_wrapper_mock = gu_common.ConfigWrapper() self.config_wrapper_mock.get_config_db_as_json=MagicMock(return_value=Files.CONFIG_DB_AS_JSON) - def test_validate_field_operation_legal(self): + def test_validate_field_operation_legal__pfcwd(self): old_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "60"}}} target_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "40"}}} config_wrapper = gu_common.ConfigWrapper() config_wrapper.validate_field_operation(old_config, target_config) - - def test_validate_field_operation_illegal(self): + + def test_validate_field_operation_legal__rm_loopback1(self): + old_config = { + "LOOPBACK_INTERFACE": { + "Loopback0": {}, + "Loopback0|10.1.0.32/32": {}, + "Loopback1": {}, + "Loopback1|10.1.0.33/32": {} + } + } + target_config = { + "LOOPBACK_INTERFACE": { + "Loopback0": {}, + "Loopback0|10.1.0.32/32": {} + } + } + config_wrapper = gu_common.ConfigWrapper() + config_wrapper.validate_field_operation(old_config, target_config) + + def test_validate_field_operation_illegal__pfcwd(self): old_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": 60}}} target_config = {"PFC_WD": {"GLOBAL": {}}} config_wrapper = gu_common.ConfigWrapper() self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) + def test_validate_field_operation_illegal__rm_loopback0(self): + old_config = { + "LOOPBACK_INTERFACE": { + "Loopback0": {}, + "Loopback0|10.1.0.32/32": {}, + "Loopback1": {}, + "Loopback1|10.1.0.33/32": {} + } + } + target_config = { + "LOOPBACK_INTERFACE": { + "Loopback1": {}, + "Loopback1|10.1.0.33/32": {} + } + } + config_wrapper = gu_common.ConfigWrapper() + self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) + def test_ctor__default_values_set(self): config_wrapper = gu_common.ConfigWrapper() From 784a15ccb51e777a16200ba59a4eab8849f3e9fa Mon Sep 17 00:00:00 2001 From: Yaqiang Zhu Date: Fri, 10 Feb 2023 17:49:38 +0800 Subject: [PATCH 069/312] [vlan] Refresh dhcpv6_relay config while adding/deleting a vlan (#2660) What I did Currently, add/del a vlan doesn't change related dhcpv6_relay config, which is incorrect. How I did it 1. Add dhcp_relay table init entry while adding vlan 2. Delete dhcp_relay related config while deleting vlan 3. Add unitest How to verify it 1. By unitest 2. install whl and run cli Signed-off-by: Yaqiang Zhu --- config/vlan.py | 43 ++++++++++++++------- tests/conftest.py | 11 ++++++ tests/mclag_test.py | 4 +- tests/vlan_test.py | 60 ++++++++++++++++++++++++++--- utilities_common/cli.py | 4 +- utilities_common/dhcp_relay_util.py | 20 ++++++++++ 6 files changed, 118 insertions(+), 24 deletions(-) create mode 100644 utilities_common/dhcp_relay_util.py diff --git a/config/vlan.py b/config/vlan.py index 7587e024..feb4fd22 100644 --- a/config/vlan.py +++ b/config/vlan.py @@ -1,5 +1,6 @@ import click import utilities_common.cli as clicommon +import utilities_common.dhcp_relay_util as dhcp_relay_util from jsonpatch import JsonPatchConflict from time import sleep @@ -16,6 +17,11 @@ 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) + + @vlan.command('add') @click.argument('vid', metavar='', required=True, type=int) @clicommon.pass_db @@ -24,7 +30,7 @@ def add_vlan(db, vid): ctx = click.get_current_context() vlan = 'Vlan{}'.format(vid) - + config_db = ValidatedConfigDBConnector(db.cfgdb) if ADHOC_VALIDATION: if not clicommon.is_vlanid_in_range(vid): @@ -32,14 +38,19 @@ def add_vlan(db, vid): if vid == 1: ctx.fail("{} is default VLAN".format(vlan)) # TODO: MISSING CONSTRAINT IN YANG MODEL - + if clicommon.check_if_vlanid_exist(db.cfgdb, vlan): # TODO: MISSING CONSTRAINT IN YANG MODEL ctx.fail("{} already exists".format(vlan)) - - try: - config_db.set_entry('VLAN', vlan, {'vlanid': str(vid)}) - except ValueError: - ctx.fail("Invalid VLAN ID {} (1-4094)".format(vid)) + if clicommon.check_if_vlanid_exist(db.cfgdb, vlan, "DHCP_RELAY"): + ctx.fail("DHCPv6 relay config for {} already exists".format(vlan)) + # set dhcpv4_relay table + set_dhcp_relay_table('VLAN', config_db, vlan, {'vlanid': str(vid)}) + + # set dhcpv6_relay table + set_dhcp_relay_table('DHCP_RELAY', config_db, vlan, {'vlanid': str(vid)}) + # We need to restart dhcp_relay service after dhcpv6_relay config change + dhcp_relay_util.handle_restart_dhcp_relay_service() + @vlan.command('del') @click.argument('vid', metavar='', required=True, type=int) @@ -67,19 +78,23 @@ def del_vlan(db, vid): ctx.fail("{} can not be removed. First remove IP addresses assigned to this VLAN".format(vlan)) keys = [ (k, v) for k, v in db.cfgdb.get_table('VLAN_MEMBER') if k == 'Vlan{}'.format(vid) ] - + if keys: # 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)) ) - - try: - config_db.set_entry('VLAN', 'Vlan{}'.format(vid), None) - except JsonPatchConflict: - ctx.fail("{} does not exist".format(vlan)) + + # set dhcpv4_relay table + set_dhcp_relay_table('VLAN', config_db, vlan, None) + + # 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 + dhcp_relay_util.handle_restart_dhcp_relay_service() + def restart_ndppd(): verify_swss_running_cmd = "docker container inspect -f '{{.State.Status}}' swss" diff --git a/tests/conftest.py b/tests/conftest.py index bf4c2a40..b6b454ba 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -20,6 +20,7 @@ ) from . import config_int_ip_common import utilities_common.constants as constants +import config.main as config test_path = os.path.dirname(os.path.abspath(__file__)) modules_path = os.path.dirname(test_path) @@ -356,3 +357,13 @@ def setup_fib_commands(): import show.main as show return show + +@pytest.fixture(scope='function') +def mock_restart_dhcp_relay_service(): + print("We are mocking restart dhcp_relay") + origin_func = config.vlan.dhcp_relay_util.handle_restart_dhcp_relay_service + config.vlan.dhcp_relay_util.handle_restart_dhcp_relay_service = mock.MagicMock(return_value=0) + + yield + + config.vlan.dhcp_relay_util.handle_restart_dhcp_relay_service = origin_func diff --git a/tests/mclag_test.py b/tests/mclag_test.py index d68c25a8..a6531740 100644 --- a/tests/mclag_test.py +++ b/tests/mclag_test.py @@ -448,7 +448,7 @@ def test_mclag_add_member(self): - def test_mclag_add_unique_ip(self): + def test_mclag_add_unique_ip(self, mock_restart_dhcp_relay_service): runner = CliRunner() db = Db() obj = {'db':db.cfgdb} @@ -483,7 +483,7 @@ def test_mclag_add_unique_ip(self): keys = db.cfgdb.get_keys('MCLAG_UNIQUE_IP') assert MCLAG_UNIQUE_IP_VLAN not in keys, "unique ip not conifgured" - def test_mclag_add_unique_ip_non_default_vrf(self): + def test_mclag_add_unique_ip_non_default_vrf(self, mock_restart_dhcp_relay_service): runner = CliRunner() db = Db() obj = {'db':db.cfgdb} diff --git a/tests/vlan_test.py b/tests/vlan_test.py index 66ec3606..85673c50 100644 --- a/tests/vlan_test.py +++ b/tests/vlan_test.py @@ -1,5 +1,6 @@ import os import traceback +import pytest from unittest import mock from click.testing import CliRunner @@ -10,6 +11,18 @@ from importlib import reload import utilities_common.bgp_util as bgp_util +IP_VERSION_PARAMS_MAP = { + "ipv4": { + "table": "VLAN" + }, + "ipv6": { + "table": "DHCP_RELAY" + } +} +DHCP_RELAY_TABLE_ENTRY = { + "vlanid": "1001" +} + show_vlan_brief_output="""\ +-----------+-----------------+-----------------+----------------+-------------+ | VLAN ID | IP Address | Ports | Port Tagging | Proxy ARP | @@ -143,6 +156,8 @@ | 4000 | | PortChannel1001 | tagged | disabled | +-----------+-----------------+-----------------+----------------+-------------+ """ + + class TestVlan(object): _old_run_bgp_command = None @classmethod @@ -319,7 +334,7 @@ def test_config_vlan_add_rif_portchannel_member(self): assert result.exit_code != 0 assert "Error: PortChannel0001 is a router interface!" in result.output - def test_config_vlan_with_vxlanmap_del_vlan(self): + def test_config_vlan_with_vxlanmap_del_vlan(self, mock_restart_dhcp_relay_service): runner = CliRunner() db = Db() obj = {'config_db': db.cfgdb} @@ -343,7 +358,7 @@ def test_config_vlan_with_vxlanmap_del_vlan(self): assert result.exit_code != 0 assert "Error: vlan: 1027 can not be removed. First remove vxlan mapping" in result.output - def test_config_vlan_del_vlan(self): + def test_config_vlan_del_vlan(self, mock_restart_dhcp_relay_service): runner = CliRunner() db = Db() obj = {'config_db':db.cfgdb} @@ -401,7 +416,7 @@ def test_config_vlan_del_nonexist_vlan_member(self): assert result.exit_code != 0 assert "Error: Ethernet0 is not a member of Vlan1000" in result.output - def test_config_add_del_vlan_and_vlan_member(self): + def test_config_add_del_vlan_and_vlan_member(self, mock_restart_dhcp_relay_service): runner = CliRunner() db = Db() @@ -444,7 +459,7 @@ def test_config_add_del_vlan_and_vlan_member(self): assert result.exit_code == 0 assert result.output == show_vlan_brief_output - def test_config_add_del_vlan_and_vlan_member_in_alias_mode(self): + def test_config_add_del_vlan_and_vlan_member_in_alias_mode(self, mock_restart_dhcp_relay_service): runner = CliRunner() db = Db() @@ -521,7 +536,7 @@ def test_config_vlan_proxy_arp_with_nonexist_vlan_intf(self): assert result.exit_code != 0 assert "Interface Vlan1001 does not exist" in result.output - def test_config_vlan_proxy_arp_enable(self): + def test_config_vlan_proxy_arp_enable(self, mock_restart_dhcp_relay_service): runner = CliRunner() db = Db() @@ -533,7 +548,7 @@ def test_config_vlan_proxy_arp_enable(self): assert result.exit_code == 0 assert db.cfgdb.get_entry("VLAN_INTERFACE", "Vlan1000") == {"proxy_arp": "enabled"} - def test_config_vlan_proxy_arp_disable(self): + def test_config_vlan_proxy_arp_disable(self, mock_restart_dhcp_relay_service): runner = CliRunner() db = Db() @@ -584,6 +599,39 @@ def test_config_vlan_add_member_of_portchannel(self): assert result.exit_code != 0 assert "Error: Ethernet32 is part of portchannel!" in result.output + @pytest.mark.parametrize("ip_version", ["ipv4", "ipv6"]) + def test_config_add_del_vlan_dhcp_relay(self, ip_version, mock_restart_dhcp_relay_service): + runner = CliRunner() + db = Db() + + # add vlan 1001 + result = runner.invoke(config.config.commands["vlan"].commands["add"], ["1001"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + assert db.cfgdb.get_entry(IP_VERSION_PARAMS_MAP[ip_version]["table"], "Vlan1001") == DHCP_RELAY_TABLE_ENTRY + + # del vlan 1001 + result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1001"], obj=db) + print(result.exit_code) + print(result.output) + + assert "Vlan1001" not in db.cfgdb.get_keys(IP_VERSION_PARAMS_MAP[ip_version]["table"]) + + @pytest.mark.parametrize("ip_version", ["ipv6"]) + def test_config_add_exist_vlan_dhcp_relay(self, ip_version): + runner = CliRunner() + db = Db() + + db.cfgdb.set_entry("DHCP_RELAY", "Vlan1001", {"vlanid": "1001"}) + # add vlan 1001 + result = runner.invoke(config.config.commands["vlan"].commands["add"], ["1001"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "DHCPv6 relay config for Vlan1001 already exists" in result.output + @classmethod def teardown_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "0" diff --git a/utilities_common/cli.py b/utilities_common/cli.py index ca9e0610..45b2cc5f 100644 --- a/utilities_common/cli.py +++ b/utilities_common/cli.py @@ -251,10 +251,10 @@ def is_vlanid_in_range(vid): return False -def check_if_vlanid_exist(config_db, vlan): +def check_if_vlanid_exist(config_db, vlan, table_name='VLAN'): """Check if vlan id exits in the config db or ot""" - if len(config_db.get_entry('VLAN', vlan)) != 0: + if len(config_db.get_entry(table_name, vlan)) != 0: return True return False diff --git a/utilities_common/dhcp_relay_util.py b/utilities_common/dhcp_relay_util.py new file mode 100644 index 00000000..b9c0b4e2 --- /dev/null +++ b/utilities_common/dhcp_relay_util.py @@ -0,0 +1,20 @@ +import click +import utilities_common.cli as clicommon + + +def restart_dhcp_relay_service(): + """ + Restart dhcp_relay service + """ + click.echo("Restarting DHCP relay service...") + clicommon.run_command("systemctl stop dhcp_relay", display_cmd=False) + clicommon.run_command("systemctl reset-failed dhcp_relay", display_cmd=False) + clicommon.run_command("systemctl start dhcp_relay", display_cmd=False) + + +def handle_restart_dhcp_relay_service(): + try: + restart_dhcp_relay_service() + except SystemExit as e: + ctx = click.get_current_context() + ctx.fail("Restart service dhcp_relay failed with error {}".format(e)) From ee6d213f768e035340949a7f1b70c564c970dacb Mon Sep 17 00:00:00 2001 From: Vadym Hlushko <62022266+vadymhlushko-mlnx@users.noreply.github.com> Date: Mon, 13 Feb 2023 13:03:12 +0200 Subject: [PATCH 070/312] [generate_dump] Revert "Revert generate_dump optimization PR's #2599", add fixes for empty /dump forder and symbolic links (#2645) - What I did 0ee19e5 Revert Revert the show-techsupport optimization PR's #2599 c8940ad Add a fix for the empty /dump folder inside the final tar archive generated by the show techsupport CLI command. 8a8668c Add a fix to not follow the symbolic links to avoid duplicate files inside the final tar archive generated by the show techsupport CLI command. - How I did it Modify the scripts/generate_dump script. - How to verify it 1. Manual verification do the show techsupport CLI command and save output original.tar.gz (with original generate_dump script) do the show techsupport CLI command and save output fixes.tar.gz (with the generate_dump script modified by this PR) unpack both archives original.tar.gz and fixes.tar.gz compare both directories with ncdu & diff --brief --recursive original fixes Linux utilities 2. Run the community tests sonic-mgmt/tests/show_techsupport Signed-off-by: vadymhlushko-mlnx --- scripts/generate_dump | 277 ++++++++++++++++++++++-------------------- 1 file changed, 145 insertions(+), 132 deletions(-) diff --git a/scripts/generate_dump b/scripts/generate_dump index 4400f4e9..2a7172f4 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -106,7 +106,6 @@ save_bcmcmd() { local filename=$2 local filepath="${LOGDIR}/$filename" local do_gzip=${3:-false} - local tarpath="${BASE}/dump/$filename" local timeout_cmd="timeout --foreground ${TIMEOUT_MIN}m" local cmd=$(escape_quotes "$cmd") if [ ! -d $LOGDIR ]; then @@ -141,12 +140,9 @@ save_bcmcmd() { fi if $do_gzip; then gzip ${filepath} 2>/dev/null - tarpath="${tarpath}.gz" filepath="${filepath}.gz" fi - ($TAR $V -rhf $TARFILE -C $DUMPDIR "$tarpath" \ - || abort "${EXT_TAR_FAILED}" "tar append operation failed. Aborting to prevent data loss.") \ - && $RM $V -rf "$filepath" + end_t=$(date +%s%3N) echo "[ save_bcmcmd:$cmd ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO } @@ -180,7 +176,7 @@ save_bcmcmd_all_ns() { } ############################################################################### -# Runs a comamnd and saves its output to the incrementally built tar. +# Runs a comamnd and saves its output to the file. # Command gets timedout if it runs for more than TIMEOUT_MIN minutes. # Globals: # LOGDIR @@ -208,7 +204,6 @@ save_cmd() { local filename=$2 local filepath="${LOGDIR}/$filename" local do_gzip=${3:-false} - local tarpath="${BASE}/dump/$filename" local timeout_cmd="timeout --foreground ${TIMEOUT_MIN}m" local cleanup_method=${4:-dummy_cleanup_method} local redirect='&>' @@ -230,7 +225,6 @@ save_cmd() { # as one argument, e.g. vtysh -c "COMMAND HERE" needs to have # "COMMAND HERE" bunched together as 1 arg to vtysh -c if $do_gzip; then - tarpath="${tarpath}.gz" filepath="${filepath}.gz" # cleanup_method will run in a sub-shell, need declare it first local cmds="$cleanup_method_declration; $cmd $redirect_eval | $cleanup_method | gzip -c > '${filepath}'" @@ -260,13 +254,34 @@ save_cmd() { fi fi - ($TAR $V -rhf $TARFILE -C $DUMPDIR "$tarpath" \ - || abort "${EXT_TAR_FAILED}" "tar append operation failed. Aborting to prevent data loss.") \ - && $RM $V -rf "$filepath" end_t=$(date +%s%3N) echo "[ save_cmd:$cmd ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO } +############################################################################### +# Save all collected data to tar archive. +# Globals: +# DUMPDIR +# TAR +# TARFILE +# V +# BASE +# Arguments: +# None +# Returns: +# None +############################################################################### +save_to_tar() { + trap 'handle_error $? $LINENO' ERR + local start_t=$(date +%s%3N) + local end_t=0 + + $TAR $V -rhf $TARFILE -C $DUMPDIR "$BASE" + + end_t=$(date +%s%3N) + echo "[ save_to_tar ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO +} + ############################################################################### # Dummy cleanup method. # Globals: @@ -407,7 +422,7 @@ get_vtysh_namespace() { ############################################################################### # Runs a vtysh command in all namesapces for a multi ASIC platform, and in # default (host) namespace in single ASIC platforms. Saves its output to the -# incrementally built tar. +# file. # Globals: # None # Arguments: @@ -437,7 +452,7 @@ save_vtysh() { } ############################################################################### -# Runs an ip command and saves its output to the incrementally built tar. +# Runs an ip command and saves its output to the file. # Globals: # None # Arguments: @@ -456,7 +471,7 @@ save_ip() { } ############################################################################### -# Runs a bridge command and saves its output to the incrementally built tar. +# Runs a bridge command and saves its output to the file. # Globals: # None # Arguments: @@ -771,8 +786,8 @@ save_proc() { ( [ -e $f ] && $CP $V -r $f $TARDIR/proc ) || echo "$f not found" > $TARDIR/$f fi done - $TAR $V -rhf $TARFILE -C $DUMPDIR --mode=+rw $BASE/proc - $RM $V -rf $TARDIR/proc + + chmod ugo+rw -R $DUMPDIR/$BASE/proc } ############################################################################### @@ -823,9 +838,7 @@ save_proc_stats() { ( $CP $V -r $stats_file $TARDIR/proc_stats ) || echo "$stats_file error" > $TARDIR/$stats_file fi - $TAR $V -rhf $TARFILE -C $DUMPDIR --mode=+rw $BASE/proc_stats - $RM $V -rf $TARDIR/proc_stats - $RM -rf $stats_file + chmod ugo+rw -R $DUMPDIR/$BASE/proc_stats } ############################################################################### @@ -907,6 +920,7 @@ save_platform_info() { # filename: the full path of the file to save # base_dir: the directory in $TARDIR/ to stage the file # do_gzip: (OPTIONAL) true or false. Should the output be gzipped +# do_tar_append: (OPTIONAL) true or false. Should the output be added to final tar archive # Returns: # None ############################################################################### @@ -919,7 +933,7 @@ save_file() { local gz_path="$TARDIR/$supp_dir/$(basename $orig_path)" local tar_path="${BASE}/$supp_dir/$(basename $orig_path)" local do_gzip=${3:-true} - local do_tar_append=${4:-true} + local do_tar_append=${4:-false} if [ ! -d "$TARDIR/$supp_dir" ]; then $MKDIR $V -p "$TARDIR/$supp_dir" fi @@ -945,6 +959,7 @@ save_file() { || abort "${EXT_PROCFS_SAVE_FAILED}" "tar append operation failed. Aborting to prevent data loss.") \ && $RM $V -f "$gz_path" fi + end_t=$(date +%s%3N) echo "[ save_file:$orig_path] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO } @@ -1134,9 +1149,9 @@ collect_mellanox_dfw_dumps() { ${CMD_PREFIX}save_symlink ${file} sai_sdk_dump log else if [ ! -z "${file##*.gz}" ]; then - ${CMD_PREFIX}save_file ${file} sai_sdk_dump true + ${CMD_PREFIX}save_file ${file} sai_sdk_dump true true else - ${CMD_PREFIX}save_file ${file} sai_sdk_dump false + ${CMD_PREFIX}save_file ${file} sai_sdk_dump false true fi fi done @@ -1296,7 +1311,7 @@ collect_barefoot() { done for file in $(find /tmp/bf_logs -type f); do - save_file "${file}" log true true + save_file "${file}" log true done } @@ -1352,16 +1367,12 @@ save_log_files() { # don't gzip already-gzipped log files :) # do not append the individual files to the main tarball if [ -z "${file##*.gz}" ]; then - save_file $file log false false + save_file $file log false else - save_file $file log true false + save_file $file log true fi done - # Append the log folder to the main tarball - ($TAR $V -rhf $TARFILE -C $DUMPDIR ${BASE}/log \ - || abort "${EXT_TAR_FAILED}" "tar append operation failed. Aborting for safety") \ - && $RM $V -rf $TARDIR/log end_t=$(date +%s%3N) echo "[ TAR /var/log Files ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO @@ -1386,11 +1397,7 @@ save_warmboot_files() { else mkdir -p $TARDIR $CP $V -rf /host/warmboot $TARDIR - - ($TAR $V --warning=no-file-removed -rhf $TARFILE -C $DUMPDIR --mode=+rw \ - $BASE/warmboot \ - || abort "${EXT_TAR_FAILED}" "Tar append operation failed. Aborting for safety.") \ - && $RM $V -rf $TARDIR + chmod ugo+rw -R $DUMPDIR/$BASE/warmboot fi end_t=$(date +%s%3N) echo "[ Warm-boot Files ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO @@ -1456,9 +1463,9 @@ save_sai_failure_dump(){ ${CMD_PREFIX}save_symlink ${file} sai_failure_dump log else if [ ! -z "${file##*.gz}" ]; then - ${CMD_PREFIX}save_file ${file} sai_failure_dump true + ${CMD_PREFIX}save_file ${file} sai_failure_dump true true else - ${CMD_PREFIX}save_file ${file} sai_failure_dump false + ${CMD_PREFIX}save_file ${file} sai_failure_dump false true fi fi #Clean up the file once its part of tech support @@ -1584,102 +1591,120 @@ main() { /proc/pagetypeinfo /proc/partitions /proc/sched_debug /proc/slabinfo \ /proc/softirqs /proc/stat /proc/swaps /proc/sysvipc /proc/timer_list \ /proc/uptime /proc/version /proc/vmallocinfo /proc/vmstat \ - /proc/zoneinfo \ - || abort "${EXT_PROCFS_SAVE_FAILED}" "Proc saving operation failed. Aborting for safety." - save_proc_stats + /proc/zoneinfo & + save_proc_stats & end_t=$(date +%s%3N) echo "[ Capture Proc State ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO + wait # Save all the processes within each docker - save_cmd "show services" services.summary + save_cmd "show services" services.summary & # Save reboot cause information - save_cmd "show reboot-cause" reboot.cause + save_cmd "show reboot-cause" reboot.cause & + wait local asic="$(/usr/local/bin/sonic-cfggen -y /etc/sonic/sonic_version.yml -v asic_type)" local device_type=`sonic-db-cli CONFIG_DB hget 'DEVICE_METADATA|localhost' type` # 1st counter snapshot early. Need 2 snapshots to make sense of counters trend. save_counter_snapshot $asic 1 - save_cmd "systemd-analyze blame" "systemd.analyze.blame" - save_cmd "systemd-analyze dump" "systemd.analyze.dump" - save_cmd "systemd-analyze plot" "systemd.analyze.plot.svg" - - save_platform_info - - save_cmd "show vlan brief" "vlan.summary" - save_cmd "show version" "version" - save_cmd "show platform summary" "platform.summary" - save_cmd "cat /host/machine.conf" "machine.conf" - save_cmd "cat /boot/config-$(uname -r)" "boot.conf" - save_cmd "docker stats --no-stream" "docker.stats" - - save_cmd "sensors" "sensors" - save_cmd "lspci -vvv -xx" "lspci" - save_cmd "lsusb -v" "lsusb" - save_cmd "sysctl -a" "sysctl" - - save_ip_info - save_bridge_info - - save_frr_info - save_bgp_info - save_evpn_info - - save_cmd "show interface status -d all" "interface.status" - save_cmd "show interface transceiver presence" "interface.xcvrs.presence" - save_cmd "show interface transceiver eeprom --dom" "interface.xcvrs.eeprom" - save_cmd "show ip interface -d all" "ip.interface" - - save_cmd "lldpctl" "lldpctl" + save_cmd "systemd-analyze blame" "systemd.analyze.blame" & + save_cmd "systemd-analyze dump" "systemd.analyze.dump" & + save_cmd "systemd-analyze plot" "systemd.analyze.plot.svg" & + wait + + save_platform_info & + save_cmd "show vlan brief" "vlan.summary" & + save_cmd "show version" "version" & + save_cmd "show platform summary" "platform.summary" & + wait + + save_cmd "cat /host/machine.conf" "machine.conf" & + save_cmd "cat /boot/config-$(uname -r)" "boot.conf" & + save_cmd "docker stats --no-stream" "docker.stats" & + wait + + save_cmd "sensors" "sensors" & + save_cmd "lspci -vvv -xx" "lspci" & + save_cmd "lsusb -v" "lsusb" & + save_cmd "sysctl -a" "sysctl" & + wait + + save_ip_info & + save_bridge_info & + wait + + save_frr_info & + + save_bgp_info & + save_evpn_info & + wait + + save_cmd "show interface status -d all" "interface.status" & + save_cmd "show interface transceiver presence" "interface.xcvrs.presence" & + save_cmd "show interface transceiver eeprom --dom" "interface.xcvrs.eeprom" & + save_cmd "show ip interface -d all" "ip.interface" & + wait + + save_cmd "lldpctl" "lldpctl" & if [[ ( "$NUM_ASICS" > 1 ) ]]; then for (( i=0; i<$NUM_ASICS; i++ )) do - save_cmd "docker exec lldp$i lldpcli show statistics" "lldp$i.statistics" - save_cmd "docker logs bgp$i" "docker.bgp$i.log" - save_cmd "docker logs swss$i" "docker.swss$i.log" + save_cmd "docker exec lldp$i lldpcli show statistics" "lldp$i.statistics" & + save_cmd "docker logs bgp$i" "docker.bgp$i.log" & + save_cmd "docker logs swss$i" "docker.swss$i.log" & done else - save_cmd "docker exec lldp lldpcli show statistics" "lldp.statistics" - save_cmd "docker logs bgp" "docker.bgp.log" - save_cmd "docker logs swss" "docker.swss.log" + save_cmd "docker exec lldp lldpcli show statistics" "lldp.statistics" & + save_cmd "docker logs bgp" "docker.bgp.log" & + save_cmd "docker logs swss" "docker.swss.log" & fi - - save_cmd "ps aux" "ps.aux" - save_cmd "top -b -n 1" "top" - save_cmd "free" "free" - save_cmd "vmstat 1 5" "vmstat" - save_cmd "vmstat -m" "vmstat.m" - save_cmd "vmstat -s" "vmstat.s" - save_cmd "mount" "mount" - save_cmd "df" "df" - save_cmd "dmesg" "dmesg" - - save_nat_info - save_bfd_info - save_redis_info + wait + + save_cmd "ps aux" "ps.aux" & + save_cmd "top -b -n 1" "top" & + save_cmd "free" "free" & + wait + save_cmd "vmstat 1 5" "vmstat" & + save_cmd "vmstat -m" "vmstat.m" & + save_cmd "vmstat -s" "vmstat.s" & + wait + save_cmd "mount" "mount" & + save_cmd "df" "df" & + save_cmd "dmesg" "dmesg" & + wait + + save_nat_info & + save_bfd_info & + wait + save_redis_info & if $DEBUG_DUMP then - save_dump_state_all_ns + save_dump_state_all_ns & fi + wait - save_cmd "docker ps -a" "docker.ps" - save_cmd "docker top pmon" "docker.pmon" + save_cmd "docker ps -a" "docker.ps" & + save_cmd "docker top pmon" "docker.pmon" & if [[ -d ${PLUGINS_DIR} ]]; then local -r dump_plugins="$(find ${PLUGINS_DIR} -type f -executable)" for plugin in $dump_plugins; do # save stdout output of plugin and gzip it - save_cmd "$plugin" "$(basename $plugin)" true + save_cmd "$plugin" "$(basename $plugin)" true & done fi + wait - save_cmd "dpkg -l" "dpkg" - save_cmd "who -a" "who" - save_cmd "swapon -s" "swapon" - save_cmd "hdparm -i /dev/sda" "hdparm" - save_cmd "ps -AwwL -o user,pid,lwp,ppid,nlwp,pcpu,pri,nice,vsize,rss,tty,stat,wchan:12,start,bsdtime,command" "ps.extended" + save_cmd "dpkg -l" "dpkg" & + save_cmd "who -a" "who" & + save_cmd "swapon -s" "swapon" & + wait + save_cmd "hdparm -i /dev/sda" "hdparm" & + 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 @@ -1704,9 +1729,6 @@ main() { # 2nd counter snapshot late. Need 2 snapshots to make sense of counters trend. save_counter_snapshot $asic 2 - $RM $V -rf $TARDIR - $MKDIR $V -p $TARDIR - $MKDIR $V -p $LOGDIR # Copying the /etc files to a directory and then tar it $CP -r /etc $TARDIR/etc rm_list=$(find -L $TARDIR/etc -maxdepth 5 -type l) @@ -1718,34 +1740,25 @@ main() { # Remove secret from /etc files before tar remove_secret_from_etc_files $TARDIR - start_t=$(date +%s%3N) - ($TAR $V --warning=no-file-removed -rhf $TARFILE -C $DUMPDIR --mode=+rw \ - --exclude="etc/alternatives" \ - --exclude="*/etc/passwd*" \ - --exclude="*/etc/shadow*" \ - --exclude="*/etc/group*" \ - --exclude="*/etc/gshadow*" \ - --exclude="*/etc/ssh*" \ - --exclude="*get_creds*" \ - --exclude="*snmpd.conf*" \ - --exclude="*/etc/mlnx" \ - --exclude="*/etc/mft" \ - --exclude="*/etc/sonic/*.cer" \ - --exclude="*/etc/sonic/*.crt" \ - --exclude="*/etc/sonic/*.pem" \ - --exclude="*/etc/sonic/*.key" \ - --exclude="*/etc/ssl/*.pem" \ - --exclude="*/etc/ssl/certs/*" \ - --exclude="*/etc/ssl/private/*" \ - $BASE/etc \ - || abort "${EXT_TAR_FAILED}" "Tar append operation failed. Aborting for safety.") \ - && $RM $V -rf $TARDIR - end_t=$(date +%s%3N) - echo "[ TAR /etc Files ] : $(($end_t-$start_t)) msec" >> $TECHSUPPORT_TIME_INFO + # Remove unecessary files + $RM $V -rf $TARDIR/etc/alternatives $TARDIR/etc/passwd* \ + $TARDIR/etc/shadow* $TARDIR/etc/group* $TARDIR/etc/gshadow* \ + $TARDIR/etc/ssh* $TARDIR/etc/mlnx $TARDIR/etc/mft \ + $TARDIR/etc/ssl/certs/* $TARDIR/etc/ssl/private/* + rm_list=$(find -L $TARDIR -type f \( -iname \*.cer -o -iname \*.crt -o \ + -iname \*.pem -o -iname \*.key -o -iname \*snmpd.conf\* -o -iname \*get_creds\* \)) + if [ ! -z "$rm_list" ] + then + rm $rm_list + fi + + save_log_files & + save_crash_files & + save_warmboot_files & + wait + + save_to_tar - save_log_files - save_crash_files - save_warmboot_files save_sai_failure_dump if [[ "$asic" = "mellanox" ]]; then @@ -1760,7 +1773,7 @@ main() { ############################################################################### finalize() { # Save techsupport timing profile info - save_file $TECHSUPPORT_TIME_INFO log false + save_file $TECHSUPPORT_TIME_INFO log false true if $DO_COMPRESS; then RC=0 From 2a6a06cfc94853f0a74fa59c506535340649f9c8 Mon Sep 17 00:00:00 2001 From: wenyiz2021 <91497961+wenyiz2021@users.noreply.github.com> Date: Mon, 13 Feb 2023 11:04:58 -0800 Subject: [PATCH 071/312] [portstat CLI] don't print reminder if use json format (#2670) * no print if use json format * add print for chassis --- scripts/portstat | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/scripts/portstat b/scripts/portstat index 0e3b9c43..27696729 100755 --- a/scripts/portstat +++ b/scripts/portstat @@ -17,6 +17,7 @@ from collections import OrderedDict, namedtuple from natsort import natsorted from tabulate import tabulate from sonic_py_common import multi_asic +from sonic_py_common import device_info # mock the redis for unit test purposes # try: @@ -337,8 +338,8 @@ class Portstat(object): print(table_as_json(table, header)) else: print(tabulate(table, header, tablefmt='simple', stralign='right')) - if multi_asic.is_multi_asic(): - print("\nReminder: Please execute 'show interface counters -d all' to include internal links\n") + if multi_asic.is_multi_asic() or device_info.is_chassis(): + print("\nReminder: Please execute 'show interface counters -d all' to include internal links\n") def cnstat_intf_diff_print(self, cnstat_new_dict, cnstat_old_dict, intf_list): """ @@ -555,8 +556,8 @@ class Portstat(object): print(table_as_json(table, header)) else: print(tabulate(table, header, tablefmt='simple', stralign='right')) - if multi_asic.is_multi_asic(): - print("\nReminder: Please execute 'show interface counters -d all' to include internal links\n") + if multi_asic.is_multi_asic() or device_info.is_chassis(): + print("\nReminder: Please execute 'show interface counters -d all' to include internal links\n") def main(): parser = argparse.ArgumentParser(description='Display the ports state and counters', From 556d0c6885bd9bca5d8c78c96b2daab8c83a66cc Mon Sep 17 00:00:00 2001 From: Yaqiang Zhu Date: Tue, 14 Feb 2023 09:18:37 +0800 Subject: [PATCH 072/312] [doc] Add docs for dhcp_relay show/clear cli (#2649) What I did Add docs for dhcp_realy show/clear cli How I did it Add docs for dhcp_realy show/clear cli Signed-off-by: Yaqiang Zhu --- doc/Command-Reference.md | 93 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 7ba12dfb..dbc7966c 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -40,6 +40,8 @@ * [Console connect commands](#console-connect-commands) * [Console clear commands](#console-clear-commands) * [DHCP Relay](#dhcp-relay) + * [DHCP Relay show commands](#dhcp-relay-show-commands) + * [DHCP Relay clear commands](#dhcp-relay-clear-commands) * [DHCP Relay config commands](#dhcp-relay-config-commands) * [Drop Counters](#drop-counters) * [Drop Counter show commands](#drop-counters-show-commands) @@ -2407,6 +2409,97 @@ Go Back To [Beginning of the document](#) or [Beginning of this section](#consol ## DHCP Relay +### DHCP Relay show commands + +This sub-section of commands is used to show the DHCP Relay IP address(es) in a VLAN interface and show dhcpv6_relay counter of a VLAN. + +**show dhcp_relay ipv4 helper** + +This command is used to show ipv4 dhcp_relay helper. + +- Usage: + ``` + show dhcp_relay ipv4 helper + ``` + +- Example: + ``` + admin@sonic:~$ show dhcp_relay ipv4 helper + -------- --------- + Vlan1000 192.0.0.1 + 192.0.0.2 + -------- --------- + ``` + +**show dhcp_relay ipv6 destination** + +This command is used to show ipv6 dhcp_relay destination. + +- Usage: + ``` + show dhcp_relay ipv6 destination + ``` + +- Example: + ``` + admin@sonic:~$ show dhcp_relay ipv6 destination + --------  ------------ + Vlan1000  fc02:2000::1 +           fc02:2000::2 +           fc02:2000::3 +           fc02:2000::4 + --------  ------------ + ``` + +**show dhcp_relay ipv6 counters** + +This command is used to show ipv6 dhcp_relay counters. + +- Usage: + ``` + show dhcp_relay ipv6 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 + ``` + +### DHCP Relay clear commands + +This sub-section of commands is used to clear the DHCP Relay counters. + +**sonic-clear dhcp_relay ipv6 counter** + +This command is used to clear ipv6 dhcp_relay counters. + +- Usage: + ``` + sonic-clear dhcp_relay ipv6 counter [-i ] + ``` + +- Example: + ``` + admin@sonic:~$ sudo sonic-clear dhcp_relay ipv6 counters + ``` + ### DHCP Relay config commands This sub-section of commands is used to add or remove the DHCP Relay Destination IP address(es) for a VLAN interface. From 36824e40c1592ba274faae6c2bfef38d58b250a7 Mon Sep 17 00:00:00 2001 From: davidpil2002 <91657985+davidpil2002@users.noreply.github.com> Date: Tue, 14 Feb 2023 11:38:53 +0200 Subject: [PATCH 073/312] Add support of secure warm-boot (#2532) - What I did Add support of secure warm-boot to SONiC. Basically, warm-boot is supporting to load a new kernel without doing full/cold boot. That is by loading a new kernel and exec with kexec Linux command. As a result of that, even when the Secure Boot feature is enabled, still a user or a malicious user can load an unsigned kernel, so to avoid that we added the support of the secure warm boot. More Description about this feature can be found in the Secure Boot HLD: sonic-net/SONiC#1028 - How I did it In general, Linux support it, so I enabled this support by doing the follow steps: I added some special flags in Linux Kernel when user build the sonic-buildimage with secure boot feature enabled. I added a flag "-s" to the kexec command Note: more details in the HLD above. - How to verify it * Good flow: manually just install with sonic-installed a new secure image (a SONiC image that was build with Secure Boot flag enabled) after the secure image is installed, do: warm-reboot Check now that the new kernel is really loaded and switched. * Bad flow: Do the same steps 1-2 as a good flow but with an insecure image (SONiC image that was built without setting Secure Boot enabled) After the insecure image is installed, and triggered warm-boot you should get an error that the new unsigned kernel from the unsecured image was not loaded. Automation test - TBD --- scripts/fast-reboot | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/scripts/fast-reboot b/scripts/fast-reboot index bfdc191b..604fddf9 100755 --- a/scripts/fast-reboot +++ b/scripts/fast-reboot @@ -442,9 +442,20 @@ function load_aboot_secureboot_kernel() { swipath=$next_image kexec=true loadonly=true ENV_EXTRA_CMDLINE="$BOOT_OPTIONS" bash - } +function invoke_kexec() { + /sbin/kexec -l "$KERNEL_IMAGE" --initrd="$INITRD" --append="$BOOT_OPTIONS" $@ +} + function load_kernel() { # Load kernel into the memory - /sbin/kexec -a -l "$KERNEL_IMAGE" --initrd="$INITRD" --append="$BOOT_OPTIONS" + invoke_kexec -a +} + +function load_kernel_secure() { + # Load kernel into the memory secure + # -s flag is for enforcing the new load kernel(vmlinuz) to be signed and verify. + # not using -a flag, this flag can fallback to an old kexec load that do not support Secure Boot verification + invoke_kexec -s } function unload_kernel() @@ -601,7 +612,13 @@ fi if is_secureboot && grep -q aboot_machine= /host/machine.conf; then load_aboot_secureboot_kernel else - load_kernel + # check if secure boot is enable in UEFI + SECURE_UPGRADE_ENABLED=$(bootctl status 2>/dev/null | grep -c "Secure Boot: enabled") + if [ ${SECURE_UPGRADE_ENABLED} -eq 1 ]; then + load_kernel_secure + else + load_kernel + fi fi init_warm_reboot_states From 33e85d37f6abd4e7707d4c2436c9014239ce8d06 Mon Sep 17 00:00:00 2001 From: Yaqiang Zhu Date: Thu, 16 Feb 2023 02:31:01 +0800 Subject: [PATCH 074/312] [dhcp_relay] Remove add field of vlanid to DHCP_RELAY table while add vlan (#2678) What I did Remove add field of vlanid to DHCP_RELAY table while add vlan which would cause conflict with yang model. How I did it Remove add field of vlanid to DHCP_RELAY table while add vlan How to verify it By unit tests Signed-off-by: Yaqiang Zhu --- config/vlan.py | 2 +- tests/vlan_test.py | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/config/vlan.py b/config/vlan.py index feb4fd22..f1c6f06d 100644 --- a/config/vlan.py +++ b/config/vlan.py @@ -47,7 +47,7 @@ def add_vlan(db, vid): set_dhcp_relay_table('VLAN', config_db, vlan, {'vlanid': str(vid)}) # set dhcpv6_relay table - set_dhcp_relay_table('DHCP_RELAY', config_db, vlan, {'vlanid': str(vid)}) + set_dhcp_relay_table('DHCP_RELAY', config_db, vlan, None) # We need to restart dhcp_relay service after dhcpv6_relay config change dhcp_relay_util.handle_restart_dhcp_relay_service() diff --git a/tests/vlan_test.py b/tests/vlan_test.py index 85673c50..f582d0e3 100644 --- a/tests/vlan_test.py +++ b/tests/vlan_test.py @@ -19,9 +19,6 @@ "table": "DHCP_RELAY" } } -DHCP_RELAY_TABLE_ENTRY = { - "vlanid": "1001" -} show_vlan_brief_output="""\ +-----------+-----------------+-----------------+----------------+-------------+ @@ -610,7 +607,8 @@ def test_config_add_del_vlan_dhcp_relay(self, ip_version, mock_restart_dhcp_rela print(result.output) assert result.exit_code == 0 - assert db.cfgdb.get_entry(IP_VERSION_PARAMS_MAP[ip_version]["table"], "Vlan1001") == DHCP_RELAY_TABLE_ENTRY + exp_output = {"vlanid": "1001"} if ip_version == "ipv4" else {} + assert db.cfgdb.get_entry(IP_VERSION_PARAMS_MAP[ip_version]["table"], "Vlan1001") == exp_output # del vlan 1001 result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1001"], obj=db) From 54e26359fccf45d2e40800cf5598a725798634cd Mon Sep 17 00:00:00 2001 From: Mai Bui Date: Fri, 24 Feb 2023 12:26:32 -0500 Subject: [PATCH 075/312] Replace pickle by json (#2636) Signed-off-by: maipbui #### What I did `pickle` can lead to lead to code execution vulnerabilities. Recommend to serializing the relevant data as JSON. #### How I did it Replace `pickle` by `json` #### How to verify it Pass UT Manual test --- scripts/dropstat | 14 +-- scripts/flow_counters_stat | 10 +- scripts/intfstat | 64 +++++----- scripts/pfcstat | 62 +++++----- scripts/pg-drop | 8 +- scripts/portstat | 238 ++++++++++++++++++------------------- scripts/queuestat | 34 +++--- scripts/tunnelstat | 40 +++---- 8 files changed, 235 insertions(+), 235 deletions(-) diff --git a/scripts/dropstat b/scripts/dropstat index f98fc291..4e9f5bb4 100755 --- a/scripts/dropstat +++ b/scripts/dropstat @@ -11,7 +11,7 @@ # - Refactor calls to COUNTERS_DB to reduce redundancy # - Cache DB queries to reduce # of expensive queries -import _pickle as pickle +import json import argparse import os import socket @@ -117,10 +117,10 @@ class DropStat(object): """ try: - pickle.dump(self.get_counts_table(self.gather_counters(std_port_rx_counters + std_port_tx_counters, DEBUG_COUNTER_PORT_STAT_MAP), COUNTERS_PORT_NAME_MAP), - open(self.port_drop_stats_file, 'wb+')) - pickle.dump(self.get_counts(self.gather_counters([], DEBUG_COUNTER_SWITCH_STAT_MAP), self.get_switch_id()), - open(self.switch_drop_stats_file, 'wb+')) + json.dump(self.get_counts_table(self.gather_counters(std_port_rx_counters + std_port_tx_counters, DEBUG_COUNTER_PORT_STAT_MAP), COUNTERS_PORT_NAME_MAP), + open(self.port_drop_stats_file, 'w+')) + json.dump(self.get_counts(self.gather_counters([], DEBUG_COUNTER_SWITCH_STAT_MAP), self.get_switch_id()), + open(self.switch_drop_stats_file, 'w+')) except IOError as e: print(e) sys.exit(e.errno) @@ -135,7 +135,7 @@ class DropStat(object): # Grab the latest clear checkpoint, if it exists if os.path.isfile(self.port_drop_stats_file): - port_drop_ckpt = pickle.load(open(self.port_drop_stats_file, 'rb')) + port_drop_ckpt = json.load(open(self.port_drop_stats_file, 'r')) counters = self.gather_counters(std_port_rx_counters + std_port_tx_counters, DEBUG_COUNTER_PORT_STAT_MAP, group, counter_type) headers = std_port_description_header + self.gather_headers(counters, DEBUG_COUNTER_PORT_STAT_MAP) @@ -162,7 +162,7 @@ class DropStat(object): # Grab the latest clear checkpoint, if it exists if os.path.isfile(self.switch_drop_stats_file): - switch_drop_ckpt = pickle.load(open(self.switch_drop_stats_file, 'rb')) + switch_drop_ckpt = json.load(open(self.switch_drop_stats_file, 'r')) counters = self.gather_counters([], DEBUG_COUNTER_SWITCH_STAT_MAP, group, counter_type) headers = std_switch_description_header + self.gather_headers(counters, DEBUG_COUNTER_SWITCH_STAT_MAP) diff --git a/scripts/flow_counters_stat b/scripts/flow_counters_stat index ac5ef94b..49b97e33 100755 --- a/scripts/flow_counters_stat +++ b/scripts/flow_counters_stat @@ -2,7 +2,7 @@ import argparse import os -import _pickle as pickle +import json import sys from natsort import natsorted @@ -185,8 +185,8 @@ class FlowCounterStats(object): if os.path.exists(self.data_file): os.remove(self.data_file) - with open(self.data_file, 'wb') as f: - pickle.dump(data, f) + with open(self.data_file, 'w') as f: + json.dump(data, f) except IOError as e: print('Failed to save statistic - {}'.format(repr(e))) @@ -200,8 +200,8 @@ class FlowCounterStats(object): return None try: - with open(self.data_file, 'rb') as f: - data = pickle.load(f) + with open(self.data_file, 'r') as f: + data = json.load(f) except IOError as e: print('Failed to load statistic - {}'.format(repr(e))) return None diff --git a/scripts/intfstat b/scripts/intfstat index 30cfbf08..b4a770ad 100755 --- a/scripts/intfstat +++ b/scripts/intfstat @@ -6,7 +6,7 @@ # ##################################################################### -import _pickle as pickle +import json import argparse import datetime import sys @@ -28,7 +28,7 @@ from collections import namedtuple, OrderedDict from natsort import natsorted from tabulate import tabulate from utilities_common.netstat import ns_diff, table_as_json, STATUS_NA, format_brate, format_prate -from utilities_common.cli import UserCache +from utilities_common.cli import json_serial, UserCache from swsscommon.swsscommon import SonicV2Connector nstat_fields = ( @@ -96,7 +96,7 @@ class Intfstat(object): counter_data = self.db.get(self.db.COUNTERS_DB, full_table_id, counter_name) if counter_data: fields[pos] = str(counter_data) - cntr = NStats._make(fields) + cntr = NStats._make(fields)._asdict() return cntr def get_rates(table_id): @@ -153,14 +153,14 @@ class Intfstat(object): rates = ratestat_dict.get(key, RateStats._make([STATUS_NA] * len(rates_key_list))) table.append((key, - data.rx_p_ok, + data['rx_p_ok'], format_brate(rates.rx_bps), format_prate(rates.rx_pps), - data.rx_p_err, - data.tx_p_ok, + data['rx_p_err'], + data['tx_p_ok'], format_brate(rates.tx_bps), format_prate(rates.tx_pps), - data.tx_p_err)) + data['tx_p_err'])) if use_json: print(table_as_json(table, header)) @@ -186,24 +186,24 @@ class Intfstat(object): if old_cntr is not None: table.append((key, - ns_diff(cntr.rx_p_ok, old_cntr.rx_p_ok), + ns_diff(cntr['rx_p_ok'], old_cntr['rx_p_ok']), format_brate(rates.rx_bps), format_prate(rates.rx_pps), - ns_diff(cntr.rx_p_err, old_cntr.rx_p_err), - ns_diff(cntr.tx_p_ok, old_cntr.tx_p_ok), + ns_diff(cntr['rx_p_err'], old_cntr['rx_p_err']), + ns_diff(cntr['tx_p_ok'], old_cntr['tx_p_ok']), format_brate(rates.tx_bps), format_prate(rates.tx_pps), - ns_diff(cntr.tx_p_err, old_cntr.tx_p_err))) + ns_diff(cntr['tx_p_err'], old_cntr['tx_p_err']))) else: table.append((key, - cntr.rx_p_ok, + cntr['rx_p_ok'], format_brate(rates.rx_bps), format_prate(rates.rx_pps), - cntr.rx_p_err, - cntr.tx_p_ok, + cntr['rx_p_err'], + cntr['tx_p_ok'], format_brate(rates.tx_bps), format_prate(rates.tx_pps), - cntr.tx_p_err)) + cntr['tx_p_err'])) if use_json: print(table_as_json(table, header)) @@ -229,17 +229,17 @@ class Intfstat(object): if cnstat_old_dict and cnstat_old_dict.get(rif): old_cntr = cnstat_old_dict.get(rif) - body = body % (ns_diff(cntr.rx_p_ok, old_cntr.rx_p_ok), - ns_diff(cntr.rx_b_ok, old_cntr.rx_b_ok), - ns_diff(cntr.rx_p_err, old_cntr.rx_p_err), - ns_diff(cntr.rx_b_err, old_cntr.rx_b_err), - ns_diff(cntr.tx_p_ok, old_cntr.tx_p_ok), - ns_diff(cntr.tx_b_ok, old_cntr.tx_b_ok), - ns_diff(cntr.tx_p_err, old_cntr.tx_p_err), - ns_diff(cntr.tx_b_err, old_cntr.tx_b_err)) + body = body % (ns_diff(cntr['rx_p_ok'], old_cntr['rx_p_ok']), + ns_diff(cntr['rx_b_ok'], old_cntr['rx_b_ok']), + ns_diff(cntr['rx_p_err'], old_cntr['rx_p_err']), + ns_diff(cntr['rx_b_err'], old_cntr['rx_b_err']), + ns_diff(cntr['tx_p_ok'], old_cntr['tx_p_ok']), + ns_diff(cntr['tx_b_ok'], old_cntr['tx_b_ok']), + ns_diff(cntr['tx_p_err'], old_cntr['tx_p_err']), + ns_diff(cntr['tx_b_err'], old_cntr['tx_b_err'])) else: - body = body % (cntr.rx_p_ok, cntr.rx_b_ok, cntr.rx_p_err,cntr.rx_b_err, - cntr.tx_p_ok, cntr.tx_b_ok, cntr.tx_p_err, cntr.tx_b_err) + body = body % (cntr['rx_p_ok'], cntr['rx_b_ok'], cntr['rx_p_err'],cntr['rx_b_err'], + cntr['tx_p_ok'], cntr['tx_b_ok'], cntr['tx_p_err'], cntr['tx_b_err']) print(header) print(body) @@ -305,20 +305,20 @@ def main(): if tag_name is not None: if os.path.isfile(cnstat_fqn_general_file): try: - general_data = pickle.load(open(cnstat_fqn_general_file, 'rb')) + general_data = json.load(open(cnstat_fqn_general_file, 'r')) for key, val in cnstat_dict.items(): general_data[key] = val - pickle.dump(general_data, open(cnstat_fqn_general_file, 'wb')) + json.dump(general_data, open(cnstat_fqn_general_file, 'w')) except IOError as e: sys.exit(e.errno) # Add the information also to tag specific file if os.path.isfile(cnstat_fqn_file): - data = pickle.load(open(cnstat_fqn_file, 'rb')) + data = json.load(open(cnstat_fqn_file, 'r')) for key, val in cnstat_dict.items(): data[key] = val - pickle.dump(data, open(cnstat_fqn_file, 'wb')) + json.dump(data, open(cnstat_fqn_file, 'w')) else: - pickle.dump(cnstat_dict, open(cnstat_fqn_file, 'wb')) + json.dump(cnstat_dict, open(cnstat_fqn_file, 'w'), default=json_serial) except IOError as e: sys.exit(e.errno) else: @@ -330,9 +330,9 @@ def main(): try: cnstat_cached_dict = {} if os.path.isfile(cnstat_fqn_file): - cnstat_cached_dict = pickle.load(open(cnstat_fqn_file, 'rb')) + cnstat_cached_dict = json.load(open(cnstat_fqn_file, 'r')) else: - cnstat_cached_dict = pickle.load(open(cnstat_fqn_general_file, 'rb')) + cnstat_cached_dict = json.load(open(cnstat_fqn_general_file, 'r')) print("Last cached time was " + str(cnstat_cached_dict.get('time'))) if interface_name: diff --git a/scripts/pfcstat b/scripts/pfcstat index fb7e6018..094c6e93 100755 --- a/scripts/pfcstat +++ b/scripts/pfcstat @@ -6,7 +6,7 @@ # ##################################################################### -import _pickle as pickle +import json import argparse import datetime import os.path @@ -37,7 +37,7 @@ except KeyError: from utilities_common.netstat import ns_diff, STATUS_NA, format_number_with_comma from utilities_common import multi_asic as multi_asic_util from utilities_common import constants -from utilities_common.cli import UserCache +from utilities_common.cli import json_serial, UserCache PStats = namedtuple("PStats", "pfc0, pfc1, pfc2, pfc3, pfc4, pfc5, pfc6, pfc7") @@ -101,7 +101,7 @@ class Pfcstat(object): fields[pos] = STATUS_NA else: fields[pos] = str(int(counter_data)) - cntr = PStats._make(fields) + cntr = PStats._make(fields)._asdict() return cntr # Get the info from database @@ -144,14 +144,14 @@ class Pfcstat(object): if key == 'time': continue table.append((key, - format_number_with_comma(data.pfc0), - format_number_with_comma(data.pfc1), - format_number_with_comma(data.pfc2), - format_number_with_comma(data.pfc3), - format_number_with_comma(data.pfc4), - format_number_with_comma(data.pfc5), - format_number_with_comma(data.pfc6), - format_number_with_comma(data.pfc7))) + format_number_with_comma(data['pfc0']), + format_number_with_comma(data['pfc1']), + format_number_with_comma(data['pfc2']), + format_number_with_comma(data['pfc3']), + format_number_with_comma(data['pfc4']), + format_number_with_comma(data['pfc5']), + format_number_with_comma(data['pfc6']), + format_number_with_comma(data['pfc7']))) if rx: print(tabulate(table, header_Rx, tablefmt='simple', stralign='right')) @@ -173,24 +173,24 @@ class Pfcstat(object): if old_cntr is not None: table.append((key, - ns_diff(cntr.pfc0, old_cntr.pfc0), - ns_diff(cntr.pfc1, old_cntr.pfc1), - ns_diff(cntr.pfc2, old_cntr.pfc2), - ns_diff(cntr.pfc3, old_cntr.pfc3), - ns_diff(cntr.pfc4, old_cntr.pfc4), - ns_diff(cntr.pfc5, old_cntr.pfc5), - ns_diff(cntr.pfc6, old_cntr.pfc6), - ns_diff(cntr.pfc7, old_cntr.pfc7))) + ns_diff(cntr['pfc0'], old_cntr['pfc0']), + ns_diff(cntr['pfc1'], old_cntr['pfc1']), + ns_diff(cntr['pfc2'], old_cntr['pfc2']), + ns_diff(cntr['pfc3'], old_cntr['pfc3']), + ns_diff(cntr['pfc4'], old_cntr['pfc4']), + ns_diff(cntr['pfc5'], old_cntr['pfc5']), + ns_diff(cntr['pfc6'], old_cntr['pfc6']), + ns_diff(cntr['pfc7'], old_cntr['pfc7']))) else: table.append((key, - format_number_with_comma(cntr.pfc0), - format_number_with_comma(cntr.pfc1), - format_number_with_comma(cntr.pfc2), - format_number_with_comma(cntr.pfc3), - format_number_with_comma(cntr.pfc4), - format_number_with_comma(cntr.pfc5), - format_number_with_comma(cntr.pfc6), - format_number_with_comma(cntr.pfc7))) + format_number_with_comma(cntr['pfc0']), + format_number_with_comma(cntr['pfc1']), + format_number_with_comma(cntr['pfc2']), + format_number_with_comma(cntr['pfc3']), + format_number_with_comma(cntr['pfc4']), + format_number_with_comma(cntr['pfc5']), + format_number_with_comma(cntr['pfc6']), + format_number_with_comma(cntr['pfc7']))) if rx: print(tabulate(table, header_Rx, tablefmt='simple', stralign='right')) @@ -256,8 +256,8 @@ Examples: if save_fresh_stats: try: - pickle.dump(cnstat_dict_rx, open(cnstat_fqn_file_rx, 'wb')) - pickle.dump(cnstat_dict_tx, open(cnstat_fqn_file_tx, 'wb')) + json.dump(cnstat_dict_rx, open(cnstat_fqn_file_rx, 'w'), default=json_serial) + json.dump(cnstat_dict_tx, open(cnstat_fqn_file_tx, 'w'), default=json_serial) except IOError as e: print(e.errno, e) sys.exit(e.errno) @@ -271,7 +271,7 @@ Examples: """ if os.path.isfile(cnstat_fqn_file_rx): try: - cnstat_cached_dict = pickle.load(open(cnstat_fqn_file_rx, 'rb')) + cnstat_cached_dict = json.load(open(cnstat_fqn_file_rx, 'r')) print("Last cached time was " + str(cnstat_cached_dict.get('time'))) pfcstat.cnstat_diff_print(cnstat_dict_rx, cnstat_cached_dict, True) except IOError as e: @@ -286,7 +286,7 @@ Examples: """ if os.path.isfile(cnstat_fqn_file_tx): try: - cnstat_cached_dict = pickle.load(open(cnstat_fqn_file_tx, 'rb')) + cnstat_cached_dict = json.load(open(cnstat_fqn_file_tx, 'r')) print("Last cached time was " + str(cnstat_cached_dict.get('time'))) pfcstat.cnstat_diff_print(cnstat_dict_tx, cnstat_cached_dict, False) except IOError as e: diff --git a/scripts/pg-drop b/scripts/pg-drop index 40b4e863..77415930 100755 --- a/scripts/pg-drop +++ b/scripts/pg-drop @@ -5,7 +5,7 @@ # pg-drop is a tool for show/clear ingress pg dropped packet stats. # ##################################################################### -import _pickle as pickle +import json import argparse import os import sys @@ -144,7 +144,7 @@ class PgDropStat(object): port_drop_ckpt = {} # Grab the latest clear checkpoint, if it exists if os.path.isfile(self.port_drop_stats_file): - port_drop_ckpt = pickle.load(open(self.port_drop_stats_file, 'rb')) + port_drop_ckpt = json.load(open(self.port_drop_stats_file, 'r')) # Header list contains the port name followed by the PGs. Fields is used to populate the pg values fields = ["0"]* (len(self.header_list) - 1) @@ -216,10 +216,10 @@ class PgDropStat(object): counter_pg_drop_array = [ "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS"] try: - pickle.dump(self.get_counts_table( + json.dump(self.get_counts_table( counter_pg_drop_array, COUNTERS_PG_NAME_MAP), - open(self.port_drop_stats_file, 'wb+')) + open(self.port_drop_stats_file, 'w+')) except IOError as e: print(e) sys.exit(e.errno) diff --git a/scripts/portstat b/scripts/portstat index 27696729..09ad88b0 100755 --- a/scripts/portstat +++ b/scripts/portstat @@ -6,7 +6,7 @@ # ##################################################################### -import _pickle as pickle +import json import argparse import datetime import os.path @@ -40,7 +40,7 @@ from utilities_common.intf_filter import parse_interface_in_filter import utilities_common.multi_asic as multi_asic_util from utilities_common.netstat import ns_diff, table_as_json, format_brate, format_prate, format_util, format_number_with_comma -from utilities_common.cli import UserCache +from utilities_common.cli import json_serial, UserCache """ The order and count of statistics mentioned below needs to be in sync with the values in portstat script @@ -181,7 +181,7 @@ class Portstat(object): elif fields[pos] != STATUS_NA: fields[pos] = str(int(fields[pos]) + int(fvs[counter_name])) - cntr = NStats._make(fields) + cntr = NStats._make(fields)._asdict() return cntr def get_rates(table_id): @@ -278,61 +278,61 @@ class Portstat(object): if print_all: header = header_all table.append((key, self.get_port_state(key), - format_number_with_comma(data.rx_ok), + format_number_with_comma(data['rx_ok']), format_brate(rates.rx_bps), format_prate(rates.rx_pps), format_util(rates.rx_bps, port_speed), - format_number_with_comma(data.rx_err), - format_number_with_comma(data.rx_drop), - format_number_with_comma(data.rx_ovr), - format_number_with_comma(data.tx_ok), + format_number_with_comma(data['rx_err']), + format_number_with_comma(data['rx_drop']), + format_number_with_comma(data['rx_ovr']), + format_number_with_comma(data['tx_ok']), format_brate(rates.tx_bps), format_prate(rates.tx_pps), format_util(rates.tx_bps, port_speed), - format_number_with_comma(data.tx_err), - format_number_with_comma(data.tx_drop), - format_number_with_comma(data.tx_ovr))) + format_number_with_comma(data['tx_err']), + format_number_with_comma(data['tx_drop']), + format_number_with_comma(data['tx_ovr']))) elif errors_only: header = header_errors_only table.append((key, self.get_port_state(key), - format_number_with_comma(data.rx_err), - format_number_with_comma(data.rx_drop), - format_number_with_comma(data.rx_ovr), - format_number_with_comma(data.tx_err), - format_number_with_comma(data.tx_drop), - format_number_with_comma(data.tx_ovr))) + format_number_with_comma(data['rx_err']), + format_number_with_comma(data['rx_drop']), + format_number_with_comma(data['rx_ovr']), + format_number_with_comma(data['tx_err']), + format_number_with_comma(data['tx_drop']), + format_number_with_comma(data['tx_ovr']))) elif fec_stats_only: header = header_fec_only table.append((key, self.get_port_state(key), - format_number_with_comma(data.fec_corr), - format_number_with_comma(data.fec_uncorr), - format_number_with_comma(data.fec_symbol_err))) + format_number_with_comma(data['fec_corr']), + format_number_with_comma(data['fec_uncorr']), + format_number_with_comma(data['fec_symbol_err']))) elif rates_only: header = header_rates_only table.append((key, self.get_port_state(key), - format_number_with_comma(data.rx_ok), + format_number_with_comma(data['rx_ok']), format_brate(rates.rx_bps), format_prate(rates.rx_pps), format_util(rates.rx_bps, port_speed), - format_number_with_comma(data.tx_ok), + format_number_with_comma(data['tx_ok']), format_brate(rates.tx_bps), format_prate(rates.tx_pps), format_util(rates.tx_bps, port_speed))) else: header = header_std table.append((key, self.get_port_state(key), - format_number_with_comma(data.rx_ok), + format_number_with_comma(data['rx_ok']), format_brate(rates.rx_bps), format_util(rates.rx_bps, port_speed), - format_number_with_comma(data.rx_err), - format_number_with_comma(data.rx_drop), - format_number_with_comma(data.rx_ovr), - format_number_with_comma(data.tx_ok), + format_number_with_comma(data['rx_err']), + format_number_with_comma(data['rx_drop']), + format_number_with_comma(data['rx_ovr']), + format_number_with_comma(data['tx_ok']), format_brate(rates.tx_bps), format_util(rates.tx_bps, port_speed), - format_number_with_comma(data.tx_err), - format_number_with_comma(data.tx_drop), - format_number_with_comma(data.tx_ovr))) + format_number_with_comma(data['tx_err']), + format_number_with_comma(data['tx_drop']), + format_number_with_comma(data['tx_ovr']))) if use_json: print(table_as_json(table, header)) @@ -353,51 +353,51 @@ class Portstat(object): if key in cnstat_old_dict: old_cntr = cnstat_old_dict.get(key) else: - old_cntr = NStats._make([0] * BUCKET_NUM) + old_cntr = NStats._make([0] * BUCKET_NUM)._asdict() if intf_list and key not in intf_list: continue - print("Packets Received 64 Octets..................... {}".format(ns_diff(cntr.rx_64, old_cntr.rx_64))) - print("Packets Received 65-127 Octets................. {}".format(ns_diff(cntr.rx_65_127, old_cntr.rx_65_127))) - print("Packets Received 128-255 Octets................ {}".format(ns_diff(cntr.rx_128_255, old_cntr.rx_128_255))) - print("Packets Received 256-511 Octets................ {}".format(ns_diff(cntr.rx_256_511, old_cntr.rx_256_511))) - print("Packets Received 512-1023 Octets............... {}".format(ns_diff(cntr.rx_512_1023, old_cntr.rx_512_1023))) - print("Packets Received 1024-1518 Octets.............. {}".format(ns_diff(cntr.rx_1024_1518, old_cntr.rx_1024_1518))) - print("Packets Received 1519-2047 Octets.............. {}".format(ns_diff(cntr.rx_1519_2047, old_cntr.rx_1519_2047))) - print("Packets Received 2048-4095 Octets.............. {}".format(ns_diff(cntr.rx_2048_4095, old_cntr.rx_2048_4095))) - print("Packets Received 4096-9216 Octets.............. {}".format(ns_diff(cntr.rx_4096_9216, old_cntr.rx_4096_9216))) - print("Packets Received 9217-16383 Octets............. {}".format(ns_diff(cntr.rx_9217_16383, old_cntr.rx_9217_16383))) + print("Packets Received 64 Octets..................... {}".format(ns_diff(cntr['rx_64'], old_cntr['rx_64']))) + print("Packets Received 65-127 Octets................. {}".format(ns_diff(cntr['rx_65_127'], old_cntr['rx_65_127']))) + print("Packets Received 128-255 Octets................ {}".format(ns_diff(cntr['rx_128_255'], old_cntr['rx_128_255']))) + print("Packets Received 256-511 Octets................ {}".format(ns_diff(cntr['rx_256_511'], old_cntr['rx_256_511']))) + print("Packets Received 512-1023 Octets............... {}".format(ns_diff(cntr['rx_512_1023'], old_cntr['rx_512_1023']))) + print("Packets Received 1024-1518 Octets.............. {}".format(ns_diff(cntr['rx_1024_1518'], old_cntr['rx_1024_1518']))) + print("Packets Received 1519-2047 Octets.............. {}".format(ns_diff(cntr['rx_1519_2047'], old_cntr['rx_1519_2047']))) + print("Packets Received 2048-4095 Octets.............. {}".format(ns_diff(cntr['rx_2048_4095'], old_cntr['rx_2048_4095']))) + print("Packets Received 4096-9216 Octets.............. {}".format(ns_diff(cntr['rx_4096_9216'], old_cntr['rx_4096_9216']))) + print("Packets Received 9217-16383 Octets............. {}".format(ns_diff(cntr['rx_9217_16383'], old_cntr['rx_9217_16383']))) print("") - print("Total Packets Received Without Errors.......... {}".format(ns_diff(cntr.rx_all, old_cntr.rx_all))) - print("Unicast Packets Received....................... {}".format(ns_diff(cntr.rx_uca, old_cntr.rx_uca))) - print("Multicast Packets Received..................... {}".format(ns_diff(cntr.rx_mca, old_cntr.rx_mca))) - print("Broadcast Packets Received..................... {}".format(ns_diff(cntr.rx_bca, old_cntr.rx_bca))) + print("Total Packets Received Without Errors.......... {}".format(ns_diff(cntr['rx_all'], old_cntr['rx_all']))) + print("Unicast Packets Received....................... {}".format(ns_diff(cntr['rx_uca'], old_cntr['rx_uca']))) + print("Multicast Packets Received..................... {}".format(ns_diff(cntr['rx_mca'], old_cntr['rx_mca']))) + print("Broadcast Packets Received..................... {}".format(ns_diff(cntr['rx_bca'], old_cntr['rx_bca']))) print("") - print("Jabbers Received............................... {}".format(ns_diff(cntr.rx_jbr, old_cntr.rx_jbr))) - print("Fragments Received............................. {}".format(ns_diff(cntr.rx_frag, old_cntr.rx_frag))) - print("Undersize Received............................. {}".format(ns_diff(cntr.rx_usize, old_cntr.rx_usize))) - print("Overruns Received.............................. {}".format(ns_diff(cntr.rx_ovrrun, old_cntr.rx_ovrrun))) + print("Jabbers Received............................... {}".format(ns_diff(cntr['rx_jbr'], old_cntr['rx_jbr']))) + print("Fragments Received............................. {}".format(ns_diff(cntr['rx_frag'], old_cntr['rx_frag']))) + print("Undersize Received............................. {}".format(ns_diff(cntr['rx_usize'], old_cntr['rx_usize']))) + print("Overruns Received.............................. {}".format(ns_diff(cntr['rx_ovrrun'], old_cntr['rx_ovrrun']))) print("") - print("Packets Transmitted 64 Octets.................. {}".format(ns_diff(cntr.tx_64, old_cntr.tx_64))) - print("Packets Transmitted 65-127 Octets.............. {}".format(ns_diff(cntr.tx_65_127, old_cntr.tx_65_127))) - print("Packets Transmitted 128-255 Octets............. {}".format(ns_diff(cntr.tx_128_255, old_cntr.tx_128_255))) - print("Packets Transmitted 256-511 Octets............. {}".format(ns_diff(cntr.tx_256_511, old_cntr.tx_256_511))) - print("Packets Transmitted 512-1023 Octets............ {}".format(ns_diff(cntr.tx_512_1023, old_cntr.tx_512_1023))) - print("Packets Transmitted 1024-1518 Octets........... {}".format(ns_diff(cntr.tx_1024_1518, old_cntr.tx_1024_1518))) - print("Packets Transmitted 1519-2047 Octets........... {}".format(ns_diff(cntr.tx_1519_2047, old_cntr.tx_1519_2047))) - print("Packets Transmitted 2048-4095 Octets........... {}".format(ns_diff(cntr.tx_2048_4095, old_cntr.tx_2048_4095))) - print("Packets Transmitted 4096-9216 Octets........... {}".format(ns_diff(cntr.tx_4096_9216, old_cntr.tx_4096_9216))) - print("Packets Transmitted 9217-16383 Octets.......... {}".format(ns_diff(cntr.tx_9217_16383, old_cntr.tx_9217_16383))) + print("Packets Transmitted 64 Octets.................. {}".format(ns_diff(cntr['tx_64'], old_cntr['tx_64']))) + print("Packets Transmitted 65-127 Octets.............. {}".format(ns_diff(cntr['tx_65_127'], old_cntr['tx_65_127']))) + print("Packets Transmitted 128-255 Octets............. {}".format(ns_diff(cntr['tx_128_255'], old_cntr['tx_128_255']))) + print("Packets Transmitted 256-511 Octets............. {}".format(ns_diff(cntr['tx_256_511'], old_cntr['tx_256_511']))) + print("Packets Transmitted 512-1023 Octets............ {}".format(ns_diff(cntr['tx_512_1023'], old_cntr['tx_512_1023']))) + print("Packets Transmitted 1024-1518 Octets........... {}".format(ns_diff(cntr['tx_1024_1518'], old_cntr['tx_1024_1518']))) + print("Packets Transmitted 1519-2047 Octets........... {}".format(ns_diff(cntr['tx_1519_2047'], old_cntr['tx_1519_2047']))) + print("Packets Transmitted 2048-4095 Octets........... {}".format(ns_diff(cntr['tx_2048_4095'], old_cntr['tx_2048_4095']))) + print("Packets Transmitted 4096-9216 Octets........... {}".format(ns_diff(cntr['tx_4096_9216'], old_cntr['tx_4096_9216']))) + print("Packets Transmitted 9217-16383 Octets.......... {}".format(ns_diff(cntr['tx_9217_16383'], old_cntr['tx_9217_16383']))) print("") - print("Total Packets Transmitted Successfully......... {}".format(ns_diff(cntr.tx_all, old_cntr.tx_all))) - print("Unicast Packets Transmitted.................... {}".format(ns_diff(cntr.tx_uca, old_cntr.tx_uca))) - print("Multicast Packets Transmitted.................. {}".format(ns_diff(cntr.tx_mca, old_cntr.tx_mca))) - print("Broadcast Packets Transmitted.................. {}".format(ns_diff(cntr.tx_bca, old_cntr.tx_bca))) + print("Total Packets Transmitted Successfully......... {}".format(ns_diff(cntr['tx_all'], old_cntr['tx_all']))) + print("Unicast Packets Transmitted.................... {}".format(ns_diff(cntr['tx_uca'], old_cntr['tx_uca']))) + print("Multicast Packets Transmitted.................. {}".format(ns_diff(cntr['tx_mca'], old_cntr['tx_mca']))) + print("Broadcast Packets Transmitted.................. {}".format(ns_diff(cntr['tx_bca'], old_cntr['tx_bca']))) print("Time Since Counters Last Cleared............... " + str(cnstat_old_dict.get('time'))) @@ -434,88 +434,88 @@ class Portstat(object): header = header_all if old_cntr is not None: table.append((key, self.get_port_state(key), - ns_diff(cntr.rx_ok, old_cntr.rx_ok), + ns_diff(cntr['rx_ok'], old_cntr['rx_ok']), format_brate(rates.rx_bps), format_prate(rates.rx_pps), format_util(rates.rx_bps, port_speed), - ns_diff(cntr.rx_err, old_cntr.rx_err), - ns_diff(cntr.rx_drop, old_cntr.rx_drop), - ns_diff(cntr.rx_ovr, old_cntr.rx_ovr), - ns_diff(cntr.tx_ok, old_cntr.tx_ok), + ns_diff(cntr['rx_err'], old_cntr['rx_err']), + ns_diff(cntr['rx_drop'], old_cntr['rx_drop']), + ns_diff(cntr['rx_ovr'], old_cntr['rx_ovr']), + ns_diff(cntr['tx_ok'], old_cntr['tx_ok']), format_brate(rates.tx_bps), format_prate(rates.tx_pps), format_util(rates.tx_bps, port_speed), - ns_diff(cntr.tx_err, old_cntr.tx_err), - ns_diff(cntr.tx_drop, old_cntr.tx_drop), - ns_diff(cntr.tx_ovr, old_cntr.tx_ovr))) + ns_diff(cntr['tx_err'], old_cntr['tx_err']), + ns_diff(cntr['tx_drop'], old_cntr['tx_drop']), + ns_diff(cntr['tx_ovr'], old_cntr['tx_ovr']))) else: table.append((key, self.get_port_state(key), - format_number_with_comma(cntr.rx_ok), + format_number_with_comma(cntr['rx_ok']), format_brate(rates.rx_bps), format_prate(rates.rx_pps), format_util(rates.rx_bps, port_speed), - format_number_with_comma(cntr.rx_err), - format_number_with_comma(cntr.rx_drop), - format_number_with_comma(cntr.rx_ovr), - format_number_with_comma(cntr.tx_ok), + format_number_with_comma(cntr['rx_err']), + format_number_with_comma(cntr['rx_drop']), + format_number_with_comma(cntr['rx_ovr']), + format_number_with_comma(cntr['tx_ok']), format_brate(rates.tx_bps), format_prate(rates.tx_pps), format_util(rates.tx_bps, port_speed), - format_number_with_comma(cntr.tx_err), - format_number_with_comma(cntr.tx_drop), - format_number_with_comma(cntr.tx_ovr))) + format_number_with_comma(cntr['tx_err']), + format_number_with_comma(cntr['tx_drop']), + format_number_with_comma(cntr['tx_ovr']))) elif errors_only: header = header_errors_only if old_cntr is not None: table.append((key, self.get_port_state(key), - ns_diff(cntr.rx_err, old_cntr.rx_err), - ns_diff(cntr.rx_drop, old_cntr.rx_drop), - ns_diff(cntr.rx_ovr, old_cntr.rx_ovr), - ns_diff(cntr.tx_err, old_cntr.tx_err), - ns_diff(cntr.tx_drop, old_cntr.tx_drop), - ns_diff(cntr.tx_ovr, old_cntr.tx_ovr))) + ns_diff(cntr['rx_err'], old_cntr['rx_err']), + ns_diff(cntr['rx_drop'], old_cntr['rx_drop']), + ns_diff(cntr['rx_ovr'], old_cntr['rx_ovr']), + ns_diff(cntr['tx_err'], old_cntr['tx_err']), + ns_diff(cntr['tx_drop'], old_cntr['tx_drop']), + ns_diff(cntr['tx_ovr'], old_cntr['tx_ovr']))) else: table.append((key, self.get_port_state(key), - format_number_with_comma(cntr.rx_err), - format_number_with_comma(cntr.rx_drop), - format_number_with_comma(cntr.rx_ovr), - format_number_with_comma(cntr.tx_err), - format_number_with_comma(cntr.tx_drop), - format_number_with_comma(cntr.tx_ovr))) + format_number_with_comma(cntr['rx_err']), + format_number_with_comma(cntr['rx_drop']), + format_number_with_comma(cntr['rx_ovr']), + format_number_with_comma(cntr['tx_err']), + format_number_with_comma(cntr['tx_drop']), + format_number_with_comma(cntr['tx_ovr']))) elif fec_stats_only: header = header_fec_only if old_cntr is not None: table.append((key, self.get_port_state(key), - ns_diff(cntr.fec_corr, old_cntr.fec_corr), - ns_diff(cntr.fec_uncorr, old_cntr.fec_uncorr), - ns_diff(cntr.fec_symbol_err, old_cntr.fec_symbol_err))) + ns_diff(cntr['fec_corr'], old_cntr['fec_corr']), + ns_diff(cntr['fec_uncorr'], old_cntr['fec_uncorr']), + ns_diff(cntr['fec_symbol_err'], old_cntr['fec_symbol_err']))) else: table.append((key, self.get_port_state(key), - format_number_with_comma(cntr.fec_corr), - format_number_with_comma(cntr.fec_uncorr), - format_number_with_comma(cntr.fec_symbol_err))) + format_number_with_comma(cntr['fec_corr']), + format_number_with_comma(cntr['fec_uncorr']), + format_number_with_comma(cntr['fec_symbol_err']))) elif rates_only: header = header_rates_only if old_cntr is not None: table.append((key, self.get_port_state(key), - ns_diff(cntr.rx_ok, old_cntr.rx_ok), + ns_diff(cntr['rx_ok'], old_cntr['rx_ok']), format_brate(rates.rx_bps), format_prate(rates.rx_pps), format_util(rates.rx_bps, port_speed), - ns_diff(cntr.tx_ok, old_cntr.tx_ok), + ns_diff(cntr['tx_ok'], old_cntr['tx_ok']), format_brate(rates.tx_bps), format_prate(rates.tx_pps), format_util(rates.tx_bps, port_speed))) else: table.append((key, self.get_port_state(key), - format_number_with_comma(cntr.rx_ok), + format_number_with_comma(cntr['rx_ok']), format_brate(rates.rx_bps), format_prate(rates.rx_pps), format_util(rates.rx_bps, port_speed), - format_number_with_comma(cntr.tx_ok), + format_number_with_comma(cntr['tx_ok']), format_brate(rates.tx_bps), format_prate(rates.tx_pps), format_util(rates.tx_bps, port_speed))) @@ -524,33 +524,33 @@ class Portstat(object): if old_cntr is not None: table.append((key, self.get_port_state(key), - ns_diff(cntr.rx_ok, old_cntr.rx_ok), + ns_diff(cntr['rx_ok'], old_cntr['rx_ok']), format_brate(rates.rx_bps), format_util(rates.rx_bps, port_speed), - ns_diff(cntr.rx_err, old_cntr.rx_err), - ns_diff(cntr.rx_drop, old_cntr.rx_drop), - ns_diff(cntr.rx_ovr, old_cntr.rx_ovr), - ns_diff(cntr.tx_ok, old_cntr.tx_ok), + ns_diff(cntr['rx_err'], old_cntr['rx_err']), + ns_diff(cntr['rx_drop'], old_cntr['rx_drop']), + ns_diff(cntr['rx_ovr'], old_cntr['rx_ovr']), + ns_diff(cntr['tx_ok'], old_cntr['tx_ok']), format_brate(rates.tx_bps), format_util(rates.tx_bps, port_speed), - ns_diff(cntr.tx_err, old_cntr.tx_err), - ns_diff(cntr.tx_drop, old_cntr.tx_drop), - ns_diff(cntr.tx_ovr, old_cntr.tx_ovr))) + ns_diff(cntr['tx_err'], old_cntr['tx_err']), + ns_diff(cntr['tx_drop'], old_cntr['tx_drop']), + ns_diff(cntr['tx_ovr'], old_cntr['tx_ovr']))) else: table.append((key, self.get_port_state(key), - format_number_with_comma(cntr.rx_ok), + format_number_with_comma(cntr['rx_ok']), format_brate(rates.rx_bps), format_util(rates.rx_bps, port_speed), - format_number_with_comma(cntr.rx_err), - format_number_with_comma(cntr.rx_drop), - format_number_with_comma(cntr.rx_ovr), - format_number_with_comma(cntr.tx_ok), + format_number_with_comma(cntr['rx_err']), + format_number_with_comma(cntr['rx_drop']), + format_number_with_comma(cntr['rx_ovr']), + format_number_with_comma(cntr['tx_ok']), format_brate(rates.tx_bps), format_util(rates.tx_bps, port_speed), - format_number_with_comma(cntr.tx_err), - format_number_with_comma(cntr.tx_drop), - format_number_with_comma(cntr.tx_ovr))) + format_number_with_comma(cntr['tx_err']), + format_number_with_comma(cntr['tx_drop']), + format_number_with_comma(cntr['tx_ovr']))) if use_json: print(table_as_json(table, header)) @@ -641,7 +641,7 @@ Examples: if save_fresh_stats: try: - pickle.dump(cnstat_dict, open(cnstat_fqn_file, 'wb')) + json.dump(cnstat_dict, open(cnstat_fqn_file, 'w'), default=json_serial) except IOError as e: sys.exit(e.errno) else: @@ -652,7 +652,7 @@ Examples: cnstat_cached_dict = OrderedDict() if os.path.isfile(cnstat_fqn_file): try: - cnstat_cached_dict = pickle.load(open(cnstat_fqn_file, 'rb')) + cnstat_cached_dict = json.load(open(cnstat_fqn_file, 'r')) if not detail: print("Last cached time was " + str(cnstat_cached_dict.get('time'))) portstat.cnstat_diff_print(cnstat_dict, cnstat_cached_dict, ratestat_dict, intf_list, use_json, print_all, errors_only, fec_stats_only, rates_only, detail) diff --git a/scripts/queuestat b/scripts/queuestat index 96a24b51..d82e7e4a 100755 --- a/scripts/queuestat +++ b/scripts/queuestat @@ -6,7 +6,7 @@ # ##################################################################### -import _pickle as pickle +import json import argparse import datetime import os.path @@ -33,7 +33,7 @@ except KeyError: pass from swsscommon.swsscommon import SonicV2Connector -from utilities_common.cli import UserCache +from utilities_common.cli import json_serial, UserCache from utilities_common import constants import utilities_common.multi_asic as multi_asic_util @@ -186,7 +186,7 @@ class Queuestat(object): fields[pos] = STATUS_NA elif fields[pos] != STATUS_NA: fields[pos] = str(int(counter_data)) - cntr = QueueStats._make(fields) + cntr = QueueStats._make(fields)._asdict() return cntr # Build a dictionary of the stats @@ -211,9 +211,9 @@ 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)) + 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)) @@ -241,15 +241,15 @@ 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))) + 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)) + 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)) @@ -273,7 +273,7 @@ class Queuestat(object): cnstat_fqn_file_name = cnstat_fqn_file + port if os.path.isfile(cnstat_fqn_file_name): try: - cnstat_cached_dict = pickle.load(open(cnstat_fqn_file_name, 'rb')) + 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)) @@ -307,7 +307,7 @@ class Queuestat(object): json_output[port] = {} if os.path.isfile(cnstat_fqn_file_name): try: - cnstat_cached_dict = pickle.load(open(cnstat_fqn_file_name, 'rb')) + 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)) @@ -330,7 +330,7 @@ class Queuestat(object): for port in natsorted(self.counter_port_name_map): cnstat_dict = self.get_cnstat(self.port_queues_map[port]) try: - pickle.dump(cnstat_dict, open(cnstat_fqn_file + port, 'wb')) + json.dump(cnstat_dict, open(cnstat_fqn_file + port, 'w'), default=json_serial) except IOError as e: print(e.errno, e) sys.exit(e.errno) diff --git a/scripts/tunnelstat b/scripts/tunnelstat index 8b045ec6..3d7423e8 100755 --- a/scripts/tunnelstat +++ b/scripts/tunnelstat @@ -6,7 +6,7 @@ # ##################################################################### -import _pickle as pickle +import json import argparse import datetime import sys @@ -29,7 +29,7 @@ from collections import namedtuple, OrderedDict from natsort import natsorted from tabulate import tabulate from utilities_common.netstat import ns_diff, table_as_json, STATUS_NA, format_prate -from utilities_common.cli import UserCache +from utilities_common.cli import json_serial, UserCache from swsscommon.swsscommon import SonicV2Connector @@ -80,7 +80,7 @@ class Tunnelstat(object): counter_data = self.db.get(self.db.COUNTERS_DB, full_table_id, counter_name) if counter_data: fields[pos] = str(counter_data) - cntr = NStats._make(fields) + cntr = NStats._make(fields)._asdict() return cntr def get_rates(table_id): @@ -149,8 +149,8 @@ class Tunnelstat(object): continue rates = ratestat_dict.get(key, RateStats._make([STATUS_NA] * len(rates_key_list))) - table.append((key, data.rx_p_ok, data.rx_b_ok, format_prate(rates.rx_pps), - data.tx_p_ok, data.tx_b_ok, format_prate(rates.tx_pps))) + table.append((key, data['rx_p_ok'], data['rx_b_ok'], format_prate(rates.rx_pps), + data['tx_p_ok'], data['tx_b_ok'], format_prate(rates.tx_pps))) if use_json: print(table_as_json(table, header)) @@ -175,19 +175,19 @@ class Tunnelstat(object): rates = ratestat_dict.get(key, RateStats._make([STATUS_NA] * len(rates_key_list))) if old_cntr is not None: table.append((key, - ns_diff(cntr.rx_p_ok, old_cntr.rx_p_ok), - ns_diff(cntr.rx_b_ok, old_cntr.rx_b_ok), + ns_diff(cntr['rx_p_ok'], old_cntr['rx_p_ok']), + ns_diff(cntr['rx_b_ok'], old_cntr['rx_b_ok']), format_prate(rates.rx_pps), - ns_diff(cntr.tx_p_ok, old_cntr.tx_p_ok), - ns_diff(cntr.tx_b_ok, old_cntr.tx_b_ok), + ns_diff(cntr['tx_p_ok'], old_cntr['tx_p_ok']), + ns_diff(cntr['tx_b_ok'], old_cntr['tx_b_ok']), format_prate(rates.tx_pps))) else: table.append((key, - cntr.rx_p_ok, - cntr.rx_b_ok, + cntr['rx_p_ok'], + cntr['rx_b_ok'], format_prate(rates.rx_pps), - cntr.tx_p_ok, - cntr.tx_b_ok, + cntr['tx_p_ok'], + cntr['tx_b_ok'], format_prate(rates.tx_pps))) if use_json: print(table_as_json(table, header)) @@ -210,12 +210,12 @@ class Tunnelstat(object): if cnstat_old_dict: old_cntr = cnstat_old_dict.get(tunnel) if old_cntr: - body = body % (ns_diff(cntr.rx_p_ok, old_cntr.rx_p_ok), - ns_diff(cntr.rx_b_ok, old_cntr.rx_b_ok), - ns_diff(cntr.tx_p_ok, old_cntr.tx_p_ok), - ns_diff(cntr.tx_b_ok, old_cntr.tx_b_ok)) + body = body % (ns_diff(cntr['rx_p_ok'], old_cntr['rx_p_ok']), + ns_diff(cntr['rx_b_ok'], old_cntr['rx_b_ok']), + ns_diff(cntr['tx_p_ok'], old_cntr['tx_p_ok']), + ns_diff(cntr['tx_b_ok'], old_cntr['tx_b_ok'])) else: - body = body % (cntr.rx_p_ok, cntr.rx_b_ok, cntr.tx_p_ok, cntr.tx_b_ok) + body = body % (cntr['rx_p_ok'], cntr['rx_b_ok'], cntr['tx_p_ok'], cntr['tx_b_ok']) print(header) print(body) @@ -273,7 +273,7 @@ def main(): if save_fresh_stats: try: - pickle.dump(cnstat_dict, open(cnstat_fqn_file, 'wb')) + json.dump(cnstat_dict, open(cnstat_fqn_file, 'w'), default=json_serial) except IOError as e: sys.exit(e.errno) else: @@ -283,7 +283,7 @@ def main(): if wait_time_in_seconds == 0: if os.path.isfile(cnstat_fqn_file): try: - cnstat_cached_dict = pickle.load(open(cnstat_fqn_file, 'rb')) + cnstat_cached_dict = json.load(open(cnstat_fqn_file, 'r')) print("Last cached time was " + str(cnstat_cached_dict.get('time'))) if tunnel_name: tunnelstat.cnstat_single_tunnel(tunnel_name, cnstat_dict, cnstat_cached_dict) From eda4e91b8a0c9ca6a4f329609e6499d1e5aad45d Mon Sep 17 00:00:00 2001 From: vdahiya12 <67608553+vdahiya12@users.noreply.github.com> Date: Fri, 24 Feb 2023 12:46:36 -0800 Subject: [PATCH 076/312] [show][muxcable] add some new commands health, reset-cause, queue_info support for muxcable (#2414) This PR adds the support for adding some utility commands for muxacble This includes commands for health, operationtime, queueinfo, resetcause vdahiya@sonic:~$ show mux health Ethernet4 PORT ATTR HEALTH --------- --------------- -------- Ethernet4 health_check Ok vdahiya@sonic:~$ show mux health Ethernet4 --json { "health_check": "Ok" } vdahiya@sonic:~$ show mux operation Ethernet4 --json { "operation_time": "22:22" } vdahiya@sonic:~$ show mux operation Ethernet4 PORT ATTR OPERATION_TIME --------- -------------- ---------------- Ethernet4 operation_time 22:22 vdahiya@sonic:~$ vdahiya@sonic:~$ show mux resetcause Ethernet4 PORT ATTR RESETCAUSE --------- ----------- ------------ Ethernet4 reset_cause 0 vdahiya@sonic:~$ show mux resetcause Ethernet4 --json { "reset_cause": "0" } vdahiya@sonic:~$ show mux queueinfo Ethernet4 --json { "Remote": "{'VSC': {'r_ptr': 0, 'w_ptr': 0, 'total_count': 0, 'free_count': 0, 'buff_addr': 0, 'node_size': 0}, 'UART1': {'r_ptr': 0, 'w_ptr': 0, 'total_count': 0, 'free_count': 0, 'buff_addr': 209870, 'node_size': 1682183}, 'UART2': {'r_ptr': 13262, 'w_ptr': 3, 'total_count': 0, 'free_count': 0, 'buff_addr': 12, 'node_size': 0}}", "Local": "{'VSC': {'r_ptr': 0, 'w_ptr': 0, 'total_count': 0, 'free_count': 0, 'buff_addr': 0, 'node_size': 0}, 'UART1': {'r_ptr': 0, 'w_ptr': 0, 'total_count': 0, 'free_count': 0, 'buff_addr': 209870, 'node_size': 1682183}, 'UART2': {'r_ptr': 13262, 'w_ptr': 3, 'total_count': 0, 'free_count': 0, 'buff_addr': 12, 'node_size': 0}}" } --- doc/Command-Reference.md | 148 +++++++++++++++++++++++ show/muxcable.py | 245 ++++++++++++++++++++++++++++++++++++--- tests/muxcable_test.py | 124 ++++++++++++++++++++ 3 files changed, 503 insertions(+), 14 deletions(-) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index dbc7966c..69f282cc 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -6126,6 +6126,154 @@ This command displays the eye info in mv(milli volts) of the port user provides 632 622 ``` + +**show muxcable health ** + +This command displays the hardware health of the Y-cable which are connected to muxcable. The resultant table or json output will show the current hadrware health of the cable as Ok, Not Ok, Unknown. + +- Usage: + ``` + show muxcable health [OPTIONS] [PORT] + ``` + +While displaying the muxcable health, users need to provide the following fields + +- PORT required - Port name should be a valid port +- --json optional - -- option to display the result in json format. By default output will be in tabular format. + +-Ok means the cable is healthy + +in order to detemine whether the health of the cable is Ok +the following are checked +- the vendor name is correct able to be read +- the FW is correctly loaded for SerDes by reading the appropriate register val +- the Counters for UART are displaying healthy status + i.e Error Counters , retry Counters for UART or internal xfer protocols are below a threshold + + +- Example: + ``` + admin@sonic:~$ show muxcable health Ethernet4 + PORT ATTR HEALTH + --------- ------ -------- + Ethernet4 health Ok + ``` + ``` + admin@sonic:~$ show muxcable health Ethernet4 --json + ``` + ```json + { + "health": "Ok" + } + + ``` + + +**show muxcable queueinfo ** + +This command displays the queue info of the Y-cable which are connected to muxcable. The resultant table or json output will show the queue info in terms transactions for the UART stats in particular currently relevant to the MCU of the cable. + +- Usage: + ``` + show muxcable queueinfo [OPTIONS] [PORT] + ``` + +While displaying the muxcable queueinfo, users need to provide the following fields + +- PORT required - Port name should be a valid port +- --json optional - -- option to display the result in json format. By default output will be in tabular format. + +the result will be displayed like this, each item in the dictionary shows the health of the attribute in the queue +``` +"{'VSC': {'r_ptr': 0, 'w_ptr': 0, 'total_count': 0, 'free_count': 0, 'buff_addr': 0, 'node_size': 0}, 'UART1': {'r_ptr': 0, 'w_ptr': 0, 'total_count': 0, 'free_count': 0, 'buff_addr': 209870, 'node_size': 1682183}, 'UART2': {'r_ptr': 13262, 'w_ptr': 3, 'total_count': 0, 'free_count': 0, 'buff_addr': 12, 'node_size': 0} +``` + +- Example: + ``` + admin@sonic:~$ show muxcable queueinfo Ethernet0 + PORT ATTR VALUE + --------- ---------- ------- + Ethernet0 uart_stat1 2 + Ethernet0 uart_stat2 1 + ``` + ``` + admin@sonic:~$ show muxcable queueinfo Ethernet4 --json + ``` + ```json + { + "uart_stat1": "2", + "uart_stat2": "1", + + } + ``` + +**show muxcable operationtime ** + +This command displays the operationtime of the Y-cable which are connected to muxcable. The resultant table or json output will show the current operation time of the cable as `hh:mm:ss` format. Operation time means the time since the last time the reseated/reset of the cable is done, and the time would be in the format specified + +- Usage: + ``` + show muxcable operationtime [OPTIONS] [PORT] + ``` + +While displaying the muxcable operationtime, users need to provide the following fields + +- PORT required - Port name should be a valid port +- --json optional - -- option to display the result in json format. By default output will be in tabular format. + + +- Example: + ``` + admin@sonic:~$ show muxcable operationtime Ethernet4 + PORT ATTR OPERATION_TIME + --------- -------------- ---------------- + Ethernet4 operation_time 00:22:22 + ``` + ``` + admin@sonic:~$ show muxcable operationtime Ethernet4 --json + ``` + ```json + { + "operation_time": "00:22:22" + } + ``` + +**show muxcable resetcause ** + +This command displays the resetcause of the Y-cable which are connected to muxcable. The resultant table or json output will show the most recent reset cause of the cable as string format. + +- Usage: + ``` + show muxcable resetcause [OPTIONS] [PORT] + ``` + +While displaying the muxcable resetcause, users need to provide the following fields + +- PORT required - Port name should be a valid port +- --json optional - -- option to display the result in json format. By default output will be in tabular format. + +the reset cause only records NIC MCU reset status. The NIC MCU will automatically broadcast the reset cause status to each TORs, corresponding values returned +display cold reset if the last reset is cold reset (ex. HW/SW reset, power reset the cable, or reboot the NIC server) +display warm reset if the last reset is warm reset (ex. sudo config mux firmware activate....) +the value is persistent, no clear on read + +- Example: + ``` + admin@sonic:~$ show muxcable resetcause Ethernet4 + PORT ATTR RESETCAUSE + --------- ----------- ------------ + Ethernet4 reset_cause warm reset + ``` + ``` + admin@sonic:~$ show muxcable resetcause Ethernet4 --json + ``` + ```json + { + "reset_cause": "warm reset" + } + ``` + + ### Muxcable Config commands diff --git a/show/muxcable.py b/show/muxcable.py index b640d321..837e3627 100644 --- a/show/muxcable.py +++ b/show/muxcable.py @@ -35,6 +35,11 @@ VENDOR_NAME = "Credo" VENDOR_MODEL_REGEX = re.compile(r"CAC\w{3}321P2P\w{2}MS") +#define table names that interact with Cli +XCVRD_GET_BER_CMD_TABLE = "XCVRD_GET_BER_CMD" +XCVRD_GET_BER_RSP_TABLE = "XCVRD_GET_BER_RSP" +XCVRD_GET_BER_RES_TABLE = "XCVRD_GET_BER_RES" +XCVRD_GET_BER_CMD_ARG_TABLE = "XCVRD_GET_BER_CMD_ARG" def get_asic_index_for_port(port): asic_index = None @@ -276,9 +281,11 @@ def get_result(port, res_dict, cmd ,result, table_name): (status, fvp) = xcvrd_show_fw_res_tbl[asic_index].get(port) res_dir = dict(fvp) + delete_all_keys_in_db_table("STATE_DB", table_name) + return res_dir -def update_and_get_response_for_xcvr_cmd(cmd_name, rsp_name, exp_rsp, cmd_table_name, cmd_arg_table_name, rsp_table_name ,port, cmd_timeout_secs, param_dict= None, arg=None): +def update_and_get_response_for_xcvr_cmd(cmd_name, rsp_name, exp_rsp, cmd_table_name, cmd_arg_table_name, rsp_table_name , res_table_name, port, cmd_timeout_secs, param_dict= None, arg=None): res_dict = {} state_db, appl_db = {}, {} @@ -291,6 +298,8 @@ def update_and_get_response_for_xcvr_cmd(cmd_name, rsp_name, exp_rsp, cmd_table_ time_start = time.time() + delete_all_keys_in_db_tables_helper(cmd_table_name, rsp_table_name, cmd_arg_table_name, res_table_name) + sel = swsscommon.Select() namespaces = multi_asic.get_front_end_namespaces() for namespace in namespaces: @@ -405,11 +414,26 @@ def update_and_get_response_for_xcvr_cmd(cmd_name, rsp_name, exp_rsp, cmd_table_ firmware_rsp_tbl[asic_index]._del(port) break - delete_all_keys_in_db_table("STATE_DB", rsp_table_name) + + delete_all_keys_in_db_tables_helper(cmd_table_name, rsp_table_name, cmd_arg_table_name, None) return res_dict +def delete_all_keys_in_db_tables_helper(cmd_table_name, rsp_table_name, cmd_arg_table_name = None, res_table_name = None): + + delete_all_keys_in_db_table("APPL_DB", cmd_table_name) + delete_all_keys_in_db_table("STATE_DB", rsp_table_name) + if cmd_arg_table_name is not None: + delete_all_keys_in_db_table("APPL_DB", cmd_arg_table_name) + + if res_table_name is not None: + delete_all_keys_in_db_table("STATE_DB", res_table_name) + + return 0 + + + # 'muxcable' command ("show muxcable") # @@ -926,7 +950,7 @@ def berinfo(db, port, target, json_output): res_dict[1] = "unknown" res_dict = update_and_get_response_for_xcvr_cmd( - "get_ber", "status", "True", "XCVRD_GET_BER_CMD", "XCVRD_GET_BER_CMD_ARG", "XCVRD_GET_BER_RSP", port, 10, param_dict, "ber") + "get_ber", "status", "True", "XCVRD_GET_BER_CMD", "XCVRD_GET_BER_CMD_ARG", "XCVRD_GET_BER_RSP", None, port, 10, param_dict, "ber") if res_dict[1] == "True": result = get_result(port, res_dict, "fec" , result, "XCVRD_GET_BER_RES") @@ -978,7 +1002,7 @@ def eyeinfo(db, port, target, json_output): res_dict[1] = "unknown" res_dict = update_and_get_response_for_xcvr_cmd( - "get_ber", "status", "True", "XCVRD_GET_BER_CMD", "XCVRD_GET_BER_CMD_ARG", "XCVRD_GET_BER_RSP", port, 10, param_dict, "eye") + "get_ber", "status", "True", "XCVRD_GET_BER_CMD", "XCVRD_GET_BER_CMD_ARG", "XCVRD_GET_BER_RSP", None, port, 10, param_dict, "eye") if res_dict[1] == "True": result = get_result(port, res_dict, "fec" , result, "XCVRD_GET_BER_RES") @@ -1029,7 +1053,7 @@ def fecstatistics(db, port, target, json_output): res_dict[1] = "unknown" res_dict = update_and_get_response_for_xcvr_cmd( - "get_ber", "status", "True", "XCVRD_GET_BER_CMD", "XCVRD_GET_BER_CMD_ARG", "XCVRD_GET_BER_RSP", port, 10, param_dict, "fec_stats") + "get_ber", "status", "True", "XCVRD_GET_BER_CMD", "XCVRD_GET_BER_CMD_ARG", "XCVRD_GET_BER_RSP", None, port, 10, param_dict, "fec_stats") if res_dict[1] == "True": result = get_result(port, res_dict, "fec" , result, "XCVRD_GET_BER_RES") @@ -1080,7 +1104,7 @@ def pcsstatistics(db, port, target, json_output): res_dict[1] = "unknown" res_dict = update_and_get_response_for_xcvr_cmd( - "get_ber", "status", "True", "XCVRD_GET_BER_CMD", "XCVRD_GET_BER_CMD_ARG", "XCVRD_GET_BER_RSP", port, 10, param_dict, "pcs_stats") + "get_ber", "status", "True", "XCVRD_GET_BER_CMD", "XCVRD_GET_BER_CMD_ARG", "XCVRD_GET_BER_RSP", None, port, 10, param_dict, "pcs_stats") if res_dict[1] == "True": result = get_result(port, res_dict, "fec" , result, "XCVRD_GET_BER_RES") @@ -1129,7 +1153,7 @@ def debugdumpregisters(db, port, option, json_output): res_dict[1] = "unknown" res_dict = update_and_get_response_for_xcvr_cmd( - "get_ber", "status", "True", "XCVRD_GET_BER_CMD", "XCVRD_GET_BER_CMD_ARG", "XCVRD_GET_BER_RSP", port, 100, param_dict, "debug_dump") + "get_ber", "status", "True", "XCVRD_GET_BER_CMD", "XCVRD_GET_BER_CMD_ARG", "XCVRD_GET_BER_RSP", None, port, 100, param_dict, "debug_dump") if res_dict[1] == "True": result = get_result(port, res_dict, "fec" , result, "XCVRD_GET_BER_RES") @@ -1173,7 +1197,7 @@ def alivecablestatus(db, port, json_output): res_dict[1] = "unknown" res_dict = update_and_get_response_for_xcvr_cmd( - "get_ber", "status", "True", "XCVRD_GET_BER_CMD", None, "XCVRD_GET_BER_RSP", port, 10, None, "cable_alive") + "get_ber", "status", "True", "XCVRD_GET_BER_CMD", None, "XCVRD_GET_BER_RSP", None, port, 10, None, "cable_alive") if res_dict[1] == "True": result = get_result(port, res_dict, "fec" , result, "XCVRD_GET_BER_RES") @@ -1245,7 +1269,7 @@ def get_hwmode_mux_direction_port(db, port): if port is not None: res_dict = update_and_get_response_for_xcvr_cmd( - "state", "state", "True", "XCVRD_SHOW_HWMODE_DIR_CMD", "XCVRD_SHOW_HWMODE_DIR_RES", "XCVRD_SHOW_HWMODE_DIR_RSP", port, HWMODE_MUXDIRECTION_TIMEOUT, None, "probe") + "state", "state", "True", "XCVRD_SHOW_HWMODE_DIR_CMD", "XCVRD_SHOW_HWMODE_DIR_RES", "XCVRD_SHOW_HWMODE_DIR_RSP", None, port, HWMODE_MUXDIRECTION_TIMEOUT, None, "probe") result = get_result(port, res_dict, "muxdirection" , result, "XCVRD_SHOW_HWMODE_DIR_RES") @@ -1464,7 +1488,7 @@ def switchmode(db, port): res_dict[0] = CONFIG_FAIL res_dict[1] = "unknown" res_dict = update_and_get_response_for_xcvr_cmd( - "state", "state", "True", "XCVRD_SHOW_HWMODE_SWMODE_CMD", None, "XCVRD_SHOW_HWMODE_SWMODE_RSP", port, 1, None, "probe") + "state", "state", "True", "XCVRD_SHOW_HWMODE_SWMODE_CMD", None, "XCVRD_SHOW_HWMODE_SWMODE_RSP", None, port, 1, None, "probe") body = [] temp_list = [] @@ -1520,7 +1544,7 @@ def switchmode(db, port): res_dict[0] = CONFIG_FAIL res_dict[1] = "unknown" res_dict = update_and_get_response_for_xcvr_cmd( - "state", "state", "True", "XCVRD_SHOW_HWMODE_SWMODE_CMD", None, "XCVRD_SHOW_HWMODE_SWMODE_RSP", port, 1, None, "probe") + "state", "state", "True", "XCVRD_SHOW_HWMODE_SWMODE_CMD", None, "XCVRD_SHOW_HWMODE_SWMODE_RSP", None, port, 1, None, "probe") port = platform_sfputil_helper.get_interface_alias(port, db) temp_list.append(port) temp_list.append(res_dict[1]) @@ -1705,7 +1729,7 @@ def version(db, port, active): mux_info_dict["version_self_next"] = "N/A" res_dict = update_and_get_response_for_xcvr_cmd( - "firmware_version", "status", "True", "XCVRD_SHOW_FW_CMD", None, "XCVRD_SHOW_FW_RSP", port, 20, None, "probe") + "firmware_version", "status", "True", "XCVRD_SHOW_FW_CMD", None, "XCVRD_SHOW_FW_RSP", None, port, 20, None, "probe") if res_dict[1] == "True": mux_info_dict = get_response_for_version(port, mux_info_dict) @@ -1874,7 +1898,7 @@ def event_log(db, port, json_output): res_dict[1] = "unknown" res_dict = update_and_get_response_for_xcvr_cmd( - "show_event", "status", "True", "XCVRD_EVENT_LOG_CMD", None, "XCVRD_EVENT_LOG_RSP", port, 1000, None, "probe") + "show_event", "status", "True", "XCVRD_EVENT_LOG_CMD", None, "XCVRD_EVENT_LOG_RSP", None, port, 1000, None, "probe") if res_dict[1] == "True": result = get_event_logs(port, res_dict, mux_info_dict) @@ -1916,7 +1940,7 @@ def get_fec_anlt_speed(db, port, json_output): res_dict[1] = "unknown" res_dict = update_and_get_response_for_xcvr_cmd( - "get_fec", "status", "True", "XCVRD_GET_FEC_CMD", None, "XCVRD_GET_FEC_RSP", port, 10, None, "probe") + "get_fec", "status", "True", "XCVRD_GET_FEC_CMD", None, "XCVRD_GET_FEC_RSP", None, port, 10, None, "probe") if res_dict[1] == "True": result = get_result(port, res_dict, "fec" , result, "XCVRD_GET_FEC_RES") @@ -2255,4 +2279,197 @@ def muxdirection(db, port, json_output): if rc_exit == False: sys.exit(EXIT_FAIL) +@muxcable.command() +@click.argument('port', metavar='', required=True, default=None) +@click.argument('option', required=False, default=None) +@click.option('--json', 'json_output', required=False, is_flag=True, type=click.BOOL, help="display the output in json format") +@clicommon.pass_db +def queueinfo(db, port, option, json_output): + """Show muxcable queue info information, preagreed by vendors""" + + port = platform_sfputil_helper.get_interface_name(port, db) + + if port is not None: + + res_dict = {} + result = {} + param_dict = {} + param_dict["option"] = option + + + res_dict[0] = CONFIG_FAIL + res_dict[1] = "unknown" + + res_dict = update_and_get_response_for_xcvr_cmd( + "get_ber", "status", "True", XCVRD_GET_BER_CMD_TABLE, XCVRD_GET_BER_CMD_ARG_TABLE, XCVRD_GET_BER_RSP_TABLE, XCVRD_GET_BER_RES_TABLE, port, 100, param_dict, "queue_info") + + if res_dict[1] == "True": + result = get_result(port, res_dict, "fec" , result, XCVRD_GET_BER_RES_TABLE) + + + port = platform_sfputil_helper.get_interface_alias(port, db) + + if json_output: + click.echo("{}".format(json.dumps(result, indent=4))) + else: + headers = ['PORT', 'ATTR', 'VALUE'] + res = [[port]+[key] + [val] for key, val in result.items()] + click.echo(tabulate(res, headers=headers)) + else: + click.echo("Did not get a valid Port for queue info information".format(port)) + sys.exit(CONFIG_FAIL) + + +@muxcable.command() +@click.argument('port', metavar='', required=True, default=None) +@click.option('--json', 'json_output', required=False, is_flag=True, type=click.BOOL, help="display the output in json format") +@clicommon.pass_db +def health(db, port, json_output): + """Show muxcable health information as Ok or Not Ok""" + + """ + in order to detemine whether the health of the cable is Ok + the following are checked + - the vendor name is correct able to be read + - the FW is correctly loaded for SerDes by reading the appropriate register val + - the Counters for UART are displaying healthy status + i.e Error Counters , retry Counters for UART or internal xfer protocols are below a threshold + """ + + port = platform_sfputil_helper.get_interface_name(port, db) + + if port is not None: + + res_dict = {} + result = {} + + + res_dict[0] = CONFIG_FAIL + res_dict[1] = "unknown" + + res_dict = update_and_get_response_for_xcvr_cmd( + "get_ber", "status", "True", XCVRD_GET_BER_CMD_TABLE, None, XCVRD_GET_BER_RSP_TABLE, XCVRD_GET_BER_RES_TABLE, port, 10, None, "health_check") + + if res_dict[1] == "True": + result = get_result(port, res_dict, "fec" , result, XCVRD_GET_BER_RES_TABLE) + + + + port = platform_sfputil_helper.get_interface_alias(port, db) + + cable_health = result.get("health_check", None) + + if cable_health == "False": + result["health_check"] = "Not Ok" + elif cable_health == "True": + result["health_check"] = "Ok" + else: + result["health_check"] = "Unknown" + + + + if json_output: + click.echo("{}".format(json.dumps(result, indent=4))) + else: + headers = ['PORT', 'ATTR', 'HEALTH'] + res = [[port]+[key] + [val] for key, val in result.items()] + click.echo(tabulate(res, headers=headers)) + else: + click.echo("Did not get a valid Port for cable health status".format(port)) + sys.exit(CONFIG_FAIL) + +@muxcable.command() +@click.argument('port', metavar='', required=True, default=None) +@click.option('--json', 'json_output', required=False, is_flag=True, type=click.BOOL, help="display the output in json format") +@clicommon.pass_db +def resetcause(db, port, json_output): + """Show muxcable resetcause information """ + + port = platform_sfputil_helper.get_interface_name(port, db) + + """ + the reset cause only records NIC MCU reset status. The NIC MCU will automatically broadcast the reset cause status to each TORs, corresponding values returned + return 0 if the last reset is cold reset (ex. HW/SW reset, power reset the cable, or reboot the NIC server) + return 1 if the last reset is warm reset (ex. sudo config mux firmware activate....) + the value is persistent, no clear on read + """ + if port is not None: + + res_dict = {} + result = {} + + + res_dict[0] = CONFIG_FAIL + res_dict[1] = "unknown" + + res_dict = update_and_get_response_for_xcvr_cmd( + "get_ber", "status", "True", XCVRD_GET_BER_CMD_TABLE, None, XCVRD_GET_BER_RSP_TABLE, XCVRD_GET_BER_RES_TABLE, port, 10, None, "reset_cause") + + if res_dict[1] == "True": + result = get_result(port, res_dict, "fec" , result, XCVRD_GET_BER_RES_TABLE) + + + port = platform_sfputil_helper.get_interface_alias(port, db) + + reset_cause = result.get("reset_cause", None) + + if reset_cause == "0": + result["reset_cause"] = "cold reset" + elif reset_cause == "1": + result["reset_cause"] = "warm reset" + else: + result["reset_cause"] = "Unknown" + + if json_output: + click.echo("{}".format(json.dumps(result, indent=4))) + else: + headers = ['PORT', 'ATTR', 'RESETCAUSE'] + res = [[port]+[key] + [val] for key, val in result.items()] + click.echo(tabulate(res, headers=headers)) + else: + click.echo("Did not get a valid Port for cable resetcause information".format(port)) + sys.exit(CONFIG_FAIL) + +@muxcable.command() +@click.argument('port', metavar='', required=True, default=None) +@click.option('--json', 'json_output', required=False, is_flag=True, type=click.BOOL, help="display the output in json format") +@clicommon.pass_db +def operationtime(db, port, json_output): + """Show muxcable operation time hh:mm:ss forrmat""" + + port = platform_sfputil_helper.get_interface_name(port, db) + + if port is not None: + + res_dict = {} + result = {} + + + res_dict[0] = CONFIG_FAIL + res_dict[1] = "unknown" + + res_dict = update_and_get_response_for_xcvr_cmd( + "get_ber", "status", "True", XCVRD_GET_BER_CMD_TABLE, None, XCVRD_GET_BER_RSP_TABLE, XCVRD_GET_BER_RES_TABLE, port, 10, None, "operation_time") + + if res_dict[1] == "True": + result = get_result(port, res_dict, "fec" , result, XCVRD_GET_BER_RES_TABLE) + + + + port = platform_sfputil_helper.get_interface_alias(port, db) + + actual_time = result.get("operation_time", 0) + if actual_time is not None: + time = '{0:02.0f}:{1:02.0f}'.format(*divmod(int(actual_time) * 60, 60)) + result['operation_time'] = time + + if json_output: + click.echo("{}".format(json.dumps(result, indent=4))) + else: + headers = ['PORT', 'ATTR', 'OPERATION_TIME'] + res = [[port]+[key] + [val] for key, val in result.items()] + click.echo(tabulate(res, headers=headers)) + else: + click.echo("Did not get a valid Port for operation time".format(port)) + sys.exit(CONFIG_FAIL) diff --git a/tests/muxcable_test.py b/tests/muxcable_test.py index 7e4b4b25..0405b27d 100644 --- a/tests/muxcable_test.py +++ b/tests/muxcable_test.py @@ -613,6 +613,48 @@ Ethernet0 server_ipv4 10.2.1.1 added added """ + +show_muxcable_operationtime_expected_port_output="""\ +PORT ATTR OPERATION_TIME +--------- -------------- ---------------- +Ethernet0 operation_time 200:00 +""" + +show_muxcable_health_expected_port_output="""\ +PORT ATTR HEALTH +--------- ------------ -------- +Ethernet0 health_check Ok +""" + + +show_muxcable_queueinfo_expected_port_output="""\ +PORT ATTR VALUE +--------- ---------- ------- +Ethernet0 uart_stat1 2 +Ethernet0 uart_stat2 1 +""" + +show_muxcable_resetcause_expected_port_output="""\ +PORT ATTR RESETCAUSE +--------- ----------- ------------ +Ethernet0 reset_cause warm reset +""" + + +show_muxcable_health_expected_port_output_json="""\ +{ + "health_check": "Ok" +} +""" + + + +show_muxcable_resetcause_expected_port_output_json="""\ +{ + "reset_cause": "warm reset" +} +""" + class TestMuxcable(object): @classmethod def setup_class(cls): @@ -2554,6 +2596,88 @@ def test_show_muxcable_hwmode_muxdirection_port_active(self): assert result.exit_code == 0 assert result.output == show_muxcable_hwmode_muxdirection_active_expected_output_json + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "True"})) + @mock.patch('show.muxcable.get_result', mock.MagicMock(return_value={"health_check": "True"})) + def test_show_mux_health(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["health"], + ["Ethernet0"], obj=db) + assert result.output == show_muxcable_health_expected_port_output + + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "True"})) + @mock.patch('show.muxcable.get_result', mock.MagicMock(return_value={"health_check": "True"})) + def test_show_mux_health_json(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["health"], + ["Ethernet0", "--json"], obj=db) + assert result.output == show_muxcable_health_expected_port_output_json + + + + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "True"})) + @mock.patch('show.muxcable.get_result', mock.MagicMock(return_value={"operation_time": "200"})) + def test_show_mux_operation_time(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["operationtime"], + ["Ethernet0"], obj=db) + assert result.output == show_muxcable_operationtime_expected_port_output + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "True"})) + @mock.patch('show.muxcable.get_result', mock.MagicMock(return_value={"uart_stat1": "2", + "uart_stat2": "1"})) + def test_show_mux_queue_info(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["queueinfo"], + ["Ethernet0"], obj=db) + assert result.output == show_muxcable_queueinfo_expected_port_output + + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "True"})) + @mock.patch('show.muxcable.get_result', mock.MagicMock(return_value={"reset_cause": "1"})) + def test_show_mux_resetcause(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["resetcause"], + ["Ethernet0"], obj=db) + assert result.output == show_muxcable_resetcause_expected_port_output + + + + @mock.patch('show.muxcable.delete_all_keys_in_db_table', mock.MagicMock(return_value=0)) + @mock.patch('show.muxcable.update_and_get_response_for_xcvr_cmd', mock.MagicMock(return_value={0: 0, + 1: "True"})) + @mock.patch('show.muxcable.get_result', mock.MagicMock(return_value={"reset_cause": "1"})) + def test_show_mux_resetcause_json(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(show.cli.commands["muxcable"].commands["resetcause"], + ["Ethernet0", "--json"], obj=db) + assert result.output == show_muxcable_resetcause_expected_port_output_json + + @classmethod def teardown_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "0" From e98011f8d5bfa6ae20433e6ac54fc1597dae61de Mon Sep 17 00:00:00 2001 From: StormLiangMS <89824293+StormLiangMS@users.noreply.github.com> Date: Mon, 27 Feb 2023 11:14:54 +0800 Subject: [PATCH 077/312] Revert "Secure upgrade (#2337)" (#2675) This reverts commit 6fe8599216afb1c302e77c52235c4849be6042b2. --- scripts/verify_image_sign.sh | 75 --------------- scripts/verify_image_sign_common.sh | 34 ------- setup.py | 2 - sonic_installer/bootloader/grub.py | 11 --- sonic_installer/main.py | 12 +-- tests/installer_bootloader_grub_test.py | 8 -- tests/scripts/create_mock_image.sh | 40 -------- .../create_sign_and_verify_test_files.sh | 91 ------------------- tests/scripts/verify_image_sign_test.sh | 29 ------ tests/sign_and_verify_test.py | 70 -------------- tests/test_sonic_installer.py | 9 +- tests/verify_image_sign_test.sh | 29 ------ 12 files changed, 2 insertions(+), 408 deletions(-) delete mode 100644 scripts/verify_image_sign.sh delete mode 100755 scripts/verify_image_sign_common.sh delete mode 100755 tests/scripts/create_mock_image.sh delete mode 100755 tests/scripts/create_sign_and_verify_test_files.sh delete mode 100755 tests/scripts/verify_image_sign_test.sh delete mode 100644 tests/sign_and_verify_test.py delete mode 100755 tests/verify_image_sign_test.sh diff --git a/scripts/verify_image_sign.sh b/scripts/verify_image_sign.sh deleted file mode 100644 index d66148d5..00000000 --- a/scripts/verify_image_sign.sh +++ /dev/null @@ -1,75 +0,0 @@ -#!/bin/sh -image_file="${1}" -cms_sig_file="sig.cms" -lines_for_lookup=50 -SECURE_UPGRADE_ENABLED=0 -DIR="$(dirname "$0")" -if [ -d "/sys/firmware/efi/efivars" ]; 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 - SECURE_UPGRADE_ENABLED=$(bootctl status 2>/dev/null | grep -c "Secure Boot: enabled") -else - echo "efi not supported - exiting without verification" - exit 0 -fi - -. /usr/local/bin/verify_image_sign_common.sh - -if [ ${SECURE_UPGRADE_ENABLED} -eq 0 ]; then - echo "secure boot not enabled - exiting without image verification" - exit 0 -fi - -clean_up () -{ - if [ -d ${EFI_CERTS_DIR} ]; then rm -rf ${EFI_CERTS_DIR}; fi - if [ -d "${TMP_DIR}" ]; then rm -rf ${TMP_DIR}; fi - exit $1 -} - -TMP_DIR=$(mktemp -d) -DATA_FILE="${TMP_DIR}/data.bin" -CMS_SIG_FILE="${TMP_DIR}/${cms_sig_file}" -TAR_SIZE=$(head -n $lines_for_lookup $image_file | grep "payload_image_size=" | cut -d"=" -f2- ) -SHARCH_SIZE=$(sed '/^exit_marker$/q' $image_file | wc -c) -SIG_PAYLOAD_SIZE=$(($TAR_SIZE + $SHARCH_SIZE )) -# Extract cms signature from signed file -# Add extra byte for payload -sed -e '1,/^exit_marker$/d' $image_file | tail -c +$(( $TAR_SIZE + 1 )) > $CMS_SIG_FILE -# Extract image from signed file -head -c $SIG_PAYLOAD_SIZE $image_file > $DATA_FILE -# verify signature with certificate fetched with efi tools -EFI_CERTS_DIR=/tmp/efi_certs -[ -d $EFI_CERTS_DIR ] && rm -rf $EFI_CERTS_DIR -mkdir $EFI_CERTS_DIR -efi-readvar -v db -o $EFI_CERTS_DIR/db_efi >/dev/null || -{ - echo "Error: unable to read certs from efi db: $?" - clean_up 1 -} -# Convert one file to der certificates -sig-list-to-certs $EFI_CERTS_DIR/db_efi $EFI_CERTS_DIR/db >/dev/null|| -{ - echo "Error: convert sig list to certs: $?" - clean_up 1 -} -for file in $(ls $EFI_CERTS_DIR | grep "db-"); do - LOG=$(openssl x509 -in $EFI_CERTS_DIR/$file -inform der -out $EFI_CERTS_DIR/cert.pem 2>&1) - if [ $? -ne 0 ]; then - logger "cms_validation: $LOG" - fi - # Verify detached signature - LOG=$(verify_image_sign_common $image_file $DATA_FILE $CMS_SIG_FILE) - VALIDATION_RES=$? - if [ $VALIDATION_RES -eq 0 ]; then - RESULT="CMS Verified OK using efi keys" - echo "verification ok:$RESULT" - # No need to continue. - # Exit without error if any success signature verification. - clean_up 0 - fi -done -echo "Failure: CMS signature Verification Failed: $LOG" - -clean_up 1 \ No newline at end of file diff --git a/scripts/verify_image_sign_common.sh b/scripts/verify_image_sign_common.sh deleted file mode 100755 index ec6511bc..00000000 --- a/scripts/verify_image_sign_common.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/bash -verify_image_sign_common() { - image_file="${1}" - cms_sig_file="sig.cms" - TMP_DIR=$(mktemp -d) - DATA_FILE="${2}" - CMS_SIG_FILE="${3}" - - openssl version | awk '$2 ~ /(^0\.)|(^1\.(0\.|1\.0))/ { exit 1 }' - if [ $? -eq 0 ]; then - # for version 1.1.1 and later - no_check_time="-no_check_time" - else - # for version older than 1.1.1 use noattr - no_check_time="-noattr" - fi - - # making sure image verification is supported - EFI_CERTS_DIR=/tmp/efi_certs - RESULT="CMS Verification Failure" - LOG=$(openssl cms -verify $no_check_time -noout -CAfile $EFI_CERTS_DIR/cert.pem -binary -in ${CMS_SIG_FILE} -content ${DATA_FILE} -inform pem 2>&1 > /dev/null ) - VALIDATION_RES=$? - if [ $VALIDATION_RES -eq 0 ]; then - RESULT="CMS Verified OK" - if [ -d "${TMP_DIR}" ]; then rm -rf ${TMP_DIR}; fi - echo "verification ok:$RESULT" - # No need to continue. - # Exit without error if any success signature verification. - return 0 - fi - - if [ -d "${TMP_DIR}" ]; then rm -rf ${TMP_DIR}; fi - return 1 -} diff --git a/setup.py b/setup.py index 231b80c8..70d7473b 100644 --- a/setup.py +++ b/setup.py @@ -154,8 +154,6 @@ 'scripts/memory_threshold_check_handler.py', 'scripts/techsupport_cleanup.py', 'scripts/storm_control.py', - 'scripts/verify_image_sign.sh', - 'scripts/verify_image_sign_common.sh', 'scripts/check_db_integrity.py', 'scripts/sysreadyshow' ], diff --git a/sonic_installer/bootloader/grub.py b/sonic_installer/bootloader/grub.py index dcafc3f8..7ab5c6c0 100644 --- a/sonic_installer/bootloader/grub.py +++ b/sonic_installer/bootloader/grub.py @@ -153,17 +153,6 @@ def verify_image_platform(self, image_path): # Check if platform is inside image's target platforms return self.platform_in_platforms_asic(platform, image_path) - def verify_image_sign(self, image_path): - click.echo('Verifying image signature') - verification_script_name = 'verify_image_sign.sh' - script_path = os.path.join('/usr', 'local', 'bin', verification_script_name) - if not os.path.exists(script_path): - click.echo("Unable to find verification script in path " + script_path) - return False - verification_result = subprocess.run([script_path, image_path], capture_output=True) - click.echo(str(verification_result.stdout) + " " + str(verification_result.stderr)) - return verification_result.returncode == 0 - @classmethod def detect(cls): return os.path.isfile(os.path.join(HOST_PATH, 'grub/grub.cfg')) diff --git a/sonic_installer/main.py b/sonic_installer/main.py index d7825931..ce1c1586 100644 --- a/sonic_installer/main.py +++ b/sonic_installer/main.py @@ -511,8 +511,7 @@ def sonic_installer(): @click.option('-y', '--yes', is_flag=True, callback=abort_if_false, expose_value=False, prompt='New image will be installed, continue?') @click.option('-f', '--force', '--skip-secure-check', is_flag=True, - help="Force installation of an image of a non-secure type than secure running " + - " image, this flag does not affect secure upgrade image verification") + help="Force installation of an image of a non-secure type than secure running image") @click.option('--skip-platform-check', is_flag=True, help="Force installation of an image of a type which is not of the same platform") @click.option('--skip_migration', is_flag=True, @@ -577,14 +576,6 @@ def install(url, force, skip_platform_check=False, skip_migration=False, skip_pa "Aborting...", LOG_ERR) raise click.Abort() - # Calling verification script by default - signature will be checked if enabled in bios - echo_and_log("Verifing image {} signature...".format(binary_image_version)) - if not bootloader.verify_image_sign(image_path): - echo_and_log('Error: Failed verify image signature', LOG_ERR) - raise click.Abort() - else: - echo_and_log('Verification successful') - echo_and_log("Installing image {} and setting it as default...".format(binary_image_version)) with SWAPAllocator(not skip_setup_swap, swap_mem_size, total_mem_threshold, available_mem_threshold): bootloader.install_image(image_path) @@ -967,6 +958,5 @@ def verify_next_image(): sys.exit(1) click.echo('Image successfully verified') - if __name__ == '__main__': sonic_installer() diff --git a/tests/installer_bootloader_grub_test.py b/tests/installer_bootloader_grub_test.py index 10c9dc5b..ff35e13b 100644 --- a/tests/installer_bootloader_grub_test.py +++ b/tests/installer_bootloader_grub_test.py @@ -53,11 +53,3 @@ def test_set_fips_grub(): # Cleanup the _tmp_host folder shutil.rmtree(tmp_host_path) - -def test_verify_image(): - - bootloader = grub.GrubBootloader() - image = f'{grub.IMAGE_PREFIX}expeliarmus-{grub.IMAGE_PREFIX}abcde' - - # command should fail - assert not bootloader.verify_image_sign(image) diff --git a/tests/scripts/create_mock_image.sh b/tests/scripts/create_mock_image.sh deleted file mode 100755 index f23032af..00000000 --- a/tests/scripts/create_mock_image.sh +++ /dev/null @@ -1,40 +0,0 @@ -repo_dir=$1 -input_image=$2 -output_file=$3 -cert_file=$4 -key_file=$5 -tmp_dir= -clean_up() -{ - sudo rm -rf $tmp_dir - sudo rm -rf $output_file - exit $1 -} - -DIR="$(dirname "$0")" - -tmp_dir=$(mktemp -d) -sha1=$(cat $input_image | sha1sum | awk '{print $1}') -echo -n "." -cp $repo_dir/installer/sharch_body.sh $output_file || { - echo "Error: Problems copying sharch_body.sh" - clean_up 1 -} -# Replace variables in the sharch template -sed -i -e "s/%%IMAGE_SHA1%%/$sha1/" $output_file -echo -n "." -tar_size="$(wc -c < "${input_image}")" -cat $input_image >> $output_file -sed -i -e "s|%%PAYLOAD_IMAGE_SIZE%%|${tar_size}|" ${output_file} -CMS_SIG="${tmp_dir}/signature.sig" - -echo "$0 CMS signing ${input_image} with ${key_file}. Output file ${output_file}" -. $repo_dir/scripts/sign_image_dev.sh -sign_image_dev ${cert_file} ${key_file} $output_file ${CMS_SIG} || clean_up 1 - -cat ${CMS_SIG} >> ${output_file} -echo "Signature done." -# append signature to binary -sudo rm -rf ${CMS_SIG} -sudo rm -rf $tmp_dir -exit 0 diff --git a/tests/scripts/create_sign_and_verify_test_files.sh b/tests/scripts/create_sign_and_verify_test_files.sh deleted file mode 100755 index 0040c04a..00000000 --- a/tests/scripts/create_sign_and_verify_test_files.sh +++ /dev/null @@ -1,91 +0,0 @@ -repo_dir=$1 -out_dir=$2 -mock_image="mock_img.bin" -output_file=$out_dir/output_file.bin -cert_file=$3 -other_cert_file=$4 -tmp_dir= -clean_up() -{ - sudo rm -rf $tmp_dir - sudo rm -rf $mock_image - exit $1 -} -DIR="$(dirname "$0")" -[ -d $out_dir ] || rm -rf $out_dir -mkdir $out_dir -tmp_dir=$(mktemp -d) -#generate self signed keys and certificate -key_file=$tmp_dir/private-key.pem -pub_key_file=$tmp_dir/public-key.pem -openssl ecparam -name secp256r1 -genkey -noout -out $key_file -openssl ec -in $key_file -pubout -out $pub_key_file -openssl req -new -x509 -key $key_file -out $cert_file -days 360 -subj "/C=US/ST=Test/L=Test/O=Test/CN=Test" -alt_key_file=$tmp_dir/alt-private-key.pem -alt_pub_key_file=$tmp_dir/alt-public-key.pem -openssl ecparam -name secp256r1 -genkey -noout -out $alt_key_file -openssl ec -in $alt_key_file -pubout -out $alt_pub_key_file -openssl req -new -x509 -key $alt_key_file -out $other_cert_file -days 360 -subj "/C=US/ST=Test/L=Test/O=Test/CN=Test" - -echo "this is a mock image\nThis is another line !2#4%6\n" > $mock_image -echo "Created a mock image with following text:" -cat $mock_image -# create signed mock image - -sh $DIR/create_mock_image.sh $repo_dir $mock_image $output_file $cert_file $key_file || { - echo "Error: unable to create mock image" - clean_up 1 -} - -[ -f "$output_file" ] || { - echo "signed mock image not created - exiting without testing" - clean_up 1 -} - -test_image_1=$out_dir/test_image_1.bin -cp -v $output_file $test_image_1 || { - echo "Error: Problems copying image" - clean_up 1 -} - -# test_image_1 = modified image size to something else - should fail on signature verification -image_size=$(sed -n 's/^payload_image_size=\(.*\)/\1/p' < $test_image_1) -sed -i "/payload_image_size=/c\payload_image_size=$(($image_size - 5))" $test_image_1 - -test_image_2=$out_dir/test_image_2.bin -cp -v $output_file $test_image_2 || { - echo "Error: Problems copying image" - clean_up 1 -} - -# test_image_2 = modified image sha1 to other sha1 value - should fail on signature verification -im_sha=$(sed -n 's/^payload_sha1=\(.*\)/\1/p' < $test_image_2) -sed -i "/payload_sha1=/c\payload_sha1=2f1bbd5a0d411253103e688e4e66c00c94bedd40" $test_image_2 - -tmp_image=$tmp_dir/"tmp_image.bin" -echo "this is a different image now" >> $mock_image -sh $DIR/create_mock_image.sh $repo_dir $mock_image $tmp_image $cert_file $key_file || { - echo "Error: unable to create mock image" - clean_up 1 -} -# test_image_3 = original mock image with wrong signature -# Extract cms signature from signed file -test_image_3=$out_dir/"test_image_3.bin" -tmp_sig="${tmp_dir}/tmp_sig.sig" -TMP_TAR_SIZE=$(head -n 50 $tmp_image | grep "payload_image_size=" | cut -d"=" -f2- ) -sed -e '1,/^exit_marker$/d' $tmp_image | tail -c +$(( $TMP_TAR_SIZE + 1 )) > $tmp_sig - -TAR_SIZE=$(head -n 50 $output_file | grep "payload_image_size=" | cut -d"=" -f2- ) -SHARCH_SIZE=$(sed '/^exit_marker$/q' $output_file | wc -c) -SIG_PAYLOAD_SIZE=$(($TAR_SIZE + $SHARCH_SIZE )) -head -c $SIG_PAYLOAD_SIZE $output_file > $test_image_3 -sudo rm -rf $tmp_image - -cat ${tmp_sig} >> ${test_image_3} - -# test_image_4 = modified image with original mock image signature -test_image_4=$out_dir/"test_image_4.bin" -head -c $SIG_PAYLOAD_SIZE $output_file > $test_image_4 -echo "this is additional line" >> $test_image_4 -cat ${tmp_sig} >> ${test_image_4} -clean_up 0 \ No newline at end of file diff --git a/tests/scripts/verify_image_sign_test.sh b/tests/scripts/verify_image_sign_test.sh deleted file mode 100755 index f4abd258..00000000 --- a/tests/scripts/verify_image_sign_test.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash -image_file="${1}" -cert_path="${2}" -cms_sig_file="sig.cms" -TMP_DIR=$(mktemp -d) -DATA_FILE="${TMP_DIR}/data.bin" -CMS_SIG_FILE="${TMP_DIR}/${cms_sig_file}" -lines_for_lookup=50 - -TAR_SIZE=$(head -n $lines_for_lookup $image_file | grep "payload_image_size=" | cut -d"=" -f2- ) -SHARCH_SIZE=$(sed '/^exit_marker$/q' $image_file | wc -c) -SIG_PAYLOAD_SIZE=$(($TAR_SIZE + $SHARCH_SIZE )) -# Extract cms signature from signed file - exit marker marks last sharch prefix + number of image lines + 1 for next linel -# Add extra byte for payload - extracting image signature from line after data file -sed -e '1,/^exit_marker$/d' $image_file | tail -c +$(( $TAR_SIZE + 1 )) > $CMS_SIG_FILE -# Extract image from signed file -head -c $SIG_PAYLOAD_SIZE $image_file > $DATA_FILE -EFI_CERTS_DIR=/tmp/efi_certs -[ -d $EFI_CERTS_DIR ] && rm -rf $EFI_CERTS_DIR -mkdir $EFI_CERTS_DIR -cp $cert_path $EFI_CERTS_DIR/cert.pem - -DIR="$(dirname "$0")" -. $DIR/verify_image_sign_common.sh -verify_image_sign_common $image_file $DATA_FILE $CMS_SIG_FILE -VERIFICATION_RES=$? -if [ -d "${TMP_DIR}" ]; then rm -rf ${TMP_DIR}; fi -[ -d $EFI_CERTS_DIR ] && rm -rf $EFI_CERTS_DIR -exit $VERIFICATION_RES \ No newline at end of file diff --git a/tests/sign_and_verify_test.py b/tests/sign_and_verify_test.py deleted file mode 100644 index 77d58a4a..00000000 --- a/tests/sign_and_verify_test.py +++ /dev/null @@ -1,70 +0,0 @@ - -import subprocess -import os -import sys -import shutil - - -class TestSignVerify(object): - def _run_verification_script_and_check(self, image, cert_file_path, success_str, expected_value=0): - res = subprocess.run(['sh', self._verification_script, image, cert_file_path]) - assert res.returncode == expected_value - print(success_str) - - def test_basic_signature_verification(self): - self._run_verification_script_and_check(os.path.join(self._out_dir_path, 'output_file.bin'), - self._cert_file_path, "test case 1 - basic verify signature - SUCCESS") - - # change image size to something else - should fail on signature verification - def test_modified_image_size(self): - self._run_verification_script_and_check(os.path.join(self._out_dir_path, 'test_image_1.bin'), - self._cert_file_path, "test case 2 - modified image size - SUCCESS", 1) - - def test_modified_image_sha1(self): - self._run_verification_script_and_check(os.path.join(self._out_dir_path, 'test_image_2.bin'), - self._cert_file_path, "test case 3 - modified image sha1 - SUCCESS", 1) - - def test_modified_image_data(self): - self._run_verification_script_and_check(os.path.join(self._out_dir_path, 'test_image_3.bin'), - self._cert_file_path, "test case 4 - modified image data - SUCCESS", 1) - - def test_modified_image_signature(self): - self._run_verification_script_and_check(os.path.join(self._out_dir_path, 'test_image_4.bin'), - self._cert_file_path, "test case 5 - modified image data - SUCCESS", 1) - - def test_verify_image_with_wrong_certificate(self): - self._run_verification_script_and_check(os.path.join(self._out_dir_path, 'output_file.bin'), - self._alt_cert_path, "test case 6 - verify with wrong signature - SUCCESS", 1) - - def __init__(self): - self._test_path = os.path.dirname(os.path.abspath(__file__)) - self._modules_path = os.path.dirname(self._test_path) - self._repo_path = os.path.join(self._modules_path, '../..') - self._test_scripts_path = os.path.join(self._test_path, "scripts") - sys.path.insert(0, self._test_path) - sys.path.insert(0, self._modules_path) - sys.path.insert(0, self._test_scripts_path) - script_path = os.path.join(self._test_scripts_path, 'create_sign_and_verify_test_files.sh') - self._verification_script = os.path.join(self._test_scripts_path, 'verify_image_sign_test.sh') - self._out_dir_path = '/tmp/sign_verify_test' - self._cert_file_path = os.path.join(self._out_dir_path, 'self_certificate.pem') - self._alt_cert_path = os.path.join(self._out_dir_path, 'alt_self_certificate.pem') - create_files_result = subprocess.run(['sh', script_path, self._repo_path, self._out_dir_path, - self._cert_file_path, - self._alt_cert_path]) - print(create_files_result) - assert create_files_result.returncode == 0 - - def __del__(self): - shutil.rmtree(self._out_dir_path) - - -if __name__ == '__main__': - t = TestSignVerify() - t.test_basic_signature_verification() - subprocess.run(['ls', '/tmp/sign_verify_test']) - t.test_modified_image_data() - t.test_modified_image_sha1() - t.test_modified_image_signature() - t.test_modified_image_size() - t.test_verify_image_with_wrong_certificate() diff --git a/tests/test_sonic_installer.py b/tests/test_sonic_installer.py index 0f8fcdb8..c445dfb6 100644 --- a/tests/test_sonic_installer.py +++ b/tests/test_sonic_installer.py @@ -3,7 +3,6 @@ from sonic_installer.main import sonic_installer from click.testing import CliRunner from unittest.mock import patch, Mock, call -from sonic_installer.bootloader import GrubBootloader @patch("sonic_installer.main.SWAPAllocator") @patch("sonic_installer.main.get_bootloader") @@ -32,7 +31,7 @@ def test_install(run_command, run_command_or_raise, get_bootloader, swap, fs): mock_bootloader.get_binary_image_version = Mock(return_value=new_image_version) mock_bootloader.get_installed_images = Mock(return_value=[current_image_version]) mock_bootloader.get_image_path = Mock(return_value=new_image_folder) - mock_bootloader.verify_image_sign = Mock(return_value=True) + @contextmanager def rootfs_path_mock(path): yield mounted_image_folder @@ -46,13 +45,7 @@ def rootfs_path_mock(path): print(result.output) assert result.exit_code == 0 - mock_bootloader_verify_image_sign_fail = mock_bootloader - mock_bootloader_verify_image_sign_fail.verify_image_sign = Mock(return_value=False) - get_bootloader.return_value=mock_bootloader_verify_image_sign_fail - result = runner.invoke(sonic_installer.commands["install"], [sonic_image_filename, "-y"]) - print(result.output) - assert result.exit_code != 0 # Assert bootloader install API was called mock_bootloader.install_image.assert_called_with(f"./{sonic_image_filename}") # Assert all below commands were called, so we ensure that diff --git a/tests/verify_image_sign_test.sh b/tests/verify_image_sign_test.sh deleted file mode 100755 index f4abd258..00000000 --- a/tests/verify_image_sign_test.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash -image_file="${1}" -cert_path="${2}" -cms_sig_file="sig.cms" -TMP_DIR=$(mktemp -d) -DATA_FILE="${TMP_DIR}/data.bin" -CMS_SIG_FILE="${TMP_DIR}/${cms_sig_file}" -lines_for_lookup=50 - -TAR_SIZE=$(head -n $lines_for_lookup $image_file | grep "payload_image_size=" | cut -d"=" -f2- ) -SHARCH_SIZE=$(sed '/^exit_marker$/q' $image_file | wc -c) -SIG_PAYLOAD_SIZE=$(($TAR_SIZE + $SHARCH_SIZE )) -# Extract cms signature from signed file - exit marker marks last sharch prefix + number of image lines + 1 for next linel -# Add extra byte for payload - extracting image signature from line after data file -sed -e '1,/^exit_marker$/d' $image_file | tail -c +$(( $TAR_SIZE + 1 )) > $CMS_SIG_FILE -# Extract image from signed file -head -c $SIG_PAYLOAD_SIZE $image_file > $DATA_FILE -EFI_CERTS_DIR=/tmp/efi_certs -[ -d $EFI_CERTS_DIR ] && rm -rf $EFI_CERTS_DIR -mkdir $EFI_CERTS_DIR -cp $cert_path $EFI_CERTS_DIR/cert.pem - -DIR="$(dirname "$0")" -. $DIR/verify_image_sign_common.sh -verify_image_sign_common $image_file $DATA_FILE $CMS_SIG_FILE -VERIFICATION_RES=$? -if [ -d "${TMP_DIR}" ]; then rm -rf ${TMP_DIR}; fi -[ -d $EFI_CERTS_DIR ] && rm -rf $EFI_CERTS_DIR -exit $VERIFICATION_RES \ No newline at end of file From 6f84aae74c4d1eaeac4a5e7efd260f5fcd284a77 Mon Sep 17 00:00:00 2001 From: Junchao-Mellanox <57339448+Junchao-Mellanox@users.noreply.github.com> Date: Mon, 27 Feb 2023 17:49:34 +0800 Subject: [PATCH 078/312] Add begin logs to config reload/config minigraph/warm-reboot/fast-reboot (#2694) - What I did Add more logs for config reload/config minigraph/warm-reboot/fast/reboot to identify in the log (notice level) what was the command executed which could cause a service affect. - How I did it Add more logs for config reload/config minigraph/warm-reboot/fast/reboot. - How to verify it Manual test --- config/main.py | 14 ++++++++------ scripts/fast-reboot | 1 + 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/config/main.py b/config/main.py index 6f155ba6..f2576ac7 100644 --- a/config/main.py +++ b/config/main.py @@ -1549,7 +1549,8 @@ def reload(db, filename, yes, load_sysinfo, no_service_restart, force, file_form if not yes: click.confirm(message, abort=True) - log.log_info("'reload' executing...") + argv_str = ' '.join(['config', *sys.argv[1:]]) + log.log_notice(f"'reload' executing with command: {argv_str}") num_asic = multi_asic.get_num_asics() cfg_files = [] @@ -1569,7 +1570,7 @@ def reload(db, filename, yes, load_sysinfo, no_service_restart, force, file_form #Stop services before config push if not no_service_restart: - log.log_info("'reload' stopping services...") + log.log_notice("'reload' stopping services...") _stop_services() # In Single ASIC platforms we have single DB service. In multi-ASIC platforms we have a global DB @@ -1678,7 +1679,7 @@ def reload(db, filename, yes, load_sysinfo, no_service_restart, force, file_form # status from all services before we attempt to restart them if not no_service_restart: _reset_failed_services() - log.log_info("'reload' restarting services...") + log.log_notice("'reload' restarting services...") _restart_services() @config.command("load_mgmt_config") @@ -1725,11 +1726,12 @@ def load_mgmt_config(filename): @clicommon.pass_db def load_minigraph(db, no_service_restart, traffic_shift_away, override_config, golden_config_path): """Reconfigure based on minigraph.""" - log.log_info("'load_minigraph' executing...") + argv_str = ' '.join(['config', *sys.argv[1:]]) + log.log_notice(f"'load_minigraph' executing with command: {argv_str}") #Stop services before config push if not no_service_restart: - log.log_info("'load_minigraph' stopping services...") + log.log_notice("'load_minigraph' stopping services...") _stop_services() # For Single Asic platform the namespace list has the empty string @@ -1815,7 +1817,7 @@ def load_minigraph(db, no_service_restart, traffic_shift_away, override_config, if not no_service_restart: _reset_failed_services() #FIXME: After config DB daemon is implemented, we'll no longer need to restart every service. - log.log_info("'load_minigraph' restarting services...") + log.log_notice("'load_minigraph' restarting services...") _restart_services() click.echo("Please note setting loaded from minigraph will be lost after system reboot. To preserve setting, run `config save`.") diff --git a/scripts/fast-reboot b/scripts/fast-reboot index 604fddf9..5e7cc34b 100755 --- a/scripts/fast-reboot +++ b/scripts/fast-reboot @@ -522,6 +522,7 @@ then exit "${EXIT_FAILURE}" fi +debug "Starting $REBOOT_TYPE" # re-run the script in background mode with detaching from the terminal session if [[ x"${DETACH}" == x"yes" && x"${ALREADY_DETACHED}" == x"" ]]; then From b81734289b7ca361b365cbf1c845d31b0a81657e Mon Sep 17 00:00:00 2001 From: isabelmsft <67024108+isabelmsft@users.noreply.github.com> Date: Mon, 27 Feb 2023 23:49:01 -0800 Subject: [PATCH 079/312] [GCU] Add Sample Unit Test for RDMA Headroom Pool Size Tuning (#2692) * add rdma gcu unit test * fix comment * clean unused code * clean format * extend to mock patchapplier, in place of changeapplier * replace tabs with spaces --- ...eature_patch_application_test_failure.json | 35 ++++++ ...eature_patch_application_test_success.json | 62 ++++++++++ .../gcu_feature_patch_application_test.py | 117 ++++++++++++++++++ 3 files changed, 214 insertions(+) create mode 100644 tests/generic_config_updater/files/feature_patch_application_test_failure.json create mode 100644 tests/generic_config_updater/files/feature_patch_application_test_success.json create mode 100644 tests/generic_config_updater/gcu_feature_patch_application_test.py diff --git a/tests/generic_config_updater/files/feature_patch_application_test_failure.json b/tests/generic_config_updater/files/feature_patch_application_test_failure.json new file mode 100644 index 00000000..80c523dd --- /dev/null +++ b/tests/generic_config_updater/files/feature_patch_application_test_failure.json @@ -0,0 +1,35 @@ +{ + "RDMA_SHARED_POOL_SIZE_CHANGE__FAILURE": { + "desc": "For RDMA shared pool size tuning- adjust both shared pool and headroom pool", + "current_config": { + "BUFFER_POOL": { + "ingress_lossless_pool": { + "xoff": "4194112", + "type": "ingress", + "mode": "dynamic", + "size": "10875072" + }, + "egress_lossless_pool": { + "type": "egress", + "mode": "static", + "size": "15982720" + }, + "egress_lossy_pool": { + "type": "egress", + "mode": "dynamic", + "size": "9243812" + } + } + }, + "patch": [ + { + "op": "replace", + "path": "/BUFFER_POOL/ingress_lossless_pool/xoff", + "value": "invalid_xoff" + } + ], + "expected_error_substrings": [ + "Given patch will produce invalid config" + ] + } +} diff --git a/tests/generic_config_updater/files/feature_patch_application_test_success.json b/tests/generic_config_updater/files/feature_patch_application_test_success.json new file mode 100644 index 00000000..7ca6cab4 --- /dev/null +++ b/tests/generic_config_updater/files/feature_patch_application_test_success.json @@ -0,0 +1,62 @@ +{ + "RDMA_SHARED_POOL_SIZE_CHANGE__SUCCESS": { + "desc": "For RDMA shared pool size tuning- adjust both shared pool and headroom pool", + "current_config": { + "BUFFER_POOL": { + "ingress_lossless_pool": { + "xoff": "4194112", + "type": "ingress", + "mode": "dynamic", + "size": "10875072" + }, + "egress_lossless_pool": { + "type": "egress", + "mode": "static", + "size": "15982720" + }, + "egress_lossy_pool": { + "type": "egress", + "mode": "dynamic", + "size": "9243812" + } + } + }, + "patch": [ + { + "op": "replace", + "path": "/BUFFER_POOL/ingress_lossless_pool/xoff", + "value": "2155712" + }, + { + "op": "replace", + "path": "/BUFFER_POOL/ingress_lossless_pool/size", + "value": "12913472" + }, + { + "op": "replace", + "path": "/BUFFER_POOL/egress_lossy_pool/size", + "value": "5200000" + } + ], + "expected_config": { + "BUFFER_POOL": { + "ingress_lossless_pool": { + "xoff": "2155712", + "type": "ingress", + "mode": "dynamic", + "size": "12913472" + }, + "egress_lossless_pool": { + "type": "egress", + "mode": "static", + "size": "15982720" + }, + "egress_lossy_pool": { + "type": "egress", + "mode": "dynamic", + "size": "5200000" + } + } + } + } +} diff --git a/tests/generic_config_updater/gcu_feature_patch_application_test.py b/tests/generic_config_updater/gcu_feature_patch_application_test.py new file mode 100644 index 00000000..9a52a047 --- /dev/null +++ b/tests/generic_config_updater/gcu_feature_patch_application_test.py @@ -0,0 +1,117 @@ +import jsonpatch +import unittest +import copy +from unittest.mock import MagicMock, Mock +from mock import patch + +import generic_config_updater.change_applier +import generic_config_updater.patch_sorter as ps +import generic_config_updater.generic_updater as gu +from .gutest_helpers import Files +from generic_config_updater.gu_common import ConfigWrapper, PatchWrapper + +running_config = {} + +def set_entry(config_db, tbl, key, data): + global running_config + if data != None: + if tbl not in running_config: + running_config[tbl] = {} + running_config[tbl][key] = data + else: + assert tbl in running_config + assert key in running_config[tbl] + running_config[tbl].pop(key) + if not running_config[tbl]: + running_config.pop(tbl) + +def get_running_config(): + return running_config + +class TestFeaturePatchApplication(unittest.TestCase): + def setUp(self): + self.config_wrapper = ConfigWrapper() + + def test_feature_patch_application_success(self): + # Format of the JSON file containing the test-cases: + # + # { + # "":{ + # "desc":"", + # "current_config":, + # "patch":, + # "expected_config": + # }, + # . + # . + # . + # } + data = Files.FEATURE_PATCH_APPLICATION_TEST_SUCCESS + + for test_case_name in data: + with self.subTest(name=test_case_name): + self.run_single_success_case_applier(data[test_case_name]) + + def test_feature_patch_application_failure(self): + # Fromat of the JSON file containing the test-cases: + # + # { + # "":{ + # "desc":"", + # "current_config":, + # "patch":, + # "expected_error_substrings": + # }, + # . + # . + # . + # } + data = Files.FEATURE_PATCH_APPLICATION_TEST_FAILURE + + for test_case_name in data: + with self.subTest(name=test_case_name): + self.run_single_failure_case_applier(data[test_case_name]) + + def create_patch_applier(self, config): + global running_config + running_config = copy.deepcopy(config) + config_wrapper = self.config_wrapper + config_wrapper.get_config_db_as_json = MagicMock(side_effect=get_running_config) + change_applier = generic_config_updater.change_applier.ChangeApplier() + change_applier._get_running_config = MagicMock(side_effect=get_running_config) + patch_wrapper = PatchWrapper(config_wrapper) + return gu.PatchApplier(config_wrapper=config_wrapper, patch_wrapper=patch_wrapper, changeapplier=change_applier) + + @patch("generic_config_updater.change_applier.get_config_db") + @patch("generic_config_updater.change_applier.set_config") + def run_single_success_case_applier(self, data, mock_set, mock_db): + current_config = data["current_config"] + mock_set.side_effect = set_entry + expected_config = data["expected_config"] + patch = jsonpatch.JsonPatch(data["patch"]) + patch_applier = self.create_patch_applier(current_config) + patch_applier.apply(patch) + result_config = patch_applier.config_wrapper.get_config_db_as_json() + + self.assertEqual(expected_config, result_config) + + @patch("generic_config_updater.change_applier.get_config_db") + def run_single_failure_case_applier(self, data, mock_db): + current_config = data["current_config"] + patch = jsonpatch.JsonPatch(data["patch"]) + expected_error_substrings = data["expected_error_substrings"] + + try: + patch_applier = self.create_patch_applier(current_config) + patch_applier.apply(patch) + self.fail("An exception was supposed to be thrown") + except Exception as ex: + notfound_substrings = [] + error = str(ex) + + for substring in expected_error_substrings: + if substring not in error: + notfound_substrings.append(substring) + + if notfound_substrings: + self.fail(f"Did not find the expected substrings {notfound_substrings} in the error: '{error}'") From 2680e6f374ecc6bfdcfa1c579c79c7fba41a51e5 Mon Sep 17 00:00:00 2001 From: Yaqiang Zhu Date: Wed, 1 Mar 2023 10:05:04 +0800 Subject: [PATCH 080/312] [dhcp_relay] Fix dhcp_relay restart error while add/del vlan (#2688) Why I did In device that doesn't have dhcp_relay service, restart dhcp_relay after add/del vlan would encounter failed How I did it Add support to check whether device is support dhcp_relay service. How to verify it 1. Unit test 2. Build and install in device Signed-off-by: Yaqiang Zhu --- config/vlan.py | 39 +++++++++++++----- tests/conftest.py | 10 +++-- tests/vlan_test.py | 98 ++++++++++++++++++++++++++++++++++++++++++++-- 3 files changed, 132 insertions(+), 15 deletions(-) diff --git a/config/vlan.py b/config/vlan.py index f1c6f06d..33c61457 100644 --- a/config/vlan.py +++ b/config/vlan.py @@ -8,6 +8,8 @@ from .validated_config_db_connector import ValidatedConfigDBConnector ADHOC_VALIDATION = True +DHCP_RELAY_TABLE = "DHCP_RELAY" +DHCPV6_SERVERS = "dhcpv6_servers" # # 'vlan' group ('config vlan ...') @@ -22,6 +24,11 @@ def set_dhcp_relay_table(table, config_db, vlan_name, value): config_db.set_entry(table, vlan_name, value) +def is_dhcp_relay_running(): + out, _ = clicommon.run_command("systemctl show dhcp_relay.service --property ActiveState --value", return_cmd=True) + return out.strip() == "active" + + @vlan.command('add') @click.argument('vid', metavar='', required=True, type=int) @clicommon.pass_db @@ -46,22 +53,34 @@ def add_vlan(db, vid): # set dhcpv4_relay table set_dhcp_relay_table('VLAN', config_db, vlan, {'vlanid': str(vid)}) - # 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 - dhcp_relay_util.handle_restart_dhcp_relay_service() + +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('del') @click.argument('vid', metavar='', required=True, type=int) +@click.option('--no_restart_dhcp_relay', is_flag=True, type=click.BOOL, required=False, default=False, + help="If no_restart_dhcp_relay is True, do not restart dhcp_relay while del vlan and \ + require dhcpv6 relay of this is empty") @clicommon.pass_db -def del_vlan(db, vid): +def del_vlan(db, vid, no_restart_dhcp_relay): """Delete VLAN""" log.log_info("'vlan del {}' executing...".format(vid)) 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: @@ -90,10 +109,12 @@ def del_vlan(db, vid): # set dhcpv4_relay table set_dhcp_relay_table('VLAN', config_db, vlan, None) - # 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 - dhcp_relay_util.handle_restart_dhcp_relay_service() + 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() def restart_ndppd(): diff --git a/tests/conftest.py b/tests/conftest.py index b6b454ba..6e70f8c9 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -361,9 +361,13 @@ def setup_fib_commands(): @pytest.fixture(scope='function') def mock_restart_dhcp_relay_service(): print("We are mocking restart dhcp_relay") - origin_func = config.vlan.dhcp_relay_util.handle_restart_dhcp_relay_service - config.vlan.dhcp_relay_util.handle_restart_dhcp_relay_service = mock.MagicMock(return_value=0) + origin_funcs = [] + origin_funcs.append(config.vlan.dhcp_relay_util.restart_dhcp_relay_service) + origin_funcs.append(config.vlan.is_dhcp_relay_running) + config.vlan.dhcp_relay_util.restart_dhcp_relay_service = mock.MagicMock(return_value=0) + config.vlan.is_dhcp_relay_running = mock.MagicMock(return_value=True) yield - config.vlan.dhcp_relay_util.handle_restart_dhcp_relay_service = origin_func + config.vlan.dhcp_relay_util.restart_dhcp_relay_service = origin_funcs[0] + config.vlan.is_dhcp_relay_running = origin_funcs[1] diff --git a/tests/vlan_test.py b/tests/vlan_test.py index f582d0e3..19622777 100644 --- a/tests/vlan_test.py +++ b/tests/vlan_test.py @@ -597,7 +597,7 @@ def test_config_vlan_add_member_of_portchannel(self): assert "Error: Ethernet32 is part of portchannel!" in result.output @pytest.mark.parametrize("ip_version", ["ipv4", "ipv6"]) - def test_config_add_del_vlan_dhcp_relay(self, ip_version, mock_restart_dhcp_relay_service): + def test_config_add_del_vlan_dhcp_relay_with_empty_entry(self, ip_version, mock_restart_dhcp_relay_service): runner = CliRunner() db = Db() @@ -611,11 +611,103 @@ def test_config_add_del_vlan_dhcp_relay(self, ip_version, mock_restart_dhcp_rela assert db.cfgdb.get_entry(IP_VERSION_PARAMS_MAP[ip_version]["table"], "Vlan1001") == exp_output # del vlan 1001 - result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1001"], obj=db) + with mock.patch("utilities_common.dhcp_relay_util.handle_restart_dhcp_relay_service") as mock_handle_restart: + result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1001"], obj=db) + print(result.exit_code) + print(result.output) + + assert result.exit_code == 0 + assert "Vlan1001" not in db.cfgdb.get_keys(IP_VERSION_PARAMS_MAP[ip_version]["table"]) + assert "Restart service dhcp_relay failed with error" not in result.output + + @pytest.mark.parametrize("ip_version", ["ipv4", "ipv6"]) + def test_config_add_del_vlan_dhcp_relay_with_non_empty_entry(self, ip_version, mock_restart_dhcp_relay_service): + runner = CliRunner() + db = Db() + + # add vlan 1001 + result = runner.invoke(config.config.commands["vlan"].commands["add"], ["1001"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + exp_output = {"vlanid": "1001"} if ip_version == "ipv4" else {} + assert db.cfgdb.get_entry(IP_VERSION_PARAMS_MAP[ip_version]["table"], "Vlan1001") == exp_output + db.cfgdb.set_entry("DHCP_RELAY", "Vlan1001", {"dhcpv6_servers": ["fc02:2000::5"]}) + + # del vlan 1001 + with mock.patch("utilities_common.dhcp_relay_util.handle_restart_dhcp_relay_service") as mock_handle_restart: + result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1001"], obj=db) + print(result.exit_code) + print(result.output) + + assert result.exit_code == 0 + assert "Vlan1001" not in db.cfgdb.get_keys(IP_VERSION_PARAMS_MAP[ip_version]["table"]) + mock_handle_restart.assert_called_once() + assert "Restart service dhcp_relay failed with error" not in result.output + + @pytest.mark.parametrize("ip_version", ["ipv4", "ipv6"]) + def test_config_add_del_vlan_with_dhcp_relay_not_running(self, ip_version): + runner = CliRunner() + db = Db() + + # add vlan 1001 + result = runner.invoke(config.config.commands["vlan"].commands["add"], ["1001"], obj=db) print(result.exit_code) print(result.output) + assert result.exit_code == 0 + + exp_output = {"vlanid": "1001"} if ip_version == "ipv4" else {} + assert db.cfgdb.get_entry(IP_VERSION_PARAMS_MAP[ip_version]["table"], "Vlan1001") == exp_output + + # del vlan 1001 + with mock.patch("utilities_common.dhcp_relay_util.handle_restart_dhcp_relay_service") \ + as mock_restart_dhcp_relay_service: + result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1001"], obj=db) + print(result.exit_code) + print(result.output) - assert "Vlan1001" not in db.cfgdb.get_keys(IP_VERSION_PARAMS_MAP[ip_version]["table"]) + assert result.exit_code == 0 + assert "Vlan1001" not in db.cfgdb.get_keys(IP_VERSION_PARAMS_MAP[ip_version]["table"]) + assert mock_restart_dhcp_relay_service.call_count == 0 + assert "Restarting DHCP relay service..." not in result.output + assert "Restart service dhcp_relay failed with error" not in result.output + + def test_config_add_del_vlan_with_not_restart_dhcp_relay_ipv6(self): + runner = CliRunner() + db = Db() + + # add vlan 1001 + result = runner.invoke(config.config.commands["vlan"].commands["add"], ["1001"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + db.cfgdb.set_entry("DHCP_RELAY", "Vlan1001", {"dhcpv6_servers": ["fc02:2000::5"]}) + + # del vlan 1001 + with mock.patch("utilities_common.dhcp_relay_util.handle_restart_dhcp_relay_service") \ + as mock_restart_dhcp_relay_service: + result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1001", "--no_restart_dhcp_relay"], + obj=db) + print(result.exit_code) + print(result.output) + + assert result.exit_code != 0 + assert mock_restart_dhcp_relay_service.call_count == 0 + assert "Can't delete Vlan1001 because related DHCPv6 Relay config is exist" in result.output + + db.cfgdb.set_entry("DHCP_RELAY", "Vlan1001", None) + # del vlan 1001 + with mock.patch("utilities_common.dhcp_relay_util.handle_restart_dhcp_relay_service") \ + as mock_restart_dhcp_relay_service: + result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1001", "--no_restart_dhcp_relay"], + obj=db) + print(result.exit_code) + print(result.output) + + assert result.exit_code == 0 + assert mock_restart_dhcp_relay_service.call_count == 0 @pytest.mark.parametrize("ip_version", ["ipv6"]) def test_config_add_exist_vlan_dhcp_relay(self, ip_version): From cd519aac344651f604be4c75050d1db4b10307a4 Mon Sep 17 00:00:00 2001 From: Liu Shilong Date: Thu, 2 Mar 2023 15:36:57 +0800 Subject: [PATCH 081/312] [ci] Fix pipeline issue caused by sonic-slave-* change. (#2709) What I did These 3 packages maybe purged by default. Do not block pipeline. Download deb/whl packages only to accelerate download process. How I did it How to verify it --- azure-pipelines.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 1856c7a0..46369c01 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -45,11 +45,14 @@ stages: artifact: sonic-buildimage.vs runVersion: 'latestFromBranch' runBranch: 'refs/heads/$(sourceBranch)' + patterns: | + **/*.deb + **/*.whl displayName: "Download artifacts from latest sonic-buildimage build" - script: | set -xe - sudo apt-get -y purge libhiredis-dev libnl-3-dev libnl-route-3-dev + sudo apt-get -y purge libhiredis-dev libnl-3-dev libnl-route-3-dev || true sudo dpkg -i libnl-3-200_*.deb sudo dpkg -i libnl-genl-3-200_*.deb sudo dpkg -i libnl-route-3-200_*.deb From a015834d27f853344bb46b0445fb4dcd44b11cf3 Mon Sep 17 00:00:00 2001 From: Vaibhav Hemant Dixit Date: Fri, 3 Mar 2023 12:45:40 -0800 Subject: [PATCH 082/312] [db_migrator] Add missing attribute 'weight' to route entries in APPL DB (#2691) Fixes: 201911 to 202205 warm upgrade failure in fpmsyncd reconciliation due to missing weight attr in routes. (sonic-net/sonic-buildimage#12625) How I did it Check for missing attribute weight in APPLDB route entries. If found missing this attribute is added with empty value. How to verify it Verified on physical device. 201911 to 202205 upgrade worked fine. --- scripts/db_migrator.py | 19 ++++++++++ .../appl_db/routes_migrate_expected.json | 12 +++++++ .../appl_db/routes_migrate_input.json | 10 ++++++ .../config_db/routes_migrate_input.json | 3 ++ tests/db_migrator_test.py | 35 +++++++++++++++++++ 5 files changed, 79 insertions(+) create mode 100644 tests/db_migrator_input/appl_db/routes_migrate_expected.json create mode 100644 tests/db_migrator_input/appl_db/routes_migrate_input.json create mode 100644 tests/db_migrator_input/config_db/routes_migrate_input.json diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index c52e38bd..5c946bbb 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -579,6 +579,23 @@ def migrate_port_qos_map_global(self): self.configDB.set_entry('PORT_QOS_MAP', 'global', {"dscp_to_tc_map": dscp_to_tc_map_table_names[0]}) log.log_info("Created entry for global DSCP_TO_TC_MAP {}".format(dscp_to_tc_map_table_names[0])) + def migrate_route_table(self): + """ + Handle route table migration. Migrations handled: + 1. 'weight' attr in ROUTE object was introduced 202205 onwards. + Upgrade from older branch to 202205 will require this 'weight' attr to be added explicitly + """ + route_table = self.appDB.get_table("ROUTE_TABLE") + for route_prefix, route_attr in route_table.items(): + if 'weight' not in route_attr: + if type(route_prefix) == tuple: + # IPv6 route_prefix is returned from db as tuple + route_key = "ROUTE_TABLE:" + ":".join(route_prefix) + else: + # IPv4 route_prefix is returned from db as str + route_key = "ROUTE_TABLE:{}".format(route_prefix) + self.appDB.set(self.appDB.APPL_DB, route_key, 'weight','') + def version_unknown(self): """ version_unknown tracks all SONiC versions that doesn't have a version @@ -899,6 +916,8 @@ def common_migration_ops(self): else: log.log_notice("Asic Type: {}, Hwsku: {}".format(self.asic_type, self.hwsku)) + self.migrate_route_table() + def migrate(self): version = self.get_version() log.log_info('Upgrading from version ' + version) diff --git a/tests/db_migrator_input/appl_db/routes_migrate_expected.json b/tests/db_migrator_input/appl_db/routes_migrate_expected.json new file mode 100644 index 00000000..5cad371c --- /dev/null +++ b/tests/db_migrator_input/appl_db/routes_migrate_expected.json @@ -0,0 +1,12 @@ +{ + "ROUTE_TABLE:192.168.104.0/25": { + "nexthop": "10.0.0.57,10.0.0.59,10.0.0.61,10.0.0.63", + "ifname" : "PortChannel101,PortChannel102,PortChannel103,PortChannel104", + "weight": "" + }, + "ROUTE_TABLE:20c0:fe28:0:80::/64": { + "nexthop": "fc00::72,fc00::76,fc00::7a,fc00::7e", + "ifname" : "PortChannel101,PortChannel102,PortChannel103,PortChannel104", + "weight": "" + } +} diff --git a/tests/db_migrator_input/appl_db/routes_migrate_input.json b/tests/db_migrator_input/appl_db/routes_migrate_input.json new file mode 100644 index 00000000..7249488c --- /dev/null +++ b/tests/db_migrator_input/appl_db/routes_migrate_input.json @@ -0,0 +1,10 @@ +{ + "ROUTE_TABLE:192.168.104.0/25": { + "nexthop": "10.0.0.57,10.0.0.59,10.0.0.61,10.0.0.63", + "ifname" : "PortChannel101,PortChannel102,PortChannel103,PortChannel104" + }, + "ROUTE_TABLE:20c0:fe28:0:80::/64": { + "nexthop": "fc00::72,fc00::76,fc00::7a,fc00::7e", + "ifname" : "PortChannel101,PortChannel102,PortChannel103,PortChannel104" + } +} diff --git a/tests/db_migrator_input/config_db/routes_migrate_input.json b/tests/db_migrator_input/config_db/routes_migrate_input.json new file mode 100644 index 00000000..672268b2 --- /dev/null +++ b/tests/db_migrator_input/config_db/routes_migrate_input.json @@ -0,0 +1,3 @@ +{ + "VERSIONS|DATABASE": {"VERSION": "version_1_0_1"} +} diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index 223f5d58..b5c70fce 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -518,3 +518,38 @@ def test_migrate_loopback_int(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 TestWarmUpgrade_without_route_weights(object): + @classmethod + def setup_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "2" + + @classmethod + def teardown_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "0" + dbconnector.dedicated_dbs['CONFIG_DB'] = None + dbconnector.dedicated_dbs['APPL_DB'] = None + + def test_migrate_weights_for_nexthops(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'routes_migrate_input') + dbconnector.dedicated_dbs['APPL_DB'] = os.path.join(mock_db_path, 'appl_db', 'routes_migrate_input') + + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + dbmgtr.migrate() + dbconnector.dedicated_dbs['APPL_DB'] = os.path.join(mock_db_path, 'appl_db', 'routes_migrate_expected') + expected_db = Db() + + # verify migrated appDB + expected_appl_db = SonicV2Connector(host='127.0.0.1') + expected_appl_db.connect(expected_appl_db.APPL_DB) + expected_keys = expected_appl_db.keys(expected_appl_db.APPL_DB, "ROUTE_TABLE:*") + expected_keys.sort() + resulting_keys = dbmgtr.appDB.keys(dbmgtr.appDB.APPL_DB, "ROUTE_TABLE:*") + resulting_keys.sort() + assert expected_keys == resulting_keys + for key in expected_keys: + resulting_keys = dbmgtr.appDB.get_all(dbmgtr.appDB.APPL_DB, key) + expected_keys = expected_appl_db.get_all(expected_appl_db.APPL_DB, key) + diff = DeepDiff(resulting_keys, expected_keys, ignore_order=True) + assert not diff From c2bc150a6a05c97362d540c874deff81fad6f870 Mon Sep 17 00:00:00 2001 From: Vaibhav Hemant Dixit Date: Mon, 6 Mar 2023 10:56:51 -0800 Subject: [PATCH 083/312] [warm/fast-reboot] Backup logs from tmpfs to disk during fast/warm shutdown (#2714) Goal: Preserve logs during TOR upgrades and shutdown Need: Below PRs moved logs from disk to tmpfs for specific hwskus. Due to these changes, shutdown path logs are now lost. The logs in shutdown path are crucial for debug purposes. sonic-net/sonic-buildimage#13805 sonic-net/sonic-buildimage#13587 sonic-net/sonic-buildimage#13587 How I did it Check if logs are on tmpfs. If yes, backup logs from /var/log How to verify it Verified on a physical device - logs on tmfs are backed up for past 30 minutes. --- scripts/fast-reboot | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/scripts/fast-reboot b/scripts/fast-reboot index 5e7cc34b..2fb744f4 100755 --- a/scripts/fast-reboot +++ b/scripts/fast-reboot @@ -806,6 +806,17 @@ fi # Reboot: explicitly call Linux native reboot under sbin debug "Rebooting with ${REBOOT_METHOD} to ${NEXT_SONIC_IMAGE} ..." + +LOGS_ON_TMPFS=0 +df --output=fstype /var/log* | grep -c 'tmpfs' || LOGS_ON_TMPFS=$? +if [[ LOGS_ON_TMPFS -eq 0 ]]; then + debug "Backup shutdown logs to /host/logs_before_reboot" + mkdir -p /host/logs_before_reboot || /bin/true + # maxdepth 2: find files within 2 nested directories (eg. /var/log/ and /var/log/swss/) + # mmin 30: find files written in past 30 minutes + find /var/log -maxdepth 2 -mmin -30 -type f | xargs -I {} cp {} /host/logs_before_reboot/ || /bin/true +fi + exec ${REBOOT_METHOD} # Should never reach here From 90d70152c76f40bf7c1f8e2c6aff6eb58b951a05 Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak <38952541+stepanblyschak@users.noreply.github.com> Date: Tue, 7 Mar 2023 20:23:07 +0200 Subject: [PATCH 084/312] [route_check] implement a check for FRR routes not marked offloaded (#2531) * [route_check] implement a check for FRR routes not marked offloaded * Implemented a route_check functioality that will check "show ip route json" output from FRR and will ensure that all routes are marked as offloaded. If some routes are not offloaded for 15 sec, this is considered as an issue and a mitigation logic is invoked. --- scripts/route_check.py | 117 ++++++++++++++++++++++++++++--- tests/mock_tables/config_db.json | 3 +- tests/route_check_test.py | 24 ++++++- tests/route_check_test_data.py | 104 ++++++++++++++++++++++++++- 4 files changed, 234 insertions(+), 14 deletions(-) diff --git a/scripts/route_check.py b/scripts/route_check.py index c6234bcc..4db3f399 100755 --- a/scripts/route_check.py +++ b/scripts/route_check.py @@ -11,11 +11,11 @@ How: NOTE: The flow from APPL-DB to ASIC-DB takes non zero milliseconds. 1) Initiate subscribe for ASIC-DB updates. - 2) Read APPL-DB & ASIC-DB + 2) Read APPL-DB & ASIC-DB 3) Get the diff. - 4) If any diff, + 4) If any diff, 4.1) Collect subscribe messages for a second - 4.2) check diff against the subscribe messages + 4.2) check diff against the subscribe messages 5) Rule out local interfaces & default routes 6) If still outstanding diffs, report failure. @@ -29,7 +29,7 @@ down to ensure failure. Analyze the reported failures to match expected. You may use the exit code to verify the result as success or not. - + """ @@ -45,6 +45,7 @@ import time import signal import traceback +import subprocess from swsscommon import swsscommon from utilities_common import chassis @@ -71,6 +72,9 @@ PRINT_MSG_LEN_MAX = 1000 +FRR_CHECK_RETRIES = 3 +FRR_WAIT_TIME = 15 + class Level(Enum): ERR = 'ERR' INFO = 'INFO' @@ -293,7 +297,7 @@ def get_routes(): def get_route_entries(): """ - helper to read present route entries from ASIC-DB and + helper to read present route entries from ASIC-DB and as well initiate selector for ASIC-DB:ASIC-state updates. :return (selector, subscriber, ) """ @@ -309,7 +313,7 @@ def get_route_entries(): res, e = checkout_rt_entry(k) if res: rt.append(e) - + print_message(syslog.LOG_DEBUG, json.dumps({"ASIC_ROUTE_ENTRY": sorted(rt)}, indent=4)) selector = swsscommon.Select() @@ -317,6 +321,31 @@ def get_route_entries(): return (selector, subs, sorted(rt)) +def is_suppress_fib_pending_enabled(): + """ + Returns True if FIB suppression is enabled, False otherwise + """ + cfg_db = swsscommon.ConfigDBConnector() + cfg_db.connect() + + state = cfg_db.get_entry('DEVICE_METADATA', 'localhost').get('suppress-fib-pending') + + return state == 'enabled' + + +def get_frr_routes(): + """ + Read routes from zebra through CLI command + :return frr routes dictionary + """ + + output = subprocess.check_output('show ip route json', shell=True) + routes = json.loads(output) + output = subprocess.check_output('show ipv6 route json', shell=True) + routes.update(json.loads(output)) + return routes + + def get_interfaces(): """ helper to read interface table from APPL-DB. @@ -354,7 +383,7 @@ def filter_out_local_interfaces(keys): chassis_local_intfs = chassis.get_chassis_local_interfaces() local_if_lst.update(set(chassis_local_intfs)) - + db = swsscommon.DBConnector(APPL_DB_NAME, 0) tbl = swsscommon.Table(db, 'ROUTE_TABLE') @@ -493,6 +522,61 @@ def filter_out_standalone_tunnel_routes(routes): return updated_routes +def check_frr_pending_routes(): + """ + 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() + + for _, entries in frr_routes.items(): + for entry in entries: + if entry['protocol'] != 'bgp': + continue + + # TODO: Also handle VRF routes. Currently this script does not check for VRF routes so it would be incorrect for us + # to assume they are installed in ASIC_DB, so we don't handle them. + if entry['vrfName'] != 'default': + continue + + if not entry.get('offloaded', False): + missed_rt.append(entry) + + if not missed_rt: + break + + time.sleep(FRR_WAIT_TIME) + + return missed_rt + + +def mitigate_installed_not_offloaded_frr_routes(missed_frr_rt, rt_appl): + """ + Mitigate installed but not offloaded FRR routes. + + In case route exists in APPL_DB, this function will manually send a notification to fpmsyncd + to trigger the flow that sends offload flag to zebra. + + It is designed to mitigate a problem when orchagent fails to send notification about installed route to fpmsyncd + or fpmsyncd not being able to read the notification or in case zebra fails to receive offload update due to variety of reasons. + 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) + 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'])]) + response_producer.send('SWSS_RC_SUCCESS', entry['prefix'], fvs) + + print_message(syslog.LOG_ERR, f'Mitigated route {entry["prefix"]}') + + def get_soc_ips(config_db): mux_table = config_db.get_table('MUX_CABLE') soc_ips = [] @@ -536,7 +620,7 @@ def check_routes(): """ The heart of this script which runs the checks. Read APPL-DB & ASIC-DB, the relevant tables for route checking. - Checkout routes in ASIC-DB to match APPL-DB, discounting local & + Checkout routes in ASIC-DB to match APPL-DB, discounting local & default routes. In case of missed / unexpected entries in ASIC, it might be due to update latency between APPL & ASIC DBs. So collect ASIC-DB subscribe updates for a second, and checkout if you see SET @@ -545,12 +629,16 @@ def check_routes(): If there are still some unjustifiable diffs, between APPL & ASIC DB, related to routes report failure, else all good. + If there are FRR routes that aren't marked offloaded but all APPL & ASIC DB + routes are in sync report failure and perform a mitigation action. + :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 = [] results = {} adds = [] @@ -599,11 +687,22 @@ def check_routes(): if rt_asic_miss: results["Unaccounted_ROUTE_ENTRY_TABLE_entries"] = rt_asic_miss + rt_frr_miss = check_frr_pending_routes() + + if rt_frr_miss: + results["missed_FRR_routes"] = rt_frr_miss + 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!") @@ -649,7 +748,7 @@ def main(): return ret, res else: return ret, res - + if __name__ == "__main__": diff --git a/tests/mock_tables/config_db.json b/tests/mock_tables/config_db.json index 899dada2..51af58e8 100644 --- a/tests/mock_tables/config_db.json +++ b/tests/mock_tables/config_db.json @@ -831,7 +831,8 @@ "mac": "1d:34:db:16:a6:00", "platform": "x86_64-mlnx_msn3800-r0", "peer_switch": "sonic-switch", - "type": "ToRRouter" + "type": "ToRRouter", + "suppress-fib-pending": "enabled" }, "SNMP_COMMUNITY|msft": { "TYPE": "RO" diff --git a/tests/route_check_test.py b/tests/route_check_test.py index 85e6a64a..4d93c74e 100644 --- a/tests/route_check_test.py +++ b/tests/route_check_test.py @@ -7,7 +7,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 +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 import pytest @@ -239,6 +239,7 @@ def setup(self): def init(self): route_check.UNIT_TESTING = 1 + route_check.FRR_WAIT_TIME = 0 @pytest.fixture def force_hang(self): @@ -258,7 +259,8 @@ def mock_dbs(self): 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("route_check.swsscommon.ConfigDBConnector", return_value=mock_config_db), \ + patch("route_check.swsscommon.NotificationProducer"): device_info.get_platform = MagicMock(return_value='unittest') set_mock(mock_table, mock_conn, mock_sel, mock_subs, mock_config_db) yield @@ -272,7 +274,21 @@ def test_route_check(self, mock_dbs, test_num): set_test_case_data(ct_data) logger.info("Running test case {}: {}".format(test_num, ct_data[DESCR])) - with patch('sys.argv', ct_data[ARGS].split()): + with patch('sys.argv', ct_data[ARGS].split()), \ + patch('route_check.subprocess.check_output') as mock_check_output: + + check_frr_patch = patch('route_check.check_frr_pending_routes', lambda: []) + + if FRR_ROUTES in ct_data: + routes = ct_data[FRR_ROUTES] + + def side_effect(*args, **kwargs): + return json.dumps(routes) + + mock_check_output.side_effect = side_effect + else: + check_frr_patch.start() + 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 @@ -283,6 +299,8 @@ def test_route_check(self, mock_dbs, test_num): assert ret == expect_ret assert res == expect_res + check_frr_patch.stop() + def test_timeout(self, mock_dbs, force_hang): # Test timeout ex_raised = False diff --git a/tests/route_check_test_data.py b/tests/route_check_test_data.py index 9e4cd3a0..b8ba9c52 100644 --- a/tests/route_check_test_data.py +++ b/tests/route_check_test_data.py @@ -6,6 +6,7 @@ CONFIG_DB = 4 PRE = "pre-value" UPD = "update" +FRR_ROUTES = "frr-routes" RESULT = "res" OP_SET = "SET" @@ -359,5 +360,106 @@ } } } - } + }, + "10": { + DESCR: "basic good one, check FRR routes", + 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" }, + }, + 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", + }, + ], + }, + }, + "11": { + DESCR: "failure test case, missing FRR routes", + 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" }, + }, + 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", + }, + ], + }, + RESULT: { + "missed_FRR_routes": [ + {"prefix": "10.10.196.12/31", "vrfName": "default", "protocol": "bgp"} + ], + }, + RET: -1, + }, } From e16bdaae18ae41f43e6bffabbb7a30cc47785c74 Mon Sep 17 00:00:00 2001 From: kellyyeh <42761586+kellyyeh@users.noreply.github.com> Date: Tue, 7 Mar 2023 10:47:13 -0800 Subject: [PATCH 085/312] Fix non-zero status exit on non secure boot system (#2715) What I did Warm-reboot fails on kvm due to non-zero exit upon command bootctl status 2>/dev/null | grep -c "Secure Boot: enabled" How I did it Added || true to return 0 when previous command fails. Added CHECK_SECURE_UPGRADE_ENABLED to check output of previous command Added debug logs How to verify it Run warm-reboot on kvm and physical device when increased verbosity. Expects debug log to indicate secure/non secure boot. Successful warm reboot --- scripts/fast-reboot | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/scripts/fast-reboot b/scripts/fast-reboot index 2fb744f4..defde666 100755 --- a/scripts/fast-reboot +++ b/scripts/fast-reboot @@ -614,11 +614,14 @@ if is_secureboot && grep -q aboot_machine= /host/machine.conf; then load_aboot_secureboot_kernel else # check if secure boot is enable in UEFI - SECURE_UPGRADE_ENABLED=$(bootctl status 2>/dev/null | grep -c "Secure Boot: enabled") - if [ ${SECURE_UPGRADE_ENABLED} -eq 1 ]; then - load_kernel_secure - else + 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 + debug "Loading kernel without secure boot" load_kernel + else + debug "Loading kernel with secure boot" + load_kernel_secure fi fi From 2fc2b826cfb37310b4c44c0ecc46d6121dc95417 Mon Sep 17 00:00:00 2001 From: isabelmsft <67024108+isabelmsft@users.noreply.github.com> Date: Tue, 7 Mar 2023 14:42:50 -0800 Subject: [PATCH 086/312] YANG validation for ConfigDB Updates: MIRROR_SESSION use case (#2430) --- config/main.py | 66 ++++++++++++++++------- tests/config_mirror_session_test.py | 82 +++++++++++++++++++++++++++++ tests/config_snmp_test.py | 1 + 3 files changed, 129 insertions(+), 20 deletions(-) diff --git a/config/main.py b/config/main.py index f2576ac7..384e6f9f 100644 --- a/config/main.py +++ b/config/main.py @@ -2354,25 +2354,35 @@ def add_erspan(session_name, src_ip, dst_ip, dscp, ttl, gre_type, queue, policer session_info['gre_type'] = gre_type session_info = gather_session_info(session_info, policer, queue, src_port, direction) + ctx = click.get_current_context() """ For multi-npu platforms we need to program all front asic namespaces """ namespaces = multi_asic.get_all_namespaces() if not namespaces['front_ns']: - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() - if validate_mirror_session_config(config_db, session_name, None, src_port, direction) is False: - return - config_db.set_entry("MIRROR_SESSION", session_name, session_info) + if ADHOC_VALIDATION: + if validate_mirror_session_config(config_db, session_name, None, src_port, direction) is False: + return + try: + config_db.set_entry("MIRROR_SESSION", session_name, session_info) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) + else: per_npu_configdb = {} for front_asic_namespaces in namespaces['front_ns']: - per_npu_configdb[front_asic_namespaces] = ConfigDBConnector(use_unix_socket_path=True, namespace=front_asic_namespaces) + per_npu_configdb[front_asic_namespaces] = ValidatedConfigDBConnector(ConfigDBConnector(use_unix_socket_path=True, namespace=front_asic_namespaces)) per_npu_configdb[front_asic_namespaces].connect() - if validate_mirror_session_config(per_npu_configdb[front_asic_namespaces], session_name, None, src_port, direction) is False: - return - per_npu_configdb[front_asic_namespaces].set_entry("MIRROR_SESSION", session_name, session_info) + if ADHOC_VALIDATION: + if validate_mirror_session_config(per_npu_configdb[front_asic_namespaces], session_name, None, src_port, direction) is False: + return + try: + per_npu_configdb[front_asic_namespaces].set_entry("MIRROR_SESSION", session_name, session_info) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) @mirror_session.group(cls=clicommon.AbbreviationGroup, name='span') @click.pass_context @@ -2404,25 +2414,34 @@ def add_span(session_name, dst_port, src_port, direction, queue, policer): } session_info = gather_session_info(session_info, policer, queue, src_port, direction) + ctx = click.get_current_context() """ For multi-npu platforms we need to program all front asic namespaces """ namespaces = multi_asic.get_all_namespaces() if not namespaces['front_ns']: - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() - if validate_mirror_session_config(config_db, session_name, dst_port, src_port, direction) is False: - return - config_db.set_entry("MIRROR_SESSION", session_name, session_info) + if ADHOC_VALIDATION: + if validate_mirror_session_config(config_db, session_name, dst_port, src_port, direction) is False: + return + try: + config_db.set_entry("MIRROR_SESSION", session_name, session_info) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) else: per_npu_configdb = {} for front_asic_namespaces in namespaces['front_ns']: - per_npu_configdb[front_asic_namespaces] = ConfigDBConnector(use_unix_socket_path=True, namespace=front_asic_namespaces) + per_npu_configdb[front_asic_namespaces] = ValidatedConfigDBConnector(ConfigDBConnector(use_unix_socket_path=True, namespace=front_asic_namespaces)) per_npu_configdb[front_asic_namespaces].connect() - if validate_mirror_session_config(per_npu_configdb[front_asic_namespaces], session_name, dst_port, src_port, direction) is False: - return - per_npu_configdb[front_asic_namespaces].set_entry("MIRROR_SESSION", session_name, session_info) + if ADHOC_VALIDATION: + if validate_mirror_session_config(per_npu_configdb[front_asic_namespaces], session_name, dst_port, src_port, direction) is False: + return + try: + per_npu_configdb[front_asic_namespaces].set_entry("MIRROR_SESSION", session_name, session_info) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) @mirror_session.command() @@ -2434,16 +2453,23 @@ def remove(session_name): For multi-npu platforms we need to program all front asic namespaces """ namespaces = multi_asic.get_all_namespaces() + ctx = click.get_current_context() if not namespaces['front_ns']: - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() - config_db.set_entry("MIRROR_SESSION", session_name, None) + try: + config_db.set_entry("MIRROR_SESSION", session_name, None) + except JsonPatchConflict as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) else: per_npu_configdb = {} for front_asic_namespaces in namespaces['front_ns']: - per_npu_configdb[front_asic_namespaces] = ConfigDBConnector(use_unix_socket_path=True, namespace=front_asic_namespaces) + per_npu_configdb[front_asic_namespaces] = ValidatedConfigDBConnector(ConfigDBConnector(use_unix_socket_path=True, namespace=front_asic_namespaces)) per_npu_configdb[front_asic_namespaces].connect() - per_npu_configdb[front_asic_namespaces].set_entry("MIRROR_SESSION", session_name, None) + try: + per_npu_configdb[front_asic_namespaces].set_entry("MIRROR_SESSION", session_name, None) + except JsonPatchConflict as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'pfcwd' group ('config pfcwd ...') diff --git a/tests/config_mirror_session_test.py b/tests/config_mirror_session_test.py index 5585cab8..ccbc196b 100644 --- a/tests/config_mirror_session_test.py +++ b/tests/config_mirror_session_test.py @@ -1,7 +1,11 @@ import pytest import config.main as config +import jsonpatch from unittest import mock from click.testing import CliRunner +from mock import patch +from jsonpatch import JsonPatchConflict +from sonic_py_common import multi_asic ERR_MSG_IP_FAILURE = "does not appear to be an IPv4 or IPv6 network" ERR_MSG_IP_VERSION_FAILURE = "not a valid IPv4 address" @@ -172,7 +176,34 @@ def test_mirror_session_erspan_add(): mocked.assert_called_with("test_session", "100.1.1.1", "2.2.2.2", 8, 63, 0, 0, None, None, None) +@patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) +@patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=ValueError)) +def test_mirror_session_erspan_add_invalid_yang_validation(): + config.ADHOC_VALIDATION = False + runner = CliRunner() + result = runner.invoke( + config.config.commands["mirror_session"].commands["erspan"].commands["add"], + ["test_session", "100.1.1.1", "2.2.2.2", "8", "63", "10", "100"]) + print(result.output) + assert "Invalid ConfigDB. Error" in result.output + + +@patch("config.main.ConfigDBConnector", spec=True, connect=mock.Mock()) +@patch("config.main.multi_asic.get_all_namespaces", mock.Mock(return_value={'front_ns': 'sample_ns'})) +@patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) +@patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=ValueError)) +def test_mirror_session_erspan_add_multi_asic_invalid_yang_validation(mock_db_connector): + config.ADHOC_VALIDATION = False + runner = CliRunner() + result = runner.invoke( + config.config.commands["mirror_session"].commands["erspan"].commands["add"], + ["test_session", "100.1.1.1", "2.2.2.2", "8", "63", "10", "100"]) + print(result.output) + assert "Invalid ConfigDB. Error" in result.output + + def test_mirror_session_span_add(): + config.ADHOC_VALIDATION = True runner = CliRunner() # Verify invalid queue @@ -273,3 +304,54 @@ def test_mirror_session_span_add(): mocked.assert_called_with("test_session", "Ethernet0", "Ethernet4", "rx", 0, None) + +@patch("config.main.ConfigDBConnector", spec=True, connect=mock.Mock()) +@patch("config.main.multi_asic.get_all_namespaces", mock.Mock(return_value={'front_ns': 'sample_ns'})) +@patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) +@patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=ValueError)) +def test_mirror_session_span_add_multi_asic_invalid_yang_validation(mock_db_connector): + config.ADHOC_VALIDATION = False + runner = CliRunner() + result = runner.invoke( + config.config.commands["mirror_session"].commands["span"].commands["add"], + ["test_session", "Ethernet0", "Ethernet4", "rx", "0"]) + print(result.output) + assert "Invalid ConfigDB. Error" in result.output + + +@patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) +@patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=ValueError)) +def test_mirror_session_span_add_invalid_yang_validation(): + config.ADHOC_VALIDATION = False + runner = CliRunner() + result = runner.invoke( + config.config.commands["mirror_session"].commands["span"].commands["add"], + ["test_session", "Ethernet0", "Ethernet4", "rx", "0"]) + print(result.output) + assert "Invalid ConfigDB. Error" in result.output + + +@patch("config.main.multi_asic.get_all_namespaces", mock.Mock(return_value={'front_ns': 'sample_ns'})) +@patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) +@patch("config.main.ConfigDBConnector", spec=True, connect=mock.Mock()) +@patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=JsonPatchConflict)) +def test_mirror_session_remove_multi_asic_invalid_yang_validation(mock_db_connector): + config.ADHOC_VALIDATION = False + runner = CliRunner() + result = runner.invoke( + config.config.commands["mirror_session"].commands["remove"], + ["mrr_sample"]) + print(result.output) + assert "Invalid ConfigDB. Error" in result.output + + +@patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) +@patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=JsonPatchConflict)) +def test_mirror_session_remove_invalid_yang_validation(): + config.ADHOC_VALIDATION = False + runner = CliRunner() + result = runner.invoke( + config.config.commands["mirror_session"].commands["remove"], + ["mrr_sample"]) + print(result.output) + assert "Invalid ConfigDB. Error" in result.output diff --git a/tests/config_snmp_test.py b/tests/config_snmp_test.py index 096f21cb..76f56756 100644 --- a/tests/config_snmp_test.py +++ b/tests/config_snmp_test.py @@ -118,6 +118,7 @@ def setup_class(cls): # Add snmp community tests def test_config_snmp_community_add_new_community_ro(self): + config.ADHOC_VALIDATION = True db = Db() runner = CliRunner() with mock.patch('utilities_common.cli.run_command') as mock_run_command: From c7aa841632c1083b72a9d0d0b7ab5579d9d90bb0 Mon Sep 17 00:00:00 2001 From: vdahiya12 <67608553+vdahiya12@users.noreply.github.com> Date: Tue, 7 Mar 2023 15:19:53 -0800 Subject: [PATCH 087/312] [show][muxcable] increase timeout for displaying HW_STATUS (#2712) What I did probe mux direction not always return success. Sample output of: while [ 1 ]; do date; show mux hwmode muxdirection; show mux status; sleep 1; done Mon 27 Feb 2023 03:12:25 PM UTC Port Direction Presence ----------- ----------- ---------- Ethernet16 unknown True PORT STATUS HEALTH HWSTATUS LAST_SWITCHOVER_TIME ----------- -------- -------- ------------ --------------------------- Ethernet16 standby healthy inconsistent 2023-Feb-25 07:55:18.269177 If we increase the timeout to 0.5 secs to get the values back from ycabled, this will remove the inconsistency issue, and display the consistent values, because while telemetry is going on, the time to get actual mux value takes significantly longer than 0.1 seconds. PORT STATUS HEALTH HWSTATUS LAST_SWITCHOVER_TIME ----------- -------- -------- ------------ --------------------------- Ethernet16 standby healthy consistent 2023-Feb-25 07:55:18.269177 How I did it How to verify it Manually run changes on setup worst-case CLI return time could be 16 seconds for 32 ports. on avg each port is 200 mSec if telemetry is going, but on average show command will return in < 1 sec for all 32 ports. Signed-off-by: vaibhav-dahiya --- show/muxcable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/show/muxcable.py b/show/muxcable.py index 837e3627..5df4bd8c 100644 --- a/show/muxcable.py +++ b/show/muxcable.py @@ -20,7 +20,7 @@ REDIS_TIMEOUT_MSECS = 0 SELECT_TIMEOUT = 1000 -HWMODE_MUXDIRECTION_TIMEOUT = 0.1 +HWMODE_MUXDIRECTION_TIMEOUT = 0.5 # The empty namespace refers to linux host namespace. EMPTY_NAMESPACE = '' From 2ef5b31e807048e39fc125370b40b58ba8db8b03 Mon Sep 17 00:00:00 2001 From: isabelmsft <67024108+isabelmsft@users.noreply.github.com> Date: Wed, 8 Mar 2023 00:19:03 -0800 Subject: [PATCH 088/312] [GCU] Add PFC_WD RDMA validator (#2619) --- generic_config_updater/change_applier.py | 2 +- .../field_operation_validators.py | 26 ++++++++++++++ .../gcu_field_operation_validators.conf.json | 20 +++++++++++ ....json => gcu_services_validator.conf.json} | 0 generic_config_updater/gu_common.py | 36 +++++++++++++++++++ setup.py | 2 +- .../generic_config_updater/gu_common_test.py | 26 +++++++++----- 7 files changed, 102 insertions(+), 10 deletions(-) create mode 100644 generic_config_updater/field_operation_validators.py create mode 100644 generic_config_updater/gcu_field_operation_validators.conf.json rename generic_config_updater/{generic_config_updater.conf.json => gcu_services_validator.conf.json} (100%) diff --git a/generic_config_updater/change_applier.py b/generic_config_updater/change_applier.py index f5a365d5..d0818172 100644 --- a/generic_config_updater/change_applier.py +++ b/generic_config_updater/change_applier.py @@ -9,7 +9,7 @@ from .gu_common import genericUpdaterLogging SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__)) -UPDATER_CONF_FILE = f"{SCRIPT_DIR}/generic_config_updater.conf.json" +UPDATER_CONF_FILE = f"{SCRIPT_DIR}/gcu_services_validator.conf.json" logger = genericUpdaterLogging.get_logger(title="Change Applier") print_to_console = False diff --git a/generic_config_updater/field_operation_validators.py b/generic_config_updater/field_operation_validators.py new file mode 100644 index 00000000..befd4b87 --- /dev/null +++ b/generic_config_updater/field_operation_validators.py @@ -0,0 +1,26 @@ +from sonic_py_common import device_info +import re + +def rdma_config_update_validator(): + version_info = device_info.get_sonic_version_info() + build_version = version_info.get('build_version') + asic_type = version_info.get('asic_type') + + if (asic_type != 'mellanox' and asic_type != 'broadcom' and asic_type != 'cisco-8000'): + return False + + version_substrings = build_version.split('.') + branch_version = None + + for substring in version_substrings: + if substring.isdigit() and re.match(r'^\d{8}$', substring): + branch_version = substring + break + + if branch_version is None: + return False + + if asic_type == 'cisco-8000': + return branch_version >= "20201200" + else: + return branch_version >= "20181100" diff --git a/generic_config_updater/gcu_field_operation_validators.conf.json b/generic_config_updater/gcu_field_operation_validators.conf.json new file mode 100644 index 00000000..f12a14d8 --- /dev/null +++ b/generic_config_updater/gcu_field_operation_validators.conf.json @@ -0,0 +1,20 @@ +{ + "README": [ + "field_operation_validators provides, module & method name as ", + " .", + "NOTE: module name could have '.'", + " ", + "The last element separated by '.' is considered as ", + "method name", + "", + "e.g. 'show.acl.test_acl'", + "", + "field_operation_validators for a given table defines a list of validators that all must pass for modification to the specified field and table to be allowed", + "" + ], + "tables": { + "PFC_WD": { + "field_operation_validators": [ "generic_config_updater.field_operation_validators.rdma_config_update_validator" ] + } + } +} diff --git a/generic_config_updater/generic_config_updater.conf.json b/generic_config_updater/gcu_services_validator.conf.json similarity index 100% rename from generic_config_updater/generic_config_updater.conf.json rename to generic_config_updater/gcu_services_validator.conf.json diff --git a/generic_config_updater/gu_common.py b/generic_config_updater/gu_common.py index 0d7a5281..e8c66fcb 100644 --- a/generic_config_updater/gu_common.py +++ b/generic_config_updater/gu_common.py @@ -1,5 +1,6 @@ import json import jsonpatch +import importlib from jsonpointer import JsonPointer import sonic_yang import sonic_yang_ext @@ -7,11 +8,14 @@ import yang as ly import copy import re +import os from sonic_py_common import logger from enum import Enum YANG_DIR = "/usr/local/yang-models" SYSLOG_IDENTIFIER = "GenericConfigUpdater" +SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__)) +GCU_FIELD_OP_CONF_FILE = f"{SCRIPT_DIR}/gcu_field_operation_validators.conf.json" class GenericConfigUpdaterError(Exception): pass @@ -162,6 +166,38 @@ def validate_field_operation(self, old_config, target_config): if any(op['op'] == operation and field == op['path'] for op in patch): raise IllegalPatchOperationError("Given patch operation is invalid. Operation: {} is illegal on field: {}".format(operation, field)) + def _invoke_validating_function(cmd): + # cmd is in the format as . + method_name = cmd.split(".")[-1] + module_name = ".".join(cmd.split(".")[0:-1]) + if module_name != "generic_config_updater.field_operation_validators" or "validator" not in method_name: + raise GenericConfigUpdaterError("Attempting to call invalid method {} in module {}. Module must be generic_config_updater.field_operation_validators, and method must be a defined validator".format(method_name, module_name)) + module = importlib.import_module(module_name, package=None) + method_to_call = getattr(module, method_name) + return method_to_call() + + if os.path.exists(GCU_FIELD_OP_CONF_FILE): + with open(GCU_FIELD_OP_CONF_FILE, "r") as s: + gcu_field_operation_conf = json.load(s) + else: + raise GenericConfigUpdaterError("GCU field operation validators config file not found") + + for element in patch: + path = element["path"] + match = re.search(r'\/([^\/]+)(\/|$)', path) # This matches the table name in the path, eg if path if /PFC_WD/GLOBAL, the match would be PFC_WD + if match is not None: + table = match.group(1) + else: + raise GenericConfigUpdaterError("Invalid jsonpatch path: {}".format(path)) + validating_functions= set() + tables = gcu_field_operation_conf["tables"] + validating_functions.update(tables.get(table, {}).get("field_operation_validators", [])) + + for function in validating_functions: + if not _invoke_validating_function(function): + raise IllegalPatchOperationError("Modification of {} table is illegal- validating function {} returned False".format(table, function)) + + def validate_lanes(self, config_db): if "PORT" not in config_db: return True, None diff --git a/setup.py b/setup.py index 70d7473b..6af8e339 100644 --- a/setup.py +++ b/setup.py @@ -64,7 +64,7 @@ 'sonic_cli_gen', ], package_data={ - 'generic_config_updater': ['generic_config_updater.conf.json'], + 'generic_config_updater': ['gcu_services_validator.conf.json', 'gcu_field_operation_validators.conf.json'], 'show': ['aliases.ini'], 'sonic_installer': ['aliases.ini'], 'tests': ['acl_input/*', diff --git a/tests/generic_config_updater/gu_common_test.py b/tests/generic_config_updater/gu_common_test.py index 7fa471ee..a319a25e 100644 --- a/tests/generic_config_updater/gu_common_test.py +++ b/tests/generic_config_updater/gu_common_test.py @@ -3,8 +3,10 @@ import jsonpatch import sonic_yang import unittest -from unittest.mock import MagicMock, Mock, patch +import mock +from unittest.mock import MagicMock, Mock +from mock import patch from .gutest_helpers import create_side_effect_dict, Files import generic_config_updater.gu_common as gu_common @@ -69,11 +71,25 @@ def setUp(self): self.config_wrapper_mock = gu_common.ConfigWrapper() self.config_wrapper_mock.get_config_db_as_json=MagicMock(return_value=Files.CONFIG_DB_AS_JSON) + @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"asic_type": "mellanox", "build_version": "SONiC.20181131"})) def test_validate_field_operation_legal__pfcwd(self): old_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "60"}}} target_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "40"}}} config_wrapper = gu_common.ConfigWrapper() config_wrapper.validate_field_operation(old_config, target_config) + + def test_validate_field_operation_illegal__pfcwd(self): + old_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "60"}}} + target_config = {"PFC_WD": {"GLOBAL": {}}} + config_wrapper = gu_common.ConfigWrapper() + self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) + + @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"asic_type": "invalid-asic", "build_version": "SONiC.20181131"})) + def test_validate_field_modification_illegal__pfcwd(self): + old_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "60"}}} + target_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "80"}}} + config_wrapper = gu_common.ConfigWrapper() + self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) def test_validate_field_operation_legal__rm_loopback1(self): old_config = { @@ -92,13 +108,7 @@ def test_validate_field_operation_legal__rm_loopback1(self): } config_wrapper = gu_common.ConfigWrapper() config_wrapper.validate_field_operation(old_config, target_config) - - def test_validate_field_operation_illegal__pfcwd(self): - old_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": 60}}} - target_config = {"PFC_WD": {"GLOBAL": {}}} - config_wrapper = gu_common.ConfigWrapper() - self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) - + def test_validate_field_operation_illegal__rm_loopback0(self): old_config = { "LOOPBACK_INTERFACE": { From 64d2efd20b528f67c22dcfaf42e6ca5081aba416 Mon Sep 17 00:00:00 2001 From: bingwang-ms <66248323+bingwang-ms@users.noreply.github.com> Date: Wed, 8 Mar 2023 13:28:59 -0800 Subject: [PATCH 089/312] Improve show acl commands (#2667) * Add status for ACL_TABLE and ACL_RULE in STATE_DB --- acl_loader/main.py | 75 ++++++++++++++++---- tests/aclshow_test.py | 7 +- tests/mock_tables/asic0/config_db.json | 11 +++ tests/mock_tables/asic0/state_db.json | 6 ++ tests/mock_tables/asic2/config_db.json | 11 +++ tests/mock_tables/asic2/state_db.json | 6 ++ tests/mock_tables/config_db.json | 11 +++ tests/mock_tables/state_db.json | 6 ++ tests/show_acl_test.py | 95 ++++++++++++++++++++++++++ 9 files changed, 213 insertions(+), 15 deletions(-) create mode 100644 tests/show_acl_test.py diff --git a/acl_loader/main.py b/acl_loader/main.py index c50efec0..2eab089c 100644 --- a/acl_loader/main.py +++ b/acl_loader/main.py @@ -72,6 +72,10 @@ class AclLoader(object): ACL_TABLE = "ACL_TABLE" ACL_RULE = "ACL_RULE" + CFG_ACL_TABLE = "ACL_TABLE" + STATE_ACL_TABLE = "ACL_TABLE_TABLE" + CFG_ACL_RULE = "ACL_RULE" + STATE_ACL_RULE = "ACL_RULE_TABLE" ACL_TABLE_TYPE_MIRROR = "MIRROR" ACL_TABLE_TYPE_CTRLPLANE = "CTRLPLANE" CFG_MIRROR_SESSION_TABLE = "MIRROR_SESSION" @@ -117,11 +121,16 @@ def __init__(self): self.tables_db_info = {} self.rules_db_info = {} self.rules_info = {} + self.tables_state_info = None + self.rules_state_info = None # Load database config files load_db_config() self.sessions_db_info = {} + self.acl_table_status = {} + self.acl_rule_status = {} + self.configdb = ConfigDBConnector() self.configdb.connect() self.statedb = SonicV2Connector(host="127.0.0.1") @@ -156,6 +165,8 @@ def __init__(self): self.read_rules_info() self.read_sessions_info() self.read_policers_info() + self.acl_table_status = self.read_acl_object_status_info(self.CFG_ACL_TABLE, self.STATE_ACL_TABLE) + self.acl_rule_status = self.read_acl_object_status_info(self.CFG_ACL_RULE, self.STATE_ACL_RULE) def read_tables_info(self): """ @@ -210,7 +221,7 @@ def read_sessions_info(self): for key in self.sessions_db_info: if self.per_npu_statedb: # For multi-npu platforms we will read from all front asic name space - # statedb as the monitor port will be differnt for each asic + # statedb as the monitor port will be different for each asic # and it's status also might be different (ideally should not happen) # We will store them as dict of 'asic' : value self.sessions_db_info[key]["status"] = {} @@ -224,6 +235,35 @@ def read_sessions_info(self): self.sessions_db_info[key]["status"] = state_db_info.get("status", "inactive") if state_db_info else "error" self.sessions_db_info[key]["monitor_port"] = state_db_info.get("monitor_port", "") if state_db_info else "" + def read_acl_object_status_info(self, cfg_db_table_name, state_db_table_name): + """ + Read ACL_TABLE status or ACL_RULE status from STATE_DB + """ + if self.per_npu_configdb: + namespace_configdb = list(self.per_npu_configdb.values())[0] + keys = namespace_configdb.get_table(cfg_db_table_name).keys() + else: + keys = self.configdb.get_table(cfg_db_table_name).keys() + + status = {} + for key in keys: + # For ACL_RULE, the key is (acl_table_name, acl_rule_name) + if isinstance(key, tuple): + state_db_key = key[0] + "|" + key[1] + else: + state_db_key = key + status[key] = {} + if self.per_npu_statedb: + status[key]['status'] = {} + for namespace_key, namespace_statedb in self.per_npu_statedb.items(): + state_db_info = namespace_statedb.get_all(self.statedb.STATE_DB, "{}|{}".format(state_db_table_name, state_db_key)) + status[key]['status'][namespace_key] = state_db_info.get("status", "N/A") if state_db_info else "N/A" + else: + state_db_info = self.statedb.get_all(self.statedb.STATE_DB, "{}|{}".format(state_db_table_name, state_db_key)) + status[key]['status'] = state_db_info.get("status", "N/A") if state_db_info else "N/A" + + return status + def get_sessions_db_info(self): return self.sessions_db_info @@ -786,32 +826,36 @@ def show_table(self, table_name): :param table_name: Optional. ACL table name. Filter tables by specified name. :return: """ - header = ("Name", "Type", "Binding", "Description", "Stage") + header = ("Name", "Type", "Binding", "Description", "Stage", "Status") data = [] for key, val in self.get_tables_db_info().items(): if table_name and key != table_name: continue - + stage = val.get("stage", Stage.INGRESS).lower() - + # Get ACL table status from STATE_DB + if key in self.acl_table_status: + status = self.acl_table_status[key]['status'] + else: + status = 'N/A' if val["type"] == AclLoader.ACL_TABLE_TYPE_CTRLPLANE: services = natsorted(val["services"]) - data.append([key, val["type"], services[0], val["policy_desc"], stage]) + data.append([key, val["type"], services[0], val["policy_desc"], stage, status]) if len(services) > 1: for service in services[1:]: - data.append(["", "", service, "", ""]) + data.append(["", "", service, "", "", ""]) else: if not val["ports"]: - data.append([key, val["type"], "", val["policy_desc"], stage]) + data.append([key, val["type"], "", val["policy_desc"], stage, status]) else: ports = natsorted(val["ports"]) - data.append([key, val["type"], ports[0], val["policy_desc"], stage]) + data.append([key, val["type"], ports[0], val["policy_desc"], stage, status]) if len(ports) > 1: for port in ports[1:]: - data.append(["", "", port, "", ""]) + data.append(["", "", port, "", "", ""]) print(tabulate.tabulate(data, headers=header, tablefmt="simple", missingval="")) @@ -873,7 +917,7 @@ def show_rule(self, table_name, rule_id): :param rule_id: Optional. ACL rule name. Filter rule by specified rule name. :return: """ - header = ("Table", "Rule", "Priority", "Action", "Match") + header = ("Table", "Rule", "Priority", "Action", "Match", "Status") def pop_priority(val): priority = "N/A" @@ -919,11 +963,16 @@ def pop_matches(val): priority = pop_priority(val) action = pop_action(val) matches = pop_matches(val) - - rule_data = [[tname, rid, priority, action, matches[0]]] + # Get ACL rule status from STATE_DB + status_key = (tname, rid) + if status_key in self.acl_rule_status: + status = self.acl_rule_status[status_key]['status'] + else: + status = "N/A" + rule_data = [[tname, rid, priority, action, matches[0], status]] if len(matches) > 1: for m in matches[1:]: - rule_data.append(["", "", "", "", m]) + rule_data.append(["", "", "", "", m, ""]) raw_data.append([priority, rule_data]) diff --git a/tests/aclshow_test.py b/tests/aclshow_test.py index 90fe46f6..0abe509a 100644 --- a/tests/aclshow_test.py +++ b/tests/aclshow_test.py @@ -46,6 +46,7 @@ RULE_9 DATAACL 9991 901 900 RULE_10 DATAACL 9989 1001 1000 DEFAULT_RULE DATAACL 1 2 1 +RULE_1 DATAACL_5 9999 N/A N/A RULE_NO_COUNTER DATAACL_NO_COUNTER 9995 N/A N/A RULE_6 EVERFLOW 9994 601 600 RULE_08 EVERFLOW 9992 0 0 @@ -89,8 +90,8 @@ # Expected output for aclshow -r RULE_4,RULE_6 -vv rule4_rule6_verbose_output = '' + \ """Reading ACL info... -Total number of ACL Tables: 11 -Total number of ACL Rules: 20 +Total number of ACL Tables: 12 +Total number of ACL Rules: 21 RULE NAME TABLE NAME PRIO PACKETS COUNT BYTES COUNT ----------- ------------ ------ --------------- ------------- @@ -136,6 +137,7 @@ RULE_9 DATAACL 9991 0 0 RULE_10 DATAACL 9989 0 0 DEFAULT_RULE DATAACL 1 0 0 +RULE_1 DATAACL_5 9999 N/A N/A RULE_NO_COUNTER DATAACL_NO_COUNTER 9995 N/A N/A RULE_6 EVERFLOW 9994 0 0 RULE_08 EVERFLOW 9992 0 0 @@ -161,6 +163,7 @@ RULE_9 DATAACL 9991 0 0 RULE_10 DATAACL 9989 0 0 DEFAULT_RULE DATAACL 1 0 0 +RULE_1 DATAACL_5 9999 N/A N/A RULE_NO_COUNTER DATAACL_NO_COUNTER 9995 100 100 RULE_6 EVERFLOW 9994 0 0 RULE_08 EVERFLOW 9992 0 0 diff --git a/tests/mock_tables/asic0/config_db.json b/tests/mock_tables/asic0/config_db.json index 66b51f4c..de20194a 100644 --- a/tests/mock_tables/asic0/config_db.json +++ b/tests/mock_tables/asic0/config_db.json @@ -246,5 +246,16 @@ "holdtime": "10", "asn": "65200", "keepalive": "3" + }, + "ACL_RULE|DATAACL_5|RULE_1": { + "IP_PROTOCOL": "126", + "PACKET_ACTION": "FORWARD", + "PRIORITY": "9999" + }, + "ACL_TABLE|DATAACL_5": { + "policy_desc": "DATAACL_5", + "ports@": "Ethernet124", + "type": "L3", + "stage": "ingress" } } diff --git a/tests/mock_tables/asic0/state_db.json b/tests/mock_tables/asic0/state_db.json index 27564049..559af048 100644 --- a/tests/mock_tables/asic0/state_db.json +++ b/tests/mock_tables/asic0/state_db.json @@ -286,5 +286,11 @@ "STATUS": "up", "REMOTE_MOD": "0", "REMOTE_PORT": "93" + }, + "ACL_TABLE_TABLE|DATAACL_5" : { + "status": "Active" + }, + "ACL_RULE_TABLE|DATAACL_5|RULE_1" : { + "status": "Active" } } diff --git a/tests/mock_tables/asic2/config_db.json b/tests/mock_tables/asic2/config_db.json index 532d85bc..bfda10a0 100644 --- a/tests/mock_tables/asic2/config_db.json +++ b/tests/mock_tables/asic2/config_db.json @@ -124,5 +124,16 @@ "state": "disabled", "auto_restart": "disabled", "high_mem_alert": "disabled" + }, + "ACL_RULE|DATAACL_5|RULE_1": { + "IP_PROTOCOL": "126", + "PACKET_ACTION": "FORWARD", + "PRIORITY": "9999" + }, + "ACL_TABLE|DATAACL_5": { + "policy_desc": "DATAACL_5", + "ports@": "Ethernet124", + "type": "L3", + "stage": "ingress" } } diff --git a/tests/mock_tables/asic2/state_db.json b/tests/mock_tables/asic2/state_db.json index f6e3eee4..c6c8c888 100644 --- a/tests/mock_tables/asic2/state_db.json +++ b/tests/mock_tables/asic2/state_db.json @@ -207,5 +207,11 @@ "speed_target": "50", "led_status": "green", "timestamp": "20200813 01:32:30" + }, + "ACL_TABLE_TABLE|DATAACL_5" : { + "status": "Active" + }, + "ACL_RULE_TABLE|DATAACL_5|RULE_1" : { + "status": "Active" } } diff --git a/tests/mock_tables/config_db.json b/tests/mock_tables/config_db.json index 51af58e8..3a2b681a 100644 --- a/tests/mock_tables/config_db.json +++ b/tests/mock_tables/config_db.json @@ -496,6 +496,11 @@ "PACKET_ACTION": "FORWARD", "PRIORITY": "9995" }, + "ACL_RULE|DATAACL_5|RULE_1": { + "IP_PROTOCOL": "126", + "PACKET_ACTION": "FORWARD", + "PRIORITY": "9999" + }, "ACL_TABLE|NULL_ROUTE_V4": { "policy_desc": "DATAACL", "ports@": "PortChannel0002,PortChannel0005,PortChannel0008,PortChannel0011,PortChannel0014,PortChannel0017,PortChannel0020,PortChannel0023", @@ -533,6 +538,12 @@ "type": "L3V6", "stage": "egress" }, + "ACL_TABLE|DATAACL_5": { + "policy_desc": "DATAACL_5", + "ports@": "Ethernet124", + "type": "L3", + "stage": "ingress" + }, "ACL_TABLE|EVERFLOW": { "policy_desc": "EVERFLOW", "ports@": "PortChannel0002,PortChannel0005,PortChannel0008,PortChannel0011,PortChannel0014,PortChannel0017,PortChannel0020,PortChannel0023,Ethernet100,Ethernet104,Ethernet92,Ethernet96,Ethernet84,Ethernet88,Ethernet76,Ethernet80,Ethernet108,Ethernet112,Ethernet64,Ethernet120,Ethernet116,Ethernet124,Ethernet72,Ethernet68", diff --git a/tests/mock_tables/state_db.json b/tests/mock_tables/state_db.json index 4cdda56b..cd1a194b 100644 --- a/tests/mock_tables/state_db.json +++ b/tests/mock_tables/state_db.json @@ -1210,5 +1210,11 @@ "STATUS": "up", "REMOTE_MOD": "0", "REMOTE_PORT": "93" + }, + "ACL_TABLE_TABLE|DATAACL_5" : { + "status": "Active" + }, + "ACL_RULE_TABLE|DATAACL_5|RULE_1" : { + "status": "Active" } } diff --git a/tests/show_acl_test.py b/tests/show_acl_test.py new file mode 100644 index 00000000..1b2cdc60 --- /dev/null +++ b/tests/show_acl_test.py @@ -0,0 +1,95 @@ +import os +import pytest +from click.testing import CliRunner + +import acl_loader.main as acl_loader_show +from acl_loader import * +from acl_loader.main import * +from importlib import reload + +root_path = os.path.dirname(os.path.abspath(__file__)) +modules_path = os.path.dirname(root_path) +scripts_path = os.path.join(modules_path, "scripts") + + +@pytest.fixture() +def setup_teardown_single_asic(): + os.environ["PATH"] += os.pathsep + scripts_path + os.environ["UTILITIES_UNIT_TESTING"] = "2" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "" + yield + os.environ["UTILITIES_UNIT_TESTING"] = "0" + + +@pytest.fixture(scope="class") +def setup_teardown_multi_asic(): + os.environ["PATH"] += os.pathsep + scripts_path + os.environ["UTILITIES_UNIT_TESTING"] = "2" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "multi_asic" + from .mock_tables import mock_multi_asic_3_asics + reload(mock_multi_asic_3_asics) + from .mock_tables import dbconnector + dbconnector.load_namespace_config() + yield + os.environ["UTILITIES_UNIT_TESTING"] = "0" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "" + from .mock_tables import mock_single_asic + reload(mock_single_asic) + + +class TestShowACLSingleASIC(object): + def test_show_acl_table(self, setup_teardown_single_asic): + runner = CliRunner() + aclloader = AclLoader() + context = { + "acl_loader": aclloader + } + result = runner.invoke(acl_loader_show.cli.commands['show'].commands['table'], ['DATAACL_5'], obj=context) + assert result.exit_code == 0 + # We only care about the third line, which contains the 'Active' + result_top = result.output.split('\n')[2] + expected_output = "DATAACL_5 L3 Ethernet124 DATAACL_5 ingress Active" + assert result_top == expected_output + + def test_show_acl_rule(self, setup_teardown_single_asic): + runner = CliRunner() + aclloader = AclLoader() + context = { + "acl_loader": aclloader + } + result = runner.invoke(acl_loader_show.cli.commands['show'].commands['rule'], ['DATAACL_5'], obj=context) + assert result.exit_code == 0 + # We only care about the third line, which contains the 'Active' + result_top = result.output.split('\n')[2] + expected_output = "DATAACL_5 RULE_1 9999 FORWARD IP_PROTOCOL: 126 Active" + assert result_top == expected_output + + +class TestShowACLMultiASIC(object): + def test_show_acl_table(self, setup_teardown_multi_asic): + runner = CliRunner() + aclloader = AclLoader() + context = { + "acl_loader": aclloader + } + result = runner.invoke(acl_loader_show.cli.commands['show'].commands['table'], ['DATAACL_5'], obj=context) + assert result.exit_code == 0 + # 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 + + def test_show_acl_rule(self, setup_teardown_multi_asic): + runner = CliRunner() + aclloader = AclLoader() + context = { + "acl_loader": aclloader + } + result = runner.invoke(acl_loader_show.cli.commands['show'].commands['rule'], ['DATAACL_5'], obj=context) + assert result.exit_code == 0 + # We only care about the third line, which contains the 'Active' + result_top = result.output.split('\n')[2] + expected_output = "DATAACL_5 RULE_1 9999 FORWARD IP_PROTOCOL: 126 {'asic0': 'Active', 'asic2': 'Active'}" + assert result_top == expected_output + + From 338d1c05bf067447bdc29013b419d2c51da5c086 Mon Sep 17 00:00:00 2001 From: Liu Shilong Date: Thu, 9 Mar 2023 06:57:05 +0800 Subject: [PATCH 090/312] Check SONiC dependencies before installation. (#2716) #### What I did SONiC related packages shouldn't be intalled from Pypi. It is security compliance requirement. Check SONiC related packages when using setup.py. --- setup.py | 31 ++++++++++++++++++++++++++----- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 6af8e339..f0717972 100644 --- a/setup.py +++ b/setup.py @@ -5,9 +5,34 @@ # under scripts/. Consider stop using scripts and use console_scripts instead # # https://stackoverflow.com/questions/18787036/difference-between-entry-points-console-scripts-and-scripts-in-setup-py +from __future__ import print_function +import sys import fastentrypoints from setuptools import setup +import pkg_resources +from packaging import version + +# sonic_dependencies, version requirement only supports '>=' +sonic_dependencies = [ + 'sonic-config-engine', + 'sonic-platform-common', + 'sonic-py-common', + 'sonic-yang-mgmt', +] + +for package in sonic_dependencies: + try: + package_dist = pkg_resources.get_distribution(package.split(">=")[0]) + except pkg_resources.DistributionNotFound: + print(package + " is not found!", file=sys.stderr) + print("Please build and install SONiC python wheels dependencies from sonic-buildimage", file=sys.stderr) + exit(1) + if ">=" in package: + if version.parse(package_dist.version) >= version.parse(package.split(">=")[1]): + continue + print(package + " version not match!", file=sys.stderr) + exit(1) setup( name='sonic-utilities', @@ -211,16 +236,12 @@ 'prettyprinter>=0.18.0', 'pyroute2>=0.5.14, <0.6.1', 'requests>=2.25.0', - 'sonic-config-engine', - 'sonic-platform-common', - 'sonic-py-common', - 'sonic-yang-mgmt', 'tabulate==0.8.2', 'toposort==1.6', 'www-authenticate==0.9.2', 'xmltodict==0.12.0', 'lazy-object-proxy', - ], + ] + sonic_dependencies, setup_requires= [ 'pytest-runner', 'wheel' From 9f83ace943bc4938a0bfc75239ecdac8600e5b56 Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Thu, 9 Mar 2023 09:12:19 +0800 Subject: [PATCH 091/312] [GCU] Add vlanintf-validator (#2697) What I did Fix the bug of GCU vlan interface modification. It should call ip neigh flush dev after removing interface ip. The fix is basically following config CLI's tradition. How I did it Add vlanintf service validator to check if extra step of ip neigh flush is needed. How to verify it GCU E2E test in dualtor testbed. --- .../gcu_services_validator.conf.json | 6 +++ generic_config_updater/services_validator.py | 21 ++++++++ .../service_validator_test.py | 51 ++++++++++++++++++- 3 files changed, 77 insertions(+), 1 deletion(-) diff --git a/generic_config_updater/gcu_services_validator.conf.json b/generic_config_updater/gcu_services_validator.conf.json index 907b5a68..852b5872 100644 --- a/generic_config_updater/gcu_services_validator.conf.json +++ b/generic_config_updater/gcu_services_validator.conf.json @@ -48,6 +48,9 @@ }, "NTP_SERVER": { "services_to_validate": [ "ntp-service" ] + }, + "VLAN_INTERFACE": { + "services_to_validate": [ "vlanintf-service" ] } }, "services": { @@ -71,6 +74,9 @@ }, "ntp-service": { "validate_commands": [ "generic_config_updater.services_validator.ntp_validator" ] + }, + "vlanintf-service": { + "validate_commands": [ "generic_config_updater.services_validator.vlanintf_validator" ] } } } diff --git a/generic_config_updater/services_validator.py b/generic_config_updater/services_validator.py index 44a9e095..5d8c1f0d 100644 --- a/generic_config_updater/services_validator.py +++ b/generic_config_updater/services_validator.py @@ -101,3 +101,24 @@ def caclmgrd_validator(old_config, upd_config, keys): def ntp_validator(old_config, upd_config, keys): return _service_restart("ntp-config") + +def vlanintf_validator(old_config, upd_config, keys): + old_vlan_intf = old_config.get("VLAN_INTERFACE", {}) + upd_vlan_intf = upd_config.get("VLAN_INTERFACE", {}) + + # Get the tuple with format (iface, iface_ip) then check deleted tuple + # Example: + # old_keys = [("Vlan1000", "192.168.0.1")] + # upd_keys = [("Vlan1000", "192.168.0.2")] + old_keys = [ tuple(key.split("|")) + for key in old_vlan_intf if len(key.split("|")) == 2 ] + upd_keys = [ tuple(key.split("|")) + for key in upd_vlan_intf if len(key.split("|")) == 2 ] + + deleted_keys = list(set(old_keys) - set(upd_keys)) + for key in deleted_keys: + iface, iface_ip = key + rc = os.system(f"ip neigh flush dev {iface} {iface_ip}") + if not rc: + return False + return True diff --git a/tests/generic_config_updater/service_validator_test.py b/tests/generic_config_updater/service_validator_test.py index 2f51771d..f14a3ad7 100644 --- a/tests/generic_config_updater/service_validator_test.py +++ b/tests/generic_config_updater/service_validator_test.py @@ -6,7 +6,7 @@ from collections import defaultdict from unittest.mock import patch -from generic_config_updater.services_validator import vlan_validator, rsyslog_validator, caclmgrd_validator +from generic_config_updater.services_validator import vlan_validator, rsyslog_validator, caclmgrd_validator, vlanintf_validator import generic_config_updater.gu_common @@ -152,6 +152,46 @@ def mock_time_sleep_call(sleep_time): { "cmd": "systemctl restart rsyslog", "rc": 1 }, # restart again; fails ] +test_vlanintf_data = [ + { "old": {}, "upd": {}, "cmd": "" }, + { + "old": { "VLAN_INTERFACE": { + "Vlan1000": {}, + "Vlan1000|192.168.0.1/21": {} } }, + "upd": { "VLAN_INTERFACE": { + "Vlan1000": {}, + "Vlan1000|192.168.0.1/21": {} } }, + "cmd": "" + }, + { + "old": { "VLAN_INTERFACE": { + "Vlan1000": {}, + "Vlan1000|192.168.0.1/21": {} } }, + "upd": { "VLAN_INTERFACE": { + "Vlan1000": {}, + "Vlan1000|192.168.0.2/21": {} } }, + "cmd": "ip neigh flush dev Vlan1000 192.168.0.1/21" + }, + { + "old": { "VLAN_INTERFACE": { + "Vlan1000": {}, + "Vlan1000|192.168.0.1/21": {} } }, + "upd": { "VLAN_INTERFACE": { + "Vlan1000": {}, + "Vlan1000|192.168.0.1/21": {}, + "Vlan1000|192.168.0.2/21": {} } }, + "cmd": "" + }, + { + "old": { "VLAN_INTERFACE": { + "Vlan1000": {}, + "Vlan1000|192.168.0.1/21": {} } }, + "upd": {}, + "cmd": "ip neigh flush dev Vlan1000 192.168.0.1/21" + } + ] + + class TestServiceValidator(unittest.TestCase): @patch("generic_config_updater.change_applier.os.system") @@ -177,6 +217,15 @@ def test_change_apply_os_system(self, mock_os_sys): rc = rsyslog_validator("", "", "") assert not rc, "rsyslog_validator expected to fail" + os_system_calls = [] + os_system_call_index = 0 + for entry in test_vlanintf_data: + if entry["cmd"]: + os_system_calls.append({"cmd": entry["cmd"], "rc": 0 }) + msg = "case failed: {}".format(str(entry)) + + vlanintf_validator(entry["old"], entry["upd"], None) + @patch("generic_config_updater.services_validator.time.sleep") def test_change_apply_time_sleep(self, mock_time_sleep): global time_sleep_calls, time_sleep_call_index From 7a604c51671a85470db3d15aaa83b6b39a01531a Mon Sep 17 00:00:00 2001 From: jhli-cisco <93410383+jhli-cisco@users.noreply.github.com> Date: Wed, 8 Mar 2023 18:03:50 -0800 Subject: [PATCH 092/312] update fast-reboot (#2728) --- scripts/fast-reboot | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/fast-reboot b/scripts/fast-reboot index defde666..426c7b27 100755 --- a/scripts/fast-reboot +++ b/scripts/fast-reboot @@ -23,6 +23,7 @@ PLATFORM=$(sonic-cfggen -H -v DEVICE_METADATA.localhost.platform) PLATFORM_PLUGIN="${REBOOT_TYPE}_plugin" LOG_SSD_HEALTH="/usr/local/bin/log_ssd_health" PLATFORM_FWUTIL_AU_REBOOT_HANDLE="platform_fw_au_reboot_handle" +PLATFORM_REBOOT_PRE_CHECK="platform_reboot_pre_check" SSD_FW_UPDATE="ssd-fw-upgrade" SSD_FW_UPDATE_BOOT_OPTION=no TAG_LATEST=yes @@ -179,6 +180,10 @@ function initialize_pre_shutdown() function request_pre_shutdown() { + if [ -x ${DEVPATH}/${PLATFORM}/${PLATFORM_REBOOT_PRE_CHECK} ]; then + debug "Requesting platform reboot pre-check ..." + ${DEVPATH}/${PLATFORM}/${PLATFORM_REBOOT_PRE_CHECK} ${REBOOT_TYPE} + fi debug "Requesting pre-shutdown ..." STATE=$(timeout 5s docker exec syncd /usr/bin/syncd_request_shutdown --pre &> /dev/null; if [[ $? == 124 ]]; then echo "timed out"; fi) if [[ x"${STATE}" == x"timed out" ]]; then From ff6883233a3c86e993add50453c3152745eaff0d Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak <38952541+stepanblyschak@users.noreply.github.com> Date: Fri, 10 Mar 2023 04:07:25 +0200 Subject: [PATCH 093/312] [route_check] fix IPv6 address handling (#2722) *In case user has configured an IPv6 address on an interface in CONFIG DB in non simplified form like 2000:31:0:0::1/64 it is present in a simplified form in ASIC_DB. This leads to route_check failure since it just compares strings. --- scripts/route_check.py | 5 +++-- tests/route_check_test_data.py | 18 ++++++++++++++++++ 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/scripts/route_check.py b/scripts/route_check.py index 4db3f399..c832b2c6 100755 --- a/scripts/route_check.py +++ b/scripts/route_check.py @@ -47,6 +47,7 @@ import traceback import subprocess +from ipaddress import ip_network from swsscommon import swsscommon from utilities_common import chassis @@ -145,7 +146,7 @@ def add_prefix(ip): ip = ip + PREFIX_SEPARATOR + "32" else: ip = ip + PREFIX_SEPARATOR + "128" - return ip + return str(ip_network(ip)) def add_prefix_ifnot(ip): @@ -154,7 +155,7 @@ def add_prefix_ifnot(ip): :param ip: IP to add prefix as string. :return ip with prefix """ - return ip if ip.find(PREFIX_SEPARATOR) != -1 else add_prefix(ip) + return str(ip_network(ip)) if ip.find(PREFIX_SEPARATOR) != -1 else add_prefix(ip) def is_local(ip): diff --git a/tests/route_check_test_data.py b/tests/route_check_test_data.py index b8ba9c52..7ed1eee4 100644 --- a/tests/route_check_test_data.py +++ b/tests/route_check_test_data.py @@ -462,4 +462,22 @@ }, RET: -1, }, + "10": { + DESCR: "basic good one with IPv6 address", + ARGS: "route_check -m INFO -i 1000", + PRE: { + APPL_DB: { + ROUTE_TABLE: { + }, + INTF_TABLE: { + "PortChannel1013:2000:31:0:0::1/64": {}, + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "2000:31::1/128" + RT_ENTRY_KEY_SUFFIX: {}, + } + } + } + }, } From e6179afa8771bfa1643243f7ef166dd1dc256b24 Mon Sep 17 00:00:00 2001 From: Aryeh Feigin <101218333+arfeigin@users.noreply.github.com> Date: Fri, 10 Mar 2023 18:41:30 +0200 Subject: [PATCH 094/312] Remove timer from FAST_REBOOT STATE_DB entry and use finalizer (#2621) This should come along with sonic-buildimage PR (sonic-net/sonic-buildimage#13484) implementing fast-reboot finalizing logic in finalize-warmboot script and other submodules PRs utilizing the change. This PR should come along with the following PRs as well: sonic-net/sonic-swss-common#742 sonic-net/sonic-platform-daemons#335 sonic-net/sonic-sairedis#1196 This set of PRs solves the issue sonic-net/sonic-buildimage#13251 What I did Remove the timer used to clear fast-reboot entry from state-db, instead it will be cleared by fast-reboot finalize function implemented inside finalize-warmboot script (which will be invoked since fast-reboot is using warm-reboot infrastructure). As well instead of having "1" as the value for fast-reboot entry in state-db and deleting it when done it is now modified to set enable/disable according to the context. As well all scripts reading this entry should be modified to the new value options. How I did it Removed the timer usage in the fast-reboot script and adding fast-reboot finalize logic to warm-reboot in the linked PR. Use "enable/disable" instead of "1" as the entry value. How to verify it Run fast-reboot and check that the state-db entry for fast-reboot is being deleted after finalizing fast-reboot and not by an expiring timer. --- scripts/db_migrator.py | 23 +++++++++++-- scripts/fast-reboot | 6 ++-- .../templates/service_mgmt.sh.j2 | 3 +- .../state_db/fast_reboot_expected.json | 5 +++ .../state_db/fast_reboot_input.json | 2 ++ tests/db_migrator_test.py | 32 +++++++++++++++++++ 6 files changed, 65 insertions(+), 6 deletions(-) create mode 100644 tests/db_migrator_input/state_db/fast_reboot_expected.json create mode 100644 tests/db_migrator_input/state_db/fast_reboot_input.json diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index 5c946bbb..b08c3979 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -45,7 +45,7 @@ def __init__(self, namespace, socket=None): none-zero values. build: sequentially increase within a minor version domain. """ - self.CURRENT_VERSION = 'version_4_0_0' + self.CURRENT_VERSION = 'version_4_0_1' self.TABLE_NAME = 'VERSIONS' self.TABLE_KEY = 'DATABASE' @@ -867,9 +867,28 @@ def version_3_0_6(self): def version_4_0_0(self): """ Version 4_0_0. - This is the latest version for master branch """ log.log_info('Handling version_4_0_0') + # Update state-db fast-reboot entry to enable if set to enable fast-reboot finalizer when using upgrade with fast-reboot + # since upgrading from previous version FAST_REBOOT table will be deleted when the timer will expire. + # reading FAST_REBOOT table can't be done with stateDB.get as it uses hget behind the scenes and the table structure is + # not using hash and won't work. + # FAST_REBOOT table exists only if fast-reboot was triggered. + keys = self.stateDB.keys(self.stateDB.STATE_DB, "FAST_REBOOT") + if keys is not None: + 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' + + def version_4_0_1(self): + """ + Version 4_0_1. + This is the latest version for master branch + """ + log.log_info('Handling version_4_0_1') return None def get_version(self): diff --git a/scripts/fast-reboot b/scripts/fast-reboot index 426c7b27..fb162ae1 100755 --- a/scripts/fast-reboot +++ b/scripts/fast-reboot @@ -149,7 +149,7 @@ function clear_boot() #clear_fast_boot if [[ "$REBOOT_TYPE" = "fast-reboot" ]]; then - sonic-db-cli STATE_DB DEL "FAST_REBOOT|system" &>/dev/null || /bin/true + sonic-db-cli STATE_DB HSET "FAST_RESTART_ENABLE_TABLE|system" "enable" "false" &>/dev/null || /bin/true fi } @@ -270,7 +270,7 @@ function backup_database() and not string.match(k, 'WARM_RESTART_ENABLE_TABLE|') \ and not string.match(k, 'VXLAN_TUNNEL_TABLE|') \ and not string.match(k, 'BUFFER_MAX_PARAM_TABLE|') \ - and not string.match(k, 'FAST_REBOOT|') then + and not string.match(k, 'FAST_RESTART_ENABLE_TABLE|') then redis.call('del', k) end end @@ -549,7 +549,7 @@ case "$REBOOT_TYPE" in check_warm_restart_in_progress BOOT_TYPE_ARG=$REBOOT_TYPE trap clear_boot EXIT HUP INT QUIT TERM KILL ABRT ALRM - sonic-db-cli STATE_DB SET "FAST_REBOOT|system" "1" "EX" "210" &>/dev/null + sonic-db-cli STATE_DB HSET "FAST_RESTART_ENABLE_TABLE|system" "enable" "true" &>/dev/null config warm_restart enable system ;; "warm-reboot") diff --git a/sonic-utilities-data/templates/service_mgmt.sh.j2 b/sonic-utilities-data/templates/service_mgmt.sh.j2 index d2060490..5c8f4e49 100644 --- a/sonic-utilities-data/templates/service_mgmt.sh.j2 +++ b/sonic-utilities-data/templates/service_mgmt.sh.j2 @@ -51,7 +51,8 @@ function check_warm_boot() function check_fast_boot() { - if [[ $($SONIC_DB_CLI STATE_DB GET "FAST_REBOOT|system") == "1" ]]; then + SYSTEM_FAST_REBOOT=`$SONIC_DB_CLI STATE_DB hget "FAST_RESTART_ENABLE_TABLE|system" enable` + if [[ x"${SYSTEM_FAST_REBOOT}" == x"true" ]]; then FAST_BOOT="true" else FAST_BOOT="false" diff --git a/tests/db_migrator_input/state_db/fast_reboot_expected.json b/tests/db_migrator_input/state_db/fast_reboot_expected.json new file mode 100644 index 00000000..e3a7a5fa --- /dev/null +++ b/tests/db_migrator_input/state_db/fast_reboot_expected.json @@ -0,0 +1,5 @@ +{ + "FAST_RESTART_ENABLE_TABLE|system": { + "enable": "false" + } +} \ No newline at end of file diff --git a/tests/db_migrator_input/state_db/fast_reboot_input.json b/tests/db_migrator_input/state_db/fast_reboot_input.json new file mode 100644 index 00000000..7a73a41b --- /dev/null +++ b/tests/db_migrator_input/state_db/fast_reboot_input.json @@ -0,0 +1,2 @@ +{ +} \ No newline at end of file diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index b5c70fce..e9c184d1 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -451,6 +451,38 @@ def test_move_logger_tables_in_warm_upgrade(self): diff = DeepDiff(resulting_table, expected_table, ignore_order=True) assert not diff +class TestFastRebootTableModification(object): + @classmethod + def setup_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "2" + + @classmethod + def teardown_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "0" + dbconnector.dedicated_dbs['STATE_DB'] = None + + def mock_dedicated_state_db(self): + dbconnector.dedicated_dbs['STATE_DB'] = os.path.join(mock_db_path, 'state_db') + + def test_rename_fast_reboot_table_check_enable(self): + device_info.get_sonic_version_info = get_sonic_version_info_mlnx + dbconnector.dedicated_dbs['STATE_DB'] = os.path.join(mock_db_path, 'state_db', 'fast_reboot_input') + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'empty-config-input') + + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + dbmgtr.migrate() + + dbconnector.dedicated_dbs['STATE_DB'] = os.path.join(mock_db_path, 'state_db', 'fast_reboot_expected') + expected_db = SonicV2Connector(host='127.0.0.1') + expected_db.connect(expected_db.STATE_DB) + + resulting_table = dbmgtr.stateDB.get_all(dbmgtr.stateDB.STATE_DB, 'FAST_RESTART_ENABLE_TABLE|system') + expected_table = expected_db.get_all(expected_db.STATE_DB, 'FAST_RESTART_ENABLE_TABLE|system') + + diff = DeepDiff(resulting_table, expected_table, ignore_order=True) + assert not diff + class TestWarmUpgrade_to_2_0_2(object): @classmethod def setup_class(cls): From f7f783bce46a4383260e229dea90834672f03b6f Mon Sep 17 00:00:00 2001 From: Stephen Sun <5379172+stephenxs@users.noreply.github.com> Date: Tue, 14 Mar 2023 21:01:52 +0800 Subject: [PATCH 095/312] Enhance the logic to wait for all buffer tables to be removed in _clear_qos (#2720) - What I did This is an enhancement of PR #2503 - How I did it On top of waiting for BUFFER_POOL_TABLE to be cleared from APPL_DB, we need to wait for KEY_SET and DEL_SET as well. KEY_SET and DEL_SET are designed to accommodate the APPL_DB entries that were updated by manager daemons but have not yet been handled by the orchagent. In this case, even if the buffer tables are empty, entries in KEY_SET or DEL_SET will be in the buffer tables later on. So, we need to wait for key set tables as well. Do not delay for traditional buffer manager because it does not remove any buffer table. Provide a CLI option to print the detailed message if there is any table item which still exists - How to verify it Manually test and unit test - Previous command output (if the output of a command-line utility has changed) Running command: /usr/local/bin/sonic-cfggen -d --write-to-db -t /usr/share/sonic/device/x86_64-mlnx_msn2410-r0/ACS-MSN2410/buffers_dynamic.json.j2,config-db -t /usr/share/sonic/device/x86_64-mlnx_msn2410-r0/ACS-MSN2410/qos.json.j2,config-db -y /etc/sonic/sonic_version.yml - New command output (if the output of a command-line utility has changed) Only with option --verbose there are new output. Without the option, the output is the same as it is. admin@mtbc-sonic-01-2410:~$ sudo config qos reload --verbose Some entries matching BUFFER_*_TABLE:* still exist: BUFFER_QUEUE_TABLE:Ethernet108:0-2 Some entries matching BUFFER_*_SET still exist: BUFFER_PG_TABLE_KEY_SET Some entries matching BUFFER_*_TABLE:* still exist: BUFFER_QUEUE_TABLE:Ethernet108:0-2 Some entries matching BUFFER_*_SET still exist: BUFFER_PG_TABLE_KEY_SET Some entries matching BUFFER_*_TABLE:* still exist: BUFFER_QUEUE_TABLE:Ethernet108:0-2 Running command: /usr/local/bin/sonic-cfggen -d --write-to-db -t /usr/share/sonic/device/x86_64-mlnx_msn2410-r0/ACS-MSN2410/buffers_dynamic.json.j2,config-db -t /usr/share/sonic/device/x86_64-mlnx_msn2410-r0/ACS-MSN2410/qos.json.j2,config-db -y /etc/sonic/sonic_version.yml --- config/main.py | 33 +++++++++++++++++++++------------ tests/config_test.py | 10 ++++++++-- 2 files changed, 29 insertions(+), 14 deletions(-) diff --git a/config/main.py b/config/main.py index 384e6f9f..d14d3923 100644 --- a/config/main.py +++ b/config/main.py @@ -743,24 +743,28 @@ def storm_control_delete_entry(port_name, storm_type): return True -def _wait_until_clear(table, interval=0.5, timeout=30): +def _wait_until_clear(tables, interval=0.5, timeout=30, verbose=False): start = time.time() empty = False app_db = SonicV2Connector(host='127.0.0.1') app_db.connect(app_db.APPL_DB) while not empty and time.time() - start < timeout: - current_profiles = app_db.keys(app_db.APPL_DB, table) - if not current_profiles: - empty = True - else: - time.sleep(interval) + non_empty_table_count = 0 + for table in tables: + keys = app_db.keys(app_db.APPL_DB, table) + if keys: + non_empty_table_count += 1 + if verbose: + click.echo("Some entries matching {} still exist: {}".format(table, keys[0])) + time.sleep(interval) + empty = (non_empty_table_count == 0) if not empty: click.echo("Operation not completed successfully, please save and reload configuration.") return empty -def _clear_qos(delay = False): +def _clear_qos(delay=False, verbose=False): QOS_TABLE_NAMES = [ 'PORT_QOS_MAP', 'QUEUE', @@ -797,7 +801,10 @@ def _clear_qos(delay = False): for qos_table in QOS_TABLE_NAMES: config_db.delete_table(qos_table) if delay: - _wait_until_clear("BUFFER_POOL_TABLE:*",interval=0.5, timeout=30) + device_metadata = config_db.get_entry('DEVICE_METADATA', 'localhost') + # Traditional buffer manager do not remove buffer tables in any case, no need to wait. + timeout = 120 if device_metadata and device_metadata.get('buffer_model') == 'dynamic' else 0 + _wait_until_clear(["BUFFER_*_TABLE:*", "BUFFER_*_SET"], interval=0.5, timeout=timeout, verbose=verbose) def _get_sonic_generated_services(num_asic): if not os.path.isfile(SONIC_GENERATED_SERVICE_PATH): @@ -2644,10 +2651,11 @@ def qos(ctx): pass @qos.command('clear') -def clear(): +@click.option('--verbose', is_flag=True, help="Enable verbose output") +def clear(verbose): """Clear QoS configuration""" log.log_info("'qos clear' executing...") - _clear_qos() + _clear_qos(verbose=verbose) def _update_buffer_calculation_model(config_db, model): """Update the buffer calculation model into CONFIG_DB""" @@ -2664,6 +2672,7 @@ def _update_buffer_calculation_model(config_db, model): @click.option('--ports', is_flag=False, required=False, help="List of ports that needs to be updated") @click.option('--no-dynamic-buffer', is_flag=True, help="Disable dynamic buffer calculation") @click.option('--no-delay', is_flag=True, hidden=True) +@click.option('--verbose', is_flag=True, help="Enable verbose output") @click.option( '--json-data', type=click.STRING, help="json string with additional data, valid with --dry-run option" @@ -2672,7 +2681,7 @@ def _update_buffer_calculation_model(config_db, model): '--dry_run', type=click.STRING, help="Dry run, writes config to the given file" ) -def reload(ctx, no_dynamic_buffer, no_delay, dry_run, json_data, ports): +def reload(ctx, no_dynamic_buffer, no_delay, dry_run, json_data, ports, verbose): """Reload QoS configuration""" if ports: log.log_info("'qos reload --ports {}' executing...".format(ports)) @@ -2681,7 +2690,7 @@ def reload(ctx, no_dynamic_buffer, no_delay, dry_run, json_data, ports): log.log_info("'qos reload' executing...") if not dry_run: - _clear_qos(delay = not no_delay) + _clear_qos(delay = not no_delay, verbose=verbose) _, hwsku_path = device_info.get_paths_to_platform_and_hwsku_dirs() sonic_version_file = device_info.get_sonic_version_file() diff --git a/tests/config_test.py b/tests/config_test.py index 5fa50abd..fff66d47 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -693,7 +693,7 @@ def test_qos_wait_until_clear_empty(self): with mock.patch('swsscommon.swsscommon.SonicV2Connector.keys', side_effect=TestConfigQos._keys): TestConfigQos._keys_counter = 1 - empty = _wait_until_clear("BUFFER_POOL_TABLE:*", 0.5,2) + empty = _wait_until_clear(["BUFFER_POOL_TABLE:*"], 0.5,2) assert empty def test_qos_wait_until_clear_not_empty(self): @@ -701,9 +701,15 @@ def test_qos_wait_until_clear_not_empty(self): with mock.patch('swsscommon.swsscommon.SonicV2Connector.keys', side_effect=TestConfigQos._keys): TestConfigQos._keys_counter = 10 - empty = _wait_until_clear("BUFFER_POOL_TABLE:*", 0.5,2) + empty = _wait_until_clear(["BUFFER_POOL_TABLE:*"], 0.5,2) assert not empty + @mock.patch('config.main._wait_until_clear') + def test_qos_clear_no_wait(self, _wait_until_clear): + from config.main import _clear_qos + _clear_qos(True, False) + _wait_until_clear.assert_called_with(['BUFFER_*_TABLE:*', 'BUFFER_*_SET'], interval=0.5, timeout=0, verbose=False) + def test_qos_reload_single( self, get_cmd_module, setup_qos_mock_apis, setup_single_broadcom_asic From 76457141db02b80abc003d00261e4c4635b83676 Mon Sep 17 00:00:00 2001 From: Aryeh Feigin <101218333+arfeigin@users.noreply.github.com> Date: Tue, 14 Mar 2023 22:13:51 +0200 Subject: [PATCH 096/312] Fix fast-reboot DB migration (#2734) Fix DB migrator logic for migrating fast-reboot table, fixing #2621 db_migrator. How I did it Checking if fast-reboot table exists in DB. How to verify it Verified manually, migrating after fast-reboot and after cold/warm reboot. --- scripts/db_migrator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index b08c3979..64fddea2 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -874,8 +874,8 @@ 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") - if keys is not None: + keys = self.stateDB.keys(self.stateDB.STATE_DB, "FAST_REBOOT|system") + if keys: enable_state = 'true' else: enable_state = 'false' From c869c9707a7622f31da7f92a338d7af358461f8a Mon Sep 17 00:00:00 2001 From: Vivek Date: Tue, 14 Mar 2023 17:55:40 -0700 Subject: [PATCH 097/312] Update the ref guide to reflect the vlan brief output (#2731) What I did show vlan brief will only be showing dhcpv4 addresses and not dhcpv6 destination Signed-off-by: Vivek Reddy Karri --- doc/Command-Reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 69f282cc..494773b8 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -9793,7 +9793,7 @@ Go Back To [Beginning of the document](#) or [Beginning of this section](#System **show vlan brief** -This command displays brief information about all the vlans configured in the device. It displays the vlan ID, IP address (if configured for the vlan), list of vlan member ports, whether the port is tagged or in untagged mode, the DHCP Helper Address, and the proxy ARP status +This command displays brief information about all the vlans configured in the device. It displays the vlan ID, IP address (if configured for the vlan), list of vlan member ports, whether the port is tagged or in untagged mode, the DHCPv4 Helper Address, and the proxy ARP status - Usage: ``` From 2d95529dce9ef3f23b859ec09135c40d87d4f4d5 Mon Sep 17 00:00:00 2001 From: Neetha John Date: Thu, 16 Mar 2023 17:31:49 -0700 Subject: [PATCH 098/312] Revert "Update load minigraph to load backend acl (#2236)" (#2735) This reverts commit 1518ca92df1e794222bf45100246c8ef956d7af6. --- config/main.py | 43 ++----------------------------------------- tests/config_test.py | 43 ------------------------------------------- 2 files changed, 2 insertions(+), 84 deletions(-) diff --git a/config/main.py b/config/main.py index d14d3923..44f633bf 100644 --- a/config/main.py +++ b/config/main.py @@ -1162,41 +1162,6 @@ def validate_gre_type(ctx, _, value): except ValueError: raise click.UsageError("{} is not a valid GRE type".format(value)) -def _is_storage_device(cfg_db): - """ - Check if the device is a storage device or not - """ - device_metadata = cfg_db.get_entry("DEVICE_METADATA", "localhost") - return device_metadata.get("storage_device", "Unknown") == "true" - -def _is_acl_table_present(cfg_db, acl_table_name): - """ - Check if acl table exists - """ - return acl_table_name in cfg_db.get_keys("ACL_TABLE") - -def load_backend_acl(cfg_db, device_type): - """ - Load acl on backend storage device - """ - - BACKEND_ACL_TEMPLATE_FILE = os.path.join('/', "usr", "share", "sonic", "templates", "backend_acl.j2") - BACKEND_ACL_FILE = os.path.join('/', "etc", "sonic", "backend_acl.json") - - if device_type and device_type == "BackEndToRRouter" and _is_storage_device(cfg_db) and _is_acl_table_present(cfg_db, "DATAACL"): - if os.path.isfile(BACKEND_ACL_TEMPLATE_FILE): - clicommon.run_command( - "{} -d -t {},{}".format( - SONIC_CFGGEN_PATH, - BACKEND_ACL_TEMPLATE_FILE, - BACKEND_ACL_FILE - ), - display_cmd=True - ) - if os.path.isfile(BACKEND_ACL_FILE): - clicommon.run_command("acl-loader update incremental {}".format(BACKEND_ACL_FILE), display_cmd=True) - - # This is our main entrypoint - the main 'config' command @click.group(cls=clicommon.AbbreviationGroup, context_settings=CONTEXT_SETTINGS) @click.pass_context @@ -1774,12 +1739,6 @@ def load_minigraph(db, no_service_restart, traffic_shift_away, override_config, if os.path.isfile('/etc/sonic/acl.json'): clicommon.run_command("acl-loader update full /etc/sonic/acl.json", display_cmd=True) - # get the device type - device_type = _get_device_type() - - # Load backend acl - load_backend_acl(db.cfgdb, device_type) - # Load port_config.json try: load_port_config(db.cfgdb, '/etc/sonic/port_config.json') @@ -1789,6 +1748,8 @@ def load_minigraph(db, no_service_restart, traffic_shift_away, override_config, # generate QoS and Buffer configs clicommon.run_command("config qos reload --no-dynamic-buffer --no-delay", display_cmd=True) + # get the device type + device_type = _get_device_type() if device_type != 'MgmtToRRouter' and device_type != 'MgmtTsToR' and device_type != 'BmcMgmtToRRouter' and device_type != 'EPMS': clicommon.run_command("pfcwd start_default", display_cmd=True) diff --git a/tests/config_test.py b/tests/config_test.py index fff66d47..4ebc14cd 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -354,49 +354,6 @@ def test_load_minigraph_with_port_config(self, get_cmd_module, setup_single_broa port_config = [{"PORT": {"Ethernet0": {"admin_status": "up"}}}] self.check_port_config(db, config, port_config, "config interface startup Ethernet0") - def test_load_backend_acl(self, get_cmd_module, setup_single_broadcom_asic): - db = Db() - db.cfgdb.set_entry("DEVICE_METADATA", "localhost", {"storage_device": "true"}) - self.check_backend_acl(get_cmd_module, db, device_type='BackEndToRRouter', condition=True) - - def test_load_backend_acl_not_storage(self, get_cmd_module, setup_single_broadcom_asic): - db = Db() - self.check_backend_acl(get_cmd_module, db, device_type='BackEndToRRouter', condition=False) - - def test_load_backend_acl_storage_leaf(self, get_cmd_module, setup_single_broadcom_asic): - db = Db() - db.cfgdb.set_entry("DEVICE_METADATA", "localhost", {"storage_device": "true"}) - self.check_backend_acl(get_cmd_module, db, device_type='BackEndLeafRouter', condition=False) - - def test_load_backend_acl_storage_no_dataacl(self, get_cmd_module, setup_single_broadcom_asic): - db = Db() - db.cfgdb.set_entry("DEVICE_METADATA", "localhost", {"storage_device": "true"}) - db.cfgdb.set_entry("ACL_TABLE", "DATAACL", None) - self.check_backend_acl(get_cmd_module, db, device_type='BackEndToRRouter', condition=False) - - def check_backend_acl(self, get_cmd_module, db, device_type='BackEndToRRouter', condition=True): - def is_file_side_effect(filename): - return True if 'backend_acl' in filename else False - with mock.patch('os.path.isfile', mock.MagicMock(side_effect=is_file_side_effect)): - with mock.patch('config.main._get_device_type', mock.MagicMock(return_value=device_type)): - with mock.patch( - "utilities_common.cli.run_command", - mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command: - (config, show) = get_cmd_module - runner = CliRunner() - result = runner.invoke(config.config.commands["load_minigraph"], ["-y"], obj=db) - print(result.exit_code) - expected_output = ['Running command: acl-loader update incremental /etc/sonic/backend_acl.json', - 'Running command: /usr/local/bin/sonic-cfggen -d -t /usr/share/sonic/templates/backend_acl.j2,/etc/sonic/backend_acl.json' - ] - print(result.output) - assert result.exit_code == 0 - output = result.output.split('\n') - if condition: - assert set(expected_output).issubset(set(output)) - else: - assert not(set(expected_output).issubset(set(output))) - def check_port_config(self, db, config, port_config, expected_output): def read_json_file_side_effect(filename): return port_config From f27dea0cfdefbdcfc03d19136e4ae47ea72fd51f Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak <38952541+stepanblyschak@users.noreply.github.com> Date: Fri, 17 Mar 2023 09:10:47 +0200 Subject: [PATCH 099/312] [route_check] remove check-frr_patch mock (#2732) The test fails with python3.7 (works in 3.9) when stopping patch which hasn't been started. We can always mock check_output call and if FRR_ROUTES is not defined return empty dictionary by the mock. #### What I did Removed check_frr_patch mock to fix UT running on python3.7 #### How I did it Removed the mock #### How to verify it Run unit test in stretch env --- tests/route_check_test.py | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/tests/route_check_test.py b/tests/route_check_test.py index 4d93c74e..118e9eab 100644 --- a/tests/route_check_test.py +++ b/tests/route_check_test.py @@ -277,17 +277,12 @@ def test_route_check(self, mock_dbs, test_num): with patch('sys.argv', ct_data[ARGS].split()), \ patch('route_check.subprocess.check_output') as mock_check_output: - check_frr_patch = patch('route_check.check_frr_pending_routes', lambda: []) + routes = ct_data.get(FRR_ROUTES, {}) - if FRR_ROUTES in ct_data: - routes = ct_data[FRR_ROUTES] + def side_effect(*args, **kwargs): + return json.dumps(routes) - def side_effect(*args, **kwargs): - return json.dumps(routes) - - mock_check_output.side_effect = side_effect - else: - check_frr_patch.start() + mock_check_output.side_effect = side_effect ret, res = route_check.main() expect_ret = ct_data[RET] if RET in ct_data else 0 @@ -299,8 +294,6 @@ def side_effect(*args, **kwargs): assert ret == expect_ret assert res == expect_res - check_frr_patch.stop() - def test_timeout(self, mock_dbs, force_hang): # Test timeout ex_raised = False From 05fa7513355cf333818c480fade157bdff969811 Mon Sep 17 00:00:00 2001 From: abdosi <58047199+abdosi@users.noreply.github.com> Date: Fri, 17 Mar 2023 16:27:48 -0700 Subject: [PATCH 100/312] Fix the `show interface counters` throwing exception on device with no external interfaces (#2703) Fix the `show interface counters` throwing exception issue where device do not have any external ports and all are internal links (ethernet or fabric) which is possible in chassis --- scripts/portstat | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/scripts/portstat b/scripts/portstat index 09ad88b0..43746cc1 100755 --- a/scripts/portstat +++ b/scripts/portstat @@ -333,13 +333,13 @@ class Portstat(object): format_number_with_comma(data['tx_err']), format_number_with_comma(data['tx_drop']), format_number_with_comma(data['tx_ovr']))) - - if use_json: - print(table_as_json(table, header)) - else: - print(tabulate(table, header, tablefmt='simple', stralign='right')) - if multi_asic.is_multi_asic() or device_info.is_chassis(): - print("\nReminder: Please execute 'show interface counters -d all' to include internal links\n") + if table: + if use_json: + print(table_as_json(table, header)) + else: + print(tabulate(table, header, tablefmt='simple', stralign='right')) + if multi_asic.is_multi_asic() or device_info.is_chassis() and not use_json: + print("\nReminder: Please execute 'show interface counters -d all' to include internal links\n") def cnstat_intf_diff_print(self, cnstat_new_dict, cnstat_old_dict, intf_list): """ @@ -551,13 +551,13 @@ class Portstat(object): format_number_with_comma(cntr['tx_err']), format_number_with_comma(cntr['tx_drop']), format_number_with_comma(cntr['tx_ovr']))) - - if use_json: - print(table_as_json(table, header)) - else: - print(tabulate(table, header, tablefmt='simple', stralign='right')) - if multi_asic.is_multi_asic() or device_info.is_chassis(): - print("\nReminder: Please execute 'show interface counters -d all' to include internal links\n") + if table: + if use_json: + print(table_as_json(table, header)) + else: + print(tabulate(table, header, tablefmt='simple', stralign='right')) + if multi_asic.is_multi_asic() or device_info.is_chassis() and not use_json: + print("\nReminder: Please execute 'show interface counters -d all' to include internal links\n") def main(): parser = argparse.ArgumentParser(description='Display the ports state and counters', From 10f31ea6fb0876f913cfcfce8c95011e675a99f6 Mon Sep 17 00:00:00 2001 From: Mai Bui Date: Tue, 21 Mar 2023 00:25:39 -0400 Subject: [PATCH 101/312] Revert "Replace pickle by json (#2636)" (#2746) This reverts commit 54e26359fccf45d2e40800cf5598a725798634cd. Due to https://github.com/sonic-net/sonic-buildimage/issues/14089 Signed-off-by: Mai Bui --- scripts/dropstat | 14 +-- scripts/flow_counters_stat | 10 +- scripts/intfstat | 64 +++++----- scripts/pfcstat | 62 +++++----- scripts/pg-drop | 8 +- scripts/portstat | 239 +++++++++++++++++++------------------ scripts/queuestat | 34 +++--- scripts/tunnelstat | 40 +++---- 8 files changed, 236 insertions(+), 235 deletions(-) diff --git a/scripts/dropstat b/scripts/dropstat index 4e9f5bb4..f98fc291 100755 --- a/scripts/dropstat +++ b/scripts/dropstat @@ -11,7 +11,7 @@ # - Refactor calls to COUNTERS_DB to reduce redundancy # - Cache DB queries to reduce # of expensive queries -import json +import _pickle as pickle import argparse import os import socket @@ -117,10 +117,10 @@ class DropStat(object): """ try: - json.dump(self.get_counts_table(self.gather_counters(std_port_rx_counters + std_port_tx_counters, DEBUG_COUNTER_PORT_STAT_MAP), COUNTERS_PORT_NAME_MAP), - open(self.port_drop_stats_file, 'w+')) - json.dump(self.get_counts(self.gather_counters([], DEBUG_COUNTER_SWITCH_STAT_MAP), self.get_switch_id()), - open(self.switch_drop_stats_file, 'w+')) + pickle.dump(self.get_counts_table(self.gather_counters(std_port_rx_counters + std_port_tx_counters, DEBUG_COUNTER_PORT_STAT_MAP), COUNTERS_PORT_NAME_MAP), + open(self.port_drop_stats_file, 'wb+')) + pickle.dump(self.get_counts(self.gather_counters([], DEBUG_COUNTER_SWITCH_STAT_MAP), self.get_switch_id()), + open(self.switch_drop_stats_file, 'wb+')) except IOError as e: print(e) sys.exit(e.errno) @@ -135,7 +135,7 @@ class DropStat(object): # Grab the latest clear checkpoint, if it exists if os.path.isfile(self.port_drop_stats_file): - port_drop_ckpt = json.load(open(self.port_drop_stats_file, 'r')) + port_drop_ckpt = pickle.load(open(self.port_drop_stats_file, 'rb')) counters = self.gather_counters(std_port_rx_counters + std_port_tx_counters, DEBUG_COUNTER_PORT_STAT_MAP, group, counter_type) headers = std_port_description_header + self.gather_headers(counters, DEBUG_COUNTER_PORT_STAT_MAP) @@ -162,7 +162,7 @@ class DropStat(object): # Grab the latest clear checkpoint, if it exists if os.path.isfile(self.switch_drop_stats_file): - switch_drop_ckpt = json.load(open(self.switch_drop_stats_file, 'r')) + switch_drop_ckpt = pickle.load(open(self.switch_drop_stats_file, 'rb')) counters = self.gather_counters([], DEBUG_COUNTER_SWITCH_STAT_MAP, group, counter_type) headers = std_switch_description_header + self.gather_headers(counters, DEBUG_COUNTER_SWITCH_STAT_MAP) diff --git a/scripts/flow_counters_stat b/scripts/flow_counters_stat index 49b97e33..ac5ef94b 100755 --- a/scripts/flow_counters_stat +++ b/scripts/flow_counters_stat @@ -2,7 +2,7 @@ import argparse import os -import json +import _pickle as pickle import sys from natsort import natsorted @@ -185,8 +185,8 @@ class FlowCounterStats(object): if os.path.exists(self.data_file): os.remove(self.data_file) - with open(self.data_file, 'w') as f: - json.dump(data, f) + with open(self.data_file, 'wb') as f: + pickle.dump(data, f) except IOError as e: print('Failed to save statistic - {}'.format(repr(e))) @@ -200,8 +200,8 @@ class FlowCounterStats(object): return None try: - with open(self.data_file, 'r') as f: - data = json.load(f) + with open(self.data_file, 'rb') as f: + data = pickle.load(f) except IOError as e: print('Failed to load statistic - {}'.format(repr(e))) return None diff --git a/scripts/intfstat b/scripts/intfstat index b4a770ad..30cfbf08 100755 --- a/scripts/intfstat +++ b/scripts/intfstat @@ -6,7 +6,7 @@ # ##################################################################### -import json +import _pickle as pickle import argparse import datetime import sys @@ -28,7 +28,7 @@ from collections import namedtuple, OrderedDict from natsort import natsorted from tabulate import tabulate from utilities_common.netstat import ns_diff, table_as_json, STATUS_NA, format_brate, format_prate -from utilities_common.cli import json_serial, UserCache +from utilities_common.cli import UserCache from swsscommon.swsscommon import SonicV2Connector nstat_fields = ( @@ -96,7 +96,7 @@ class Intfstat(object): counter_data = self.db.get(self.db.COUNTERS_DB, full_table_id, counter_name) if counter_data: fields[pos] = str(counter_data) - cntr = NStats._make(fields)._asdict() + cntr = NStats._make(fields) return cntr def get_rates(table_id): @@ -153,14 +153,14 @@ class Intfstat(object): rates = ratestat_dict.get(key, RateStats._make([STATUS_NA] * len(rates_key_list))) table.append((key, - data['rx_p_ok'], + data.rx_p_ok, format_brate(rates.rx_bps), format_prate(rates.rx_pps), - data['rx_p_err'], - data['tx_p_ok'], + data.rx_p_err, + data.tx_p_ok, format_brate(rates.tx_bps), format_prate(rates.tx_pps), - data['tx_p_err'])) + data.tx_p_err)) if use_json: print(table_as_json(table, header)) @@ -186,24 +186,24 @@ class Intfstat(object): if old_cntr is not None: table.append((key, - ns_diff(cntr['rx_p_ok'], old_cntr['rx_p_ok']), + ns_diff(cntr.rx_p_ok, old_cntr.rx_p_ok), format_brate(rates.rx_bps), format_prate(rates.rx_pps), - ns_diff(cntr['rx_p_err'], old_cntr['rx_p_err']), - ns_diff(cntr['tx_p_ok'], old_cntr['tx_p_ok']), + ns_diff(cntr.rx_p_err, old_cntr.rx_p_err), + ns_diff(cntr.tx_p_ok, old_cntr.tx_p_ok), format_brate(rates.tx_bps), format_prate(rates.tx_pps), - ns_diff(cntr['tx_p_err'], old_cntr['tx_p_err']))) + ns_diff(cntr.tx_p_err, old_cntr.tx_p_err))) else: table.append((key, - cntr['rx_p_ok'], + cntr.rx_p_ok, format_brate(rates.rx_bps), format_prate(rates.rx_pps), - cntr['rx_p_err'], - cntr['tx_p_ok'], + cntr.rx_p_err, + cntr.tx_p_ok, format_brate(rates.tx_bps), format_prate(rates.tx_pps), - cntr['tx_p_err'])) + cntr.tx_p_err)) if use_json: print(table_as_json(table, header)) @@ -229,17 +229,17 @@ class Intfstat(object): if cnstat_old_dict and cnstat_old_dict.get(rif): old_cntr = cnstat_old_dict.get(rif) - body = body % (ns_diff(cntr['rx_p_ok'], old_cntr['rx_p_ok']), - ns_diff(cntr['rx_b_ok'], old_cntr['rx_b_ok']), - ns_diff(cntr['rx_p_err'], old_cntr['rx_p_err']), - ns_diff(cntr['rx_b_err'], old_cntr['rx_b_err']), - ns_diff(cntr['tx_p_ok'], old_cntr['tx_p_ok']), - ns_diff(cntr['tx_b_ok'], old_cntr['tx_b_ok']), - ns_diff(cntr['tx_p_err'], old_cntr['tx_p_err']), - ns_diff(cntr['tx_b_err'], old_cntr['tx_b_err'])) + body = body % (ns_diff(cntr.rx_p_ok, old_cntr.rx_p_ok), + ns_diff(cntr.rx_b_ok, old_cntr.rx_b_ok), + ns_diff(cntr.rx_p_err, old_cntr.rx_p_err), + ns_diff(cntr.rx_b_err, old_cntr.rx_b_err), + ns_diff(cntr.tx_p_ok, old_cntr.tx_p_ok), + ns_diff(cntr.tx_b_ok, old_cntr.tx_b_ok), + ns_diff(cntr.tx_p_err, old_cntr.tx_p_err), + ns_diff(cntr.tx_b_err, old_cntr.tx_b_err)) else: - body = body % (cntr['rx_p_ok'], cntr['rx_b_ok'], cntr['rx_p_err'],cntr['rx_b_err'], - cntr['tx_p_ok'], cntr['tx_b_ok'], cntr['tx_p_err'], cntr['tx_b_err']) + body = body % (cntr.rx_p_ok, cntr.rx_b_ok, cntr.rx_p_err,cntr.rx_b_err, + cntr.tx_p_ok, cntr.tx_b_ok, cntr.tx_p_err, cntr.tx_b_err) print(header) print(body) @@ -305,20 +305,20 @@ def main(): if tag_name is not None: if os.path.isfile(cnstat_fqn_general_file): try: - general_data = json.load(open(cnstat_fqn_general_file, 'r')) + general_data = pickle.load(open(cnstat_fqn_general_file, 'rb')) for key, val in cnstat_dict.items(): general_data[key] = val - json.dump(general_data, open(cnstat_fqn_general_file, 'w')) + pickle.dump(general_data, open(cnstat_fqn_general_file, 'wb')) except IOError as e: sys.exit(e.errno) # Add the information also to tag specific file if os.path.isfile(cnstat_fqn_file): - data = json.load(open(cnstat_fqn_file, 'r')) + data = pickle.load(open(cnstat_fqn_file, 'rb')) for key, val in cnstat_dict.items(): data[key] = val - json.dump(data, open(cnstat_fqn_file, 'w')) + pickle.dump(data, open(cnstat_fqn_file, 'wb')) else: - json.dump(cnstat_dict, open(cnstat_fqn_file, 'w'), default=json_serial) + pickle.dump(cnstat_dict, open(cnstat_fqn_file, 'wb')) except IOError as e: sys.exit(e.errno) else: @@ -330,9 +330,9 @@ def main(): try: cnstat_cached_dict = {} if os.path.isfile(cnstat_fqn_file): - cnstat_cached_dict = json.load(open(cnstat_fqn_file, 'r')) + cnstat_cached_dict = pickle.load(open(cnstat_fqn_file, 'rb')) else: - cnstat_cached_dict = json.load(open(cnstat_fqn_general_file, 'r')) + cnstat_cached_dict = pickle.load(open(cnstat_fqn_general_file, 'rb')) print("Last cached time was " + str(cnstat_cached_dict.get('time'))) if interface_name: diff --git a/scripts/pfcstat b/scripts/pfcstat index 094c6e93..fb7e6018 100755 --- a/scripts/pfcstat +++ b/scripts/pfcstat @@ -6,7 +6,7 @@ # ##################################################################### -import json +import _pickle as pickle import argparse import datetime import os.path @@ -37,7 +37,7 @@ except KeyError: from utilities_common.netstat import ns_diff, STATUS_NA, format_number_with_comma from utilities_common import multi_asic as multi_asic_util from utilities_common import constants -from utilities_common.cli import json_serial, UserCache +from utilities_common.cli import UserCache PStats = namedtuple("PStats", "pfc0, pfc1, pfc2, pfc3, pfc4, pfc5, pfc6, pfc7") @@ -101,7 +101,7 @@ class Pfcstat(object): fields[pos] = STATUS_NA else: fields[pos] = str(int(counter_data)) - cntr = PStats._make(fields)._asdict() + cntr = PStats._make(fields) return cntr # Get the info from database @@ -144,14 +144,14 @@ class Pfcstat(object): if key == 'time': continue table.append((key, - format_number_with_comma(data['pfc0']), - format_number_with_comma(data['pfc1']), - format_number_with_comma(data['pfc2']), - format_number_with_comma(data['pfc3']), - format_number_with_comma(data['pfc4']), - format_number_with_comma(data['pfc5']), - format_number_with_comma(data['pfc6']), - format_number_with_comma(data['pfc7']))) + format_number_with_comma(data.pfc0), + format_number_with_comma(data.pfc1), + format_number_with_comma(data.pfc2), + format_number_with_comma(data.pfc3), + format_number_with_comma(data.pfc4), + format_number_with_comma(data.pfc5), + format_number_with_comma(data.pfc6), + format_number_with_comma(data.pfc7))) if rx: print(tabulate(table, header_Rx, tablefmt='simple', stralign='right')) @@ -173,24 +173,24 @@ class Pfcstat(object): if old_cntr is not None: table.append((key, - ns_diff(cntr['pfc0'], old_cntr['pfc0']), - ns_diff(cntr['pfc1'], old_cntr['pfc1']), - ns_diff(cntr['pfc2'], old_cntr['pfc2']), - ns_diff(cntr['pfc3'], old_cntr['pfc3']), - ns_diff(cntr['pfc4'], old_cntr['pfc4']), - ns_diff(cntr['pfc5'], old_cntr['pfc5']), - ns_diff(cntr['pfc6'], old_cntr['pfc6']), - ns_diff(cntr['pfc7'], old_cntr['pfc7']))) + ns_diff(cntr.pfc0, old_cntr.pfc0), + ns_diff(cntr.pfc1, old_cntr.pfc1), + ns_diff(cntr.pfc2, old_cntr.pfc2), + ns_diff(cntr.pfc3, old_cntr.pfc3), + ns_diff(cntr.pfc4, old_cntr.pfc4), + ns_diff(cntr.pfc5, old_cntr.pfc5), + ns_diff(cntr.pfc6, old_cntr.pfc6), + ns_diff(cntr.pfc7, old_cntr.pfc7))) else: table.append((key, - format_number_with_comma(cntr['pfc0']), - format_number_with_comma(cntr['pfc1']), - format_number_with_comma(cntr['pfc2']), - format_number_with_comma(cntr['pfc3']), - format_number_with_comma(cntr['pfc4']), - format_number_with_comma(cntr['pfc5']), - format_number_with_comma(cntr['pfc6']), - format_number_with_comma(cntr['pfc7']))) + format_number_with_comma(cntr.pfc0), + format_number_with_comma(cntr.pfc1), + format_number_with_comma(cntr.pfc2), + format_number_with_comma(cntr.pfc3), + format_number_with_comma(cntr.pfc4), + format_number_with_comma(cntr.pfc5), + format_number_with_comma(cntr.pfc6), + format_number_with_comma(cntr.pfc7))) if rx: print(tabulate(table, header_Rx, tablefmt='simple', stralign='right')) @@ -256,8 +256,8 @@ Examples: if save_fresh_stats: try: - json.dump(cnstat_dict_rx, open(cnstat_fqn_file_rx, 'w'), default=json_serial) - json.dump(cnstat_dict_tx, open(cnstat_fqn_file_tx, 'w'), default=json_serial) + pickle.dump(cnstat_dict_rx, open(cnstat_fqn_file_rx, 'wb')) + pickle.dump(cnstat_dict_tx, open(cnstat_fqn_file_tx, 'wb')) except IOError as e: print(e.errno, e) sys.exit(e.errno) @@ -271,7 +271,7 @@ Examples: """ if os.path.isfile(cnstat_fqn_file_rx): try: - cnstat_cached_dict = json.load(open(cnstat_fqn_file_rx, 'r')) + cnstat_cached_dict = pickle.load(open(cnstat_fqn_file_rx, 'rb')) print("Last cached time was " + str(cnstat_cached_dict.get('time'))) pfcstat.cnstat_diff_print(cnstat_dict_rx, cnstat_cached_dict, True) except IOError as e: @@ -286,7 +286,7 @@ Examples: """ if os.path.isfile(cnstat_fqn_file_tx): try: - cnstat_cached_dict = json.load(open(cnstat_fqn_file_tx, 'r')) + cnstat_cached_dict = pickle.load(open(cnstat_fqn_file_tx, 'rb')) print("Last cached time was " + str(cnstat_cached_dict.get('time'))) pfcstat.cnstat_diff_print(cnstat_dict_tx, cnstat_cached_dict, False) except IOError as e: diff --git a/scripts/pg-drop b/scripts/pg-drop index 77415930..40b4e863 100755 --- a/scripts/pg-drop +++ b/scripts/pg-drop @@ -5,7 +5,7 @@ # pg-drop is a tool for show/clear ingress pg dropped packet stats. # ##################################################################### -import json +import _pickle as pickle import argparse import os import sys @@ -144,7 +144,7 @@ class PgDropStat(object): port_drop_ckpt = {} # Grab the latest clear checkpoint, if it exists if os.path.isfile(self.port_drop_stats_file): - port_drop_ckpt = json.load(open(self.port_drop_stats_file, 'r')) + port_drop_ckpt = pickle.load(open(self.port_drop_stats_file, 'rb')) # Header list contains the port name followed by the PGs. Fields is used to populate the pg values fields = ["0"]* (len(self.header_list) - 1) @@ -216,10 +216,10 @@ class PgDropStat(object): counter_pg_drop_array = [ "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS"] try: - json.dump(self.get_counts_table( + pickle.dump(self.get_counts_table( counter_pg_drop_array, COUNTERS_PG_NAME_MAP), - open(self.port_drop_stats_file, 'w+')) + open(self.port_drop_stats_file, 'wb+')) except IOError as e: print(e) sys.exit(e.errno) diff --git a/scripts/portstat b/scripts/portstat index 43746cc1..399733f6 100755 --- a/scripts/portstat +++ b/scripts/portstat @@ -6,7 +6,7 @@ # ##################################################################### -import json +import _pickle as pickle import argparse import datetime import os.path @@ -40,7 +40,7 @@ from utilities_common.intf_filter import parse_interface_in_filter import utilities_common.multi_asic as multi_asic_util from utilities_common.netstat import ns_diff, table_as_json, format_brate, format_prate, format_util, format_number_with_comma -from utilities_common.cli import json_serial, UserCache +from utilities_common.cli import UserCache """ The order and count of statistics mentioned below needs to be in sync with the values in portstat script @@ -181,7 +181,7 @@ class Portstat(object): elif fields[pos] != STATUS_NA: fields[pos] = str(int(fields[pos]) + int(fvs[counter_name])) - cntr = NStats._make(fields)._asdict() + cntr = NStats._make(fields) return cntr def get_rates(table_id): @@ -278,61 +278,62 @@ class Portstat(object): if print_all: header = header_all table.append((key, self.get_port_state(key), - format_number_with_comma(data['rx_ok']), + format_number_with_comma(data.rx_ok), format_brate(rates.rx_bps), format_prate(rates.rx_pps), format_util(rates.rx_bps, port_speed), - format_number_with_comma(data['rx_err']), - format_number_with_comma(data['rx_drop']), - format_number_with_comma(data['rx_ovr']), - format_number_with_comma(data['tx_ok']), + format_number_with_comma(data.rx_err), + format_number_with_comma(data.rx_drop), + format_number_with_comma(data.rx_ovr), + format_number_with_comma(data.tx_ok), format_brate(rates.tx_bps), format_prate(rates.tx_pps), format_util(rates.tx_bps, port_speed), - format_number_with_comma(data['tx_err']), - format_number_with_comma(data['tx_drop']), - format_number_with_comma(data['tx_ovr']))) + format_number_with_comma(data.tx_err), + format_number_with_comma(data.tx_drop), + format_number_with_comma(data.tx_ovr))) elif errors_only: header = header_errors_only table.append((key, self.get_port_state(key), - format_number_with_comma(data['rx_err']), - format_number_with_comma(data['rx_drop']), - format_number_with_comma(data['rx_ovr']), - format_number_with_comma(data['tx_err']), - format_number_with_comma(data['tx_drop']), - format_number_with_comma(data['tx_ovr']))) + format_number_with_comma(data.rx_err), + format_number_with_comma(data.rx_drop), + format_number_with_comma(data.rx_ovr), + format_number_with_comma(data.tx_err), + format_number_with_comma(data.tx_drop), + format_number_with_comma(data.tx_ovr))) elif fec_stats_only: header = header_fec_only table.append((key, self.get_port_state(key), - format_number_with_comma(data['fec_corr']), - format_number_with_comma(data['fec_uncorr']), - format_number_with_comma(data['fec_symbol_err']))) + format_number_with_comma(data.fec_corr), + format_number_with_comma(data.fec_uncorr), + format_number_with_comma(data.fec_symbol_err))) elif rates_only: header = header_rates_only table.append((key, self.get_port_state(key), - format_number_with_comma(data['rx_ok']), + format_number_with_comma(data.rx_ok), format_brate(rates.rx_bps), format_prate(rates.rx_pps), format_util(rates.rx_bps, port_speed), - format_number_with_comma(data['tx_ok']), + format_number_with_comma(data.tx_ok), format_brate(rates.tx_bps), format_prate(rates.tx_pps), format_util(rates.tx_bps, port_speed))) else: header = header_std table.append((key, self.get_port_state(key), - format_number_with_comma(data['rx_ok']), + format_number_with_comma(data.rx_ok), format_brate(rates.rx_bps), format_util(rates.rx_bps, port_speed), - format_number_with_comma(data['rx_err']), - format_number_with_comma(data['rx_drop']), - format_number_with_comma(data['rx_ovr']), - format_number_with_comma(data['tx_ok']), + format_number_with_comma(data.rx_err), + format_number_with_comma(data.rx_drop), + format_number_with_comma(data.rx_ovr), + format_number_with_comma(data.tx_ok), format_brate(rates.tx_bps), format_util(rates.tx_bps, port_speed), - format_number_with_comma(data['tx_err']), - format_number_with_comma(data['tx_drop']), - format_number_with_comma(data['tx_ovr']))) + + format_number_with_comma(data.tx_err), + format_number_with_comma(data.tx_drop), + format_number_with_comma(data.tx_ovr))) if table: if use_json: print(table_as_json(table, header)) @@ -353,51 +354,51 @@ class Portstat(object): if key in cnstat_old_dict: old_cntr = cnstat_old_dict.get(key) else: - old_cntr = NStats._make([0] * BUCKET_NUM)._asdict() + old_cntr = NStats._make([0] * BUCKET_NUM) if intf_list and key not in intf_list: continue - print("Packets Received 64 Octets..................... {}".format(ns_diff(cntr['rx_64'], old_cntr['rx_64']))) - print("Packets Received 65-127 Octets................. {}".format(ns_diff(cntr['rx_65_127'], old_cntr['rx_65_127']))) - print("Packets Received 128-255 Octets................ {}".format(ns_diff(cntr['rx_128_255'], old_cntr['rx_128_255']))) - print("Packets Received 256-511 Octets................ {}".format(ns_diff(cntr['rx_256_511'], old_cntr['rx_256_511']))) - print("Packets Received 512-1023 Octets............... {}".format(ns_diff(cntr['rx_512_1023'], old_cntr['rx_512_1023']))) - print("Packets Received 1024-1518 Octets.............. {}".format(ns_diff(cntr['rx_1024_1518'], old_cntr['rx_1024_1518']))) - print("Packets Received 1519-2047 Octets.............. {}".format(ns_diff(cntr['rx_1519_2047'], old_cntr['rx_1519_2047']))) - print("Packets Received 2048-4095 Octets.............. {}".format(ns_diff(cntr['rx_2048_4095'], old_cntr['rx_2048_4095']))) - print("Packets Received 4096-9216 Octets.............. {}".format(ns_diff(cntr['rx_4096_9216'], old_cntr['rx_4096_9216']))) - print("Packets Received 9217-16383 Octets............. {}".format(ns_diff(cntr['rx_9217_16383'], old_cntr['rx_9217_16383']))) + print("Packets Received 64 Octets..................... {}".format(ns_diff(cntr.rx_64, old_cntr.rx_64))) + print("Packets Received 65-127 Octets................. {}".format(ns_diff(cntr.rx_65_127, old_cntr.rx_65_127))) + print("Packets Received 128-255 Octets................ {}".format(ns_diff(cntr.rx_128_255, old_cntr.rx_128_255))) + print("Packets Received 256-511 Octets................ {}".format(ns_diff(cntr.rx_256_511, old_cntr.rx_256_511))) + print("Packets Received 512-1023 Octets............... {}".format(ns_diff(cntr.rx_512_1023, old_cntr.rx_512_1023))) + print("Packets Received 1024-1518 Octets.............. {}".format(ns_diff(cntr.rx_1024_1518, old_cntr.rx_1024_1518))) + print("Packets Received 1519-2047 Octets.............. {}".format(ns_diff(cntr.rx_1519_2047, old_cntr.rx_1519_2047))) + print("Packets Received 2048-4095 Octets.............. {}".format(ns_diff(cntr.rx_2048_4095, old_cntr.rx_2048_4095))) + print("Packets Received 4096-9216 Octets.............. {}".format(ns_diff(cntr.rx_4096_9216, old_cntr.rx_4096_9216))) + print("Packets Received 9217-16383 Octets............. {}".format(ns_diff(cntr.rx_9217_16383, old_cntr.rx_9217_16383))) print("") - print("Total Packets Received Without Errors.......... {}".format(ns_diff(cntr['rx_all'], old_cntr['rx_all']))) - print("Unicast Packets Received....................... {}".format(ns_diff(cntr['rx_uca'], old_cntr['rx_uca']))) - print("Multicast Packets Received..................... {}".format(ns_diff(cntr['rx_mca'], old_cntr['rx_mca']))) - print("Broadcast Packets Received..................... {}".format(ns_diff(cntr['rx_bca'], old_cntr['rx_bca']))) + print("Total Packets Received Without Errors.......... {}".format(ns_diff(cntr.rx_all, old_cntr.rx_all))) + print("Unicast Packets Received....................... {}".format(ns_diff(cntr.rx_uca, old_cntr.rx_uca))) + print("Multicast Packets Received..................... {}".format(ns_diff(cntr.rx_mca, old_cntr.rx_mca))) + print("Broadcast Packets Received..................... {}".format(ns_diff(cntr.rx_bca, old_cntr.rx_bca))) print("") - print("Jabbers Received............................... {}".format(ns_diff(cntr['rx_jbr'], old_cntr['rx_jbr']))) - print("Fragments Received............................. {}".format(ns_diff(cntr['rx_frag'], old_cntr['rx_frag']))) - print("Undersize Received............................. {}".format(ns_diff(cntr['rx_usize'], old_cntr['rx_usize']))) - print("Overruns Received.............................. {}".format(ns_diff(cntr['rx_ovrrun'], old_cntr['rx_ovrrun']))) + print("Jabbers Received............................... {}".format(ns_diff(cntr.rx_jbr, old_cntr.rx_jbr))) + print("Fragments Received............................. {}".format(ns_diff(cntr.rx_frag, old_cntr.rx_frag))) + print("Undersize Received............................. {}".format(ns_diff(cntr.rx_usize, old_cntr.rx_usize))) + print("Overruns Received.............................. {}".format(ns_diff(cntr.rx_ovrrun, old_cntr.rx_ovrrun))) print("") - print("Packets Transmitted 64 Octets.................. {}".format(ns_diff(cntr['tx_64'], old_cntr['tx_64']))) - print("Packets Transmitted 65-127 Octets.............. {}".format(ns_diff(cntr['tx_65_127'], old_cntr['tx_65_127']))) - print("Packets Transmitted 128-255 Octets............. {}".format(ns_diff(cntr['tx_128_255'], old_cntr['tx_128_255']))) - print("Packets Transmitted 256-511 Octets............. {}".format(ns_diff(cntr['tx_256_511'], old_cntr['tx_256_511']))) - print("Packets Transmitted 512-1023 Octets............ {}".format(ns_diff(cntr['tx_512_1023'], old_cntr['tx_512_1023']))) - print("Packets Transmitted 1024-1518 Octets........... {}".format(ns_diff(cntr['tx_1024_1518'], old_cntr['tx_1024_1518']))) - print("Packets Transmitted 1519-2047 Octets........... {}".format(ns_diff(cntr['tx_1519_2047'], old_cntr['tx_1519_2047']))) - print("Packets Transmitted 2048-4095 Octets........... {}".format(ns_diff(cntr['tx_2048_4095'], old_cntr['tx_2048_4095']))) - print("Packets Transmitted 4096-9216 Octets........... {}".format(ns_diff(cntr['tx_4096_9216'], old_cntr['tx_4096_9216']))) - print("Packets Transmitted 9217-16383 Octets.......... {}".format(ns_diff(cntr['tx_9217_16383'], old_cntr['tx_9217_16383']))) + print("Packets Transmitted 64 Octets.................. {}".format(ns_diff(cntr.tx_64, old_cntr.tx_64))) + print("Packets Transmitted 65-127 Octets.............. {}".format(ns_diff(cntr.tx_65_127, old_cntr.tx_65_127))) + print("Packets Transmitted 128-255 Octets............. {}".format(ns_diff(cntr.tx_128_255, old_cntr.tx_128_255))) + print("Packets Transmitted 256-511 Octets............. {}".format(ns_diff(cntr.tx_256_511, old_cntr.tx_256_511))) + print("Packets Transmitted 512-1023 Octets............ {}".format(ns_diff(cntr.tx_512_1023, old_cntr.tx_512_1023))) + print("Packets Transmitted 1024-1518 Octets........... {}".format(ns_diff(cntr.tx_1024_1518, old_cntr.tx_1024_1518))) + print("Packets Transmitted 1519-2047 Octets........... {}".format(ns_diff(cntr.tx_1519_2047, old_cntr.tx_1519_2047))) + print("Packets Transmitted 2048-4095 Octets........... {}".format(ns_diff(cntr.tx_2048_4095, old_cntr.tx_2048_4095))) + print("Packets Transmitted 4096-9216 Octets........... {}".format(ns_diff(cntr.tx_4096_9216, old_cntr.tx_4096_9216))) + print("Packets Transmitted 9217-16383 Octets.......... {}".format(ns_diff(cntr.tx_9217_16383, old_cntr.tx_9217_16383))) print("") - print("Total Packets Transmitted Successfully......... {}".format(ns_diff(cntr['tx_all'], old_cntr['tx_all']))) - print("Unicast Packets Transmitted.................... {}".format(ns_diff(cntr['tx_uca'], old_cntr['tx_uca']))) - print("Multicast Packets Transmitted.................. {}".format(ns_diff(cntr['tx_mca'], old_cntr['tx_mca']))) - print("Broadcast Packets Transmitted.................. {}".format(ns_diff(cntr['tx_bca'], old_cntr['tx_bca']))) + print("Total Packets Transmitted Successfully......... {}".format(ns_diff(cntr.tx_all, old_cntr.tx_all))) + print("Unicast Packets Transmitted.................... {}".format(ns_diff(cntr.tx_uca, old_cntr.tx_uca))) + print("Multicast Packets Transmitted.................. {}".format(ns_diff(cntr.tx_mca, old_cntr.tx_mca))) + print("Broadcast Packets Transmitted.................. {}".format(ns_diff(cntr.tx_bca, old_cntr.tx_bca))) print("Time Since Counters Last Cleared............... " + str(cnstat_old_dict.get('time'))) @@ -434,88 +435,88 @@ class Portstat(object): header = header_all if old_cntr is not None: table.append((key, self.get_port_state(key), - ns_diff(cntr['rx_ok'], old_cntr['rx_ok']), + ns_diff(cntr.rx_ok, old_cntr.rx_ok), format_brate(rates.rx_bps), format_prate(rates.rx_pps), format_util(rates.rx_bps, port_speed), - ns_diff(cntr['rx_err'], old_cntr['rx_err']), - ns_diff(cntr['rx_drop'], old_cntr['rx_drop']), - ns_diff(cntr['rx_ovr'], old_cntr['rx_ovr']), - ns_diff(cntr['tx_ok'], old_cntr['tx_ok']), + ns_diff(cntr.rx_err, old_cntr.rx_err), + ns_diff(cntr.rx_drop, old_cntr.rx_drop), + ns_diff(cntr.rx_ovr, old_cntr.rx_ovr), + ns_diff(cntr.tx_ok, old_cntr.tx_ok), format_brate(rates.tx_bps), format_prate(rates.tx_pps), format_util(rates.tx_bps, port_speed), - ns_diff(cntr['tx_err'], old_cntr['tx_err']), - ns_diff(cntr['tx_drop'], old_cntr['tx_drop']), - ns_diff(cntr['tx_ovr'], old_cntr['tx_ovr']))) + ns_diff(cntr.tx_err, old_cntr.tx_err), + ns_diff(cntr.tx_drop, old_cntr.tx_drop), + ns_diff(cntr.tx_ovr, old_cntr.tx_ovr))) else: table.append((key, self.get_port_state(key), - format_number_with_comma(cntr['rx_ok']), + format_number_with_comma(cntr.rx_ok), format_brate(rates.rx_bps), format_prate(rates.rx_pps), format_util(rates.rx_bps, port_speed), - format_number_with_comma(cntr['rx_err']), - format_number_with_comma(cntr['rx_drop']), - format_number_with_comma(cntr['rx_ovr']), - format_number_with_comma(cntr['tx_ok']), + format_number_with_comma(cntr.rx_err), + format_number_with_comma(cntr.rx_drop), + format_number_with_comma(cntr.rx_ovr), + format_number_with_comma(cntr.tx_ok), format_brate(rates.tx_bps), format_prate(rates.tx_pps), format_util(rates.tx_bps, port_speed), - format_number_with_comma(cntr['tx_err']), - format_number_with_comma(cntr['tx_drop']), - format_number_with_comma(cntr['tx_ovr']))) + format_number_with_comma(cntr.tx_err), + format_number_with_comma(cntr.tx_drop), + format_number_with_comma(cntr.tx_ovr))) elif errors_only: header = header_errors_only if old_cntr is not None: table.append((key, self.get_port_state(key), - ns_diff(cntr['rx_err'], old_cntr['rx_err']), - ns_diff(cntr['rx_drop'], old_cntr['rx_drop']), - ns_diff(cntr['rx_ovr'], old_cntr['rx_ovr']), - ns_diff(cntr['tx_err'], old_cntr['tx_err']), - ns_diff(cntr['tx_drop'], old_cntr['tx_drop']), - ns_diff(cntr['tx_ovr'], old_cntr['tx_ovr']))) + ns_diff(cntr.rx_err, old_cntr.rx_err), + ns_diff(cntr.rx_drop, old_cntr.rx_drop), + ns_diff(cntr.rx_ovr, old_cntr.rx_ovr), + ns_diff(cntr.tx_err, old_cntr.tx_err), + ns_diff(cntr.tx_drop, old_cntr.tx_drop), + ns_diff(cntr.tx_ovr, old_cntr.tx_ovr))) else: table.append((key, self.get_port_state(key), - format_number_with_comma(cntr['rx_err']), - format_number_with_comma(cntr['rx_drop']), - format_number_with_comma(cntr['rx_ovr']), - format_number_with_comma(cntr['tx_err']), - format_number_with_comma(cntr['tx_drop']), - format_number_with_comma(cntr['tx_ovr']))) + format_number_with_comma(cntr.rx_err), + format_number_with_comma(cntr.rx_drop), + format_number_with_comma(cntr.rx_ovr), + format_number_with_comma(cntr.tx_err), + format_number_with_comma(cntr.tx_drop), + format_number_with_comma(cntr.tx_ovr))) elif fec_stats_only: header = header_fec_only if old_cntr is not None: table.append((key, self.get_port_state(key), - ns_diff(cntr['fec_corr'], old_cntr['fec_corr']), - ns_diff(cntr['fec_uncorr'], old_cntr['fec_uncorr']), - ns_diff(cntr['fec_symbol_err'], old_cntr['fec_symbol_err']))) + ns_diff(cntr.fec_corr, old_cntr.fec_corr), + ns_diff(cntr.fec_uncorr, old_cntr.fec_uncorr), + ns_diff(cntr.fec_symbol_err, old_cntr.fec_symbol_err))) else: table.append((key, self.get_port_state(key), - format_number_with_comma(cntr['fec_corr']), - format_number_with_comma(cntr['fec_uncorr']), - format_number_with_comma(cntr['fec_symbol_err']))) + format_number_with_comma(cntr.fec_corr), + format_number_with_comma(cntr.fec_uncorr), + format_number_with_comma(cntr.fec_symbol_err))) elif rates_only: header = header_rates_only if old_cntr is not None: table.append((key, self.get_port_state(key), - ns_diff(cntr['rx_ok'], old_cntr['rx_ok']), + ns_diff(cntr.rx_ok, old_cntr.rx_ok), format_brate(rates.rx_bps), format_prate(rates.rx_pps), format_util(rates.rx_bps, port_speed), - ns_diff(cntr['tx_ok'], old_cntr['tx_ok']), + ns_diff(cntr.tx_ok, old_cntr.tx_ok), format_brate(rates.tx_bps), format_prate(rates.tx_pps), format_util(rates.tx_bps, port_speed))) else: table.append((key, self.get_port_state(key), - format_number_with_comma(cntr['rx_ok']), + format_number_with_comma(cntr.rx_ok), format_brate(rates.rx_bps), format_prate(rates.rx_pps), format_util(rates.rx_bps, port_speed), - format_number_with_comma(cntr['tx_ok']), + format_number_with_comma(cntr.tx_ok), format_brate(rates.tx_bps), format_prate(rates.tx_pps), format_util(rates.tx_bps, port_speed))) @@ -524,33 +525,33 @@ class Portstat(object): if old_cntr is not None: table.append((key, self.get_port_state(key), - ns_diff(cntr['rx_ok'], old_cntr['rx_ok']), + ns_diff(cntr.rx_ok, old_cntr.rx_ok), format_brate(rates.rx_bps), format_util(rates.rx_bps, port_speed), - ns_diff(cntr['rx_err'], old_cntr['rx_err']), - ns_diff(cntr['rx_drop'], old_cntr['rx_drop']), - ns_diff(cntr['rx_ovr'], old_cntr['rx_ovr']), - ns_diff(cntr['tx_ok'], old_cntr['tx_ok']), + ns_diff(cntr.rx_err, old_cntr.rx_err), + ns_diff(cntr.rx_drop, old_cntr.rx_drop), + ns_diff(cntr.rx_ovr, old_cntr.rx_ovr), + ns_diff(cntr.tx_ok, old_cntr.tx_ok), format_brate(rates.tx_bps), format_util(rates.tx_bps, port_speed), - ns_diff(cntr['tx_err'], old_cntr['tx_err']), - ns_diff(cntr['tx_drop'], old_cntr['tx_drop']), - ns_diff(cntr['tx_ovr'], old_cntr['tx_ovr']))) + ns_diff(cntr.tx_err, old_cntr.tx_err), + ns_diff(cntr.tx_drop, old_cntr.tx_drop), + ns_diff(cntr.tx_ovr, old_cntr.tx_ovr))) else: table.append((key, self.get_port_state(key), - format_number_with_comma(cntr['rx_ok']), + format_number_with_comma(cntr.rx_ok), format_brate(rates.rx_bps), format_util(rates.rx_bps, port_speed), - format_number_with_comma(cntr['rx_err']), - format_number_with_comma(cntr['rx_drop']), - format_number_with_comma(cntr['rx_ovr']), - format_number_with_comma(cntr['tx_ok']), + format_number_with_comma(cntr.rx_err), + format_number_with_comma(cntr.rx_drop), + format_number_with_comma(cntr.rx_ovr), + format_number_with_comma(cntr.tx_ok), format_brate(rates.tx_bps), format_util(rates.tx_bps, port_speed), - format_number_with_comma(cntr['tx_err']), - format_number_with_comma(cntr['tx_drop']), - format_number_with_comma(cntr['tx_ovr']))) + format_number_with_comma(cntr.tx_err), + format_number_with_comma(cntr.tx_drop), + format_number_with_comma(cntr.tx_ovr))) if table: if use_json: print(table_as_json(table, header)) @@ -641,7 +642,7 @@ Examples: if save_fresh_stats: try: - json.dump(cnstat_dict, open(cnstat_fqn_file, 'w'), default=json_serial) + pickle.dump(cnstat_dict, open(cnstat_fqn_file, 'wb')) except IOError as e: sys.exit(e.errno) else: @@ -652,7 +653,7 @@ Examples: cnstat_cached_dict = OrderedDict() if os.path.isfile(cnstat_fqn_file): try: - cnstat_cached_dict = json.load(open(cnstat_fqn_file, 'r')) + cnstat_cached_dict = pickle.load(open(cnstat_fqn_file, 'rb')) if not detail: print("Last cached time was " + str(cnstat_cached_dict.get('time'))) portstat.cnstat_diff_print(cnstat_dict, cnstat_cached_dict, ratestat_dict, intf_list, use_json, print_all, errors_only, fec_stats_only, rates_only, detail) diff --git a/scripts/queuestat b/scripts/queuestat index d82e7e4a..96a24b51 100755 --- a/scripts/queuestat +++ b/scripts/queuestat @@ -6,7 +6,7 @@ # ##################################################################### -import json +import _pickle as pickle import argparse import datetime import os.path @@ -33,7 +33,7 @@ except KeyError: pass from swsscommon.swsscommon import SonicV2Connector -from utilities_common.cli import json_serial, UserCache +from utilities_common.cli import UserCache from utilities_common import constants import utilities_common.multi_asic as multi_asic_util @@ -186,7 +186,7 @@ class Queuestat(object): fields[pos] = STATUS_NA elif fields[pos] != STATUS_NA: fields[pos] = str(int(counter_data)) - cntr = QueueStats._make(fields)._asdict() + cntr = QueueStats._make(fields) return cntr # Build a dictionary of the stats @@ -211,9 +211,9 @@ 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'])) + 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)) @@ -241,15 +241,15 @@ 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']))) + 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'])) + 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)) @@ -273,7 +273,7 @@ class Queuestat(object): cnstat_fqn_file_name = cnstat_fqn_file + port if os.path.isfile(cnstat_fqn_file_name): try: - cnstat_cached_dict = json.load(open(cnstat_fqn_file_name, 'r')) + cnstat_cached_dict = pickle.load(open(cnstat_fqn_file_name, 'rb')) if json_opt: json_output[port].update({"cached_time":cnstat_cached_dict.get('time')}) json_output.update(self.cnstat_diff_print(port, cnstat_dict, cnstat_cached_dict, json_opt)) @@ -307,7 +307,7 @@ class Queuestat(object): json_output[port] = {} if os.path.isfile(cnstat_fqn_file_name): try: - cnstat_cached_dict = json.load(open(cnstat_fqn_file_name, 'r')) + cnstat_cached_dict = pickle.load(open(cnstat_fqn_file_name, 'rb')) if json_opt: json_output[port].update({"cached_time":cnstat_cached_dict.get('time')}) json_output.update(self.cnstat_diff_print(port, cnstat_dict, cnstat_cached_dict, json_opt)) @@ -330,7 +330,7 @@ class Queuestat(object): for port in natsorted(self.counter_port_name_map): cnstat_dict = self.get_cnstat(self.port_queues_map[port]) try: - json.dump(cnstat_dict, open(cnstat_fqn_file + port, 'w'), default=json_serial) + pickle.dump(cnstat_dict, open(cnstat_fqn_file + port, 'wb')) except IOError as e: print(e.errno, e) sys.exit(e.errno) diff --git a/scripts/tunnelstat b/scripts/tunnelstat index 3d7423e8..8b045ec6 100755 --- a/scripts/tunnelstat +++ b/scripts/tunnelstat @@ -6,7 +6,7 @@ # ##################################################################### -import json +import _pickle as pickle import argparse import datetime import sys @@ -29,7 +29,7 @@ from collections import namedtuple, OrderedDict from natsort import natsorted from tabulate import tabulate from utilities_common.netstat import ns_diff, table_as_json, STATUS_NA, format_prate -from utilities_common.cli import json_serial, UserCache +from utilities_common.cli import UserCache from swsscommon.swsscommon import SonicV2Connector @@ -80,7 +80,7 @@ class Tunnelstat(object): counter_data = self.db.get(self.db.COUNTERS_DB, full_table_id, counter_name) if counter_data: fields[pos] = str(counter_data) - cntr = NStats._make(fields)._asdict() + cntr = NStats._make(fields) return cntr def get_rates(table_id): @@ -149,8 +149,8 @@ class Tunnelstat(object): continue rates = ratestat_dict.get(key, RateStats._make([STATUS_NA] * len(rates_key_list))) - table.append((key, data['rx_p_ok'], data['rx_b_ok'], format_prate(rates.rx_pps), - data['tx_p_ok'], data['tx_b_ok'], format_prate(rates.tx_pps))) + table.append((key, data.rx_p_ok, data.rx_b_ok, format_prate(rates.rx_pps), + data.tx_p_ok, data.tx_b_ok, format_prate(rates.tx_pps))) if use_json: print(table_as_json(table, header)) @@ -175,19 +175,19 @@ class Tunnelstat(object): rates = ratestat_dict.get(key, RateStats._make([STATUS_NA] * len(rates_key_list))) if old_cntr is not None: table.append((key, - ns_diff(cntr['rx_p_ok'], old_cntr['rx_p_ok']), - ns_diff(cntr['rx_b_ok'], old_cntr['rx_b_ok']), + ns_diff(cntr.rx_p_ok, old_cntr.rx_p_ok), + ns_diff(cntr.rx_b_ok, old_cntr.rx_b_ok), format_prate(rates.rx_pps), - ns_diff(cntr['tx_p_ok'], old_cntr['tx_p_ok']), - ns_diff(cntr['tx_b_ok'], old_cntr['tx_b_ok']), + ns_diff(cntr.tx_p_ok, old_cntr.tx_p_ok), + ns_diff(cntr.tx_b_ok, old_cntr.tx_b_ok), format_prate(rates.tx_pps))) else: table.append((key, - cntr['rx_p_ok'], - cntr['rx_b_ok'], + cntr.rx_p_ok, + cntr.rx_b_ok, format_prate(rates.rx_pps), - cntr['tx_p_ok'], - cntr['tx_b_ok'], + cntr.tx_p_ok, + cntr.tx_b_ok, format_prate(rates.tx_pps))) if use_json: print(table_as_json(table, header)) @@ -210,12 +210,12 @@ class Tunnelstat(object): if cnstat_old_dict: old_cntr = cnstat_old_dict.get(tunnel) if old_cntr: - body = body % (ns_diff(cntr['rx_p_ok'], old_cntr['rx_p_ok']), - ns_diff(cntr['rx_b_ok'], old_cntr['rx_b_ok']), - ns_diff(cntr['tx_p_ok'], old_cntr['tx_p_ok']), - ns_diff(cntr['tx_b_ok'], old_cntr['tx_b_ok'])) + body = body % (ns_diff(cntr.rx_p_ok, old_cntr.rx_p_ok), + ns_diff(cntr.rx_b_ok, old_cntr.rx_b_ok), + ns_diff(cntr.tx_p_ok, old_cntr.tx_p_ok), + ns_diff(cntr.tx_b_ok, old_cntr.tx_b_ok)) else: - body = body % (cntr['rx_p_ok'], cntr['rx_b_ok'], cntr['tx_p_ok'], cntr['tx_b_ok']) + body = body % (cntr.rx_p_ok, cntr.rx_b_ok, cntr.tx_p_ok, cntr.tx_b_ok) print(header) print(body) @@ -273,7 +273,7 @@ def main(): if save_fresh_stats: try: - json.dump(cnstat_dict, open(cnstat_fqn_file, 'w'), default=json_serial) + pickle.dump(cnstat_dict, open(cnstat_fqn_file, 'wb')) except IOError as e: sys.exit(e.errno) else: @@ -283,7 +283,7 @@ def main(): if wait_time_in_seconds == 0: if os.path.isfile(cnstat_fqn_file): try: - cnstat_cached_dict = json.load(open(cnstat_fqn_file, 'r')) + cnstat_cached_dict = pickle.load(open(cnstat_fqn_file, 'rb')) print("Last cached time was " + str(cnstat_cached_dict.get('time'))) if tunnel_name: tunnelstat.cnstat_single_tunnel(tunnel_name, cnstat_dict, cnstat_cached_dict) From 824680ed5de03f1750dbd32b200cd3ec67713533 Mon Sep 17 00:00:00 2001 From: saurabh17g Date: Mon, 27 Mar 2023 00:28:59 -0700 Subject: [PATCH 102/312] Resolved rc!=0 problem by replacing fgrep with awk. Added ipv4 filtering to get only v4 peers in case of show ip bgp neighbors (#2756) Co-authored-by: Saurabh Ghorpade --- scripts/generate_dump | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/generate_dump b/scripts/generate_dump index 2a7172f4..79f6ae1b 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -521,12 +521,12 @@ save_bgp_neighbor() { local asic_id=${1:-""} local ns=$(get_vtysh_namespace $asic_id) - neighbor_list_v4=$(${timeout_cmd} bash -c "vtysh $ns -c 'show ip bgp neighbors' | grep 'BGP neighbor is' | awk -F '[, ]' '{print \$4}'") + neighbor_list_v4=$(${timeout_cmd} bash -c "vtysh $ns -c 'show ip bgp neighbors' | grep 'BGP neighbor is' | awk -F '[, ]' '{print \$4}' | awk /\\\./") for word in $neighbor_list_v4; do save_cmd "vtysh $ns -c \"show ip bgp neighbors $word advertised-routes\"" "ip.bgp.neighbor.$word.adv$asic_id" save_cmd "vtysh $ns -c \"show ip bgp neighbors $word routes\"" "ip.bgp.neighbor.$word.rcv$asic_id" done - neighbor_list_v6=$(${timeout_cmd} bash -c "vtysh $ns -c 'show bgp ipv6 neighbors' | grep 'BGP neighbor is' | awk -F '[, ]' '{print \$4}' | fgrep ':'") + neighbor_list_v6=$(${timeout_cmd} bash -c "vtysh $ns -c 'show bgp ipv6 neighbors' | grep 'BGP neighbor is' | awk -F '[, ]' '{print \$4}' | awk /:/") for word in $neighbor_list_v6; do save_cmd "vtysh $ns -c \"show bgp ipv6 neighbors $word advertised-routes\"" "ipv6.bgp.neighbor.$word.adv$asic_id" save_cmd "vtysh $ns -c \"show bgp ipv6 neighbors $word routes\"" "ipv6.bgp.neighbor.$word.rcv$asic_id" From 79a21ceff25cbe3fda8e09e4ad0db6f750b1be0d Mon Sep 17 00:00:00 2001 From: StormLiangMS <89824293+StormLiangMS@users.noreply.github.com> Date: Tue, 28 Mar 2023 21:40:10 +0800 Subject: [PATCH 103/312] Revert frr route check (#2761) * Revert "[route_check] remove check-frr_patch mock (#2732)" This reverts commit f27dea0cfdefbdcfc03d19136e4ae47ea72fd51f. * Revert "[route_check] fix IPv6 address handling (#2722)" This reverts commit ff6883233a3c86e993add50453c3152745eaff0d. * Revert "[route_check] implement a check for FRR routes not marked offloaded (#2531)" This reverts commit 90d70152c76f40bf7c1f8e2c6aff6eb58b951a05. --- scripts/route_check.py | 122 +++---------------------------- tests/mock_tables/config_db.json | 3 +- tests/route_check_test.py | 17 +---- tests/route_check_test_data.py | 122 +------------------------------ 4 files changed, 16 insertions(+), 248 deletions(-) diff --git a/scripts/route_check.py b/scripts/route_check.py index c832b2c6..c6234bcc 100755 --- a/scripts/route_check.py +++ b/scripts/route_check.py @@ -11,11 +11,11 @@ How: NOTE: The flow from APPL-DB to ASIC-DB takes non zero milliseconds. 1) Initiate subscribe for ASIC-DB updates. - 2) Read APPL-DB & ASIC-DB + 2) Read APPL-DB & ASIC-DB 3) Get the diff. - 4) If any diff, + 4) If any diff, 4.1) Collect subscribe messages for a second - 4.2) check diff against the subscribe messages + 4.2) check diff against the subscribe messages 5) Rule out local interfaces & default routes 6) If still outstanding diffs, report failure. @@ -29,7 +29,7 @@ down to ensure failure. Analyze the reported failures to match expected. You may use the exit code to verify the result as success or not. - + """ @@ -45,9 +45,7 @@ import time import signal import traceback -import subprocess -from ipaddress import ip_network from swsscommon import swsscommon from utilities_common import chassis @@ -73,9 +71,6 @@ PRINT_MSG_LEN_MAX = 1000 -FRR_CHECK_RETRIES = 3 -FRR_WAIT_TIME = 15 - class Level(Enum): ERR = 'ERR' INFO = 'INFO' @@ -146,7 +141,7 @@ def add_prefix(ip): ip = ip + PREFIX_SEPARATOR + "32" else: ip = ip + PREFIX_SEPARATOR + "128" - return str(ip_network(ip)) + return ip def add_prefix_ifnot(ip): @@ -155,7 +150,7 @@ def add_prefix_ifnot(ip): :param ip: IP to add prefix as string. :return ip with prefix """ - return str(ip_network(ip)) if ip.find(PREFIX_SEPARATOR) != -1 else add_prefix(ip) + return ip if ip.find(PREFIX_SEPARATOR) != -1 else add_prefix(ip) def is_local(ip): @@ -298,7 +293,7 @@ def get_routes(): def get_route_entries(): """ - helper to read present route entries from ASIC-DB and + helper to read present route entries from ASIC-DB and as well initiate selector for ASIC-DB:ASIC-state updates. :return (selector, subscriber, ) """ @@ -314,7 +309,7 @@ def get_route_entries(): res, e = checkout_rt_entry(k) if res: rt.append(e) - + print_message(syslog.LOG_DEBUG, json.dumps({"ASIC_ROUTE_ENTRY": sorted(rt)}, indent=4)) selector = swsscommon.Select() @@ -322,31 +317,6 @@ def get_route_entries(): return (selector, subs, sorted(rt)) -def is_suppress_fib_pending_enabled(): - """ - Returns True if FIB suppression is enabled, False otherwise - """ - cfg_db = swsscommon.ConfigDBConnector() - cfg_db.connect() - - state = cfg_db.get_entry('DEVICE_METADATA', 'localhost').get('suppress-fib-pending') - - return state == 'enabled' - - -def get_frr_routes(): - """ - Read routes from zebra through CLI command - :return frr routes dictionary - """ - - output = subprocess.check_output('show ip route json', shell=True) - routes = json.loads(output) - output = subprocess.check_output('show ipv6 route json', shell=True) - routes.update(json.loads(output)) - return routes - - def get_interfaces(): """ helper to read interface table from APPL-DB. @@ -384,7 +354,7 @@ def filter_out_local_interfaces(keys): chassis_local_intfs = chassis.get_chassis_local_interfaces() local_if_lst.update(set(chassis_local_intfs)) - + db = swsscommon.DBConnector(APPL_DB_NAME, 0) tbl = swsscommon.Table(db, 'ROUTE_TABLE') @@ -523,61 +493,6 @@ def filter_out_standalone_tunnel_routes(routes): return updated_routes -def check_frr_pending_routes(): - """ - 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() - - for _, entries in frr_routes.items(): - for entry in entries: - if entry['protocol'] != 'bgp': - continue - - # TODO: Also handle VRF routes. Currently this script does not check for VRF routes so it would be incorrect for us - # to assume they are installed in ASIC_DB, so we don't handle them. - if entry['vrfName'] != 'default': - continue - - if not entry.get('offloaded', False): - missed_rt.append(entry) - - if not missed_rt: - break - - time.sleep(FRR_WAIT_TIME) - - return missed_rt - - -def mitigate_installed_not_offloaded_frr_routes(missed_frr_rt, rt_appl): - """ - Mitigate installed but not offloaded FRR routes. - - In case route exists in APPL_DB, this function will manually send a notification to fpmsyncd - to trigger the flow that sends offload flag to zebra. - - It is designed to mitigate a problem when orchagent fails to send notification about installed route to fpmsyncd - or fpmsyncd not being able to read the notification or in case zebra fails to receive offload update due to variety of reasons. - 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) - 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'])]) - response_producer.send('SWSS_RC_SUCCESS', entry['prefix'], fvs) - - print_message(syslog.LOG_ERR, f'Mitigated route {entry["prefix"]}') - - def get_soc_ips(config_db): mux_table = config_db.get_table('MUX_CABLE') soc_ips = [] @@ -621,7 +536,7 @@ def check_routes(): """ The heart of this script which runs the checks. Read APPL-DB & ASIC-DB, the relevant tables for route checking. - Checkout routes in ASIC-DB to match APPL-DB, discounting local & + Checkout routes in ASIC-DB to match APPL-DB, discounting local & default routes. In case of missed / unexpected entries in ASIC, it might be due to update latency between APPL & ASIC DBs. So collect ASIC-DB subscribe updates for a second, and checkout if you see SET @@ -630,16 +545,12 @@ def check_routes(): If there are still some unjustifiable diffs, between APPL & ASIC DB, related to routes report failure, else all good. - If there are FRR routes that aren't marked offloaded but all APPL & ASIC DB - routes are in sync report failure and perform a mitigation action. - :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 = [] results = {} adds = [] @@ -688,22 +599,11 @@ def check_routes(): if rt_asic_miss: results["Unaccounted_ROUTE_ENTRY_TABLE_entries"] = rt_asic_miss - rt_frr_miss = check_frr_pending_routes() - - if rt_frr_miss: - results["missed_FRR_routes"] = rt_frr_miss - 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!") @@ -749,7 +649,7 @@ def main(): return ret, res else: return ret, res - + if __name__ == "__main__": diff --git a/tests/mock_tables/config_db.json b/tests/mock_tables/config_db.json index 3a2b681a..22744365 100644 --- a/tests/mock_tables/config_db.json +++ b/tests/mock_tables/config_db.json @@ -842,8 +842,7 @@ "mac": "1d:34:db:16:a6:00", "platform": "x86_64-mlnx_msn3800-r0", "peer_switch": "sonic-switch", - "type": "ToRRouter", - "suppress-fib-pending": "enabled" + "type": "ToRRouter" }, "SNMP_COMMUNITY|msft": { "TYPE": "RO" diff --git a/tests/route_check_test.py b/tests/route_check_test.py index 118e9eab..85e6a64a 100644 --- a/tests/route_check_test.py +++ b/tests/route_check_test.py @@ -7,7 +7,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, DESCR, OP_DEL, OP_SET, PRE, RESULT, RET, TEST_DATA, UPD import pytest @@ -239,7 +239,6 @@ def setup(self): def init(self): route_check.UNIT_TESTING = 1 - route_check.FRR_WAIT_TIME = 0 @pytest.fixture def force_hang(self): @@ -259,8 +258,7 @@ def mock_dbs(self): 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("route_check.swsscommon.NotificationProducer"): + patch("route_check.swsscommon.ConfigDBConnector", return_value=mock_config_db): device_info.get_platform = MagicMock(return_value='unittest') set_mock(mock_table, mock_conn, mock_sel, mock_subs, mock_config_db) yield @@ -274,16 +272,7 @@ def test_route_check(self, mock_dbs, test_num): set_test_case_data(ct_data) logger.info("Running test case {}: {}".format(test_num, ct_data[DESCR])) - with patch('sys.argv', ct_data[ARGS].split()), \ - patch('route_check.subprocess.check_output') as mock_check_output: - - routes = ct_data.get(FRR_ROUTES, {}) - - def side_effect(*args, **kwargs): - return json.dumps(routes) - - mock_check_output.side_effect = side_effect - + with patch('sys.argv', ct_data[ARGS].split()): ret, res = route_check.main() expect_ret = ct_data[RET] if RET in ct_data else 0 expect_res = ct_data[RESULT] if RESULT in ct_data else None diff --git a/tests/route_check_test_data.py b/tests/route_check_test_data.py index 7ed1eee4..9e4cd3a0 100644 --- a/tests/route_check_test_data.py +++ b/tests/route_check_test_data.py @@ -6,7 +6,6 @@ CONFIG_DB = 4 PRE = "pre-value" UPD = "update" -FRR_ROUTES = "frr-routes" RESULT = "res" OP_SET = "SET" @@ -360,124 +359,5 @@ } } } - }, - "10": { - DESCR: "basic good one, check FRR routes", - 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" }, - }, - 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", - }, - ], - }, - }, - "11": { - DESCR: "failure test case, missing FRR routes", - 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" }, - }, - 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", - }, - ], - }, - RESULT: { - "missed_FRR_routes": [ - {"prefix": "10.10.196.12/31", "vrfName": "default", "protocol": "bgp"} - ], - }, - RET: -1, - }, - "10": { - DESCR: "basic good one with IPv6 address", - ARGS: "route_check -m INFO -i 1000", - PRE: { - APPL_DB: { - ROUTE_TABLE: { - }, - INTF_TABLE: { - "PortChannel1013:2000:31:0:0::1/64": {}, - } - }, - ASIC_DB: { - RT_ENTRY_TABLE: { - RT_ENTRY_KEY_PREFIX + "2000:31::1/128" + RT_ENTRY_KEY_SUFFIX: {}, - } - } - } - }, + } } From 53f611b7910ea2b9ec7d1c564d78f6d27dea6952 Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Wed, 29 Mar 2023 02:14:24 +0800 Subject: [PATCH 104/312] Revert "Convert IPv6 addresses to lowercase in apply-patch (#2299)" (#2758) This reverts commit 28b6ba5fc11f65abaf421c70159a605d233eda41. There are some issues when GCU tries to remove the interface IP in some tests, such as add rack test. In the initial config, the INTERFACE's IPv6 was all loaded in uppercase by default. "INTERFACE": { "Ethernet68": {}, "Ethernet68|10.0.0.34/31": {}, "Ethernet68|FC00::45/126": {}, "Ethernet72": {}, "Ethernet72|10.0.0.36/31": {}, "Ethernet72|FC00::49/126": {}, GCU will never be able to remove that IP because IPv6 was always translated to lowercase due to #2299 . It reported the error can't remove a non-existent object, thus making GCU fail. #2299 is to deal with this issue: https://github.com/sonic-net/sonic-buildimage/issues/11622. Although config CLI always translates uppercase to lowercase when adding an IP, the user can have two choices to remove that IP: One is to use config CLI to remove that IP no matter uppercase or lowercase. Another way is to use GCU. In order to use GCU, the user has to check the IP format saved in ConfigDB because GCU operation does differentiate between uppercase and lowercase. #### What I did Revert #2299 --- config/main.py | 14 -------------- tests/ip_config_input/patch_ipv6.test | 6 ------ tests/ip_config_test.py | 20 -------------------- 3 files changed, 40 deletions(-) delete mode 100644 tests/ip_config_input/patch_ipv6.test diff --git a/config/main.py b/config/main.py index 44f633bf..fa4bd0f0 100644 --- a/config/main.py +++ b/config/main.py @@ -1362,20 +1362,6 @@ def apply_patch(ctx, patch_file_path, format, dry_run, ignore_non_yang_tables, i patch_as_json = json.loads(text) patch = jsonpatch.JsonPatch(patch_as_json) - # convert IPv6 addresses to lowercase - for patch_line in patch: - if 'remove' == patch_line['op']: - match = re.search(r"(?P/INTERFACE/\w+\|)(?P([a-fA-F0-9]{0,4}[:~]|::){1,7}[a-fA-F0-9]{0,4})" - "(?P.*)", str.format(patch_line['path'])) - if match: - prefix = match.group('prefix') - ipv6_address_str = match.group('ipv6_address') - suffix = match.group('suffix') - ipv6_address_str = ipv6_address_str.lower() - click.secho("converted ipv6 address to lowercase {} with prefix {} in value: {}" - .format(ipv6_address_str, prefix, patch_line['path'])) - patch_line['path'] = prefix + ipv6_address_str + suffix - config_format = ConfigFormat[format.upper()] GenericUpdater().apply_patch(patch, config_format, verbose, dry_run, ignore_non_yang_tables, ignore_path) diff --git a/tests/ip_config_input/patch_ipv6.test b/tests/ip_config_input/patch_ipv6.test deleted file mode 100644 index 00b43fda..00000000 --- a/tests/ip_config_input/patch_ipv6.test +++ /dev/null @@ -1,6 +0,0 @@ -[ - { - "path": "/INTERFACE/Ethernet12|FC00::1~1126", - "op": "remove" - } -] diff --git a/tests/ip_config_test.py b/tests/ip_config_test.py index f315b11d..2f262a4a 100644 --- a/tests/ip_config_test.py +++ b/tests/ip_config_test.py @@ -1,5 +1,3 @@ -import json -import jsonpatch import os import traceback from unittest import mock @@ -14,9 +12,6 @@ from utilities_common.db import Db import utilities_common.bgp_util as bgp_util -test_path = os.path.dirname(os.path.abspath(__file__)) -ip_config_input_path = os.path.join(test_path, "ip_config_input") - ERROR_MSG = "Error: IP address is not valid" INVALID_VRF_MSG ="""\ @@ -243,21 +238,6 @@ def test_add_del_interface_shortened_ipv6_with_leading_zeros(self): assert result.exit_code != 0 assert ('Ethernet68', '3000::1/64') not in db.cfgdb.get_table('INTERFACE') - def test_remove_interface_case_sensitive_mock_ipv6_w_apply_patch(self): - runner = CliRunner() - any_patch_as_json = [{"op": "remove", "path": "/INTERFACE/Ethernet12|FC00::1~1126"}] - any_patch = jsonpatch.JsonPatch(any_patch_as_json) - any_patch_as_text = json.dumps(any_patch_as_json) - ipv6_patch_file = os.path.join(ip_config_input_path, 'patch_ipv6.test') - - # config apply-patch patch - mock_generic_updater = mock.Mock() - with mock.patch('config.main.GenericUpdater', return_value=mock_generic_updater): - with mock.patch('builtins.open', mock.mock_open(read_data=any_patch_as_text)): - result = runner.invoke(config.config.commands["apply-patch"], [ipv6_patch_file], catch_exceptions=False) - print(result.exit_code, result.output) - assert "converted ipv6 address to lowercase fc00::1~1126 with prefix /INTERFACE/Ethernet12| in value: /INTERFACE/Ethernet12|FC00::1~1126" in result.output - def test_intf_vrf_bind_unbind(self): runner = CliRunner() db = Db() From 832ef9c4c50e8cd3c0c745b34dac39280ada319b Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Wed, 29 Mar 2023 22:11:08 +0800 Subject: [PATCH 105/312] Fix bug in GCU vlanintf_validator (#2765) What I did Fix the bug in vlanintf_validator How I did it ret will be 0 if success. Fix the statement. How to verify it E2E test --- generic_config_updater/services_validator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generic_config_updater/services_validator.py b/generic_config_updater/services_validator.py index 5d8c1f0d..497cb4ee 100644 --- a/generic_config_updater/services_validator.py +++ b/generic_config_updater/services_validator.py @@ -119,6 +119,6 @@ def vlanintf_validator(old_config, upd_config, keys): for key in deleted_keys: iface, iface_ip = key rc = os.system(f"ip neigh flush dev {iface} {iface_ip}") - if not rc: + if rc: return False return True From e6f9f46413dc1dfc9da778984d81ff8ee8234194 Mon Sep 17 00:00:00 2001 From: isabelmsft <67024108+isabelmsft@users.noreply.github.com> Date: Fri, 31 Mar 2023 16:28:20 -0700 Subject: [PATCH 106/312] [GCU] Performance improvement by making patch sorting optional (#2764) --- config/validated_config_db_connector.py | 5 +++-- generic_config_updater/generic_updater.py | 22 ++++++++++++------- .../generic_updater_test.py | 4 ++-- 3 files changed, 19 insertions(+), 12 deletions(-) diff --git a/config/validated_config_db_connector.py b/config/validated_config_db_connector.py index 7f6e230a..25d8ef5f 100644 --- a/config/validated_config_db_connector.py +++ b/config/validated_config_db_connector.py @@ -94,7 +94,8 @@ def apply_patch(self, gcu_patch, table): config_format = ConfigFormat[format.upper()] try: - GenericUpdater().apply_patch(patch=gcu_patch, config_format=config_format, verbose=False, dry_run=False, ignore_non_yang_tables=False, ignore_paths=None) + # Because all writes to ConfigDB through ValidatedConfigDBConnector are simple and don't require sorting, we set sort=False to skip sorting and improve performance + GenericUpdater().apply_patch(patch=gcu_patch, config_format=config_format, verbose=False, dry_run=False, ignore_non_yang_tables=False, ignore_paths=None, sort=False) except EmptyTableError: self.validated_delete_table(table) @@ -103,7 +104,7 @@ def validated_delete_table(self, table): format = ConfigFormat.CONFIGDB.name config_format = ConfigFormat[format.upper()] try: - GenericUpdater().apply_patch(patch=gcu_patch, config_format=config_format, verbose=False, dry_run=False, ignore_non_yang_tables=False, ignore_paths=None) + GenericUpdater().apply_patch(patch=gcu_patch, config_format=config_format, verbose=False, dry_run=False, ignore_non_yang_tables=False, ignore_paths=None, sort=False) except ValueError as e: logger = genericUpdaterLogging.get_logger(title="Patch Applier", print_all_to_console=True) logger.log_notice("Unable to remove entry, as doing so will result in invalid config. Error: {}".format(e)) diff --git a/generic_config_updater/generic_updater.py b/generic_config_updater/generic_updater.py index aa418532..f9aab823 100644 --- a/generic_config_updater/generic_updater.py +++ b/generic_config_updater/generic_updater.py @@ -36,7 +36,7 @@ def __init__(self, self.patchsorter = patchsorter if patchsorter is not None else StrictPatchSorter(self.config_wrapper, self.patch_wrapper) self.changeapplier = changeapplier if changeapplier is not None else ChangeApplier() - def apply(self, patch): + def apply(self, patch, sort=True): self.logger.log_notice("Patch application starting.") self.logger.log_notice(f"Patch: {patch}") @@ -63,11 +63,17 @@ def apply(self, patch): f"Table{'s' if len(empty_tables) != 1 else ''}: {empty_tables_txt}") # Generate list of changes to apply - self.logger.log_notice("Sorting patch updates.") - changes = self.patchsorter.sort(patch) + if sort: + self.logger.log_notice("Sorting patch updates.") + changes = self.patchsorter.sort(patch) + else: + self.logger.log_notice("Converting patch to JsonChange.") + changes = [JsonChange(jsonpatch.JsonPatch([element])) for element in patch] + changes_len = len(changes) - self.logger.log_notice(f"The patch was sorted into {changes_len} " \ - f"change{'s' if changes_len != 1 else ''}{':' if changes_len > 0 else '.'}") + self.logger.log_notice(f"The patch was converted into {changes_len} " \ + f"change{'s' if changes_len != 1 else ''}{':' if changes_len > 0 else '.'}") + for change in changes: self.logger.log_notice(f" * {change}") @@ -284,7 +290,7 @@ def __init__(self, self.config_lock = config_lock - def apply(self, patch): + def apply(self, patch, sort=True): self.execute_write_action(Decorator.apply, self, patch) def replace(self, target_config): @@ -407,9 +413,9 @@ def __init__(self, generic_update_factory=None): self.generic_update_factory = \ generic_update_factory if generic_update_factory is not None else GenericUpdateFactory() - def apply_patch(self, patch, config_format, verbose, dry_run, ignore_non_yang_tables, ignore_paths): + def apply_patch(self, patch, config_format, verbose, dry_run, ignore_non_yang_tables, ignore_paths, sort=True): patch_applier = self.generic_update_factory.create_patch_applier(config_format, verbose, dry_run, ignore_non_yang_tables, ignore_paths) - patch_applier.apply(patch) + patch_applier.apply(patch, sort) def replace(self, target_config, config_format, verbose, dry_run, ignore_non_yang_tables, ignore_paths): config_replacer = self.generic_update_factory.create_config_replacer(config_format, verbose, dry_run, ignore_non_yang_tables, ignore_paths) diff --git a/tests/generic_config_updater/generic_updater_test.py b/tests/generic_config_updater/generic_updater_test.py index aab2eae2..96c25e35 100644 --- a/tests/generic_config_updater/generic_updater_test.py +++ b/tests/generic_config_updater/generic_updater_test.py @@ -526,7 +526,7 @@ def setUp(self): def test_apply_patch__creates_applier_and_apply(self): # Arrange patch_applier = Mock() - patch_applier.apply.side_effect = create_side_effect_dict({(str(Files.SINGLE_OPERATION_SONIC_YANG_PATCH),): 0}) + patch_applier.apply.side_effect = create_side_effect_dict({(str(Files.SINGLE_OPERATION_SONIC_YANG_PATCH), "True"): 0}) factory = Mock() factory.create_patch_applier.side_effect = \ @@ -548,7 +548,7 @@ def test_apply_patch__creates_applier_and_apply(self): self.any_ignore_paths) # Assert - patch_applier.apply.assert_has_calls([call(Files.SINGLE_OPERATION_SONIC_YANG_PATCH)]) + patch_applier.apply.assert_has_calls([call(Files.SINGLE_OPERATION_SONIC_YANG_PATCH, True)]) def test_replace__creates_replacer_and_replace(self): # Arrange From eaf46677160946e125f88af9ce9538c373e9e1d7 Mon Sep 17 00:00:00 2001 From: jfeng-arista <98421150+jfeng-arista@users.noreply.github.com> Date: Mon, 3 Apr 2023 14:34:52 -0700 Subject: [PATCH 107/312] [voq] Add fabric_ns to the ns_list when display_option is DISPLAY_ALL. (#2717) The get_ns_list_based_on_options function only gets front_ns and back_ns in current code. This change adds fabric_ns in the ns_list when display_option is DISPLAY_ALL. This enables the fabric related tests on voq chassis, e.g the change in sonic-net/sonic-mgmt#6620 --- utilities_common/multi_asic.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/utilities_common/multi_asic.py b/utilities_common/multi_asic.py index 9e213f67..b1f24e12 100644 --- a/utilities_common/multi_asic.py +++ b/utilities_common/multi_asic.py @@ -63,12 +63,13 @@ def get_ns_list_based_on_options(self): namespaces = multi_asic.get_all_namespaces() if self.namespace_option is None: if self.get_display_option() == constants.DISPLAY_ALL: - ns_list = namespaces['front_ns'] + namespaces['back_ns'] + ns_list = namespaces['front_ns'] + namespaces['back_ns'] + namespaces['fabric_ns'] else: ns_list = namespaces['front_ns'] else: if self.namespace_option not in namespaces['front_ns'] and \ - self.namespace_option not in namespaces['back_ns']: + self.namespace_option not in namespaces['back_ns'] and \ + self.namespace_option not in namespaces['fabric_ns']: raise ValueError( 'Unknown Namespace {}'.format(self.namespace_option)) ns_list = [self.namespace_option] From dbb214980ab8c7d626deb51eb7bb2d61e58af55a Mon Sep 17 00:00:00 2001 From: Saikrishna Arcot Date: Tue, 4 Apr 2023 15:25:53 -0700 Subject: [PATCH 108/312] [ci] Switch to using regular swss-common artifacts (#2780) The swss-common pipeline is now built for Bullseye. Signed-off-by: Saikrishna Arcot --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 46369c01..4a00e674 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -69,7 +69,7 @@ stages: source: specific project: build pipeline: 9 - artifact: sonic-swss-common.bullseye.amd64 + artifact: sonic-swss-common runVersion: 'latestFromBranch' runBranch: 'refs/heads/master' displayName: "Download sonic swss common deb packages" From 1802f34a29ca607aa8df021d2ac89f550485a234 Mon Sep 17 00:00:00 2001 From: Mai Bui Date: Thu, 6 Apr 2023 13:11:21 -0400 Subject: [PATCH 109/312] [sfputil] replace shell=True (#2727) Signed-off-by: maipbui #### What I did `subprocess()` - when using with `shell=True` is dangerous. Using subprocess function without a static string can lead to command injection. #### How I did it `subprocess()` - use `shell=False` instead, use list of strings Ref: [https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation](https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation) #### How to verify it Pass UT Manual test ``` admin@str-s6000-acs-12:~$ sudo sfputil show error-status -hw Port Error Status ----------- -------------- Ethernet0 Ethernet4 OK Ethernet8 OK Ethernet12 OK Ethernet16 OK Ethernet20 OK Ethernet24 OK Ethernet28 OK ``` --- sfputil/main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sfputil/main.py b/sfputil/main.py index 8992e923..726ed2fe 100644 --- a/sfputil/main.py +++ b/sfputil/main.py @@ -906,11 +906,11 @@ def fetch_error_status_from_platform_api(port): " 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) + 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, shell=True, universal_newlines=True) + 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 From eab54667f0637983f76f5894eaa6f73237014a9e Mon Sep 17 00:00:00 2001 From: isabelmsft <67024108+isabelmsft@users.noreply.github.com> Date: Thu, 6 Apr 2023 15:12:12 -0700 Subject: [PATCH 110/312] YANG Validation for MCLAG, NAT, MUXCABLE tables (#2755) --- config/console.py | 61 ++++++--- config/kube.py | 15 +- config/main.py | 61 ++++++--- config/mclag.py | 133 +++++++++++------- config/muxcable.py | 30 ++-- config/nat.py | 311 ++++++++++++++++++++++++++++-------------- tests/config_test.py | 62 +++++++++ tests/console_test.py | 101 ++++++++++++++ tests/kube_test.py | 25 ++++ tests/mclag_test.py | 128 +++++++++++++++-- tests/nat_test.py | 267 ++++++++++++++++++++++++++++++++++++ tests/sflow_test.py | 20 +++ 12 files changed, 1003 insertions(+), 211 deletions(-) create mode 100644 tests/nat_test.py diff --git a/config/console.py b/config/console.py index b28aeda6..1ecf80c3 100644 --- a/config/console.py +++ b/config/console.py @@ -1,6 +1,7 @@ import click import utilities_common.cli as clicommon - +from .validated_config_db_connector import ValidatedConfigDBConnector +from jsonpatch import JsonPatchConflict # # 'console' group ('config console ...') # @@ -16,14 +17,18 @@ def console(): @clicommon.pass_db def enable_console_switch(db): """Enable console switch""" - config_db = db.cfgdb + config_db = ValidatedConfigDBConnector(db.cfgdb) table = "CONSOLE_SWITCH" dataKey1 = 'console_mgmt' dataKey2 = 'enabled' data = { dataKey2 : "yes" } - config_db.mod_entry(table, dataKey1, data) + try: + config_db.mod_entry(table, dataKey1, data) + except ValueError as e: + ctx = click.get_current_context() + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'console disable' group ('config console disable') @@ -32,14 +37,18 @@ def enable_console_switch(db): @clicommon.pass_db def disable_console_switch(db): """Disable console switch""" - config_db = db.cfgdb + config_db = ValidatedConfigDBConnector(db.cfgdb) table = "CONSOLE_SWITCH" dataKey1 = 'console_mgmt' dataKey2 = 'enabled' data = { dataKey2 : "no" } - config_db.mod_entry(table, dataKey1, data) + try: + config_db.mod_entry(table, dataKey1, data) + except ValueError as e: + ctx = click.get_current_context() + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'console add' group ('config console add ...') @@ -52,7 +61,7 @@ def disable_console_switch(db): @click.option('--devicename', '-d', metavar='', required=False) def add_console_setting(db, linenum, baud, flowcontrol, devicename): """Add Console-realted configuration tasks""" - config_db = db.cfgdb + config_db = ValidatedConfigDBConnector(db.cfgdb) table = "CONSOLE_PORT" dataKey1 = 'baud_rate' @@ -72,7 +81,10 @@ def add_console_setting(db, linenum, baud, flowcontrol, devicename): ctx.fail("Given device name {} has been used. Please enter a valid device name or remove the existing one !!".format(devicename)) console_entry[dataKey3] = devicename - config_db.set_entry(table, linenum, console_entry) + try: + config_db.set_entry(table, linenum, console_entry) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # @@ -83,15 +95,18 @@ def add_console_setting(db, linenum, baud, flowcontrol, devicename): @click.argument('linenum', metavar='', required=True, type=click.IntRange(0, 65535)) def remove_console_setting(db, linenum): """Remove Console-related configuration tasks""" - config_db = db.cfgdb + config_db = ValidatedConfigDBConnector(db.cfgdb) + ctx = click.get_current_context() table = "CONSOLE_PORT" data = config_db.get_entry(table, linenum) if data: - config_db.mod_entry(table, linenum, None) + try: + config_db.set_entry(table, linenum, None) + except JsonPatchConflict as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) else: - ctx = click.get_current_context() ctx.fail("Trying to delete console port setting, which is not present.") # @@ -103,7 +118,7 @@ def remove_console_setting(db, linenum): @click.argument('devicename', metavar='', required=False) def upate_console_remote_device_name(db, linenum, devicename): """Update remote device name for a console line""" - config_db = db.cfgdb + config_db = ValidatedConfigDBConnector(db.cfgdb) ctx = click.get_current_context() table = "CONSOLE_PORT" @@ -117,12 +132,18 @@ def upate_console_remote_device_name(db, linenum, devicename): elif not devicename: # remove configuration key from console setting if user not give a remote device name data.pop(dataKey, None) - config_db.mod_entry(table, linenum, data) + try: + config_db.mod_entry(table, linenum, data) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) elif isExistingSameDevice(config_db, devicename, table): ctx.fail("Given device name {} has been used. Please enter a valid device name or remove the existing one !!".format(devicename)) else: data[dataKey] = devicename - config_db.mod_entry(table, linenum, data) + try: + config_db.mod_entry(table, linenum, data) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) else: ctx.fail("Trying to update console port setting, which is not present.") @@ -135,7 +156,7 @@ def upate_console_remote_device_name(db, linenum, devicename): @click.argument('baud', metavar='', required=True, type=click.INT) def update_console_baud(db, linenum, baud): """Update baud for a console line""" - config_db = db.cfgdb + config_db = ValidatedConfigDBConnector(db.cfgdb) ctx = click.get_current_context() table = "CONSOLE_PORT" @@ -149,7 +170,10 @@ def update_console_baud(db, linenum, baud): return else: data[dataKey] = baud - config_db.mod_entry(table, linenum, data) + try: + config_db.mod_entry(table, linenum, data) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) else: ctx.fail("Trying to update console port setting, which is not present.") @@ -162,7 +186,7 @@ def update_console_baud(db, linenum, baud): @click.argument('linenum', metavar='', required=True, type=click.IntRange(0, 65535)) def update_console_flow_control(db, mode, linenum): """Update flow control setting for a console line""" - config_db = db.cfgdb + config_db = ValidatedConfigDBConnector(db.cfgdb) ctx = click.get_current_context() table = "CONSOLE_PORT" @@ -177,7 +201,10 @@ def update_console_flow_control(db, mode, linenum): return else: data[dataKey] = innerMode - config_db.mod_entry(table, linenum, data) + try: + config_db.mod_entry(table, linenum, data) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) else: ctx.fail("Trying to update console port setting, which is not present.") diff --git a/config/kube.py b/config/kube.py index 706a5ab2..526a4dd0 100644 --- a/config/kube.py +++ b/config/kube.py @@ -1,6 +1,7 @@ import click from utilities_common.cli import AbbreviationGroup, pass_db +from .validated_config_db_connector import ValidatedConfigDBConnector from .utils import log @@ -21,22 +22,30 @@ KUBE_LABEL_SET_KEY = "SET" def _update_kube_server(db, field, val): - db_data = db.cfgdb.get_entry(KUBE_SERVER_TABLE_NAME, KUBE_SERVER_TABLE_KEY) + config_db = ValidatedConfigDBConnector(db.cfgdb) + db_data = config_db.get_entry(KUBE_SERVER_TABLE_NAME, KUBE_SERVER_TABLE_KEY) def_data = { KUBE_SERVER_IP: "", KUBE_SERVER_PORT: "6443", KUBE_SERVER_INSECURE: "True", KUBE_SERVER_DISABLE: "False" } + ctx = click.get_current_context() for f in def_data: if db_data and f in db_data: if f == field and db_data[f] != val: - db.cfgdb.mod_entry(KUBE_SERVER_TABLE_NAME, KUBE_SERVER_TABLE_KEY, {field: val}) + try: + config_db.mod_entry(KUBE_SERVER_TABLE_NAME, KUBE_SERVER_TABLE_KEY, {field: val}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) log.log_info("modify kubernetes server entry {}={}".format(field,val)) else: # Missing field. Set to default or given value v = val if f == field else def_data[f] - db.cfgdb.mod_entry(KUBE_SERVER_TABLE_NAME, KUBE_SERVER_TABLE_KEY, {f: v}) + try: + config_db.mod_entry(KUBE_SERVER_TABLE_NAME, KUBE_SERVER_TABLE_KEY, {f: v}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) log.log_info("set kubernetes server entry {}={}".format(f,v)) diff --git a/config/main.py b/config/main.py index fa4bd0f0..9e77211c 100644 --- a/config/main.py +++ b/config/main.py @@ -15,6 +15,7 @@ import copy from jsonpatch import JsonPatchConflict +from jsonpointer import JsonPointerException from collections import OrderedDict from generic_config_updater.generic_updater import GenericUpdater, ConfigFormat from minigraph import parse_device_desc_xml, minigraph_encoder @@ -4149,7 +4150,7 @@ def breakout(ctx, interface_name, mode, verbose, force_remove_dependencies, load raise click.Abort() # Get the config_db connector - config_db = ctx.obj['config_db'] + config_db = ValidatedConfigDBConnector(ctx.obj['config_db']) target_brkout_mode = mode @@ -4228,7 +4229,10 @@ def breakout(ctx, interface_name, mode, verbose, force_remove_dependencies, load if interface_name not in brkout_cfg_keys: click.secho("[ERROR] {} is not present in 'BREAKOUT_CFG' Table!".format(interface_name), fg='red') raise click.Abort() - config_db.set_entry("BREAKOUT_CFG", interface_name, {'brkout_mode': target_brkout_mode}) + try: + config_db.set_entry("BREAKOUT_CFG", interface_name, {'brkout_mode': target_brkout_mode}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) click.secho("Breakout process got successfully completed." .format(interface_name), fg="cyan", underline=True) click.echo("Please note loaded setting will be lost after system reboot. To preserve setting, run `config save`.") @@ -6375,15 +6379,19 @@ def ntp(ctx): @click.pass_context def add_ntp_server(ctx, ntp_ip_address): """ Add NTP server IP """ - if not clicommon.is_ipaddress(ntp_ip_address): - ctx.fail('Invalid ip address') - db = ctx.obj['db'] + if ADHOC_VALIDATION: + if not clicommon.is_ipaddress(ntp_ip_address): + ctx.fail('Invalid IP address') + db = ValidatedConfigDBConnector(ctx.obj['db']) ntp_servers = db.get_table("NTP_SERVER") if ntp_ip_address in ntp_servers: click.echo("NTP server {} is already configured".format(ntp_ip_address)) return else: - db.set_entry('NTP_SERVER', ntp_ip_address, {'NULL': 'NULL'}) + try: + db.set_entry('NTP_SERVER', ntp_ip_address, {'NULL': 'NULL'}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) click.echo("NTP server {} added to configuration".format(ntp_ip_address)) try: click.echo("Restarting ntp-config service...") @@ -6396,12 +6404,16 @@ def add_ntp_server(ctx, ntp_ip_address): @click.pass_context def del_ntp_server(ctx, ntp_ip_address): """ Delete NTP server IP """ - if not clicommon.is_ipaddress(ntp_ip_address): - ctx.fail('Invalid IP address') - db = ctx.obj['db'] + if ADHOC_VALIDATION: + if not clicommon.is_ipaddress(ntp_ip_address): + ctx.fail('Invalid IP address') + db = ValidatedConfigDBConnector(ctx.obj['db']) ntp_servers = db.get_table("NTP_SERVER") if ntp_ip_address in ntp_servers: - db.set_entry('NTP_SERVER', '{}'.format(ntp_ip_address), None) + try: + db.set_entry('NTP_SERVER', '{}'.format(ntp_ip_address), None) + except JsonPatchConflict as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) click.echo("NTP server {} removed from configuration".format(ntp_ip_address)) else: ctx.fail("NTP server {} is not configured.".format(ntp_ip_address)) @@ -6654,16 +6666,19 @@ def add(ctx, name, ipaddr, port, vrf): if not is_valid_collector_info(name, ipaddr, port, vrf): return - config_db = ctx.obj['db'] + config_db = ValidatedConfigDBConnector(ctx.obj['db']) collector_tbl = config_db.get_table('SFLOW_COLLECTOR') if (collector_tbl and name not in collector_tbl and len(collector_tbl) == 2): click.echo("Only 2 collectors can be configured, please delete one") return - - config_db.mod_entry('SFLOW_COLLECTOR', name, - {"collector_ip": ipaddr, "collector_port": port, - "collector_vrf": vrf}) + + try: + config_db.mod_entry('SFLOW_COLLECTOR', name, + {"collector_ip": ipaddr, "collector_port": port, + "collector_vrf": vrf}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) return # @@ -6674,14 +6689,18 @@ def add(ctx, name, ipaddr, port, vrf): @click.pass_context def del_collector(ctx, name): """Delete a sFlow collector""" - config_db = ctx.obj['db'] - collector_tbl = config_db.get_table('SFLOW_COLLECTOR') + config_db = ValidatedConfigDBConnector(ctx.obj['db']) + if ADHOC_VALIDATION: + collector_tbl = config_db.get_table('SFLOW_COLLECTOR') - if name not in collector_tbl: - click.echo("Collector: {} not configured".format(name)) - return + if name not in collector_tbl: + click.echo("Collector: {} not configured".format(name)) + return - config_db.mod_entry('SFLOW_COLLECTOR', name, None) + try: + config_db.set_entry('SFLOW_COLLECTOR', name, None) + except (JsonPatchConflict, JsonPointerException) as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'sflow agent-id' group diff --git a/config/mclag.py b/config/mclag.py index 589bb61a..abc6ee05 100644 --- a/config/mclag.py +++ b/config/mclag.py @@ -1,8 +1,12 @@ import click from swsscommon.swsscommon import ConfigDBConnector +from .validated_config_db_connector import ValidatedConfigDBConnector import ipaddress +from jsonpatch import JsonPatchConflict +from jsonpointer import JsonPointerException +ADHOC_VALIDATION = False CFG_PORTCHANNEL_PREFIX = "PortChannel" CFG_PORTCHANNEL_PREFIX_LEN = 11 CFG_PORTCHANNEL_MAX_VAL = 9999 @@ -86,8 +90,7 @@ def is_ipv4_addr_valid(addr): def check_if_interface_is_valid(db, interface_name): from .main import interface_name_is_valid - if interface_name_is_valid(db,interface_name) is False: - ctx.fail("Interface name is invalid. Please enter a valid interface name!!") + return interface_name_is_valid(db,interface_name) def get_intf_vrf_bind_unique_ip(db, interface_name, interface_type): intfvrf = db.get_table(interface_type) @@ -121,34 +124,42 @@ def mclag(ctx): @click.pass_context def add_mclag_domain(ctx, domain_id, source_ip_addr, peer_ip_addr, peer_ifname): """Add MCLAG Domain""" - - if not mclag_domain_id_valid(domain_id): - ctx.fail("{} invalid domain ID, valid range is 1 to 4095".format(domain_id)) - if not is_ipv4_addr_valid(source_ip_addr): - ctx.fail("{} invalid local ip address".format(source_ip_addr)) - if not is_ipv4_addr_valid(peer_ip_addr): - ctx.fail("{} invalid peer ip address".format(peer_ip_addr)) - - db = ctx.obj['db'] + if ADHOC_VALIDATION: + if not mclag_domain_id_valid(domain_id): + ctx.fail("{} invalid domain ID, valid range is 1 to 4095".format(domain_id)) + if not is_ipv4_addr_valid(source_ip_addr): + ctx.fail("{} invalid local ip address".format(source_ip_addr)) + if not is_ipv4_addr_valid(peer_ip_addr): + ctx.fail("{} invalid peer ip address".format(peer_ip_addr)) + + db = ValidatedConfigDBConnector(ctx.obj['db']) fvs = {} fvs['source_ip'] = str(source_ip_addr) fvs['peer_ip'] = str(peer_ip_addr) - if peer_ifname is not None: - if (peer_ifname.startswith("Ethernet") is False) and (peer_ifname.startswith("PortChannel") is False): - ctx.fail("peer interface is invalid, should be Ethernet interface or portChannel !!") - if (peer_ifname.startswith("Ethernet") is True) and (check_if_interface_is_valid(db, peer_ifname) is False): - ctx.fail("peer Ethernet interface name is invalid. it is not present in port table of configDb!!") - if (peer_ifname.startswith("PortChannel")) and (is_portchannel_name_valid(peer_ifname) is False): - ctx.fail("peer PortChannel interface name is invalid !!") - fvs['peer_link'] = str(peer_ifname) + if ADHOC_VALIDATION: + if peer_ifname is not None: + if (peer_ifname.startswith("Ethernet") is False) and (peer_ifname.startswith("PortChannel") is False): + ctx.fail("peer interface is invalid, should be Ethernet interface or portChannel !!") + if (peer_ifname.startswith("Ethernet") is True) and (check_if_interface_is_valid(db, peer_ifname) is False): + ctx.fail("peer Ethernet interface name is invalid. it is not present in port table of configDb!!") + if (peer_ifname.startswith("PortChannel")) and (is_portchannel_name_valid(peer_ifname) is False): + ctx.fail("peer PortChannel interface name is invalid !!") + fvs['peer_link'] = str(peer_ifname) mclag_domain_keys = db.get_table('MCLAG_DOMAIN').keys() if len(mclag_domain_keys) == 0: - db.set_entry('MCLAG_DOMAIN', domain_id, fvs) + try: + db.set_entry('MCLAG_DOMAIN', domain_id, fvs) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) else: + domain_id = str(domain_id) if domain_id in mclag_domain_keys: - db.mod_entry('MCLAG_DOMAIN', domain_id, fvs) - else: - ctx.fail("only one mclag Domain can be configured. Already one domain {} configured ".format(mclag_domain_keys[0])) + try: + db.mod_entry('MCLAG_DOMAIN', domain_id, fvs) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) + else: + ctx.fail("only one mclag Domain can be configured. Already one domain {} configured ".format(list(mclag_domain_keys)[0])) #mclag domain delete @@ -158,15 +169,16 @@ def add_mclag_domain(ctx, domain_id, source_ip_addr, peer_ip_addr, peer_ifname): @click.pass_context def del_mclag_domain(ctx, domain_id): """Delete MCLAG Domain""" - - if not mclag_domain_id_valid(domain_id): - ctx.fail("{} invalid domain ID, valid range is 1 to 4095".format(domain_id)) - - db = ctx.obj['db'] - entry = db.get_entry('MCLAG_DOMAIN', domain_id) - if entry is None: - ctx.fail("MCLAG Domain {} not configured ".format(domain_id)) - return + + db = ValidatedConfigDBConnector(ctx.obj['db']) + + if ADHOC_VALIDATION: + if not mclag_domain_id_valid(domain_id): + ctx.fail("{} invalid domain ID, valid range is 1 to 4095".format(domain_id)) + + entry = db.get_entry('MCLAG_DOMAIN', domain_id) + if entry is None: + ctx.fail("MCLAG Domain {} not configured ".format(domain_id)) click.echo("MCLAG Domain delete takes care of deleting all associated MCLAG Interfaces") @@ -175,11 +187,17 @@ def del_mclag_domain(ctx, domain_id): #delete associated mclag interfaces for iface_domain_id, iface_name in interface_table_keys: - if (int(iface_domain_id) == domain_id): - db.set_entry('MCLAG_INTERFACE', (iface_domain_id, iface_name), None ) + if (int(iface_domain_id) == domain_id): + try: + db.set_entry('MCLAG_INTERFACE', (iface_domain_id, iface_name), None ) + except (JsonPointerException, JsonPatchConflict) as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) #delete mclag domain - db.set_entry('MCLAG_DOMAIN', domain_id, None) + try: + db.set_entry('MCLAG_DOMAIN', domain_id, None) + except (JsonPointerException, JsonPatchConflict) as e: + ctx.fail("Invalid ConfigDB. Error: MCLAG_DOMAIN {} failed to be deleted".format(domain_id)) #keepalive timeout config @@ -260,16 +278,21 @@ def mclag_member(ctx): @click.pass_context def add_mclag_member(ctx, domain_id, portchannel_names): """Add member MCLAG interfaces from MCLAG Domain""" - db = ctx.obj['db'] - entry = db.get_entry('MCLAG_DOMAIN', domain_id) - if len(entry) == 0: - ctx.fail("MCLAG Domain " + domain_id + " not configured, configure mclag domain first") + db = ValidatedConfigDBConnector(ctx.obj['db']) + if ADHOC_VALIDATION: + entry = db.get_entry('MCLAG_DOMAIN', domain_id) + if len(entry) == 0: + ctx.fail("MCLAG Domain " + domain_id + " not configured, configure mclag domain first") portchannel_list = portchannel_names.split(",") for portchannel_name in portchannel_list: - if is_portchannel_name_valid(portchannel_name) != True: - ctx.fail("{} is invalid!, name should have prefix '{}' and suffix '{}'" .format(portchannel_name, CFG_PORTCHANNEL_PREFIX, CFG_PORTCHANNEL_NO)) - db.set_entry('MCLAG_INTERFACE', (domain_id, portchannel_name), {'if_type':"PortChannel"} ) + if ADHOC_VALIDATION: + if is_portchannel_name_valid(portchannel_name) != True: + ctx.fail("{} is invalid!, name should have prefix '{}' and suffix '{}'" .format(portchannel_name, CFG_PORTCHANNEL_PREFIX, CFG_PORTCHANNEL_NO)) + try: + db.set_entry('MCLAG_INTERFACE', (domain_id, portchannel_name), {'if_type':"PortChannel"} ) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) @mclag_member.command('del') @click.argument('domain_id', metavar='', required=True) @@ -277,13 +300,17 @@ def add_mclag_member(ctx, domain_id, portchannel_names): @click.pass_context def del_mclag_member(ctx, domain_id, portchannel_names): """Delete member MCLAG interfaces from MCLAG Domain""" - db = ctx.obj['db'] + db = ValidatedConfigDBConnector(ctx.obj['db']) #split comma seperated portchannel names portchannel_list = portchannel_names.split(",") for portchannel_name in portchannel_list: - if is_portchannel_name_valid(portchannel_name) != True: - ctx.fail("{} is invalid!, name should have prefix '{}' and suffix '{}'" .format(portchannel_name, CFG_PORTCHANNEL_PREFIX, CFG_PORTCHANNEL_NO)) - db.set_entry('MCLAG_INTERFACE', (domain_id, portchannel_name), None ) + if ADHOC_VALIDATION: + if is_portchannel_name_valid(portchannel_name) != True: + ctx.fail("{} is invalid!, name should have prefix '{}' and suffix '{}'" .format(portchannel_name, CFG_PORTCHANNEL_PREFIX, CFG_PORTCHANNEL_NO)) + try: + db.set_entry('MCLAG_INTERFACE', (domain_id, portchannel_name), None ) + except (JsonPatchConflict, JsonPointerException) as e: + ctx.fail("Failed to delete mclag member {} from mclag domain {}".format(portchannel_name, domain_id)) #mclag unique ip config @mclag.group('unique-ip') @@ -297,7 +324,7 @@ def mclag_unique_ip(ctx): @click.pass_context def add_mclag_unique_ip(ctx, interface_names): """Add Unique IP on MCLAG Vlan interface""" - db = ctx.obj['db'] + db = ValidatedConfigDBConnector(ctx.obj['db']) mclag_domain_keys = db.get_table('MCLAG_DOMAIN').keys() if len(mclag_domain_keys) == 0: ctx.fail("MCLAG not configured. MCLAG should be configured.") @@ -318,14 +345,17 @@ def add_mclag_unique_ip(ctx, interface_names): (intf_name, ip) = k if intf_name == interface_name and ip != 0: ctx.fail("%s is configured with IP %s, remove the IP configuration and reconfigure after enabling unique IP configuration."%(str(intf_name), str(ip))) - db.set_entry('MCLAG_UNIQUE_IP', (interface_name), {'unique_ip':"enable"} ) + try: + db.set_entry('MCLAG_UNIQUE_IP', (interface_name), {'unique_ip':"enable"} ) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) @mclag_unique_ip.command('del') @click.argument('interface_names', metavar='', required=True) @click.pass_context def del_mclag_unique_ip(ctx, interface_names): """Delete Unique IP from MCLAG Vlan interface""" - db = ctx.obj['db'] + db = ValidatedConfigDBConnector(ctx.obj['db']) #split comma seperated interface names interface_list = interface_names.split(",") for interface_name in interface_list: @@ -341,7 +371,10 @@ def del_mclag_unique_ip(ctx, interface_names): (intf_name, ip) = k if intf_name == interface_name and ip != 0: ctx.fail("%s is configured with IP %s, remove the IP configuration and reconfigure after disabling unique IP configuration."%(str(intf_name), str(ip))) - db.set_entry('MCLAG_UNIQUE_IP', (interface_name), None ) + try: + db.set_entry('MCLAG_UNIQUE_IP', (interface_name), None ) + except (JsonPatchConflict, JsonPointerException) as e: + ctx.fail("Failed to delete mclag unique IP from Vlan interface {}".format(interface_name)) ####### diff --git a/config/muxcable.py b/config/muxcable.py index f53eae22..ba80cb02 100644 --- a/config/muxcable.py +++ b/config/muxcable.py @@ -246,7 +246,7 @@ def lookup_statedb_and_update_configdb(db, per_npu_statedb, config_db, port, sta ipv6_value = get_value_for_key_in_config_tbl(config_db, port, "server_ipv6", "MUX_CABLE") soc_ipv4_value = get_optional_value_for_key_in_config_tbl(config_db, port, "soc_ipv4", "MUX_CABLE") cable_type = get_optional_value_for_key_in_config_tbl(config_db, port, "cable_type", "MUX_CABLE") - + ctx = click.get_current_context() state = get_value_for_key_in_dict(muxcable_statedb_dict, port, "state", "MUX_CABLE_TABLE") port_name = platform_sfputil_helper.get_interface_alias(port, db) @@ -255,15 +255,21 @@ def lookup_statedb_and_update_configdb(db, per_npu_statedb, config_db, port, sta port_status_dict[port_name] = 'OK' else: if cable_type is not None or soc_ipv4_value is not None: - config_db.set_entry("MUX_CABLE", port, {"state": state_cfg_val, - "server_ipv4": ipv4_value, - "server_ipv6": ipv6_value, - "soc_ipv4":soc_ipv4_value, - "cable_type": cable_type}) + try: + config_db.set_entry("MUX_CABLE", port, {"state": state_cfg_val, + "server_ipv4": ipv4_value, + "server_ipv6": ipv6_value, + "soc_ipv4":soc_ipv4_value, + "cable_type": cable_type}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) else: - config_db.set_entry("MUX_CABLE", port, {"state": state_cfg_val, - "server_ipv4": ipv4_value, - "server_ipv6": ipv6_value}) + try: + config_db.set_entry("MUX_CABLE", port, {"state": state_cfg_val, + "server_ipv4": ipv4_value, + "server_ipv6": ipv6_value}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) if (str(state_cfg_val) == 'active' and str(state) != 'active') or (str(state_cfg_val) == 'standby' and str(state) != 'standby'): port_status_dict[port_name] = 'INPROGRESS' else: @@ -274,9 +280,13 @@ def update_configdb_pck_loss_data(config_db, port, val): ipv4_value = get_value_for_key_in_config_tbl(config_db, port, "server_ipv4", "MUX_CABLE") ipv6_value = get_value_for_key_in_config_tbl(config_db, port, "server_ipv6", "MUX_CABLE") - config_db.set_entry("MUX_CABLE", port, {"state": configdb_state, + try: + config_db.set_entry("MUX_CABLE", port, {"state": configdb_state, "server_ipv4": ipv4_value, "server_ipv6": ipv6_value, "pck_loss_data_reset": val}) + except ValueError as e: + ctx = click.get_current_context() + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # 'muxcable' command ("config muxcable mode active|auto") @muxcable.command() diff --git a/config/nat.py b/config/nat.py index 99e21b27..8d2ad32c 100644 --- a/config/nat.py +++ b/config/nat.py @@ -1,8 +1,12 @@ import ipaddress import click +from jsonpatch import JsonPatchConflict +from jsonpointer import JsonPointerException from swsscommon.swsscommon import SonicV2Connector, ConfigDBConnector +from .validated_config_db_connector import ValidatedConfigDBConnector +ADHOC_VALIDATION = True def is_valid_ipv4_address(address): """Check if the given ipv4 address is valid""" @@ -243,15 +247,15 @@ def static(): @click.option('-twice_nat_id', metavar='', required=False, type=click.IntRange(1, 9999), help="Set the twice nat id") def add_basic(ctx, global_ip, local_ip, nat_type, twice_nat_id): """Add Static NAT-related configutation""" + if ADHOC_VALIDATION: + # Verify the ip address format + if is_valid_ipv4_address(local_ip) is False: + ctx.fail("Given local ip address {} is invalid. Please enter a valid local ip address !!".format(local_ip)) - # Verify the ip address format - if is_valid_ipv4_address(local_ip) is False: - ctx.fail("Given local ip address {} is invalid. Please enter a valid local ip address !!".format(local_ip)) - - if is_valid_ipv4_address(global_ip) is False: - ctx.fail("Given global ip address {} is invalid. Please enter a valid global ip address !!".format(global_ip)) + if is_valid_ipv4_address(global_ip) is False: + ctx.fail("Given global ip address {} is invalid. Please enter a valid global ip address !!".format(global_ip)) - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() entryFound = False @@ -304,13 +308,25 @@ def add_basic(ctx, global_ip, local_ip, nat_type, twice_nat_id): ctx.fail("Same Twice nat id is not allowed for more than 2 entries!!") if nat_type is not None and twice_nat_id is not None: - config_db.set_entry(table, key, {dataKey1: local_ip, dataKey2: nat_type, dataKey3: twice_nat_id}) + try: + config_db.set_entry(table, key, {dataKey1: local_ip, dataKey2: nat_type, dataKey3: twice_nat_id}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) elif nat_type is not None: - config_db.set_entry(table, key, {dataKey1: local_ip, dataKey2: nat_type}) + try: + config_db.set_entry(table, key, {dataKey1: local_ip, dataKey2: nat_type}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) elif twice_nat_id is not None: - config_db.set_entry(table, key, {dataKey1: local_ip, dataKey3: twice_nat_id}) + try: + config_db.set_entry(table, key, {dataKey1: local_ip, dataKey3: twice_nat_id}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) else: - config_db.set_entry(table, key, {dataKey1: local_ip}) + try: + config_db.set_entry(table, key, {dataKey1: local_ip}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'nat add static tcp' command ('config nat add static tcp ') @@ -325,15 +341,15 @@ def add_basic(ctx, global_ip, local_ip, nat_type, twice_nat_id): @click.option('-twice_nat_id', metavar='', required=False, type=click.IntRange(1, 9999), help="Set the twice nat id") def add_tcp(ctx, global_ip, global_port, local_ip, local_port, nat_type, twice_nat_id): """Add Static TCP Protocol NAPT-related configutation""" + if ADHOC_VALIDATION: + # Verify the ip address format + if is_valid_ipv4_address(local_ip) is False: + ctx.fail("Given local ip address {} is invalid. Please enter a valid local ip address !!".format(local_ip)) - # Verify the ip address format - if is_valid_ipv4_address(local_ip) is False: - ctx.fail("Given local ip address {} is invalid. Please enter a valid local ip address !!".format(local_ip)) - - if is_valid_ipv4_address(global_ip) is False: - ctx.fail("Given global ip address {} is invalid. Please enter a valid global ip address !!".format(global_ip)) + if is_valid_ipv4_address(global_ip) is False: + ctx.fail("Given global ip address {} is invalid. Please enter a valid global ip address !!".format(global_ip)) - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() entryFound = False @@ -384,13 +400,25 @@ def add_tcp(ctx, global_ip, global_port, local_ip, local_port, nat_type, twice_n ctx.fail("Same Twice nat id is not allowed for more than 2 entries!!") if nat_type is not None and twice_nat_id is not None: - config_db.set_entry(table, key, {dataKey1: local_ip, dataKey2: local_port, dataKey3: nat_type, dataKey4: twice_nat_id}) + try: + config_db.set_entry(table, key, {dataKey1: local_ip, dataKey2: local_port, dataKey3: nat_type, dataKey4: twice_nat_id}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) elif nat_type is not None: - config_db.set_entry(table, key, {dataKey1: local_ip, dataKey2: local_port, dataKey3: nat_type}) + try: + config_db.set_entry(table, key, {dataKey1: local_ip, dataKey2: local_port, dataKey3: nat_type}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) elif twice_nat_id is not None: - config_db.set_entry(table, key, {dataKey1: local_ip, dataKey2: local_port, dataKey4: twice_nat_id}) + try: + config_db.set_entry(table, key, {dataKey1: local_ip, dataKey2: local_port, dataKey4: twice_nat_id}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) else: - config_db.set_entry(table, key, {dataKey1: local_ip, dataKey2: local_port}) + try: + config_db.set_entry(table, key, {dataKey1: local_ip, dataKey2: local_port}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'nat add static udp' command ('config nat add static udp ') @@ -405,15 +433,16 @@ def add_tcp(ctx, global_ip, global_port, local_ip, local_port, nat_type, twice_n @click.option('-twice_nat_id', metavar='', required=False, type=click.IntRange(1, 9999), help="Set the twice nat id") def add_udp(ctx, global_ip, global_port, local_ip, local_port, nat_type, twice_nat_id): """Add Static UDP Protocol NAPT-related configutation""" + + if ADHOC_VALIDATION: + # Verify the ip address format + if is_valid_ipv4_address(local_ip) is False: + ctx.fail("Given local ip address {} is invalid. Please enter a valid local ip address !!".format(local_ip)) - # Verify the ip address format - if is_valid_ipv4_address(local_ip) is False: - ctx.fail("Given local ip address {} is invalid. Please enter a valid local ip address !!".format(local_ip)) - - if is_valid_ipv4_address(global_ip) is False: - ctx.fail("Given global ip address {} is invalid. Please enter a valid global ip address !!".format(global_ip)) + if is_valid_ipv4_address(global_ip) is False: + ctx.fail("Given global ip address {} is invalid. Please enter a valid global ip address !!".format(global_ip)) - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() entryFound = False @@ -464,13 +493,25 @@ def add_udp(ctx, global_ip, global_port, local_ip, local_port, nat_type, twice_n ctx.fail("Same Twice nat id is not allowed for more than 2 entries!!") if nat_type is not None and twice_nat_id is not None: - config_db.set_entry(table, key, {dataKey1: local_ip, dataKey2: local_port, dataKey3: nat_type, dataKey4: twice_nat_id}) + try: + config_db.set_entry(table, key, {dataKey1: local_ip, dataKey2: local_port, dataKey3: nat_type, dataKey4: twice_nat_id}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) elif nat_type is not None: - config_db.set_entry(table, key, {dataKey1: local_ip, dataKey2: local_port, dataKey3: nat_type}) + try: + config_db.set_entry(table, key, {dataKey1: local_ip, dataKey2: local_port, dataKey3: nat_type}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) elif twice_nat_id is not None: - config_db.set_entry(table, key, {dataKey1: local_ip, dataKey2: local_port, dataKey4: twice_nat_id}) + try: + config_db.set_entry(table, key, {dataKey1: local_ip, dataKey2: local_port, dataKey4: twice_nat_id}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) else: - config_db.set_entry(table, key, {dataKey1: local_ip, dataKey2: local_port}) + try: + config_db.set_entry(table, key, {dataKey1: local_ip, dataKey2: local_port}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'nat remove static' group ('config nat remove static ...') @@ -489,15 +530,16 @@ def static(): @click.argument('local_ip', metavar='', required=True) def remove_basic(ctx, global_ip, local_ip): """Remove Static NAT-related configutation""" + + if ADHOC_VALIDATION: + # Verify the ip address format + if is_valid_ipv4_address(local_ip) is False: + ctx.fail("Given local ip address {} is invalid. Please enter a valid local ip address !!".format(local_ip)) - # Verify the ip address format - if is_valid_ipv4_address(local_ip) is False: - ctx.fail("Given local ip address {} is invalid. Please enter a valid local ip address !!".format(local_ip)) - - if is_valid_ipv4_address(global_ip) is False: - ctx.fail("Given global ip address {} is invalid. Please enter a valid global ip address !!".format(global_ip)) + if is_valid_ipv4_address(global_ip) is False: + ctx.fail("Given global ip address {} is invalid. Please enter a valid global ip address !!".format(global_ip)) - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() entryFound = False @@ -508,8 +550,11 @@ def remove_basic(ctx, global_ip, local_ip): data = config_db.get_entry(table, key) if data: if data[dataKey] == local_ip: - config_db.set_entry(table, key, None) - entryFound = True + try: + config_db.set_entry(table, key, None) + entryFound = True + except (JsonPatchConflict, JsonPointerException) as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) if entryFound is False: click.echo("Trying to delete static nat entry, which is not present.") @@ -526,15 +571,16 @@ def remove_basic(ctx, global_ip, local_ip): @click.argument('local_port', metavar='', type=click.IntRange(1, 65535), required=True) def remove_tcp(ctx, global_ip, global_port, local_ip, local_port): """Remove Static TCP Protocol NAPT-related configutation""" + + if ADHOC_VALIDATION: + # Verify the ip address format + if is_valid_ipv4_address(local_ip) is False: + ctx.fail("Given local ip address {} is invalid. Please enter a valid local ip address !!".format(local_ip)) - # Verify the ip address format - if is_valid_ipv4_address(local_ip) is False: - ctx.fail("Given local ip address {} is invalid. Please enter a valid local ip address !!".format(local_ip)) - - if is_valid_ipv4_address(global_ip) is False: - ctx.fail("Given global ip address {} is invalid. Please enter a valid global ip address !!".format(global_ip)) + if is_valid_ipv4_address(global_ip) is False: + ctx.fail("Given global ip address {} is invalid. Please enter a valid global ip address !!".format(global_ip)) - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() entryFound = False @@ -544,8 +590,11 @@ def remove_tcp(ctx, global_ip, global_port, local_ip, local_port): data = config_db.get_entry(table, key) if data: if data['local_ip'] == local_ip and data['local_port'] == str(local_port): - config_db.set_entry(table, key, None) - entryFound = True + try: + config_db.set_entry(table, key, None) + entryFound = True + except (JsonPatchConflict, JsonPointerException) as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) if entryFound is False: click.echo("Trying to delete static napt entry, which is not present.") @@ -561,15 +610,16 @@ def remove_tcp(ctx, global_ip, global_port, local_ip, local_port): @click.argument('local_port', metavar='', type=click.IntRange(1, 65535), required=True) def remove_udp(ctx, global_ip, global_port, local_ip, local_port): """Remove Static UDP Protocol NAPT-related configutation""" + + if ADHOC_VALIDATION: + # Verify the ip address format + if is_valid_ipv4_address(local_ip) is False: + ctx.fail("Given local ip address {} is invalid. Please enter a valid local ip address !!".format(local_ip)) - # Verify the ip address format - if is_valid_ipv4_address(local_ip) is False: - ctx.fail("Given local ip address {} is invalid. Please enter a valid local ip address !!".format(local_ip)) - - if is_valid_ipv4_address(global_ip) is False: - ctx.fail("Given global ip address {} is invalid. Please enter a valid global ip address !!".format(global_ip)) + if is_valid_ipv4_address(global_ip) is False: + ctx.fail("Given global ip address {} is invalid. Please enter a valid global ip address !!".format(global_ip)) - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() entryFound = False @@ -581,8 +631,11 @@ def remove_udp(ctx, global_ip, global_port, local_ip, local_port): data = config_db.get_entry(table, key) if data: if data[dataKey1] == local_ip and data[dataKey2] == str(local_port): - config_db.set_entry(table, key, None) - entryFound = True + try: + config_db.set_entry(table, key, None) + entryFound = True + except (JsonPatchConflict, JsonPointerException) as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) if entryFound is False: click.echo("Trying to delete static napt entry, which is not present.") @@ -595,7 +648,7 @@ def remove_udp(ctx, global_ip, global_port, local_ip, local_port): def remove_static_all(ctx): """Remove all Static related configutation""" - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() tables = ['STATIC_NAT', 'STATIC_NAPT'] @@ -604,7 +657,10 @@ def remove_static_all(ctx): table_dict = config_db.get_table(table_name) if table_dict: for table_key_name in table_dict: - config_db.set_entry(table_name, table_key_name, None) + try: + config_db.set_entry(table_name, table_key_name, None) + except (JsonPatchConflict, JsonPointerException) as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'nat add pool' command ('config nat add pool ') @@ -664,7 +720,7 @@ def add_pool(ctx, pool_name, global_ip_range, global_port_range): else: global_port_range = "NULL" - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() entryFound = False @@ -711,7 +767,10 @@ def add_pool(ctx, pool_name, global_ip_range, global_port_range): ctx.fail("Given Ip address entry is overlapping with existing Static NAT entry !!") if entryFound == False: - config_db.set_entry(table, key, {dataKey1: global_ip_range, dataKey2 : global_port_range}) + try: + config_db.set_entry(table, key, {dataKey1: global_ip_range, dataKey2 : global_port_range}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'nat add binding' command ('config nat add binding ') @@ -740,7 +799,7 @@ def add_binding(ctx, binding_name, pool_name, acl_name, nat_type, twice_nat_id): if len(binding_name) > 32: ctx.fail("Invalid binding name. Maximum allowed binding name is 32 characters !!") - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() data = config_db.get_entry(table, key) @@ -773,7 +832,10 @@ def add_binding(ctx, binding_name, pool_name, acl_name, nat_type, twice_nat_id): if count > 1: ctx.fail("Same Twice nat id is not allowed for more than 2 entries!!") - config_db.set_entry(table, key, {dataKey1: acl_name, dataKey2: pool_name, dataKey3: nat_type, dataKey4: twice_nat_id}) + try: + config_db.set_entry(table, key, {dataKey1: acl_name, dataKey2: pool_name, dataKey3: nat_type, dataKey4: twice_nat_id}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'nat remove pool' command ('config nat remove pool ') @@ -791,7 +853,7 @@ def remove_pool(ctx, pool_name): if len(pool_name) > 32: ctx.fail("Invalid pool name. Maximum allowed pool name is 32 characters !!") - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() data = config_db.get_entry(table, key) @@ -808,7 +870,10 @@ def remove_pool(ctx, pool_name): break if entryFound == False: - config_db.set_entry(table, key, None) + try: + config_db.set_entry(table, key, None) + except (JsonPatchConflict, JsonPointerException) as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'nat remove pools' command ('config nat remove pools') @@ -818,7 +883,7 @@ def remove_pool(ctx, pool_name): def remove_pools(ctx): """Remove all Pools for Dynamic configutation""" - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() entryFound = False @@ -835,8 +900,11 @@ def remove_pools(ctx): entryFound = True break - if entryFound == False: - config_db.set_entry(pool_table_name, pool_key_name, None) + if entryFound == False: + try: + config_db.set_entry(pool_table_name, pool_key_name, None) + except (JsonPatchConflict, JsonPointerException) as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'nat remove binding' command ('config nat remove binding ') @@ -854,7 +922,7 @@ def remove_binding(ctx, binding_name): if len(binding_name) > 32: ctx.fail("Invalid binding name. Maximum allowed binding name is 32 characters !!") - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() data = config_db.get_entry(table, key) @@ -863,7 +931,10 @@ def remove_binding(ctx, binding_name): entryFound = True if entryFound == False: - config_db.set_entry(table, key, None) + try: + config_db.set_entry(table, key, None) + except (JsonPatchConflict, JsonPointerException) as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'nat remove bindings' command ('config nat remove bindings') @@ -873,14 +944,17 @@ def remove_binding(ctx, binding_name): def remove_bindings(ctx): """Remove all Bindings for Dynamic configutation""" - config_db = ConfigDBConnector() + config_db = ValidatedConfigBConnector(ConfigDBConnector()) config_db.connect() binding_table_name = 'NAT_BINDINGS' binding_dict = config_db.get_table(binding_table_name) if binding_dict: for binding_key_name in binding_dict: - config_db.set_entry(binding_table_name, binding_key_name, None) + try: + config_db.set_entry(binding_table_name, binding_key_name, None) + except (JsonPatchConflict, JsonPointerException) as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'nat add interface' command ('config nat add interface -nat_zone ') @@ -892,7 +966,7 @@ def remove_bindings(ctx): def add_interface(ctx, interface_name, nat_zone): """Add interface related nat configuration""" - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() if nat_interface_name_is_valid(interface_name) is False: @@ -912,7 +986,10 @@ def add_interface(ctx, interface_name, nat_zone): if not interface_table_dict or interface_name not in interface_table_dict: ctx.fail("Interface table is not present. Please configure ip-address on {} and apply the nat zone !!".format(interface_name)) - config_db.mod_entry(interface_table_type, interface_name, {"nat_zone": nat_zone}) + try: + config_db.mod_entry(interface_table_type, interface_name, {"nat_zone": nat_zone}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'nat remove interface' command ('config nat remove interface ') @@ -922,7 +999,7 @@ def add_interface(ctx, interface_name, nat_zone): @click.argument('interface_name', metavar='', required=True) def remove_interface(ctx, interface_name): """Remove interface related NAT configuration""" - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() if nat_interface_name_is_valid(interface_name) is False: @@ -942,7 +1019,10 @@ def remove_interface(ctx, interface_name): if not interface_table_dict or interface_name not in interface_table_dict: ctx.fail("Interface table is not present. Ignoring the nat zone configuration") - config_db.mod_entry(interface_table_type, interface_name, {"nat_zone": "0"}) + try: + config_db.mod_entry(interface_table_type, interface_name, {"nat_zone": "0"}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'nat remove interfaces' command ('config nat remove interfaces') @@ -951,7 +1031,7 @@ def remove_interface(ctx, interface_name): @click.pass_context def remove_interfaces(ctx): """Remove all interface related NAT configuration""" - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() tables = ['INTERFACE', 'PORTCHANNEL_INTERFACE', 'VLAN_INTERFACE', 'LOOPBACK_INTERFACE'] @@ -964,7 +1044,10 @@ def remove_interfaces(ctx): if isinstance(table_key_name, str) is False: continue - config_db.set_entry(table_name, table_key_name, nat_config) + try: + config_db.set_entry(table_name, table_key_name, nat_config) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'nat feature' group ('config nat feature ') @@ -982,9 +1065,12 @@ def feature(): def enable(ctx): """Enbale the NAT feature """ - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() - config_db.mod_entry("NAT_GLOBAL", "Values", {"admin_mode": "enabled"}) + try: + config_db.mod_entry("NAT_GLOBAL", "Values", {"admin_mode": "enabled"}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'nat feature disable' command ('config nat feature disable>') @@ -993,9 +1079,12 @@ def enable(ctx): @click.pass_context def disable(ctx): """Disable the NAT feature """ - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() - config_db.mod_entry("NAT_GLOBAL", "Values", {"admin_mode": "disabled"}) + try: + config_db.mod_entry("NAT_GLOBAL", "Values", {"admin_mode": "disabled"}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'nat set timeout' command ('config nat set timeout ') @@ -1005,10 +1094,13 @@ def disable(ctx): @click.argument('seconds', metavar='', type=click.IntRange(300, 432000), required=True) def timeout(ctx, seconds): """Set NAT timeout configuration""" - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() - - config_db.mod_entry("NAT_GLOBAL", "Values", {"nat_timeout": seconds}) + + try: + config_db.mod_entry("NAT_GLOBAL", "Values", {"nat_timeout": seconds}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'nat set tcp-timeout' command ('config nat set tcp-timeout ') @@ -1018,10 +1110,13 @@ def timeout(ctx, seconds): @click.argument('seconds', metavar='', type=click.IntRange(300, 432000), required=True) def tcp_timeout(ctx, seconds): """Set NAT TCP timeout configuration""" - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() - - config_db.mod_entry("NAT_GLOBAL", "Values", {"nat_tcp_timeout": seconds}) + + try: + config_db.mod_entry("NAT_GLOBAL", "Values", {"nat_tcp_timeout": seconds}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'nat set udp-timeout' command ('config nat set udp-timeout ') @@ -1031,10 +1126,13 @@ def tcp_timeout(ctx, seconds): @click.argument('seconds', metavar='', type=click.IntRange(120, 600), required=True) def udp_timeout(ctx, seconds): """Set NAT UDP timeout configuration""" - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() - config_db.mod_entry("NAT_GLOBAL", "Values", {"nat_udp_timeout": seconds}) + try: + config_db.mod_entry("NAT_GLOBAL", "Values", {"nat_udp_timeout": seconds}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'nat reset timeout' command ('config nat reset timeout') @@ -1043,11 +1141,14 @@ def udp_timeout(ctx, seconds): @click.pass_context def timeout(ctx): """Reset NAT timeout configuration to default value (600 seconds)""" - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() seconds = 600 - - config_db.mod_entry("NAT_GLOBAL", "Values", {"nat_timeout": seconds}) + + try: + config_db.mod_entry("NAT_GLOBAL", "Values", {"nat_timeout": seconds}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'nat reset tcp-timeout' command ('config nat reset tcp-timeout') @@ -1056,11 +1157,14 @@ def timeout(ctx): @click.pass_context def tcp_timeout(ctx): """Reset NAT TCP timeout configuration to default value (86400 seconds)""" - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() seconds = 86400 - - config_db.mod_entry("NAT_GLOBAL", "Values", {"nat_tcp_timeout": seconds}) + + try: + config_db.mod_entry("NAT_GLOBAL", "Values", {"nat_tcp_timeout": seconds}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) # # 'nat reset udp-timeout' command ('config nat reset udp-timeout') @@ -1069,8 +1173,11 @@ def tcp_timeout(ctx): @click.pass_context def udp_timeout(ctx): """Reset NAT UDP timeout configuration to default value (300 seconds)""" - config_db = ConfigDBConnector() + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) config_db.connect() seconds = 300 - - config_db.mod_entry("NAT_GLOBAL", "Values", {"nat_udp_timeout": seconds}) + + try: + config_db.mod_entry("NAT_GLOBAL", "Values", {"nat_udp_timeout": seconds}) + except ValueError as e: + ctx.fail("Invalid ConfigDB. Error: {}".format(e)) diff --git a/tests/config_test.py b/tests/config_test.py index 4ebc14cd..c1bb86fe 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -8,6 +8,7 @@ import unittest import ipaddress from unittest import mock +from jsonpatch import JsonPatchConflict import click from click.testing import CliRunner @@ -1873,3 +1874,64 @@ def test_add_loopback_adhoc_validation(self): @classmethod def teardown_class(cls): print("TEARDOWN") + + +class TestConfigNtp(object): + @classmethod + def setup_class(cls): + print("SETUP") + import config.main + importlib.reload(config.main) + + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=ValueError)) + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + def test_add_ntp_server_failed_yang_validation(self): + config.ADHOC_VALIDATION = False + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + result = runner.invoke(config.config.commands["ntp"], ["add", "10.10.10.x"], obj=obj) + print(result.exit_code) + print(result.output) + assert "Invalid ConfigDB. Error" in result.output + + def test_add_ntp_server_invalid_ip(self): + config.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + result = runner.invoke(config.config.commands["ntp"], ["add", "10.10.10.x"], obj=obj) + print(result.exit_code) + print(result.output) + assert "Invalid IP address" in result.output + + def test_del_ntp_server_invalid_ip(self): + config.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + result = runner.invoke(config.config.commands["ntp"], ["del", "10.10.10.x"], obj=obj) + print(result.exit_code) + print(result.output) + assert "Invalid IP address" in result.output + + @patch("config.main.ConfigDBConnector.get_table", mock.Mock(return_value="10.10.10.10")) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=JsonPatchConflict)) + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + def test_del_ntp_server_invalid_ip_yang_validation(self): + config.ADHOC_VALIDATION = False + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + result = runner.invoke(config.config.commands["ntp"], ["del", "10.10.10.10"], obj=obj) + print(result.exit_code) + print(result.output) + assert "Invalid ConfigDB. Error" in result.output + + @classmethod + def teardown_class(cls): + print("TEARDOWN") diff --git a/tests/console_test.py b/tests/console_test.py index 8161eda7..528f5f4b 100644 --- a/tests/console_test.py +++ b/tests/console_test.py @@ -1,8 +1,10 @@ import os import sys import subprocess +import jsonpatch import pexpect from unittest import mock +from mock import patch import pytest @@ -14,6 +16,7 @@ from utilities_common.db import Db from consutil.lib import * from sonic_py_common import device_info +from jsonpatch import JsonPatchConflict class TestConfigConsoleCommands(object): @classmethod @@ -28,6 +31,16 @@ def test_enable_console_switch(self): print(result.exit_code) print(sys.stderr, result.output) assert result.exit_code == 0 + + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_enable_console_switch_yang_validation(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(config.config.commands["console"].commands["enable"]) + print(result.exit_code) + assert "Invalid ConfigDB. Error" in result.output def test_disable_console_switch(self): runner = CliRunner() @@ -38,6 +51,17 @@ def test_disable_console_switch(self): print(sys.stderr, result.output) assert result.exit_code == 0 + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_disable_console_switch_yang_validation(self): + runner = CliRunner() + db = Db() + + result = runner.invoke(config.config.commands["console"].commands["disable"]) + print(result.exit_code) + print(sys.stderr, result.output) + assert "Invalid ConfigDB. Error" in result.output + def test_console_add_exists(self): runner = CliRunner() db = Db() @@ -95,6 +119,18 @@ def test_console_add_success(self): print(sys.stderr, result.output) assert result.exit_code == 0 + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=ValueError)) + def test_console_add_yang_validation(self): + runner = CliRunner() + db = Db() + + # add a console setting without flow control option + result = runner.invoke(config.config.commands["console"].commands["add"], ["0", '--baud', "9600"], obj=db) + print(result.exit_code) + print(sys.stderr, result.output) + assert "Invalid ConfigDB. Error" in result.output + def test_console_del_non_exists(self): runner = CliRunner() db = Db() @@ -117,6 +153,19 @@ def test_console_del_success(self): print(sys.stderr, result.output) assert result.exit_code == 0 + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=JsonPatchConflict)) + def test_console_del_yang_validation(self): + runner = CliRunner() + db = Db() + db.cfgdb.set_entry("CONSOLE_PORT", "1", { "baud_rate" : "9600" }) + + # add a console setting which the port exists + result = runner.invoke(config.config.commands["console"].commands["del"], ["1"], obj=db) + print(result.exit_code) + print(sys.stderr, result.output) + assert "Invalid ConfigDB. Error" in result.output + def test_update_console_remote_device_name_non_exists(self): runner = CliRunner() db = Db() @@ -163,6 +212,19 @@ def test_update_console_remote_device_name_reset(self): print(sys.stderr, result.output) assert result.exit_code == 0 + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_update_console_remote_device_name_reset_yang_validation(self): + runner = CliRunner() + db = Db() + db.cfgdb.set_entry("CONSOLE_PORT", 2, { "remote_device" : "switch1" }) + + # trying to reset a console line remote device configuration which is not exists + result = runner.invoke(config.config.commands["console"].commands["remote_device"], ["2"], obj=db) + print(result.exit_code) + print(sys.stderr, result.output) + assert "Invalid ConfigDB. Error" in result.output + def test_update_console_remote_device_name_success(self): runner = CliRunner() db = Db() @@ -174,6 +236,19 @@ def test_update_console_remote_device_name_success(self): print(sys.stderr, result.output) assert result.exit_code == 0 + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_update_console_remote_device_name_yang_validation(self): + runner = CliRunner() + db = Db() + db.cfgdb.set_entry("CONSOLE_PORT", "1", { "baud_rate" : "9600" }) + + # trying to set a console line remote device configuration + result = runner.invoke(config.config.commands["console"].commands["remote_device"], ["1", "switch1"], obj=db) + print(result.exit_code) + print(sys.stderr, result.output) + assert "Invalid ConfigDB. Error" in result.output + def test_update_console_baud_no_change(self): runner = CliRunner() db = Db() @@ -207,6 +282,19 @@ def test_update_console_baud_success(self): print(sys.stderr, result.output) assert result.exit_code == 0 + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_update_console_baud_yang_validation(self): + runner = CliRunner() + db = Db() + db.cfgdb.set_entry("CONSOLE_PORT", "1", { "baud_rate" : "9600" }) + + # trying to set a console line baud + result = runner.invoke(config.config.commands["console"].commands["baud"], ["1", "115200"], obj=db) + print(result.exit_code) + print(sys.stderr, result.output) + assert "Invalid ConfigDB. Error" in result.output + def test_update_console_flow_control_no_change(self): runner = CliRunner() db = Db() @@ -240,6 +328,19 @@ def test_update_console_flow_control_success(self): print(sys.stderr, result.output) assert result.exit_code == 0 + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_update_console_flow_control_yang_validation(self): + runner = CliRunner() + db = Db() + db.cfgdb.set_entry("CONSOLE_PORT", "1", { "baud_rate" : "9600", "flow_control" : "0" }) + + # trying to set a console line flow control option + result = runner.invoke(config.config.commands["console"].commands["flow_control"], ["enable", "1"], obj=db) + print(result.exit_code) + print(sys.stderr, result.output) + assert "Invalid ConfigDB. Error" in result.output + class TestConsutilLib(object): @classmethod def setup_class(cls): diff --git a/tests/kube_test.py b/tests/kube_test.py index e49a2a55..5b51049e 100644 --- a/tests/kube_test.py +++ b/tests/kube_test.py @@ -1,5 +1,8 @@ +import mock + from click.testing import CliRunner from utilities_common.db import Db +from mock import patch show_no_server_output="""\ Kubernetes server is not configured @@ -110,8 +113,30 @@ def test_no_kube_server(self, get_cmd_module): result = runner.invoke(show.cli.commands["kubernetes"].commands["server"].commands["config"], [], obj=db) self.__check_res(result, "config command default value", show_server_output_5) + + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_no_kube_server_yang_validation(self, get_cmd_module): + (config, show) = get_cmd_module + runner = CliRunner() + db = Db() + db.cfgdb.delete_table("KUBERNETES_MASTER") + # Check server not configured + result = runner.invoke(show.cli.commands["kubernetes"].commands["server"].commands["config"], [], obj=db) + self.__check_res(result, "null server config test", show_no_server_output) + + # Add IP when not configured + result = runner.invoke(config.config.commands["kubernetes"].commands["server"], ["ip", "10.10.10.11"], obj=db) + assert "Invalid ConfigDB. Error" in result.output + + db.cfgdb.mod_entry("KUBERNETES_MASTER", "SERVER", {"ip": "10.10.10.11"}) + # Add IP when already configured + result = runner.invoke(config.config.commands["kubernetes"].commands["server"], ["ip", "10.10.10.12"], obj=db) + assert "Invalid ConfigDB. Error" in result.output + + def test_only_kube_server(self, get_cmd_module): (config, show) = get_cmd_module runner = CliRunner() diff --git a/tests/mclag_test.py b/tests/mclag_test.py index a6531740..2401978e 100644 --- a/tests/mclag_test.py +++ b/tests/mclag_test.py @@ -1,14 +1,19 @@ import os import traceback +import mock +import jsonpatch from click.testing import CliRunner import config.main as config +import config.mclag as mclag import show.main as show from utilities_common.db import Db - +from mock import patch +from jsonpatch import JsonPatchConflict MCLAG_DOMAIN_ID = "123" +MCLAG_NONEXISTENT_DOMAIN_ID = "234" MCLAG_INVALID_DOMAIN_ID1 = "-1" MCLAG_INVALID_DOMAIN_ID2 = "5000" MCLAG_DOMAIN_ID2 = "500" @@ -87,6 +92,7 @@ def verify_mclag_interface(self, db, domain_id, intf_str): return False def test_add_mclag_with_invalid_src_ip(self): + mclag.ADHOC_VALIDATION = True runner = CliRunner() db = Db() obj = {'db':db.cfgdb} @@ -223,9 +229,33 @@ def test_add_invalid_mclag_domain(self): result = runner.invoke(config.config.commands["mclag"].commands["add"], [5000, MCLAG_SRC_IP, MCLAG_PEER_IP, MCLAG_PEER_LINK], obj=obj) assert result.exit_code != 0, "mclag invalid domain test case with code {}:{} Output:{}".format(type(result.exit_code), result.exit_code, result.output) + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=ValueError)) + def test_add_mclag_domain_invalid_yang_validation(self): + mclag.ADHOC_VALIDATION = False + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + # add invalid mclag domain + result = runner.invoke(config.config.commands["mclag"].commands["add"], [MCLAG_DOMAIN_ID, MCLAG_SRC_IP, MCLAG_PEER_IP, MCLAG_INVALID_PEER_LINK4], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + @patch("config.main.ConfigDBConnector.get_table", mock.Mock(return_value={"123": "xyz"})) + def test_add_mclag_domain_invalid_yang_validation_override(self): + mclag.ADHOC_VALIDATION = False + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + # add invalid mclag domain + result = runner.invoke(config.config.commands["mclag"].commands["add"], [MCLAG_DOMAIN_ID, MCLAG_SRC_IP, MCLAG_PEER_IP, MCLAG_INVALID_PEER_LINK4], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + def test_add_mclag_domain(self): + mclag.ADHOC_VALIDATION = True runner = CliRunner() db = Db() obj = {'db':db.cfgdb} @@ -378,10 +408,29 @@ def test_mclag_add_invalid_member(self): result = runner.invoke(config.config.commands["mclag"].commands["member"].commands["add"], [MCLAG_DOMAIN_ID, MCLAG_INVALID_PORTCHANNEL4], obj=obj) assert result.exit_code != 0, "mclag invalid member add case failed with code {}:{} Output:{}".format(type(result.exit_code), result.exit_code, result.output) + + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=ValueError)) + def test_mclag_add_invalid_member_yang_validation(self): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + mclag.ADHOC_VALIDATION = False + + # add valid mclag domain + db.cfgdb.set_entry("MCLAG_DOMAIN", MCLAG_DOMAIN_ID, {"source_ip": MCLAG_SRC_IP, "peer_ip": MCLAG_PEER_IP, "peer_link": MCLAG_PEER_LINK}) + + with mock.patch('validated_config_db_connector.device_info.is_yang_config_validation_enabled', mock.Mock(return_value=True)): + result = runner.invoke(config.config.commands["mclag"].commands["member"].commands["add"], [MCLAG_DOMAIN_ID, MCLAG_INVALID_MCLAG_MEMBER], obj=obj) + print(result.exit_code) + print(result.output) + assert "Invalid ConfigDB. Error" in result.output + + def test_mclag_add_member(self): runner = CliRunner() db = Db() obj = {'db':db.cfgdb} + mclag.ADHOC_VALIDATION = True # add valid mclag domain @@ -447,6 +496,29 @@ def test_mclag_add_member(self): assert result.exit_code != 0, "mclag invalid member del case failed with code {}:{} Output:{}".format(type(result.exit_code), result.exit_code, result.output) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=ValueError)) + def test_mclag_add__unique_ip_yang_validation(self): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + db.cfgdb.set_entry("MCLAG_DOMAIN", MCLAG_DOMAIN_ID, {"source_ip": MCLAG_SRC_IP}) + + with mock.patch('validated_config_db_connector.device_info.is_yang_config_validation_enabled', return_value=True): + result = runner.invoke(config.config.commands["mclag"].commands["unique-ip"].commands["add"], [MCLAG_UNIQUE_IP_VLAN], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=JsonPatchConflict)) + def test_mclag_del_unique_ip_yang_validation(self): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + db.cfgdb.set_entry("MCLAG_DOMAIN", MCLAG_DOMAIN_ID, {"source_ip": MCLAG_SRC_IP}) + + with mock.patch('validated_config_db_connector.device_info.is_yang_config_validation_enabled', return_value=True): + result = runner.invoke(config.config.commands["mclag"].commands["unique-ip"].commands["del"], [MCLAG_UNIQUE_IP_VLAN], obj=obj) + assert "Failed to delete mclag unique IP" in result.output + def test_mclag_add_unique_ip(self, mock_restart_dhcp_relay_service): runner = CliRunner() @@ -544,12 +616,18 @@ def test_add_mclag_with_invalid_domain_id(self): result = runner.invoke(config.config.commands["mclag"].commands["add"], [MCLAG_INVALID_DOMAIN_ID2, MCLAG_SRC_IP, MCLAG_PEER_IP, MCLAG_PEER_LINK], obj=obj) assert result.exit_code != 0, "mclag invalid src ip test caase with code {}:{} Output:{}".format(type(result.exit_code), result.exit_code, result.output) - + def test_del_mclag_with_invalid_domain_id(self): + mclag.ADHOC_VALIDATION = True runner = CliRunner() db = Db() obj = {'db':db.cfgdb} + with mock.patch('config.main.ConfigDBConnector.get_entry', return_value=None): + # del mclag nonexistent domain_id + result = runner.invoke(config.config.commands["mclag"].commands["del"], [MCLAG_NONEXISTENT_DOMAIN_ID], obj=obj) + assert result.exit_code != 0, "mclag invalid domain id test case with code {}:{} Output:{}".format(type(result.exit_code), result.exit_code, result.output) + # del mclag with invalid domain_id result = runner.invoke(config.config.commands["mclag"].commands["del"], [MCLAG_INVALID_DOMAIN_ID1], obj=obj) assert result.exit_code != 0, "mclag invalid domain id test case with code {}:{} Output:{}".format(type(result.exit_code), result.exit_code, result.output) @@ -557,10 +635,10 @@ def test_del_mclag_with_invalid_domain_id(self): result = runner.invoke(config.config.commands["mclag"].commands["del"], [MCLAG_INVALID_DOMAIN_ID2], obj=obj) assert result.exit_code != 0, "mclag invalid domain id test case with code {}:{} Output:{}".format(type(result.exit_code), result.exit_code, result.output) result = runner.invoke(config.config.commands["mclag"].commands["del"], [MCLAG_DOMAIN_ID3], obj=obj) + print(result.output) assert result.exit_code == 0, "mclag invalid domain id test case with code {}:{} Output:{}".format(type(result.exit_code), result.exit_code, result.output) - def test_modify_mclag_domain(self): runner = CliRunner() db = Db() @@ -568,15 +646,14 @@ def test_modify_mclag_domain(self): # add mclag domain entry in db db.cfgdb.set_entry("MCLAG_DOMAIN", MCLAG_DOMAIN_ID, {"source_ip": MCLAG_SRC_IP}) - result = runner.invoke(config.config.commands["mclag"].commands["add"], [MCLAG_DOMAIN_ID, MCLAG_SRC_IP, MCLAG_PEER_IP, MCLAG_PEER_LINK], obj=obj) - assert result.exit_code != 0, "mclag add domain peer ip test caase with code {}:{} Output:{}".format(type(result.exit_code), result.exit_code, result.output) + assert result.exit_code == 0, "mclag add domain peer ip test caase with code {}:{} Output:{}".format(type(result.exit_code), result.exit_code, result.output) assert self.verify_mclag_domain_cfg(db, MCLAG_DOMAIN_ID, MCLAG_SRC_IP, MCLAG_PEER_IP, MCLAG_PEER_LINK) == True, "mclag config not found" - + print(result.output) # modify mclag config - result = runner.invoke(config.config.commands["mclag"].commands["add"], [MCLAG_DOMAIN_ID, MCLAG_SRC_IP, MCLAG_PEER_IP, MCLAG_PEER_LINK], obj=obj) - assert result.exit_code != 0, "test_mclag_domain_add_again with code {}:{} Output:{}".format(type(result.exit_code), result.exit_code, result.output) + result = runner.invoke(config.config.commands["mclag"].commands["add"], [MCLAG_DOMAIN_ID, MCLAG_SRC_IP, MCLAG_PEER_IP, MCLAG_PEER_LINK2], obj=obj) + assert result.exit_code == 0, "test_mclag_domain_add_again with code {}:{} Output:{}".format(type(result.exit_code), result.exit_code, result.output) assert self.verify_mclag_domain_cfg(db, MCLAG_DOMAIN_ID, MCLAG_SRC_IP, MCLAG_PEER_IP, MCLAG_PEER_LINK2) == True, "mclag config not modified" @@ -590,6 +667,7 @@ def test_add_mclag_domain_no_peer_link(self): assert result.exit_code != 0, "mclag add domain peer ip test caase with code {}:{} Output:{}".format(type(result.exit_code), result.exit_code, result.output) assert self.verify_mclag_domain_cfg(db, MCLAG_DOMAIN_ID, MCLAG_SRC_IP, MCLAG_PEER_IP) == False, "mclag config not found" + def test_del_mclag_domain_with_members(self): runner = CliRunner() db = Db() @@ -617,11 +695,45 @@ def test_del_mclag_domain_with_members(self): assert self.verify_mclag_interface(db, MCLAG_DOMAIN_ID, MCLAG_MEMBER_PO) == False, "mclag member not deleted" assert self.verify_mclag_domain_cfg(db, MCLAG_DOMAIN_ID) == False, "mclag domain not present" + + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=JsonPatchConflict)) + def test_del_mclag_domain_with_members_invalid_yang_validation(self): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + mclag.ADHOC_VALIDATION = False + + db.cfgdb.set_entry("MCLAG_DOMAIN", MCLAG_DOMAIN_ID, {"source_ip": MCLAG_SRC_IP, "peer_ip": MCLAG_PEER_IP, "peer_link": MCLAG_PEER_LINK}) + db.cfgdb.set_entry('MCLAG_INTERFACE', (MCLAG_DOMAIN_ID, MCLAG_MEMBER_PO), {'if_type':"PortChannel"} ) + db.cfgdb.set_entry('MCLAG_INTERFACE', (MCLAG_DOMAIN_ID, MCLAG_MEMBER_PO2), {'if_type':"PortChannel"} ) + + with mock.patch('validated_config_db_connector.device_info.is_yang_config_validation_enabled', return_value=True): + result = runner.invoke(config.config.commands["mclag"].commands["member"].commands["del"], [MCLAG_DOMAIN_ID, MCLAG_MEMBER_PO2], obj=obj) + assert "Failed to delete mclag member" in result.output + + with mock.patch('validated_config_db_connector.device_info.is_yang_config_validation_enabled', return_value=True): + result = runner.invoke(config.config.commands["mclag"].commands["del"], [MCLAG_DOMAIN_ID], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=JsonPatchConflict)) + def test_del_mclag_domain_invalid_yang_validation(self): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + mclag.ADHOC_VALIDATION = False + + db.cfgdb.set_entry("MCLAG_DOMAIN", MCLAG_DOMAIN_ID, {"source_ip": MCLAG_SRC_IP, "peer_ip": MCLAG_PEER_IP, "peer_link": MCLAG_PEER_LINK}) + with mock.patch('validated_config_db_connector.device_info.is_yang_config_validation_enabled', return_value=True): + result = runner.invoke(config.config.commands["mclag"].commands["del"], [MCLAG_DOMAIN_ID], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + def test_mclag_keepalive_for_non_existent_domain(self): runner = CliRunner() db = Db() obj = {'db':db.cfgdb} + mclag.ADHOC_VALIDATION = True # configure keepalive timer for non-existing domain result = runner.invoke(config.config.commands["mclag"].commands["keepalive-interval"], [MCLAG_DOMAIN_ID, MCLAG_INVALID_KEEPALIVE_TIMER], obj=obj) diff --git a/tests/nat_test.py b/tests/nat_test.py new file mode 100644 index 00000000..e37f13bc --- /dev/null +++ b/tests/nat_test.py @@ -0,0 +1,267 @@ +import mock + +from click.testing import CliRunner +from utilities_common.db import Db +from mock import patch +from jsonpatch import JsonPatchConflict +import config.main as config +import config.nat as nat +import config.validated_config_db_connector as validated_config_db_connector + +class TestNat(object): + @classmethod + def setup_class(cls): + print("SETUP") + + def test_add_basic_invalid(self): + nat.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["nat"].commands["add"].commands["static"], ["basic", "65.66.45.1", "12.12.12.14x", "-nat_type", "dnat"], obj=obj) + assert "Please enter a valid local ip address" in result.output + + result = runner.invoke(config.config.commands["nat"].commands["add"].commands["static"], ["basic", "65.66.45.1x", "12.12.12.14", "-nat_type", "dnat"], obj=obj) + assert "Please enter a valid global ip address" in result.output + + @patch("config.nat.SonicV2Connector.get_all", mock.Mock(return_value={"MAX_NAT_ENTRIES": "9999"})) + @patch("config.nat.SonicV2Connector.exists", mock.Mock(return_value="True")) + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=ValueError)) + def test_add_basic_yang_validation(self): + nat.ADHOC_VALIDATION = False + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["nat"].commands["add"].commands["static"], ["basic", "65.66.45.1", "12.12.12.14", "-nat_type", "dnat", "-twice_nat_id", "3"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + result = runner.invoke(config.config.commands["nat"].commands["add"].commands["static"], ["basic", "65.66.45.1", "12.12.12.14", "-nat_type", "dnat"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + + result = runner.invoke(config.config.commands["nat"].commands["add"].commands["static"], ["basic", "65.66.45.1", "12.12.12.14", "-twice_nat_id", "3"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + result = runner.invoke(config.config.commands["nat"].commands["add"].commands["static"], ["basic", "65.66.45.1", "12.12.12.14"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + def test_add_tcp_invalid(self): + nat.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["nat"].commands["add"].commands["static"], ["tcp", "65.66.45.1", "100", "12.12.12.14x", "200", "-nat_type", "dnat"], obj=obj) + assert "Please enter a valid local ip address" in result.output + + result = runner.invoke(config.config.commands["nat"].commands["add"].commands["static"], ["tcp", "65.66.45.1x", "100", "12.12.12.14", "200", "-nat_type", "dnat"], obj=obj) + assert "Please enter a valid global ip address" in result.output + + @patch("config.nat.SonicV2Connector.get_all", mock.Mock(return_value={"MAX_NAT_ENTRIES": "9999"})) + @patch("config.nat.SonicV2Connector.exists", mock.Mock(return_value="True")) + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=ValueError)) + def test_add_tcp_yang_validation(self): + nat.ADHOC_VALIDATION = False + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["nat"].commands["add"].commands["static"], ["tcp", "65.66.45.1", "100", "12.12.12.14", "200", "-nat_type", "dnat", "-twice_nat_id", "3"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + result = runner.invoke(config.config.commands["nat"].commands["add"].commands["static"], ["tcp", "65.66.45.1", "100", "12.12.12.14", "200", "-nat_type", "dnat"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + + result = runner.invoke(config.config.commands["nat"].commands["add"].commands["static"], ["tcp", "65.66.45.1", "100", "12.12.12.14", "200", "-twice_nat_id", "3"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + result = runner.invoke(config.config.commands["nat"].commands["add"].commands["static"], ["tcp", "65.66.45.1", "100", "12.12.12.14", "200"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + def test_add_udp_invalid(self): + nat.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["nat"].commands["add"].commands["static"], ["udp", "65.66.45.1", "100", "12.12.12.14x", "200", "-nat_type", "dnat"], obj=obj) + assert "Please enter a valid local ip address" in result.output + + result = runner.invoke(config.config.commands["nat"].commands["add"].commands["static"], ["udp", "65.66.45.1x", "100", "12.12.12.14", "200", "-nat_type", "dnat"], obj=obj) + assert "Please enter a valid global ip address" in result.output + + @patch("config.nat.SonicV2Connector.get_all", mock.Mock(return_value={"MAX_NAT_ENTRIES": "9999"})) + @patch("config.nat.SonicV2Connector.exists", mock.Mock(return_value="True")) + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=ValueError)) + def test_add_udp_yang_validation(self): + nat.ADHOC_VALIDATION = False + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["nat"].commands["add"].commands["static"], ["udp", "65.66.45.1", "100", "12.12.12.14", "200", "-nat_type", "dnat", "-twice_nat_id", "3"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + result = runner.invoke(config.config.commands["nat"].commands["add"].commands["static"], ["udp", "65.66.45.1", "100", "12.12.12.14", "200", "-nat_type", "dnat"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + + result = runner.invoke(config.config.commands["nat"].commands["add"].commands["static"], ["udp", "65.66.45.1", "100", "12.12.12.14", "200", "-twice_nat_id", "3"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + result = runner.invoke(config.config.commands["nat"].commands["add"].commands["static"], ["udp", "65.66.45.1", "100", "12.12.12.14", "200"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + def test_remove_basic(self): + nat.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["nat"].commands["remove"].commands["static"].commands["basic"], ["65.66.45.1", "12.12.12.14x"], obj=obj) + assert "Please enter a valid local ip address" in result.output + + result = runner.invoke(config.config.commands["nat"].commands["remove"].commands["static"].commands["basic"], ["65.66.45.1x", "12.12.12.14"], obj=obj) + assert "Please enter a valid global ip address" in result.output + + @patch("config.nat.ConfigDBConnector.get_entry", mock.Mock(return_value={"local_ip": "12.12.12.14"})) + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=JsonPatchConflict)) + def test_remove_basic_yang_validation(self): + nat.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["nat"].commands["remove"].commands["static"].commands["basic"], ["65.66.45.1", "12.12.12.14"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + def test_remove_udp(self): + nat.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["nat"].commands["remove"].commands["static"].commands["udp"], ["65.66.45.1", "100", "12.12.12.14x", "200"], obj=obj) + assert "Please enter a valid local ip address" in result.output + + result = runner.invoke(config.config.commands["nat"].commands["remove"].commands["static"].commands["udp"], ["65.66.45.1x", "100", "12.12.12.14", "200"], obj=obj) + assert "Please enter a valid global ip address" in result.output + + @patch("config.nat.ConfigDBConnector.get_entry", mock.Mock(return_value={"local_ip": "12.12.12.14", "local_port": "200"})) + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=JsonPatchConflict)) + def test_remove_udp_yang_validation(self): + nat.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["nat"].commands["remove"].commands["static"].commands["udp"], ["65.66.45.1", "100", "12.12.12.14", "200"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + @patch("config.nat.ConfigDBConnector.get_table", mock.Mock(return_value={"sample_table_key": "sample_table_value"})) + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=JsonPatchConflict)) + def test_remove_static_all_yang_validation(self): + nat.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["nat"].commands["remove"].commands["static"].commands["all"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_enable_yang_validation(self): + nat.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["nat"].commands["feature"].commands["enable"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_disable_yang_validation(self): + nat.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["nat"].commands["feature"].commands["disable"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_timeout_yang_validation(self): + nat.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["nat"].commands["set"].commands["timeout"], ["301"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_tcp_timeout_yang_validation(self): + nat.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["nat"].commands["set"].commands["tcp-timeout"], ["301"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_udp_timeout_yang_validation(self): + nat.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["nat"].commands["set"].commands["udp-timeout"], ["301"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_reset_timeout_yang_validation(self): + nat.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["nat"].commands["reset"].commands["timeout"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_reset_tcp_timeout_yang_validation(self): + nat.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["nat"].commands["reset"].commands["tcp-timeout"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output + + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + def test_reset_udp_timeout_yang_validation(self): + nat.ADHOC_VALIDATION = True + runner = CliRunner() + db = Db() + obj = {'config_db':db.cfgdb} + + result = runner.invoke(config.config.commands["nat"].commands["reset"].commands["udp-timeout"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output diff --git a/tests/sflow_test.py b/tests/sflow_test.py index 226e52ae..da03ff39 100644 --- a/tests/sflow_test.py +++ b/tests/sflow_test.py @@ -3,6 +3,7 @@ import pytest from unittest import mock +from jsonpatch import JsonPatchConflict from click.testing import CliRunner from utilities_common.db import Db from mock import patch @@ -193,6 +194,25 @@ def test_config_sflow_collector(self): assert result.output == show_sflow_output return + + @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) + @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_set_entry", mock.Mock(side_effect=JsonPatchConflict)) + def test_config_sflow_collector_invalid_yang_validation(self): + db = Db() + runner = CliRunner() + obj = {'db':db.cfgdb} + + config.ADHOC_VALIDTION = False + result = runner.invoke(config.config.commands["sflow"]. + commands["collector"].commands["del"], ["prod"], obj=obj) + print(result.exit_code, result.output) + assert "Invalid ConfigDB. Error" in result.output + + result = runner.invoke(config.config.commands["sflow"]. + commands["collector"].commands["add"], + ["prod", "fe80::6e82:6aff:fe1e:cd8e", "--vrf", "mgmt"], obj=obj) + assert "Invalid ConfigDB. Error" in result.output @patch("validated_config_db_connector.device_info.is_yang_config_validation_enabled", mock.Mock(return_value=True)) @patch("config.validated_config_db_connector.ValidatedConfigDBConnector.validated_mod_entry", mock.Mock(side_effect=ValueError)) From d1cb91572952008dc15249428711324f0cfa3b25 Mon Sep 17 00:00:00 2001 From: Saikrishna Arcot Date: Thu, 6 Apr 2023 15:35:12 -0700 Subject: [PATCH 111/312] Use sonic-swss-common artifacts from the matching source branch (#2783) Signed-off-by: Saikrishna Arcot --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4a00e674..eecf1c9e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -71,7 +71,7 @@ stages: pipeline: 9 artifact: sonic-swss-common runVersion: 'latestFromBranch' - runBranch: 'refs/heads/master' + runBranch: 'refs/heads/$(sourceBranch)' displayName: "Download sonic swss common deb packages" - script: | From adeac253a84b5ee857131a7a54e68685cdf78836 Mon Sep 17 00:00:00 2001 From: dbarashinvd <105214075+dbarashinvd@users.noreply.github.com> Date: Sat, 8 Apr 2023 00:12:02 +0300 Subject: [PATCH 112/312] fix radius error on unicode name error due to python3 (#2751) fixes https://github.com/sonic-net/sonic-buildimage/issues/14356 #### What I did fix radius command python config file for commands that fails with tracebacks due to NameError: name 'unicode' is not define #### How I did it delete any unicode from python config file #### How to verify it run the two radius commands: ``` config radius nasip 1.1.1.1 config radius sourceip 2000::1 ``` and check show radius output ``` show radius ``` #### Previous command output (if the output of a command-line utility has changed) ``` root@qa-eth-vt03-1-4600ca1:/home/admin# config radius nasip 1.1.1.1 Traceback (most recent call last): File "/usr/local/bin/config", line 8, in sys.exit(config()) File "/usr/local/lib/python3.9/dist-packages/click/core.py", line 764, in call return self.main(*args, **kwargs) File "/usr/local/lib/python3.9/dist-packages/click/core.py", line 717, in main rv = self.invoke(ctx) File "/usr/local/lib/python3.9/dist-packages/click/core.py", line 1137, in invoke return _process_result(sub_ctx.command.invoke(sub_ctx)) File "/usr/local/lib/python3.9/dist-packages/click/core.py", line 1137, in invoke return _process_result(sub_ctx.command.invoke(sub_ctx)) File "/usr/local/lib/python3.9/dist-packages/click/core.py", line 956, in invoke return ctx.invoke(self.callback, **ctx.params) File "/usr/local/lib/python3.9/dist-packages/click/core.py", line 555, in invoke return callback(*args, **kwargs) File "/usr/local/lib/python3.9/dist-packages/click/decorators.py", line 17, in new_func return f(get_current_context(), *args, **kwargs) File "/usr/local/lib/python3.9/dist-packages/config/aaa.py", line 448, in nasip v6_invalid_list = [ipaddress.IPv6Address(unicode('0::0')), ipaddress.IPv6Address(unicode('0::1'))] NameError: name 'unicode' is not defined root@qa-eth-vt03-1-4600ca1:/home/admin# config radius sourceip 2000::1 ... File "/usr/local/lib/python3.9/dist-packages/click/decorators.py", line 17, in new_func return f(get_current_context(), *args, **kwargs) File "/usr/local/lib/python3.9/dist-packages/config/aaa.py", line 407, in sourceip v6_invalid_list = [ipaddress.IPv6Address(unicode('0::0')), ipaddress.IPv6Address(unicode('0::1'))] NameError: name 'unicode' is not defined root@qa-eth-vt03-1-4600ca1:/home/admin# ``` #### New command output (if the output of a command-line utility has changed) ``` root@r-panther-13:/home/admin# config radius nasip 1.1.1.1 root@r-panther-13:/home/admin# config radius sourceip 1.1.1.1 root@r-panther-13:/home/admin# show radius RADIUS global auth_type pap (default) RADIUS global retransmit 3 (default) RADIUS global timeout 5 (default) RADIUS global passkey (default) RADIUS global nas_ip 1.1.1.1 RADIUS global src_ip 1.1.1.1 root@r-panther-13:/home/admin# ``` --- config/aaa.py | 8 +++---- tests/radius_test.py | 50 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+), 4 deletions(-) diff --git a/config/aaa.py b/config/aaa.py index 6f4a42b3..3c761871 100644 --- a/config/aaa.py +++ b/config/aaa.py @@ -405,8 +405,8 @@ def sourceip(ctx, src_ip): click.echo('Invalid ip address') return - v6_invalid_list = [ipaddress.IPv6Address(unicode('0::0')), ipaddress.IPv6Address(unicode('0::1'))] - net = ipaddress.ip_network(unicode(src_ip), strict=False) + v6_invalid_list = [ipaddress.IPv6Address('0::0'), ipaddress.IPv6Address('0::1')] + net = ipaddress.ip_network(src_ip, strict=False) if (net.version == 4): if src_ip == "0.0.0.0": click.echo('enter non-zero ip address') @@ -446,8 +446,8 @@ def nasip(ctx, nas_ip): click.echo('Invalid ip address') return - v6_invalid_list = [ipaddress.IPv6Address(unicode('0::0')), ipaddress.IPv6Address(unicode('0::1'))] - net = ipaddress.ip_network(unicode(nas_ip), strict=False) + v6_invalid_list = [ipaddress.IPv6Address('0::0'), ipaddress.IPv6Address('0::1')] + net = ipaddress.ip_network(nas_ip, strict=False) if (net.version == 4): if nas_ip == "0.0.0.0": click.echo('enter non-zero ip address') diff --git a/tests/radius_test.py b/tests/radius_test.py index 49a1ac3e..928e6296 100644 --- a/tests/radius_test.py +++ b/tests/radius_test.py @@ -52,6 +52,16 @@ """ +show_radius_global_nasip_source_ip_output="""\ +RADIUS global auth_type pap (default) +RADIUS global retransmit 3 (default) +RADIUS global timeout 5 (default) +RADIUS global passkey (default) +RADIUS global nas_ip 1.1.1.1 +RADIUS global src_ip 2000::1 + +""" + config_radius_empty_output="""\ """ @@ -217,3 +227,43 @@ def test_config_radius_server_invalid_delete_yang_validation(self): ["delete", "10.10.10.x"]) print(result.output) assert "Invalid ConfigDB. Error" in result.output + + def test_config_radius_nasip_sourceip(self, get_cmd_module): + (config, show) = get_cmd_module + runner = CliRunner() + db = Db() + db.cfgdb.delete_table("RADIUS") + db.cfgdb.delete_table("RADIUS_SERVER") + + result = runner.invoke(config.config.commands["radius"],\ + ["nasip", "1.1.1.1"]) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + result = runner.invoke(config.config.commands["radius"],\ + ["sourceip", "2000::1"]) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + + result = runner.invoke(show.cli.commands["radius"], []) + print(result.exit_code) + print(result.output) + assert result.output == show_radius_default_output + + db.cfgdb.mod_entry("RADIUS", "global", \ + {'auth_type' : 'pap (default)', \ + 'retransmit': '3 (default)', \ + 'timeout' : '5 (default)', \ + 'passkey' : ' (default)', \ + 'nas_ip' : '1.1.1.1', \ + 'src_ip' : '2000::1', \ + } \ + ) + + result = runner.invoke(show.cli.commands["radius"], [], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_radius_global_nasip_source_ip_output From 882da011e8e50642309f979d6a7344bd8dbd6f44 Mon Sep 17 00:00:00 2001 From: Dev Ojha <47282568+developfast@users.noreply.github.com> Date: Fri, 7 Apr 2023 16:30:51 -0700 Subject: [PATCH 113/312] [DBMigrator] Update db_migrator to support EdgeZoneAggregator Buffer Config for T0s (#2747) * Added db_migrator functionality to support EdgeZoneAggregator buffer upgrade for T0s, and unit tests Signed-off-by: dojha * Fixed unit tests and added edge case for non-relevant version upgrades Signed-off-by: dojha * changed cable logic + added 1 more unit test * changed versioning on master to 5_0_1 * fixed version typo * Added proper comments for change * removed port status change * changed version on unit tests * Removed extra whitelines * Made minor changes on comments * Added versions from other branches and resolved comments Signed-off-by: dojha * moved db_migrator change to common migration path * Update sample-t0-edgezoneagg-config-same-cable-output.json --------- Signed-off-by: dojha --- scripts/db_migrator.py | 61 +++++++-- .../sample-t0-edgezoneagg-config-input.json | 123 ++++++++++++++++++ .../sample-t0-edgezoneagg-config-output.json | 123 ++++++++++++++++++ ...0-edgezoneagg-config-same-cable-input.json | 123 ++++++++++++++++++ ...-edgezoneagg-config-same-cable-output.json | 123 ++++++++++++++++++ tests/db_migrator_test.py | 44 ++++++- 6 files changed, 585 insertions(+), 12 deletions(-) create mode 100644 tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-input.json create mode 100644 tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-output.json create mode 100644 tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-same-cable-input.json create mode 100644 tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-same-cable-output.json diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index 64fddea2..5ed4133b 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -167,7 +167,7 @@ def migrate_mgmt_ports_on_s6100(self): self.appDB.set(self.appDB.APPL_DB, 'PORT_TABLE:PortConfigDone', 'count', str(total_count)) log.log_notice("Port count updated from {} to : {}".format(portCount, self.appDB.get(self.appDB.APPL_DB, 'PORT_TABLE:PortConfigDone', 'count'))) return True - + def migrate_intf_table(self): ''' Migrate all data from existing INTF table in APP DB during warmboot with IP Prefix @@ -265,7 +265,6 @@ def migrate_config_db_buffer_tables_for_dynamic_calculation(self, speed_list, ca @append_item_method - a function which is called to append an item to the list of pending commit items any update to buffer configuration will be pended and won't be applied until all configuration is checked and aligns with the default one - 1. Buffer profiles for lossless PGs in BUFFER_PROFILE table will be removed if their names have the convention of pg_lossless___profile where the speed and cable_length belongs speed_list and cable_len_list respectively @@ -349,7 +348,6 @@ def prepare_dynamic_buffer_for_warm_reboot(self, buffer_pools=None, buffer_profi ''' This is the very first warm reboot of buffermgrd (dynamic) if the system reboot from old image by warm-reboot In this case steps need to be taken to get buffermgrd prepared (for warm reboot) - During warm reboot, buffer tables should be installed in the first place. However, it isn't able to achieve that when system is warm-rebooted from an old image without dynamic buffer supported, because the buffer info wasn't in the APPL_DB in the old image. @@ -357,7 +355,6 @@ def prepare_dynamic_buffer_for_warm_reboot(self, buffer_pools=None, buffer_profi During warm-reboot, db_migrator adjusts buffer info in CONFIG_DB by removing some fields according to requirement from dynamic buffer calculation. The buffer info before that adjustment needs to be copied to APPL_DB. - 1. set WARM_RESTART_TABLE|buffermgrd as {restore_count: 0} 2. Copy the following tables from CONFIG_DB into APPL_DB in case of warm reboot The separator in fields that reference objects in other table needs to be updated from '|' to ':' @@ -367,7 +364,6 @@ def prepare_dynamic_buffer_for_warm_reboot(self, buffer_pools=None, buffer_profi - BUFFER_QUEUE, separator updated for field 'profile - BUFFER_PORT_INGRESS_PROFILE_LIST, separator updated for field 'profile_list' - BUFFER_PORT_EGRESS_PROFILE_LIST, separator updated for field 'profile_list' - ''' warmreboot_state = self.stateDB.get(self.stateDB.STATE_DB, 'WARM_RESTART_ENABLE_TABLE|system', 'enable') mmu_size = self.stateDB.get(self.stateDB.STATE_DB, 'BUFFER_MAX_PARAM_TABLE|global', 'mmu_size') @@ -572,7 +568,7 @@ def migrate_port_qos_map_global(self): dscp_to_tc_map_table_names = self.configDB.get_keys('DSCP_TO_TC_MAP') if len(dscp_to_tc_map_table_names) == 0: return - + qos_maps = self.configDB.get_table('PORT_QOS_MAP') if 'global' not in qos_maps.keys(): # We are unlikely to have more than 1 DSCP_TO_TC_MAP in previous versions @@ -596,6 +592,50 @@ def migrate_route_table(self): route_key = "ROUTE_TABLE:{}".format(route_prefix) self.appDB.set(self.appDB.APPL_DB, route_key, 'weight','') + def update_edgezone_aggregator_config(self): + """ + Update cable length configuration in ConfigDB for T0 neighbor interfaces + connected to EdgeZone Aggregator devices, while resetting the port values to trigger a buffer change + 1. Find a list of all interfaces connected to an EdgeZone Aggregator device. + 2. If all the cable lengths are the same, do nothing and return. + 3. If there are different cable lengths, update CABLE_LENGTH values for these interfaces with a constant value of 40m. + """ + device_neighbor_metadata = self.configDB.get_table("DEVICE_NEIGHBOR_METADATA") + device_neighbors = self.configDB.get_table("DEVICE_NEIGHBOR") + cable_length = self.configDB.get_table("CABLE_LENGTH") + port_table = self.configDB.get_table("PORT") + edgezone_aggregator_devs = [] + edgezone_aggregator_intfs = [] + EDGEZONE_AGG_CABLE_LENGTH = "40m" + for k, v in device_neighbor_metadata.items(): + if v.get("type") == "EdgeZoneAggregator": + edgezone_aggregator_devs.append(k) + + if len(edgezone_aggregator_devs) == 0: + return + + for intf, intf_info in device_neighbors.items(): + if intf_info.get("name") in edgezone_aggregator_devs: + edgezone_aggregator_intfs.append(intf) + + cable_length_table = self.configDB.get_entry("CABLE_LENGTH", "AZURE") + first_cable_intf = next(iter(cable_length_table)) + first_cable_length = cable_length_table[first_cable_intf] + index = 0 + + for intf, length in cable_length_table.items(): + index += 1 + if first_cable_length != length: + break + elif index == len(cable_length_table): + # All cable lengths are the same, nothing to modify + return + + for intf, length in cable_length_table.items(): + if intf in edgezone_aggregator_intfs: + # Set new cable length values + self.configDB.set(self.configDB.CONFIG_DB, "CABLE_LENGTH|AZURE", intf, EDGEZONE_AGG_CABLE_LENGTH) + def version_unknown(self): """ version_unknown tracks all SONiC versions that doesn't have a version @@ -757,7 +797,7 @@ def version_2_0_1(self): def version_2_0_2(self): """ Version 2_0_2 - This is the latest version for 202012 branch + This is the latest version for 202012 branch """ log.log_info('Handling version_2_0_2') self.set_version('version_3_0_0') @@ -882,7 +922,7 @@ def version_4_0_0(self): 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' - + def version_4_0_1(self): """ Version 4_0_1. @@ -930,13 +970,16 @@ def common_migration_ops(self): # removed together with calling to migrate_copp_table function. if self.asic_type != "mellanox": self.migrate_copp_table() - if self.asic_type == "broadcom" and 'Force10-S6100' in self.hwsku: + if self.asic_type == "broadcom" and 'Force10-S6100' in self.hwsku: self.migrate_mgmt_ports_on_s6100() else: log.log_notice("Asic Type: {}, Hwsku: {}".format(self.asic_type, self.hwsku)) self.migrate_route_table() + # Updating edgezone aggregator cable length config for T0 devices + self.update_edgezone_aggregator_config() + def migrate(self): version = self.get_version() log.log_info('Upgrading from version ' + version) diff --git a/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-input.json b/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-input.json new file mode 100644 index 00000000..2b24076d --- /dev/null +++ b/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-input.json @@ -0,0 +1,123 @@ +{ + "DEVICE_NEIGHBOR_METADATA|ARISTA01T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA02T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA03T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA04T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR|Ethernet0": { + "name": "ARISTA01T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet4": { + "name": "ARISTA02T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet8": { + "name": "ARISTA03T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet12": { + "name": "ARISTA04T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet16": { + "name": "Servers1", + "port": "eth0" + }, + "DEVICE_NEIGHBOR|Ethernet20": { + "name": "Servers2", + "port": "eth0" + }, + "PORT|Ethernet0": { + "admin_status": "up", + "alias": "Ethernet1/1", + "description": "", + "index": "1", + "lanes": "77,78", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet4": { + "admin_status": "up", + "alias": "Ethernet2/1", + "description": "", + "index": "2", + "lanes": "79,80", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet8": { + "admin_status": "up", + "alias": "Ethernet3/1", + "description": "", + "index": "3", + "lanes": "81,82", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet12": { + "admin_status": "up", + "alias": "Ethernet4/1", + "description": "", + "index": "4", + "lanes": "83,84", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet16": { + "admin_status": "up", + "alias": "Ethernet5/1", + "description": "", + "index": "5", + "lanes": "85,86", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet20": { + "admin_status": "up", + "alias": "Ethernet6/1", + "description": "", + "index": "6", + "lanes": "87,88", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "CABLE_LENGTH|AZURE": { + "Ethernet0": "300m", + "Ethernet4": "300m", + "Ethernet8": "300m", + "Ethernet12": "300m", + "Ethernet16": "5m", + "Ethernet20": "5m" + }, + "VERSIONS|DATABASE": { + "VERSION": "version_4_0_1" + } +} diff --git a/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-output.json b/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-output.json new file mode 100644 index 00000000..16646fc0 --- /dev/null +++ b/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-output.json @@ -0,0 +1,123 @@ +{ + "DEVICE_NEIGHBOR_METADATA|ARISTA01T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA02T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA03T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA04T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR|Ethernet0": { + "name": "ARISTA01T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet4": { + "name": "ARISTA02T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet8": { + "name": "ARISTA03T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet12": { + "name": "ARISTA04T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet16": { + "name": "Servers1", + "port": "eth0" + }, + "DEVICE_NEIGHBOR|Ethernet20": { + "name": "Servers2", + "port": "eth0" + }, + "PORT|Ethernet0": { + "admin_status": "up", + "alias": "Ethernet1/1", + "description": "", + "index": "1", + "lanes": "77,78", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet4": { + "admin_status": "up", + "alias": "Ethernet2/1", + "description": "", + "index": "2", + "lanes": "79,80", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet8": { + "admin_status": "up", + "alias": "Ethernet3/1", + "description": "", + "index": "3", + "lanes": "81,82", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet12": { + "admin_status": "up", + "alias": "Ethernet4/1", + "description": "", + "index": "4", + "lanes": "83,84", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet16": { + "admin_status": "up", + "alias": "Ethernet5/1", + "description": "", + "index": "5", + "lanes": "85,86", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet20": { + "admin_status": "up", + "alias": "Ethernet6/1", + "description": "", + "index": "6", + "lanes": "87,88", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "CABLE_LENGTH|AZURE": { + "Ethernet0": "40m", + "Ethernet4": "40m", + "Ethernet8": "40m", + "Ethernet12": "40m", + "Ethernet16": "5m", + "Ethernet20": "5m" + }, + "VERSIONS|DATABASE": { + "VERSION": "version_4_0_1" + } +} diff --git a/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-same-cable-input.json b/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-same-cable-input.json new file mode 100644 index 00000000..f36bc7c7 --- /dev/null +++ b/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-same-cable-input.json @@ -0,0 +1,123 @@ +{ + "DEVICE_NEIGHBOR_METADATA|ARISTA01T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA02T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA03T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA04T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR|Ethernet0": { + "name": "ARISTA01T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet4": { + "name": "ARISTA02T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet8": { + "name": "ARISTA03T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet12": { + "name": "ARISTA04T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet16": { + "name": "Servers1", + "port": "eth0" + }, + "DEVICE_NEIGHBOR|Ethernet20": { + "name": "Servers2", + "port": "eth0" + }, + "PORT|Ethernet0": { + "admin_status": "up", + "alias": "Ethernet1/1", + "description": "", + "index": "1", + "lanes": "77,78", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet4": { + "admin_status": "up", + "alias": "Ethernet2/1", + "description": "", + "index": "2", + "lanes": "79,80", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet8": { + "admin_status": "up", + "alias": "Ethernet3/1", + "description": "", + "index": "3", + "lanes": "81,82", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet12": { + "admin_status": "up", + "alias": "Ethernet4/1", + "description": "", + "index": "4", + "lanes": "83,84", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet16": { + "admin_status": "up", + "alias": "Ethernet5/1", + "description": "", + "index": "5", + "lanes": "85,86", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet20": { + "admin_status": "up", + "alias": "Ethernet6/1", + "description": "", + "index": "6", + "lanes": "87,88", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "CABLE_LENGTH|AZURE": { + "Ethernet0": "300m", + "Ethernet4": "300m", + "Ethernet8": "300m", + "Ethernet12": "300m", + "Ethernet16": "300m", + "Ethernet20": "300m" + }, + "VERSIONS|DATABASE": { + "VERSION": "version_4_0_1" + } +} diff --git a/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-same-cable-output.json b/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-same-cable-output.json new file mode 100644 index 00000000..f36bc7c7 --- /dev/null +++ b/tests/db_migrator_input/config_db/sample-t0-edgezoneagg-config-same-cable-output.json @@ -0,0 +1,123 @@ +{ + "DEVICE_NEIGHBOR_METADATA|ARISTA01T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA02T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA03T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR_METADATA|ARISTA04T1": { + "hwsku": "Arista-VM", + "mgmt_addr": "10.64.247.200", + "type": "EdgeZoneAggregator" + }, + "DEVICE_NEIGHBOR|Ethernet0": { + "name": "ARISTA01T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet4": { + "name": "ARISTA02T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet8": { + "name": "ARISTA03T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet12": { + "name": "ARISTA04T1", + "port": "Ethernet1" + }, + "DEVICE_NEIGHBOR|Ethernet16": { + "name": "Servers1", + "port": "eth0" + }, + "DEVICE_NEIGHBOR|Ethernet20": { + "name": "Servers2", + "port": "eth0" + }, + "PORT|Ethernet0": { + "admin_status": "up", + "alias": "Ethernet1/1", + "description": "", + "index": "1", + "lanes": "77,78", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet4": { + "admin_status": "up", + "alias": "Ethernet2/1", + "description": "", + "index": "2", + "lanes": "79,80", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet8": { + "admin_status": "up", + "alias": "Ethernet3/1", + "description": "", + "index": "3", + "lanes": "81,82", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet12": { + "admin_status": "up", + "alias": "Ethernet4/1", + "description": "", + "index": "4", + "lanes": "83,84", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet16": { + "admin_status": "up", + "alias": "Ethernet5/1", + "description": "", + "index": "5", + "lanes": "85,86", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "PORT|Ethernet20": { + "admin_status": "up", + "alias": "Ethernet6/1", + "description": "", + "index": "6", + "lanes": "87,88", + "mtu": "9100", + "pfc_asym": "off", + "speed": "100000", + "tpid": "0x8100" + }, + "CABLE_LENGTH|AZURE": { + "Ethernet0": "300m", + "Ethernet4": "300m", + "Ethernet8": "300m", + "Ethernet12": "300m", + "Ethernet16": "300m", + "Ethernet20": "300m" + }, + "VERSIONS|DATABASE": { + "VERSION": "version_4_0_1" + } +} diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index e9c184d1..c06bb11d 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -409,7 +409,7 @@ def test_global_dscp_to_tc_map_migrator(self): dbmgtr_mlnx.migrate() resulting_table = dbmgtr_mlnx.configDB.get_table('PORT_QOS_MAP') assert resulting_table == {} - + class TestMoveLoggerTablesInWarmUpgrade(object): @classmethod def setup_class(cls): @@ -468,11 +468,11 @@ def test_rename_fast_reboot_table_check_enable(self): device_info.get_sonic_version_info = get_sonic_version_info_mlnx dbconnector.dedicated_dbs['STATE_DB'] = os.path.join(mock_db_path, 'state_db', 'fast_reboot_input') dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'empty-config-input') - + import db_migrator dbmgtr = db_migrator.DBMigrator(None) dbmgtr.migrate() - + dbconnector.dedicated_dbs['STATE_DB'] = os.path.join(mock_db_path, 'state_db', 'fast_reboot_expected') expected_db = SonicV2Connector(host='127.0.0.1') expected_db.connect(expected_db.STATE_DB) @@ -585,3 +585,41 @@ def test_migrate_weights_for_nexthops(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 TestWarmUpgrade_T0_EdgeZoneAggregator(object): + @classmethod + def setup_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "2" + + @classmethod + def teardown_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "0" + dbconnector.dedicated_dbs['CONFIG_DB'] = None + + def test_warm_upgrade_t0_edgezone_aggregator_diff_cable_length(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'sample-t0-edgezoneagg-config-input') + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + dbmgtr.migrate() + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'sample-t0-edgezoneagg-config-output') + expected_db = Db() + + resulting_table = dbmgtr.configDB.get_table('CABLE_LENGTH') + expected_table = expected_db.cfgdb.get_table('CABLE_LENGTH') + + diff = DeepDiff(resulting_table, expected_table, ignore_order=True) + assert not diff + + def test_warm_upgrade_t0_edgezone_aggregator_same_cable_length(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'sample-t0-edgezoneagg-config-same-cable-input') + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + dbmgtr.migrate() + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'sample-t0-edgezoneagg-config-same-cable-output') + expected_db = Db() + + resulting_table = dbmgtr.configDB.get_table('CABLE_LENGTH') + expected_table = expected_db.cfgdb.get_table('CABLE_LENGTH') + + diff = DeepDiff(resulting_table, expected_table, ignore_order=True) + assert not diff From ff032fe2102129069cfe4a263c8ba07f515dec18 Mon Sep 17 00:00:00 2001 From: Mai Bui Date: Sun, 9 Apr 2023 21:19:46 -0400 Subject: [PATCH 114/312] [debug/undebug] replace shell=True (#2662) Signed-off-by: Mai Bui #### What I did `subprocess()` - when using with `shell=True` is dangerous. Using subprocess function without a static string can lead to command injection. #### How I did it `subprocess()` - use `shell=False` instead, use list of strings Ref: [https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation](https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation) #### How to verify it Manual test, execute all debug/undebug bgp/zebra commands Add UT --- debug/main.py | 108 ++++---- tests/debug_test.py | 599 ++++++++++++++++++++++++++++++++++++++++++++ undebug/main.py | 108 ++++---- 3 files changed, 711 insertions(+), 104 deletions(-) create mode 100644 tests/debug_test.py diff --git a/debug/main.py b/debug/main.py index 8c502c96..069159fc 100755 --- a/debug/main.py +++ b/debug/main.py @@ -1,9 +1,13 @@ +import re +import sys import click import subprocess +from shlex import join def run_command(command, pager=False): - click.echo(click.style("Command: ", fg='cyan') + click.style(command, fg='green')) - p = subprocess.Popen(command, shell=True, text=True, stdout=subprocess.PIPE) + command_str = join(command) + click.echo(click.style("Command: ", fg='cyan') + click.style(command_str, fg='green')) + p = subprocess.Popen(command, text=True, stdout=subprocess.PIPE) output = p.stdout.read() if pager: click.echo_via_pager(output) @@ -21,8 +25,8 @@ def cli(): """SONiC command line - 'debug' command""" pass - -p = subprocess.check_output(["sudo vtysh -c 'show version'"], shell=True, text=True) +prefix_pattern = '^[A-Za-z0-9.:/]*$' +p = subprocess.check_output(['sudo', 'vtysh', '-c', 'show version'], text=True) if 'FRRouting' in p: # # 'bgp' group for FRR ### @@ -35,66 +39,64 @@ def bgp(): @bgp.command('allow-martians') def allow_martians(): """BGP allow martian next hops""" - command = 'sudo vtysh -c "debug bgp allow-martians"' + command = ['sudo', 'vtysh', '-c', "debug bgp allow-martians"] run_command(command) @bgp.command() @click.argument('additional', type=click.Choice(['segment']), required=False) def as4(additional): """BGP AS4 actions""" - command = 'sudo vtysh -c "debug bgp as4' + command = ['sudo', 'vtysh', '-c', "debug bgp as4"] if additional is not None: - command += " segment" - command += '"' + command[-1] += " segment" run_command(command) @bgp.command() @click.argument('prefix', required=True) def bestpath(prefix): """BGP bestpath""" - command = 'sudo vtysh -c "debug bgp bestpath %s"' % prefix + if not re.match(prefix_pattern, prefix): + sys.exit('Prefix contains only number, alphabet, period, colon, and forward slash') + command = ['sudo', 'vtysh', '-c', "debug bgp bestpath %s" % prefix] run_command(command) @bgp.command() @click.argument('prefix_or_iface', required=False) def keepalives(prefix_or_iface): """BGP Neighbor Keepalives""" - command = 'sudo vtysh -c "debug bgp keepalives' + command = ['sudo', 'vtysh', '-c', "debug bgp keepalives"] if prefix_or_iface is not None: - command += " " + prefix_or_iface - command += '"' + command[-1] += ' ' + prefix_or_iface run_command(command) @bgp.command('neighbor-events') @click.argument('prefix_or_iface', required=False) def neighbor_events(prefix_or_iface): """BGP Neighbor Events""" - command = 'sudo vtysh -c "debug bgp neighbor-events' + command = ['sudo', 'vtysh', '-c', "debug bgp neighbor-events"] if prefix_or_iface is not None: - command += " " + prefix_or_iface - command += '"' + command[-1] += ' ' + prefix_or_iface run_command(command) @bgp.command() def nht(): """BGP nexthop tracking events""" - command = 'sudo vtysh -c "debug bgp nht"' + command = ['sudo', 'vtysh', '-c', "debug bgp nht"] run_command(command) @bgp.command() @click.argument('additional', type=click.Choice(['error']), required=False) def pbr(additional): """BGP policy based routing""" - command = 'sudo vtysh -c "debug bgp pbr' + command = ['sudo', 'vtysh', '-c', "debug bgp pbr"] if additional is not None: - command += " error" - command += '"' + command[-1] += " error" run_command(command) @bgp.command('update-groups') def update_groups(): """BGP update-groups""" - command = 'sudo vtysh -c "debug bgp update-groups"' + command = ['sudo', 'vtysh', '-c', "debug bgp update-groups"] run_command(command) @bgp.command() @@ -102,22 +104,25 @@ def update_groups(): @click.argument('prefix', required=False) def updates(direction, prefix): """BGP updates""" - command = 'sudo vtysh -c "debug bgp updates' + bgp_cmd = "debug bgp updates" if direction is not None: - command += " " + direction + bgp_cmd += ' ' + direction if prefix is not None: - command += " " + prefix - command += '"' + if not re.match(prefix_pattern, prefix): + sys.exit('Prefix contains only number, alphabet, period, colon, and forward slash') + bgp_cmd += ' ' + prefix + command = ['sudo', 'vtysh', '-c', bgp_cmd] run_command(command) @bgp.command() @click.argument('prefix', required=False) def zebra(prefix): """BGP Zebra messages""" - command = 'sudo vtysh -c "debug bgp zebra' + command = ['sudo', 'vtysh', '-c', "debug bgp zebra"] if prefix is not None: - command += " prefix " + prefix - command += '"' + if not re.match(prefix_pattern, prefix): + sys.exit('Prefix contains only number, alphabet, period, colon, and forward slash') + command[-1] += " prefix " + prefix run_command(command) # @@ -132,56 +137,54 @@ def zebra(): @click.argument('detailed', type=click.Choice(['detailed']), required=False) def dplane(detailed): """Debug zebra dataplane events""" - command = 'sudo vtysh -c "debug zebra dplane' + command = ['sudo', 'vtysh', '-c', "debug zebra dplane"] if detailed is not None: - command += " detailed" - command += '"' + command[-1] += " detailed" run_command(command) @zebra.command() def events(): """Debug option set for zebra events""" - command = 'sudo vtysh -c "debug zebra events"' + command = ['sudo', 'vtysh', '-c', "debug zebra events"] run_command(command) @zebra.command() def fpm(): """Debug zebra FPM events""" - command = 'sudo vtysh -c "debug zebra fpm"' + command = ['sudo', 'vtysh', '-c', "debug zebra fpm"] run_command(command) @zebra.command() def kernel(): """Debug option set for zebra between kernel interface""" - command = 'sudo vtysh -c "debug zebra kernel"' + command = ['sudo', 'vtysh', '-c', "debug zebra kernel"] run_command(command) @zebra.command() def nht(): """Debug option set for zebra next hop tracking""" - command = 'sudo vtysh -c "debug zebra nht"' + command = ['sudo', 'vtysh', '-c', "debug zebra nht"] run_command(command) @zebra.command() def packet(): """Debug option set for zebra packet""" - command = 'sudo vtysh -c "debug zebra packet"' + command = ['sudo', 'vtysh', '-c', "debug zebra packet"] run_command(command) @zebra.command() @click.argument('detailed', type=click.Choice(['detailed']), required=False) def rib(detailed): """Debug RIB events""" - command = 'sudo vtysh -c "debug zebra rib' + command = ['sudo', 'vtysh', '-c', "debug zebra rib"] if detailed is not None: - command += " detailed" - command += '"' + command[-1] += " detailed" run_command(command) @zebra.command() def vxlan(): """Debug option set for zebra VxLAN (EVPN)""" - command = 'sudo vtysh -c "debug zebra vxlan"' + command = ['sudo', 'vtysh', '-c', "debug zebra vxlan"] run_command(command) else: @@ -193,49 +196,49 @@ def vxlan(): def bgp(ctx): """debug bgp on""" if ctx.invoked_subcommand is None: - command = 'sudo vtysh -c "debug bgp"' + command = ['sudo', 'vtysh', '-c', "debug bgp"] run_command(command) @bgp.command() def events(): """debug bgp events on""" - command = 'sudo vtysh -c "debug bgp events"' + command = ['sudo', 'vtysh', '-c', "debug bgp events"] run_command(command) @bgp.command() def updates(): """debug bgp updates on""" - command = 'sudo vtysh -c "debug bgp updates"' + command = ['sudo', 'vtysh', '-c', "debug bgp updates"] run_command(command) @bgp.command() def as4(): """debug bgp as4 actions on""" - command = 'sudo vtysh -c "debug bgp as4"' + command = ['sudo', 'vtysh', '-c', "debug bgp as4"] run_command(command) @bgp.command() def filters(): """debug bgp filters on""" - command = 'sudo vtysh -c "debug bgp filters"' + command = ['sudo', 'vtysh', '-c', "debug bgp filters"] run_command(command) @bgp.command() def fsm(): """debug bgp finite state machine on""" - command = 'sudo vtysh -c "debug bgp fsm"' + command = ['sudo', 'vtysh', '-c', "debug bgp fsm"] run_command(command) @bgp.command() def keepalives(): """debug bgp keepalives on""" - command = 'sudo vtysh -c "debug bgp keepalives"' + command = ['sudo', 'vtysh', '-c', "debug bgp keepalives"] run_command(command) @bgp.command() def zebra(): """debug bgp zebra messages on""" - command = 'sudo vtysh -c "debug bgp zebra"' + command = ['sudo', 'vtysh', '-c', "debug bgp zebra"] run_command(command) # @@ -248,32 +251,31 @@ def zebra(): @zebra.command() def events(): - """debug option set for zebra events""" - command = 'sudo vtysh -c "debug zebra events"' + command = ['sudo', 'vtysh', '-c', "debug zebra events"] run_command(command) @zebra.command() def fpm(): """debug zebra FPM events""" - command = 'sudo vtysh -c "debug zebra fpm"' + command = ['sudo', 'vtysh', '-c', "debug zebra fpm"] run_command(command) @zebra.command() def kernel(): """debug option set for zebra between kernel interface""" - command = 'sudo vtysh -c "debug zebra kernel"' + command = ['sudo', 'vtysh', '-c', "debug zebra kernel"] run_command(command) @zebra.command() def packet(): """debug option set for zebra packet""" - command = 'sudo vtysh -c "debug zebra packet"' + command = ['sudo', 'vtysh', '-c', "debug zebra packet"] run_command(command) @zebra.command() def rib(): """debug RIB events""" - command = 'sudo vtysh -c "debug zebra rib"' + command = ['sudo', 'vtysh', '-c', "debug zebra rib"] run_command(command) diff --git a/tests/debug_test.py b/tests/debug_test.py new file mode 100644 index 00000000..7ac182f4 --- /dev/null +++ b/tests/debug_test.py @@ -0,0 +1,599 @@ +import click +import pytest +import importlib +from unittest.mock import patch, MagicMock +from click.testing import CliRunner + +class TestDebugFrr(object): + @patch('subprocess.check_output', MagicMock(return_value='FRRouting')) + def setup(self): + print('SETUP') + import debug.main as debug + import undebug.main as undebug + importlib.reload(debug) + importlib.reload(undebug) + + # debug + @patch('debug.main.run_command') + def test_debug_bgp_allow_martians(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['bgp'].commands['allow-martians']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp allow-martians']) + + @patch('debug.main.run_command') + def test_debug_bgp_as4(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['bgp'].commands['as4']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp as4']) + + result = runner.invoke(debug.cli.commands['bgp'].commands['as4'], ['segment']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp as4 segment']) + + @patch('debug.main.run_command') + def test_debug_bgp_bestpath(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['bgp'].commands['bestpath'], ['dummyprefix']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp bestpath dummyprefix']) + + @patch('debug.main.run_command') + def test_debug_bgp_keepalives(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['bgp'].commands['keepalives']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp keepalives']) + + result = runner.invoke(debug.cli.commands['bgp'].commands['keepalives'], ['dummyprefix']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp keepalives dummyprefix']) + + @patch('debug.main.run_command') + def test_debug_bgp_neighbor_events(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['bgp'].commands['neighbor-events']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp neighbor-events']) + + result = runner.invoke(debug.cli.commands['bgp'].commands['neighbor-events'], ['dummyprefix']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp neighbor-events dummyprefix']) + + @patch('debug.main.run_command') + def test_debug_bgp_nht(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['bgp'].commands['nht']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp nht']) + + @patch('debug.main.run_command') + def test_debug_bgp_pbr(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['bgp'].commands['pbr']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp pbr']) + + result = runner.invoke(debug.cli.commands['bgp'].commands['pbr'], ['error']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp pbr error']) + + @patch('debug.main.run_command') + def test_debug_bgp_update_groups(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['bgp'].commands['update-groups']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp update-groups']) + + @patch('debug.main.run_command') + def test_debug_bgp_updates(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['bgp'].commands['updates']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp updates']) + + result = runner.invoke(debug.cli.commands['bgp'].commands['updates'], ['prefix']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp updates prefix']) + + result = runner.invoke(debug.cli.commands['bgp'].commands['updates'], ['prefix', 'dummyprefix']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp updates prefix dummyprefix']) + + + @patch('debug.main.run_command') + def test_debug_bgp_zebra(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['bgp'].commands['zebra']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp zebra']) + + result = runner.invoke(debug.cli.commands['bgp'].commands['zebra'], ['dummyprefix']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp zebra prefix dummyprefix']) + + @patch('debug.main.run_command') + def test_debug_zebra_dplane(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['zebra'].commands['dplane']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug zebra dplane']) + + result = runner.invoke(debug.cli.commands['zebra'].commands['dplane'], ['detailed']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug zebra dplane detailed']) + + @patch('debug.main.run_command') + def test_debug_zebra_events(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['zebra'].commands['events']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug zebra events']) + + @patch('debug.main.run_command') + def test_debug_zebra_fpm(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['zebra'].commands['fpm']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug zebra fpm']) + + @patch('debug.main.run_command') + def test_debug_zebra_kernel(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['zebra'].commands['kernel']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug zebra kernel']) + + @patch('debug.main.run_command') + def test_debug_zebra_nht(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['zebra'].commands['nht']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug zebra nht']) + + @patch('debug.main.run_command') + def test_debug_zebra_packet(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['zebra'].commands['packet']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug zebra packet']) + + @patch('debug.main.run_command') + def test_debug_zebra_rib(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['zebra'].commands['rib']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug zebra rib']) + + result = runner.invoke(debug.cli.commands['zebra'].commands['rib'], ['detailed']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug zebra rib detailed']) + + @patch('debug.main.run_command') + def test_debug_zebra_vxlan(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['zebra'].commands['vxlan']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug zebra vxlan']) + + # undebug + @patch('undebug.main.run_command') + def test_undebug_bgp_allow_martians(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['bgp'].commands['allow-martians']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp allow-martians']) + + @patch('undebug.main.run_command') + def test_undebug_bgp_as4(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['bgp'].commands['as4']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp as4']) + + result = runner.invoke(undebug.cli.commands['bgp'].commands['as4'], ['segment']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp as4 segment']) + + @patch('undebug.main.run_command') + def test_undebug_bgp_bestpath(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['bgp'].commands['bestpath'], ['dummyprefix']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp bestpath dummyprefix']) + + @patch('undebug.main.run_command') + def test_undebug_bgp_keepalives(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['bgp'].commands['keepalives']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp keepalives']) + + result = runner.invoke(undebug.cli.commands['bgp'].commands['keepalives'], ['dummyprefix']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp keepalives dummyprefix']) + + @patch('undebug.main.run_command') + def test_undebug_bgp_neighbor_events(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['bgp'].commands['neighbor-events']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp neighbor-events']) + + result = runner.invoke(undebug.cli.commands['bgp'].commands['neighbor-events'], ['dummyprefix']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp neighbor-events dummyprefix']) + + @patch('undebug.main.run_command') + def test_undebug_bgp_nht(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['bgp'].commands['nht']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp nht']) + + @patch('undebug.main.run_command') + def test_undebug_bgp_pbr(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['bgp'].commands['pbr']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp pbr']) + + result = runner.invoke(undebug.cli.commands['bgp'].commands['pbr'], ['error']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp pbr error']) + + @patch('undebug.main.run_command') + def test_undebug_bgp_update_groups(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['bgp'].commands['update-groups']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp update-groups']) + + @patch('undebug.main.run_command') + def test_undebug_bgp_updates(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['bgp'].commands['updates']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp updates']) + + result = runner.invoke(undebug.cli.commands['bgp'].commands['updates'], ['prefix']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp updates prefix']) + + result = runner.invoke(undebug.cli.commands['bgp'].commands['updates'], ['prefix', 'dummyprefix']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp updates prefix dummyprefix']) + + + @patch('undebug.main.run_command') + def test_undebug_bgp_zebra(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['bgp'].commands['zebra']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp zebra']) + + result = runner.invoke(undebug.cli.commands['bgp'].commands['zebra'], ['dummyprefix']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp zebra prefix dummyprefix']) + + @patch('undebug.main.run_command') + def test_undebug_zebra_dplane(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['zebra'].commands['dplane']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug zebra dplane']) + + result = runner.invoke(undebug.cli.commands['zebra'].commands['dplane'], ['detailed']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug zebra dplane detailed']) + + @patch('undebug.main.run_command') + def test_undebug_zebra_events(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['zebra'].commands['events']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug zebra events']) + + @patch('undebug.main.run_command') + def test_undebug_zebra_fpm(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['zebra'].commands['fpm']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug zebra fpm']) + + @patch('undebug.main.run_command') + def test_undebug_zebra_kernel(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['zebra'].commands['kernel']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug zebra kernel']) + + @patch('undebug.main.run_command') + def test_undebug_zebra_nht(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['zebra'].commands['nht']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug zebra nht']) + + @patch('undebug.main.run_command') + def test_undebug_zebra_packet(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['zebra'].commands['packet']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug zebra packet']) + + @patch('undebug.main.run_command') + def test_undebug_zebra_rib(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['zebra'].commands['rib']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug zebra rib']) + + result = runner.invoke(undebug.cli.commands['zebra'].commands['rib'], ['detailed']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug zebra rib detailed']) + + @patch('undebug.main.run_command') + def test_undebug_zebra_vxlan(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['zebra'].commands['vxlan']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug zebra vxlan']) + +class TestDebugQuagga(object): + @patch('subprocess.check_output', MagicMock(return_value='quagga')) + def setup(self): + print('SETUP') + import debug.main as debug + import undebug.main as undebug + importlib.reload(debug) + importlib.reload(undebug) + + # debug + @patch('debug.main.run_command') + def test_debug_bgp(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['bgp']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp']) + + @patch('debug.main.run_command') + def test_debug_bgp_events(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['bgp'].commands['events']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp events']) + + @patch('debug.main.run_command') + def test_debug_bgp_updates(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['bgp'].commands['updates']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp updates']) + + @patch('debug.main.run_command') + def test_debug_bgp_as4(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['bgp'].commands['as4']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp as4']) + + @patch('debug.main.run_command') + def test_debug_bgp_filters(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['bgp'].commands['filters']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp filters']) + + @patch('debug.main.run_command') + def test_debug_bgp_fsm(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['bgp'].commands['fsm']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp fsm']) + + @patch('debug.main.run_command') + def test_debug_bgp_keepalives(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['bgp'].commands['keepalives']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp keepalives']) + + @patch('debug.main.run_command') + def test_debug_bgp_zebra(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['bgp'].commands['zebra']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug bgp zebra']) + + @patch('debug.main.run_command') + def test_debug_zebra_events(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['zebra'].commands['events']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug zebra events']) + + @patch('debug.main.run_command') + def test_debug_zebra_fpm(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['zebra'].commands['fpm']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug zebra fpm']) + + @patch('debug.main.run_command') + def test_debug_zebra_kernel(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['zebra'].commands['kernel']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug zebra kernel']) + + @patch('debug.main.run_command') + def test_debug_zebra_packet(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['zebra'].commands['packet']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug zebra packet']) + + @patch('debug.main.run_command') + def test_debug_zebra_rib(self, run_command): + import debug.main as debug + runner = CliRunner() + result = runner.invoke(debug.cli.commands['zebra'].commands['rib']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'debug zebra rib']) + + # undebug + @patch('undebug.main.run_command') + def test_undebug_bgp(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['bgp']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp']) + + @patch('undebug.main.run_command') + def test_undebug_bgp_events(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['bgp'].commands['events']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp events']) + + @patch('undebug.main.run_command') + def test_undebug_bgp_updates(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['bgp'].commands['updates']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp updates']) + + @patch('undebug.main.run_command') + def test_undebug_bgp_as4(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['bgp'].commands['as4']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp as4']) + + @patch('undebug.main.run_command') + def test_undebug_bgp_filters(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['bgp'].commands['filters']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp filters']) + + @patch('undebug.main.run_command') + def test_undebug_bgp_fsm(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['bgp'].commands['fsm']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp fsm']) + + @patch('undebug.main.run_command') + def test_undebug_bgp_keepalives(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['bgp'].commands['keepalives']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp keepalives']) + + @patch('undebug.main.run_command') + def test_undebug_bgp_zebra(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['bgp'].commands['zebra']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug bgp zebra']) + + @patch('undebug.main.run_command') + def test_undebug_zebra_events(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['zebra'].commands['events']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug zebra events']) + + @patch('undebug.main.run_command') + def test_undebug_zebra_fpm(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['zebra'].commands['fpm']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug zebra fpm']) + + @patch('undebug.main.run_command') + def test_undebug_zebra_kernel(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['zebra'].commands['kernel']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug zebra kernel']) + + @patch('undebug.main.run_command') + def test_undebug_zebra_packet(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['zebra'].commands['packet']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug zebra packet']) + + @patch('undebug.main.run_command') + def test_undebug_zebra_rib(self, run_command): + import undebug.main as undebug + runner = CliRunner() + result = runner.invoke(undebug.cli.commands['zebra'].commands['rib']) + assert result.exit_code == 0 + + run_command.assert_called_with(['sudo', 'vtysh', '-c', 'no debug zebra rib']) + diff --git a/undebug/main.py b/undebug/main.py index 3810add6..17767973 100644 --- a/undebug/main.py +++ b/undebug/main.py @@ -1,9 +1,13 @@ +import re +import sys import click import subprocess +from shlex import join def run_command(command, pager=False): - click.echo(click.style("Command: ", fg='cyan') + click.style(command, fg='green')) - p = subprocess.Popen(command, shell=True, text=True, stdout=subprocess.PIPE) + command_str = join(command) + click.echo(click.style("Command: ", fg='cyan') + click.style(command_str, fg='green')) + p = subprocess.Popen(command, text=True, stdout=subprocess.PIPE) output = p.stdout.read() if pager: click.echo_via_pager(output) @@ -22,7 +26,8 @@ def cli(): pass -p = subprocess.check_output(["sudo vtysh -c 'show version'"], shell=True, text=True) +prefix_pattern = '^[A-Za-z0-9.:/]*$' +p = subprocess.check_output(["sudo", "vtysh", "-c", 'show version'], text=True) if 'FRRouting' in p: # # 'bgp' group for FRR ### @@ -35,66 +40,64 @@ def bgp(): @bgp.command('allow-martians') def allow_martians(): """BGP allow martian next hops""" - command = 'sudo vtysh -c "no debug bgp allow-martians"' + command = ["sudo", "vtysh", "-c", "no debug bgp allow-martians"] run_command(command) @bgp.command() @click.argument('additional', type=click.Choice(['segment']), required=False) def as4(additional): """BGP AS4 actions""" - command = 'sudo vtysh -c "no debug bgp as4' + command = ["sudo", "vtysh", "-c", "no debug bgp as4"] if additional is not None: - command += " segment" - command += '"' + command[-1] += " segment" run_command(command) @bgp.command() @click.argument('prefix', required=True) def bestpath(prefix): """BGP bestpath""" - command = 'sudo vtysh -c "no debug bgp bestpath %s"' % prefix + if not re.match(prefix_pattern, prefix): + sys.exit('Prefix contains only number, alphabet, period, colon, and forward slash') + command = ["sudo", "vtysh", "-c", "no debug bgp bestpath %s" % prefix] run_command(command) @bgp.command() @click.argument('prefix_or_iface', required=False) def keepalives(prefix_or_iface): """BGP Neighbor Keepalives""" - command = 'sudo vtysh -c "no debug bgp keepalives' + command = ["sudo", "vtysh", "-c", "no debug bgp keepalives"] if prefix_or_iface is not None: - command += " " + prefix_or_iface - command += '"' + command[-1] += ' ' + prefix_or_iface run_command(command) @bgp.command('neighbor-events') @click.argument('prefix_or_iface', required=False) def neighbor_events(prefix_or_iface): """BGP Neighbor Events""" - command = 'sudo vtysh -c "no debug bgp neighbor-events' + command = ["sudo", "vtysh", "-c", "no debug bgp neighbor-events"] if prefix_or_iface is not None: - command += " " + prefix_or_iface - command += '"' + command[-1] += ' ' + prefix_or_iface run_command(command) @bgp.command() def nht(): """BGP nexthop tracking events""" - command = 'sudo vtysh -c "no debug bgp nht"' + command = ["sudo", "vtysh", "-c", "no debug bgp nht"] run_command(command) @bgp.command() @click.argument('additional', type=click.Choice(['error']), required=False) def pbr(additional): """BGP policy based routing""" - command = 'sudo vtysh -c "no debug bgp pbr' + command = ["sudo", "vtysh", "-c", "no debug bgp pbr"] if additional is not None: - command += " error" - command += '"' + command[-1] += " error" run_command(command) @bgp.command('update-groups') def update_groups(): """BGP update-groups""" - command = 'sudo vtysh -c "no debug bgp update-groups"' + command = ["sudo", "vtysh", "-c", "no debug bgp update-groups"] run_command(command) @bgp.command() @@ -102,22 +105,26 @@ def update_groups(): @click.argument('prefix', required=False) def updates(direction, prefix): """BGP updates""" - command = 'sudo vtysh -c "no debug bgp updates' + bgp_cmd = "no debug bgp updates" if direction is not None: - command += " " + direction + bgp_cmd += ' ' + direction if prefix is not None: - command += " " + prefix - command += '"' + if not re.match(prefix_pattern, prefix): + sys.exit('Prefix contains only number, alphabet, period, colon, and forward slash') + bgp_cmd += ' ' + prefix + command = ["sudo", "vtysh", "-c", bgp_cmd] run_command(command) @bgp.command() @click.argument('prefix', required=False) def zebra(prefix): """BGP Zebra messages""" - command = 'sudo vtysh -c "no debug bgp zebra' + bgp_cmd = "no debug bgp zebra" if prefix is not None: - command += " prefix " + prefix - command += '"' + if not re.match(prefix_pattern, prefix): + sys.exit('Prefix contains only number, alphabet, period, colon, and forward slash') + bgp_cmd += ' prefix ' + prefix + command = ["sudo", "vtysh", "-c", bgp_cmd] run_command(command) # @@ -132,56 +139,55 @@ def zebra(): @click.argument('detailed', type=click.Choice(['detailed']), required=False) def dplane(detailed): """Debug zebra dataplane events""" - command = 'sudo vtysh -c "no debug zebra dplane' + zb_cmd = "no debug zebra dplane" if detailed is not None: - command += " detailed" - command += '"' + zb_cmd += " detailed" + command = ["sudo", "vtysh", "-c", zb_cmd] run_command(command) @zebra.command() def events(): """Debug option set for zebra events""" - command = 'sudo vtysh -c "no debug zebra events"' + command = ["sudo", "vtysh", "-c", "no debug zebra events"] run_command(command) @zebra.command() def fpm(): """Debug zebra FPM events""" - command = 'sudo vtysh -c "no debug zebra fpm"' + command = ["sudo", "vtysh", "-c", "no debug zebra fpm"] run_command(command) @zebra.command() def kernel(): """Debug option set for zebra between kernel interface""" - command = 'sudo vtysh -c "no debug zebra kernel"' + command = ["sudo", "vtysh", "-c", "no debug zebra kernel"] run_command(command) @zebra.command() def nht(): """Debug option set for zebra next hop tracking""" - command = 'sudo vtysh -c "no debug zebra nht"' + command = ["sudo", "vtysh", "-c", "no debug zebra nht"] run_command(command) @zebra.command() def packet(): """Debug option set for zebra packet""" - command = 'sudo vtysh -c "no debug zebra packet"' + command = ["sudo", "vtysh", "-c", "no debug zebra packet"] run_command(command) @zebra.command() @click.argument('detailed', type=click.Choice(['detailed']), required=False) def rib(detailed): """Debug RIB events""" - command = 'sudo vtysh -c "no debug zebra rib' + command = ["sudo", "vtysh", "-c", "no debug zebra rib"] if detailed is not None: - command += " detailed" - command += '"' + command[-1] += " detailed" run_command(command) @zebra.command() def vxlan(): """Debug option set for zebra VxLAN (EVPN)""" - command = 'sudo vtysh -c "no debug zebra vxlan"' + command = ["sudo", "vtysh", "-c", "no debug zebra vxlan"] run_command(command) else: @@ -193,49 +199,49 @@ def vxlan(): def bgp(ctx): """debug bgp off""" if ctx.invoked_subcommand is None: - command = 'sudo vtysh -c "no debug bgp"' + command = ["sudo", "vtysh", "-c", "no debug bgp"] run_command(command) @bgp.command() def events(): """debug bgp events off""" - command = 'sudo vtysh -c "no debug bgp events"' + command = ["sudo", "vtysh", "-c", "no debug bgp events"] run_command(command) @bgp.command() def updates(): """debug bgp updates off""" - command = 'sudo vtysh -c "no debug bgp updates"' + command = ["sudo", "vtysh", "-c", "no debug bgp updates"] run_command(command) @bgp.command() def as4(): """debug bgp as4 actions off""" - command = 'sudo vtysh -c "no debug bgp as4"' + command = ["sudo", "vtysh", "-c", "no debug bgp as4"] run_command(command) @bgp.command() def filters(): """debug bgp filters off""" - command = 'sudo vtysh -c "no debug bgp filters"' + command = ["sudo", "vtysh", "-c", "no debug bgp filters"] run_command(command) @bgp.command() def fsm(): """debug bgp finite state machine off""" - command = 'sudo vtysh -c "no debug bgp fsm"' + command = ["sudo", "vtysh", "-c", "no debug bgp fsm"] run_command(command) @bgp.command() def keepalives(): """debug bgp keepalives off""" - command = 'sudo vtysh -c "no debug bgp keepalives"' + command = ["sudo", "vtysh", "-c", "no debug bgp keepalives"] run_command(command) @bgp.command() def zebra(): """debug bgp zebra messages off""" - command = 'sudo vtysh -c "no debug bgp zebra"' + command = ["sudo", "vtysh", "-c", "no debug bgp zebra"] run_command(command) # @@ -249,31 +255,31 @@ def zebra(): @zebra.command() def events(): """debug option set for zebra events""" - command = 'sudo vtysh -c "no debug zebra events"' + command = ["sudo", "vtysh", "-c", "no debug zebra events"] run_command(command) @zebra.command() def fpm(): """debug zebra FPM events""" - command = 'sudo vtysh -c "no debug zebra fpm"' + command = ["sudo", "vtysh", "-c", "no debug zebra fpm"] run_command(command) @zebra.command() def kernel(): """debug option set for zebra between kernel interface""" - command = 'sudo vtysh -c "no debug zebra kernel"' + command = ["sudo", "vtysh", "-c", "no debug zebra kernel"] run_command(command) @zebra.command() def packet(): """debug option set for zebra packet""" - command = 'sudo vtysh -c "no debug zebra packet"' + command = ["sudo", "vtysh", "-c", "no debug zebra packet"] run_command(command) @zebra.command() def rib(): """debug RIB events""" - command = 'sudo vtysh -c "no debug zebra rib"' + command = ["sudo", "vtysh", "-c", "no debug zebra rib"] run_command(command) From 04d0b34a5a2997f72dde0bedded8f252e45e74c3 Mon Sep 17 00:00:00 2001 From: saksarav-nokia Date: Mon, 10 Apr 2023 16:10:23 -0400 Subject: [PATCH 115/312] [voq][chassis][generate_dump] [BCM] Dump only the relevant BCM commands for fabric cards (#2606) Signed-off-by: Sakthivadivu Saravanaraj sakthivadivu.saravanaraj@nokia.com What I did When we run generate_dump script in SFM cards in a Broadcom chassis, the errors were printed in syslog for all the Broadcom commands which are not supported in fabric/Ramon cards. Added a check to dump all l2, l3, fp and tm commands only if the switch_type is non fabric card since these commands are not valid for fabric cards. How I did it Get the switch_type from DEVICE_METADATA and check the switch_type before dumping these BCM commands. How to verify it Ran generate_dump script in both voq and fabric cards, (1)verified that the fabric cards don't log the errors for the BCM commands (2) verified that the commands are dumped correctly in non-fabric dnx cards. Signed-off-by: Sakthivadivu Saravanaraj Signed-off-by: saksarav --- scripts/generate_dump | 66 ++++++++++++++++++++++++------------------- 1 file changed, 37 insertions(+), 29 deletions(-) diff --git a/scripts/generate_dump b/scripts/generate_dump index 79f6ae1b..74ceede0 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -1226,39 +1226,47 @@ collect_broadcom() { fi if [ "$bcm_family" == "broadcom-dnx" ]; then - save_bcmcmd_all_ns "\"l2 show\"" "l2.summary" - save_bcmcmd_all_ns "\"field group list\"" "fpgroup.list.summary" - total_fp_groups=34 - for (( fp_grp=0; fp_grp<$total_fp_groups; fp_grp++ )) - do - save_bcmcmd_all_ns "\"field group info group=$fp_grp\"" "fpgroup$fp_grp.info.summary" - done - save_bcmcmd_all_ns "\"dbal table dump table=IPV4_UNICAST_PRIVATE_LPM_FORWARD\"" "l3.ipv4.lpm.summary" - save_bcmcmd_all_ns "\"dbal table dump table=IPV6_UNICAST_PRIVATE_LPM_FORWARD\"" "l3.ipv6.lpm.summary" - save_bcmcmd_all_ns "\"dbal table dump table=IPV4_UNICAST_PRIVATE_HOST\"" "l3.ipv4.host.summary" - save_bcmcmd_all_ns "\"dbal table dump table=IPV6_UNICAST_PRIVATE_HOST\"" "l3.ipv6.host.summary" - save_bcmcmd_all_ns "\"dbal table dump table=SUPER_FEC_1ST_HIERARCHY\"" "l3.egress.fec.summary" - save_bcmcmd_all_ns "\"dbal table dump table=ECMP_TABLE\"" "ecmp.table.summary" - save_bcmcmd_all_ns "\"dbal table dump table=ECMP_GROUP_PROFILE_TABLE\"" "ecmp.group.summary" - save_bcmcmd_all_ns "\"dbal table dump table=ING_VSI_INFO_DB\"" "ing.vsi.summary" - save_bcmcmd_all_ns "\"dbal table dump table=L3_MY_MAC_DA_PREFIXES\"" "l3.mymac.summary" - save_bcmcmd_all_ns "\"dbal table dump table=INGRESS_VLAN_MEMBERSHIP\"" "ing.vlan.summary" - save_bcmcmd_all_ns "\"dbal table dump table=LOCAL_SBC_IN_LIF_MATCH_INFO_SW\"" "sbc.inlif.summary" - save_bcmcmd_all_ns "\"dbal table dump table=SNIF_COMMAND_TABLE\"" "snif.command.summary" - save_bcmcmd_all_ns "\"port mgmt dump full\"" "port.mgmt.summary" - save_bcmcmd_all_ns "\"tm lag\"" "tm.lag.summary" - save_bcmcmd_all_ns "\"pp info fec\"" "pp.fec.summary" - save_bcmcmd_all_ns "\"nif sts\"" "nif.sts.summary" + supervisor=0 + PLATFORM_ENV_CONF=/usr/share/sonic/device/${platform}/platform_env.conf + if [ -f "$PLATFORM_ENV_CONF" ]; then + source $PLATFORM_ENV_CONF + fi + if [[ x"$supervisor" != x"1" ]]; then + + save_bcmcmd_all_ns "\"l2 show\"" "l2.summary" + save_bcmcmd_all_ns "\"field group list\"" "fpgroup.list.summary" + total_fp_groups=34 + for (( fp_grp=0; fp_grp<$total_fp_groups; fp_grp++ )) + do + save_bcmcmd_all_ns "\"field group info group=$fp_grp\"" "fpgroup$fp_grp.info.summary" + done + save_bcmcmd_all_ns "\"dbal table dump table=IPV4_UNICAST_PRIVATE_LPM_FORWARD\"" "l3.ipv4.lpm.summary" + save_bcmcmd_all_ns "\"dbal table dump table=IPV6_UNICAST_PRIVATE_LPM_FORWARD\"" "l3.ipv6.lpm.summary" + save_bcmcmd_all_ns "\"dbal table dump table=IPV4_UNICAST_PRIVATE_HOST\"" "l3.ipv4.host.summary" + save_bcmcmd_all_ns "\"dbal table dump table=IPV6_UNICAST_PRIVATE_HOST\"" "l3.ipv6.host.summary" + save_bcmcmd_all_ns "\"dbal table dump table=SUPER_FEC_1ST_HIERARCHY\"" "l3.egress.fec.summary" + save_bcmcmd_all_ns "\"dbal table dump table=ECMP_TABLE\"" "ecmp.table.summary" + save_bcmcmd_all_ns "\"dbal table dump table=ECMP_GROUP_PROFILE_TABLE\"" "ecmp.group.summary" + save_bcmcmd_all_ns "\"dbal table dump table=ING_VSI_INFO_DB\"" "ing.vsi.summary" + save_bcmcmd_all_ns "\"dbal table dump table=L3_MY_MAC_DA_PREFIXES\"" "l3.mymac.summary" + save_bcmcmd_all_ns "\"dbal table dump table=INGRESS_VLAN_MEMBERSHIP\"" "ing.vlan.summary" + save_bcmcmd_all_ns "\"dbal table dump table=LOCAL_SBC_IN_LIF_MATCH_INFO_SW\"" "sbc.inlif.summary" + save_bcmcmd_all_ns "\"dbal table dump table=SNIF_COMMAND_TABLE\"" "snif.command.summary" + save_bcmcmd_all_ns "\"port mgmt dump full\"" "port.mgmt.summary" + save_bcmcmd_all_ns "\"tm lag\"" "tm.lag.summary" + save_bcmcmd_all_ns "\"pp info fec\"" "pp.fec.summary" + save_bcmcmd_all_ns "\"nif sts\"" "nif.sts.summary" + save_bcmcmd_all_ns "\"tm ing q map\"" "tm.ingress.qmap.summary" + save_bcmcmd_all_ns "\"tm ing vsq resources\"" "tm.ing.vsq.res.summary" + for group in {a..f} + do + save_bcmcmd_all_ns "\"tm ing vsq non g=$group\"" "tm.ing.vsq.non.group-$group.summary" + done + fi save_bcmcmd_all_ns "\"port pm info\"" "port.pm.summary" save_bcmcmd_all_ns "\"conf show\"" "conf.show.summary" save_bcmcmd_all_ns "\"show counters\"" "show.counters.summary" save_bcmcmd_all_ns "\"diag counter g\"" "diag.counter.summary" - save_bcmcmd_all_ns "\"tm ing q map\"" "tm.ingress.qmap.summary" - save_bcmcmd_all_ns "\"tm ing vsq resources\"" "tm.ing.vsq.res.summary" - for group in {a..f} - do - save_bcmcmd_all_ns "\"tm ing vsq non g=$group\"" "tm.ing.vsq.non.group-$group.summary" - done save_bcmcmd_all_ns "\"fabric connectivity\"" "fabric.connect.summary" save_bcmcmd_all_ns "\"port status\"" "port.status.summary" else From a1057b279233f484be550ee36bd4d4677794a407 Mon Sep 17 00:00:00 2001 From: Sudharsan Dhamal Gopalarathnam Date: Mon, 10 Apr 2023 18:38:29 -0700 Subject: [PATCH 116/312] [config reload]Config Reload Enhancement (#2693) #### What I did Code changes for HLD: https://github.com/sonic-net/SONiC/pull/1203 Removed the timer based checks for config reload Added db_migrator to migrate from "has_timer" to "delayed" Modified package-manager to migrate from "has_timer" to "delayed" #### How I did it Modified relevant files #### How to verify it Added UT to verify --- config/main.py | 27 +----- scripts/db_migrator.py | 23 ++++- .../service_creator/feature.py | 6 +- tests/config_test.py | 85 +------------------ tests/counterpoll_input/config_db.json | 30 +++---- .../config_db/feature-expected.json | 6 +- .../config_db/feature-input.json | 3 +- tests/db_migrator_input/init_cfg.json | 6 +- tests/mock_tables/t1/config_db.json | 30 +++---- .../test_service_creator.py | 10 +-- 10 files changed, 69 insertions(+), 157 deletions(-) diff --git a/config/main.py b/config/main.py index 9e77211c..990dfc68 100644 --- a/config/main.py +++ b/config/main.py @@ -870,23 +870,8 @@ def _get_sonic_services(): return (unit.strip() for unit in out.splitlines()) -def _get_delayed_sonic_units(get_timers=False): - rc1, _ = clicommon.run_command("systemctl list-dependencies --plain sonic-delayed.target | sed '1d'", return_cmd=True) - rc2, _ = clicommon.run_command("systemctl is-enabled {}".format(rc1.replace("\n", " ")), return_cmd=True) - timer = [line.strip() for line in rc1.splitlines()] - state = [line.strip() for line in rc2.splitlines()] - services = [] - for unit in timer: - if state[timer.index(unit)] == "enabled": - if not get_timers: - services.append(re.sub('\.timer$', '', unit, 1)) - else: - services.append(unit) - return services - - def _reset_failed_services(): - for service in itertools.chain(_get_sonic_services(), _get_delayed_sonic_units()): + for service in _get_sonic_services(): clicommon.run_command("systemctl reset-failed {}".format(service)) @@ -905,12 +890,6 @@ def _restart_services(): click.echo("Reloading Monit configuration ...") clicommon.run_command("sudo monit reload") -def _delay_timers_elapsed(): - for timer in _get_delayed_sonic_units(get_timers=True): - out, _ = clicommon.run_command("systemctl show {} --property=LastTriggerUSecMonotonic --value".format(timer), return_cmd=True) - if out.strip() == "0": - return False - return True def _per_namespace_swss_ready(service_name): out, _ = clicommon.run_command("systemctl show {} --property ActiveState --value".format(service_name), return_cmd=True) @@ -1492,10 +1471,6 @@ def reload(db, filename, yes, load_sysinfo, no_service_restart, force, file_form click.echo("System is not up. Retry later or use -f to avoid system checks") sys.exit(CONFIG_RELOAD_NOT_READY) - if not _delay_timers_elapsed(): - click.echo("Relevant services are not up. Retry later or use -f to avoid system checks") - sys.exit(CONFIG_RELOAD_NOT_READY) - if not _swss_ready(): click.echo("SwSS container is not ready. Retry later or use -f to avoid system checks") sys.exit(CONFIG_RELOAD_NOT_READY) diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index 5ed4133b..f1bc404d 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -45,7 +45,7 @@ def __init__(self, namespace, socket=None): none-zero values. build: sequentially increase within a minor version domain. """ - self.CURRENT_VERSION = 'version_4_0_1' + self.CURRENT_VERSION = 'version_4_0_2' self.TABLE_NAME = 'VERSIONS' self.TABLE_KEY = 'DATABASE' @@ -575,6 +575,17 @@ def migrate_port_qos_map_global(self): self.configDB.set_entry('PORT_QOS_MAP', 'global', {"dscp_to_tc_map": dscp_to_tc_map_table_names[0]}) log.log_info("Created entry for global DSCP_TO_TC_MAP {}".format(dscp_to_tc_map_table_names[0])) + def migrate_feature_timer(self): + ''' + Migrate feature 'has_timer' field to 'delayed' + ''' + feature_table = self.configDB.get_table('FEATURE') + for feature, config in feature_table.items(): + state = config.get('has_timer') + if state is not None: + config['delayed'] = state + config.pop('has_timer') + self.configDB.set_entry('FEATURE', feature, config) def migrate_route_table(self): """ Handle route table migration. Migrations handled: @@ -926,9 +937,17 @@ def version_4_0_0(self): def version_4_0_1(self): """ Version 4_0_1. + """ + 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. This is the latest version for master branch """ - log.log_info('Handling version_4_0_1') + log.log_info('Handling version_4_0_2') return None def get_version(self): diff --git a/sonic_package_manager/service_creator/feature.py b/sonic_package_manager/service_creator/feature.py index 90378d37..43b6c309 100644 --- a/sonic_package_manager/service_creator/feature.py +++ b/sonic_package_manager/service_creator/feature.py @@ -105,7 +105,7 @@ def update(self, old_manifest: Manifest, new_manifest: Manifest): """ Migrate feature configuration. It can be that non-configurable - feature entries have to be updated. e.g: "has_timer" for example if + feature entries have to be updated. e.g: "delayed" for example if the new feature introduces a service timer or name of the service has changed, but user configurable entries are not changed). @@ -227,12 +227,12 @@ def get_default_feature_entries(state=None, owner=None) -> Dict[str, str]: @staticmethod def get_non_configurable_feature_entries(manifest) -> Dict[str, str]: - """ Get non-configurable feature table entries: e.g. 'has_timer' """ + """ Get non-configurable feature table entries: e.g. 'delayed' """ return { 'has_per_asic_scope': str(manifest['service']['asic-service']), 'has_global_scope': str(manifest['service']['host-service']), - 'has_timer': str(manifest['service']['delayed']), + 'delayed': str(manifest['service']['delayed']), 'check_up_status': str(manifest['service']['check_up_status']), 'support_syslog_rate_limit': str(manifest['service']['syslog']['support-rate-limit']), } diff --git a/tests/config_test.py b/tests/config_test.py index c1bb86fe..e1e3037f 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -115,10 +115,6 @@ Reloading Monit configuration ... """ -reload_config_with_untriggered_timer_output="""\ -Relevant services are not up. Retry later or use -f to avoid system checks -""" - def mock_run_command_side_effect(*args, **kwargs): command = args[0] @@ -155,41 +151,6 @@ def mock_run_command_side_effect_disabled_timer(*args, **kwargs): else: return '', 0 -def mock_run_command_side_effect_untriggered_timer(*args, **kwargs): - command = args[0] - - if kwargs.get('display_cmd'): - click.echo(click.style("Running command: ", fg='cyan') + click.style(command, fg='green')) - - if kwargs.get('return_cmd'): - if command == "systemctl list-dependencies --plain sonic-delayed.target | sed '1d'": - return 'snmp.timer', 0 - elif command == "systemctl list-dependencies --plain sonic.target | sed '1d'": - return 'swss', 0 - elif command == "systemctl is-enabled snmp.timer": - return 'enabled', 0 - elif command == "systemctl show snmp.timer --property=LastTriggerUSecMonotonic --value": - return '0', 0 - else: - return '', 0 - -def mock_run_command_side_effect_gnmi(*args, **kwargs): - command = args[0] - - if kwargs.get('display_cmd'): - click.echo(click.style("Running command: ", fg='cyan') + click.style(command, fg='green')) - - if kwargs.get('return_cmd'): - if command == "systemctl list-dependencies --plain sonic-delayed.target | sed '1d'": - return 'gnmi.timer', 0 - elif command == "systemctl list-dependencies --plain sonic.target | sed '1d'": - return 'swss', 0 - elif command == "systemctl is-enabled gnmi.timer": - return 'enabled', 0 - else: - return '', 0 - - # Load sonic-cfggen from source since /usr/local/bin/sonic-cfggen does not have .py extension. sonic_cfggen = load_module_from_source('sonic_cfggen', '/usr/local/bin/sonic-cfggen') @@ -235,32 +196,6 @@ 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_untriggered_timer(self, get_cmd_module, setup_single_broadcom_asic): - with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect_untriggered_timer)) as mock_run_command: - (config, show) = get_cmd_module - - jsonfile_config = os.path.join(mock_db_path, "config_db.json") - jsonfile_init_cfg = os.path.join(mock_db_path, "init_cfg.json") - - # create object - config.INIT_CFG_FILE = jsonfile_init_cfg - config.DEFAULT_CONFIG_DB_FILE = jsonfile_config - - db = Db() - runner = CliRunner() - obj = {'config_db': db.cfgdb} - - # simulate 'config reload' to provoke load_sys_info option - result = runner.invoke(config.config.commands["reload"], ["-l", "-y"], obj=obj) - - print(result.exit_code) - print(result.output) - traceback.print_tb(result.exc_info[2]) - - assert result.exit_code == 1 - - assert "\n".join([l.rstrip() for l in result.output.split('\n')][:2]) == reload_config_with_untriggered_timer_output - @classmethod def teardown_class(cls): print("TEARDOWN") @@ -293,25 +228,7 @@ def test_load_minigraph(self, get_cmd_module, setup_single_broadcom_asic): assert "\n".join([l.rstrip() for l in result.output.split('\n')]) == load_minigraph_command_output # Verify "systemctl reset-failed" is called for services under sonic.target mock_run_command.assert_any_call('systemctl reset-failed swss') - # Verify "systemctl reset-failed" is called for services under sonic-delayed.target - mock_run_command.assert_any_call('systemctl reset-failed snmp') - assert mock_run_command.call_count == 11 - - def test_load_minigraph_with_gnmi_timer(self, get_cmd_module, setup_single_broadcom_asic): - with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect_gnmi)) as mock_run_command: - (config, show) = get_cmd_module - runner = CliRunner() - result = runner.invoke(config.config.commands["load_minigraph"], ["-y"]) - print(result.exit_code) - print(result.output) - traceback.print_tb(result.exc_info[2]) - assert result.exit_code == 0 - assert "\n".join([l.rstrip() for l in result.output.split('\n')]) == load_minigraph_command_output - # Verify "systemctl reset-failed" is called for services under sonic.target - mock_run_command.assert_any_call('systemctl reset-failed swss') - # Verify "systemctl reset-failed" is called for services under sonic-delayed.target - mock_run_command.assert_any_call('systemctl reset-failed gnmi') - assert mock_run_command.call_count == 11 + assert mock_run_command.call_count == 8 def test_load_minigraph_with_port_config_bad_format(self, get_cmd_module, setup_single_broadcom_asic): with mock.patch( diff --git a/tests/counterpoll_input/config_db.json b/tests/counterpoll_input/config_db.json index 40ff750d..38cde7c1 100644 --- a/tests/counterpoll_input/config_db.json +++ b/tests/counterpoll_input/config_db.json @@ -2235,7 +2235,7 @@ "auto_restart": "enabled", "state": "enabled", "has_global_scope": "True", - "has_timer": "False" + "delayed": "False" }, "pmon": { "has_per_asic_scope": "False", @@ -2243,7 +2243,7 @@ "auto_restart": "enabled", "state": "enabled", "has_global_scope": "True", - "has_timer": "False" + "delayed": "False" }, "sflow": { "has_per_asic_scope": "False", @@ -2251,7 +2251,7 @@ "auto_restart": "enabled", "state": "disabled", "has_global_scope": "True", - "has_timer": "False" + "delayed": "False" }, "database": { "has_per_asic_scope": "True", @@ -2259,7 +2259,7 @@ "auto_restart": "disabled", "state": "enabled", "has_global_scope": "True", - "has_timer": "False" + "delayed": "False" }, "telemetry": { "has_per_asic_scope": "False", @@ -2268,7 +2268,7 @@ "auto_restart": "enabled", "state": "enabled", "has_global_scope": "True", - "has_timer": "True" + "delayed": "True" }, "snmp": { "has_per_asic_scope": "False", @@ -2276,7 +2276,7 @@ "auto_restart": "enabled", "state": "enabled", "has_global_scope": "True", - "has_timer": "True" + "delayed": "True" }, "bgp": { "has_per_asic_scope": "True", @@ -2284,7 +2284,7 @@ "auto_restart": "enabled", "state": "enabled", "has_global_scope": "False", - "has_timer": "False" + "delayed": "False" }, "radv": { "has_per_asic_scope": "False", @@ -2292,7 +2292,7 @@ "auto_restart": "enabled", "state": "enabled", "has_global_scope": "True", - "has_timer": "False" + "delayed": "False" }, "mgmt-framework": { "has_per_asic_scope": "False", @@ -2300,7 +2300,7 @@ "auto_restart": "enabled", "state": "enabled", "has_global_scope": "True", - "has_timer": "True" + "delayed": "True" }, "nat": { "has_per_asic_scope": "False", @@ -2308,7 +2308,7 @@ "auto_restart": "enabled", "state": "disabled", "has_global_scope": "True", - "has_timer": "False" + "delayed": "False" }, "teamd": { "has_per_asic_scope": "True", @@ -2316,7 +2316,7 @@ "auto_restart": "enabled", "state": "enabled", "has_global_scope": "False", - "has_timer": "False" + "delayed": "False" }, "dhcp_relay": { "has_per_asic_scope": "False", @@ -2324,7 +2324,7 @@ "auto_restart": "enabled", "state": "enabled", "has_global_scope": "True", - "has_timer": "False" + "delayed": "False" }, "swss": { "has_per_asic_scope": "True", @@ -2332,7 +2332,7 @@ "auto_restart": "enabled", "state": "enabled", "has_global_scope": "False", - "has_timer": "False" + "delayed": "False" }, "syncd": { "has_per_asic_scope": "True", @@ -2340,7 +2340,7 @@ "auto_restart": "enabled", "state": "enabled", "has_global_scope": "False", - "has_timer": "False" + "delayed": "False" } }, "DSCP_TO_TC_MAP": { @@ -2669,4 +2669,4 @@ "size": "56368" } } -} \ No newline at end of file +} diff --git a/tests/db_migrator_input/config_db/feature-expected.json b/tests/db_migrator_input/config_db/feature-expected.json index 92653771..baf051a8 100644 --- a/tests/db_migrator_input/config_db/feature-expected.json +++ b/tests/db_migrator_input/config_db/feature-expected.json @@ -3,7 +3,7 @@ "auto_restart": "disabled", "has_global_scope": "False", "has_per_asic_scope": "True", - "has_timer": "False", + "delayed": "False", "high_mem_alert": "disabled", "state": "enabled" }, @@ -11,7 +11,7 @@ "auto_restart": "enabled", "has_global_scope": "False", "has_per_asic_scope": "True", - "has_timer": "False", + "delayed": "False", "high_mem_alert": "disabled", "state": "enabled" }, @@ -19,7 +19,7 @@ "auto_restart": "enabled", "has_global_scope": "False", "has_per_asic_scope": "True", - "has_timer": "False", + "delayed": "True", "high_mem_alert": "disabled", "state": "enabled" } diff --git a/tests/db_migrator_input/config_db/feature-input.json b/tests/db_migrator_input/config_db/feature-input.json index c6d512da..46a6cae6 100644 --- a/tests/db_migrator_input/config_db/feature-input.json +++ b/tests/db_migrator_input/config_db/feature-input.json @@ -8,7 +8,8 @@ "high_mem_alert": "disabled" }, "FEATURE|telemetry": { - "status": "enabled" + "status": "enabled", + "has_timer": "True" }, "FEATURE|syncd": { "state": "enabled" diff --git a/tests/db_migrator_input/init_cfg.json b/tests/db_migrator_input/init_cfg.json index 634477a4..a714b8cd 100644 --- a/tests/db_migrator_input/init_cfg.json +++ b/tests/db_migrator_input/init_cfg.json @@ -4,7 +4,7 @@ "auto_restart": "enabled", "has_global_scope": "False", "has_per_asic_scope": "True", - "has_timer": "False", + "delayed": "False", "high_mem_alert": "disabled", "state": "enabled" }, @@ -12,7 +12,7 @@ "auto_restart": "enabled", "has_global_scope": "False", "has_per_asic_scope": "True", - "has_timer": "False", + "delayed": "False", "high_mem_alert": "disabled", "state": "enabled" }, @@ -20,7 +20,7 @@ "auto_restart": "disabled", "has_global_scope": "False", "has_per_asic_scope": "True", - "has_timer": "False", + "delayed": "False", "high_mem_alert": "disabled", "state": "disabled" } diff --git a/tests/mock_tables/t1/config_db.json b/tests/mock_tables/t1/config_db.json index f1f83518..42a0e2da 100644 --- a/tests/mock_tables/t1/config_db.json +++ b/tests/mock_tables/t1/config_db.json @@ -1798,7 +1798,7 @@ "auto_restart": "enabled", "has_global_scope": "False", "has_per_asic_scope": "True", - "has_timer": "False", + "delayed": "False", "high_mem_alert": "disabled", "state": "enabled" } @@ -1811,7 +1811,7 @@ "auto_restart": "disabled", "has_global_scope": "True", "has_per_asic_scope": "True", - "has_timer": "False", + "delayed": "False", "high_mem_alert": "disabled", "state": "enabled" } @@ -1824,7 +1824,7 @@ "auto_restart": "enabled", "has_global_scope": "True", "has_per_asic_scope": "False", - "has_timer": "False", + "delayed": "False", "high_mem_alert": "disabled", "state": "enabled" } @@ -1837,7 +1837,7 @@ "auto_restart": "enabled", "has_global_scope": "True", "has_per_asic_scope": "True", - "has_timer": "False", + "delayed": "False", "high_mem_alert": "disabled", "state": "enabled" } @@ -1850,7 +1850,7 @@ "auto_restart": "enabled", "has_global_scope": "True", "has_per_asic_scope": "False", - "has_timer": "True", + "delayed": "True", "high_mem_alert": "disabled", "state": "enabled" } @@ -1863,7 +1863,7 @@ "auto_restart": "enabled", "has_global_scope": "True", "has_per_asic_scope": "False", - "has_timer": "False", + "delayed": "False", "high_mem_alert": "disabled", "state": "disabled" } @@ -1876,7 +1876,7 @@ "auto_restart": "enabled", "has_global_scope": "True", "has_per_asic_scope": "False", - "has_timer": "False", + "delayed": "False", "high_mem_alert": "disabled", "state": "enabled" } @@ -1889,7 +1889,7 @@ "auto_restart": "enabled", "has_global_scope": "True", "has_per_asic_scope": "False", - "has_timer": "False", + "delayed": "False", "high_mem_alert": "disabled", "state": "enabled" } @@ -1902,7 +1902,7 @@ "auto_restart": "enabled", "has_global_scope": "True", "has_per_asic_scope": "False", - "has_timer": "False", + "delayed": "False", "high_mem_alert": "disabled", "state": "disabled" } @@ -1915,7 +1915,7 @@ "auto_restart": "enabled", "has_global_scope": "True", "has_per_asic_scope": "False", - "has_timer": "True", + "delayed": "True", "high_mem_alert": "disabled", "state": "enabled" } @@ -1928,7 +1928,7 @@ "auto_restart": "enabled", "has_global_scope": "False", "has_per_asic_scope": "True", - "has_timer": "False", + "delayed": "False", "high_mem_alert": "disabled", "state": "enabled" } @@ -1941,7 +1941,7 @@ "auto_restart": "enabled", "has_global_scope": "False", "has_per_asic_scope": "True", - "has_timer": "False", + "delayed": "False", "high_mem_alert": "disabled", "state": "enabled" } @@ -1954,7 +1954,7 @@ "auto_restart": "enabled", "has_global_scope": "False", "has_per_asic_scope": "True", - "has_timer": "False", + "delayed": "False", "high_mem_alert": "disabled", "state": "enabled" } @@ -1967,7 +1967,7 @@ "auto_restart": "enabled", "has_global_scope": "True", "has_per_asic_scope": "False", - "has_timer": "True", + "delayed": "True", "high_mem_alert": "disabled", "state": "enabled", "status": "enabled" @@ -3510,4 +3510,4 @@ "VERSION": "version_1_0_4" } } -} \ No newline at end of file +} diff --git a/tests/sonic_package_manager/test_service_creator.py b/tests/sonic_package_manager/test_service_creator.py index c97d3626..689a6354 100644 --- a/tests/sonic_package_manager/test_service_creator.py +++ b/tests/sonic_package_manager/test_service_creator.py @@ -218,7 +218,7 @@ def test_feature_registration(mock_sonic_db, manifest): 'set_owner': 'local', 'has_per_asic_scope': 'False', 'has_global_scope': 'True', - 'has_timer': 'False', + 'delayed': 'False', 'check_up_status': 'False', 'support_syslog_rate_limit': 'False', }) @@ -232,7 +232,7 @@ def test_feature_update(mock_sonic_db, manifest): 'set_owner': 'local', 'has_per_asic_scope': 'False', 'has_global_scope': 'True', - 'has_timer': 'False', + 'delayed': 'False', 'check_up_status': 'False', 'support_syslog_rate_limit': 'False', } @@ -256,7 +256,7 @@ def test_feature_update(mock_sonic_db, manifest): 'set_owner': 'local', 'has_per_asic_scope': 'False', 'has_global_scope': 'True', - 'has_timer': 'True', + 'delayed': 'True', 'check_up_status': 'False', 'support_syslog_rate_limit': 'False', }), @@ -278,7 +278,7 @@ def test_feature_registration_with_timer(mock_sonic_db, manifest): 'set_owner': 'local', 'has_per_asic_scope': 'False', 'has_global_scope': 'True', - 'has_timer': 'True', + 'delayed': 'True', 'check_up_status': 'False', 'support_syslog_rate_limit': 'False', }) @@ -298,7 +298,7 @@ def test_feature_registration_with_non_default_owner(mock_sonic_db, manifest): 'set_owner': 'kube', 'has_per_asic_scope': 'False', 'has_global_scope': 'True', - 'has_timer': 'False', + 'delayed': 'False', 'check_up_status': 'False', 'support_syslog_rate_limit': 'False', }) From 1468f4a039611c6e8bd7ad8778ed5643f154524d Mon Sep 17 00:00:00 2001 From: xumia <59720581+xumia@users.noreply.github.com> Date: Wed, 12 Apr 2023 09:20:21 +0800 Subject: [PATCH 117/312] Support to display the SONiC OS Version in the command show version (#2787) What I did Support to display the SONiC OS Version in the command show version. It will be used to display the version info in the SONiC command "show version". The version is used to do the FIPS certification. We do not do the FIPS certification on a specific release, but on the SONiC OS Version. SONiC Software Version: SONiC.master-13812.218661-7d94c0c28 SONiC OS Version: 11 Distribution: Debian 11.6 Kernel: 5.10.0-18-2-amd64 How I did it The device info is in sonic-net/sonic-buildimage, see PR: sonic-net/sonic-buildimage#14601 The submodule change can be merged to sonic-buildimage, after the PR 14601 merged. How to verify it --- show/main.py | 1 + tests/show_test.py | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/show/main.py b/show/main.py index a60e8411..f2b71c9c 100755 --- a/show/main.py +++ b/show/main.py @@ -1297,6 +1297,7 @@ def version(verbose): sys_date = datetime.now() click.echo("\nSONiC Software Version: SONiC.{}".format(version_info['build_version'])) + click.echo("\nSONiC OS Version: {}".format(version_info['sonic_os_version'])) click.echo("Distribution: Debian {}".format(version_info['debian_version'])) click.echo("Kernel: {}".format(version_info['kernel_version'])) click.echo("Build commit: {}".format(version_info['commit_id'])) diff --git a/tests/show_test.py b/tests/show_test.py index 114dbc3c..ddb59078 100644 --- a/tests/show_test.py +++ b/tests/show_test.py @@ -116,3 +116,34 @@ def test_show_logging_tmpfs_syslog_1(run_command, cli_arguments, expected): runner = CliRunner() result = runner.invoke(show.cli.commands["logging"], cli_arguments) run_command.assert_called_with(EXPECTED_BASE_COMMAND + expected, display_cmd=False) + +def side_effect_subprocess_popen(*args, **kwargs): + mock = MagicMock() + if args[0] == "uptime": + mock.stdout.read.return_value = "05:58:07 up 25 days" + elif args[0].startswith("sudo docker images"): + mock.stdout.read.return_value = "REPOSITORY TAG" + return mock + +@patch('sonic_py_common.device_info.get_sonic_version_info', MagicMock(return_value={ + "build_version": "release-1.1-7d94c0c28", + "sonic_os_version": "11", + "debian_version": "11.6", + "kernel_version": "5.10", + "commit_id": "7d94c0c28", + "build_date": "Wed Feb 15 06:17:08 UTC 2023", + "built_by": "AzDevOps"})) +@patch('sonic_py_common.device_info.get_platform_info', MagicMock(return_value={ + "platform": "x86_64-kvm_x86_64-r0", + "hwsku": "Force10-S6000", + "asic_type": "vs", + "asic_count": 1})) +@patch('sonic_py_common.device_info.get_chassis_info', MagicMock(return_value={ + "serial": "N/A", + "model": "N/A", + "revision": "N/A"})) +@patch('subprocess.Popen', MagicMock(side_effect=side_effect_subprocess_popen)) +def test_show_version(): + runner = CliRunner() + result = runner.invoke(show.cli.commands["version"]) + assert "SONiC OS Version: 11" in result.output From ba28df305d75d828307fe8b780a2eb14afcc2891 Mon Sep 17 00:00:00 2001 From: xumia <59720581+xumia@users.noreply.github.com> Date: Thu, 13 Apr 2023 19:21:56 +0800 Subject: [PATCH 118/312] Remove the no use new line in show version (#2792) What I did Remove the additional new line in the command show version, the new line character is no use. SONiC Software Version: SONiC.master-14619.252155-d7c9d3b7d SONiC OS Version: 11 Distribution: Debian 11.6 Change to: SONiC Software Version: SONiC.master-14619.252155-d7c9d3b7d SONiC OS Version: 11 Distribution: Debian 11.6 How I did it How to verify it --- show/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/show/main.py b/show/main.py index f2b71c9c..7f79cd47 100755 --- a/show/main.py +++ b/show/main.py @@ -1297,7 +1297,7 @@ def version(verbose): sys_date = datetime.now() click.echo("\nSONiC Software Version: SONiC.{}".format(version_info['build_version'])) - click.echo("\nSONiC OS Version: {}".format(version_info['sonic_os_version'])) + click.echo("SONiC OS Version: {}".format(version_info['sonic_os_version'])) click.echo("Distribution: Debian {}".format(version_info['debian_version'])) click.echo("Kernel: {}".format(version_info['kernel_version'])) click.echo("Build commit: {}".format(version_info['commit_id'])) From d17d124ebd1fd2a631be7f8ba24aef82906c9e3d Mon Sep 17 00:00:00 2001 From: Vadym Hlushko <62022266+vadymhlushko-mlnx@users.noreply.github.com> Date: Thu, 13 Apr 2023 14:37:22 +0300 Subject: [PATCH 119/312] [aclshow][user-manual] Add the aclshow utility description to the User Manual document (#2779) Add the aclshow utility description to the User Manual document Signed-off-by: vadymhlushko-mlnx --- doc/Command-Reference.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 494773b8..86902cd7 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -1538,6 +1538,36 @@ This command is used to create new ACL tables. Go Back To [Beginning of the document](#) or [Beginning of this section](#acl) +**aclshow** + +This command is used to display: ACL rules, tables and their priority, ACL packets counters, and bytes counters + +- Usage: + ``` + aclshow [-h] [-a] [-c] [-r RULES] [-t TABLES] [-v] [-vv] + ``` + +- Parameters: + - -a, --all: Show all ACL counters + - -c, --clear: Clear ACL counters statistics + - -r RULES, --rules RULES: Show only specified ACL rules and their counters + - -t TABLES, --tables TABLES: Show only specified ACL tables and their counters + - -vv, --verbose: Verbose output + +- Examples: + ``` + admin@sonic:~$ sudo aclshow -a + RULE NAME TABLE NAME PRIO PACKETS COUNT BYTES COUNT + ----------- ------------ ------ --------------- ------------- + RULE_1 DATAACL 9999 0 0 + RULE_2 DATAACL 9998 0 0 + RULE_1 SNMP_ACL 9999 N/A N/A + ``` + + If the `PACKETS COUNT` and `BYTES COUNT` fields have the `N/A` value it means either that the ACL rule is invalid or it is a `control plane` ACL and those counters are created in Linux, not in SONiC `COUNTERS_DB` and the [iptables](https://linux.die.net/man/8/iptables) utility should be used to view those counters. + + If the `PACKETS COUNT` and `BYTES COUNT` fields have some numeric value it means that it is a SONiC ACL's and those counters are created in SONiC `COUNTERS_DB`. + ## ARP & NDP From d433b2f954e446db7a655e882a7274cd5bce3a50 Mon Sep 17 00:00:00 2001 From: Aryeh Feigin <101218333+arfeigin@users.noreply.github.com> Date: Tue, 18 Apr 2023 09:14:02 +0300 Subject: [PATCH 120/312] [fast-reboot] set teamd timer to minimum, preserve connected routes (#2760) Part of sonic-net/sonic-buildimage#14583 Similar to #2744 - What I did Added a script to filter routes: preserve default routes (was already done as part of fast-reboot script) and connected routes. Set teamd timer to minimal allowed value (1 second) for fast-reboot. Both made in order to shorten dataplane downtime. - How I did it fast-reboot-filter-routes.py was added to preserve connected and default routes and is being called from fast-reboot script. teamd-timer is set when setting fast-reboot. --- scripts/fast-reboot | 18 +++--- scripts/fast-reboot-filter-routes.py | 91 ++++++++++++++++++++++++++++ setup.py | 1 + 3 files changed, 102 insertions(+), 8 deletions(-) create mode 100755 scripts/fast-reboot-filter-routes.py diff --git a/scripts/fast-reboot b/scripts/fast-reboot index fb162ae1..eea97e79 100755 --- a/scripts/fast-reboot +++ b/scripts/fast-reboot @@ -550,6 +550,7 @@ case "$REBOOT_TYPE" in BOOT_TYPE_ARG=$REBOOT_TYPE trap clear_boot EXIT HUP INT QUIT TERM KILL ABRT ALRM sonic-db-cli STATE_DB HSET "FAST_RESTART_ENABLE_TABLE|system" "enable" "true" &>/dev/null + config warm_restart teamsyncd_timer 1 config warm_restart enable system ;; "warm-reboot") @@ -667,14 +668,15 @@ fi set +e if [[ "$REBOOT_TYPE" = "fast-reboot" ]]; then - # Clear all routes except of default routes for faster reconciliation time. - sonic-db-cli APPL_DB eval " - for _, k in ipairs(redis.call('keys', '*')) do - if string.match(k, 'ROUTE_TABLE:') and not string.match(k, 'ROUTE_TABLE:0.0.0.0/0') and not string.match(k, 'ROUTE_TABLE:::/0') then \ - redis.call('del', k) - end - end - " 0 > /dev/null + # Clear all routes except of default and connected routes for faster reconciliation time. + debug "Clearing routes..." + FILTER_ROUTES=0 + python /usr/local/bin/fast-reboot-filter-routes.py || FILTER_ROUTES=$? + if [[ FILTER_ROUTES -ne 0 ]]; then + error "Preserving connected and default routes failed." + else + debug "Routes deleted from APP-DB, default and connected routes preserved." + fi fi # disable trap-handlers which were set before diff --git a/scripts/fast-reboot-filter-routes.py b/scripts/fast-reboot-filter-routes.py new file mode 100755 index 00000000..9328b79e --- /dev/null +++ b/scripts/fast-reboot-filter-routes.py @@ -0,0 +1,91 @@ +#!/usr/bin/env python3 + +import json +import sys +import os +import utilities_common.cli as clicommon +import syslog +import traceback +import click +from swsscommon.swsscommon import ConfigDBConnector + +ROUTE_IDX = 1 + +def get_connected_routes(): + cmd = 'sudo vtysh -c "show ip route connected json"' + connected_routes = [] + try: + output, ret = clicommon.run_command(cmd, return_cmd=True) + if ret != 0: + click.echo(output.rstrip('\n')) + sys.exit(ret) + if output is not None: + route_info = json.loads(output) + for route in route_info.keys(): + connected_routes.append(route) + except Exception: + ctx = click.get_current_context() + ctx.fail("Unable to get connected routes from bgp") + + return connected_routes + +def get_route(db, route): + key = 'ROUTE_TABLE:%s' % route + val = db.keys(db.APPL_DB, key) + if val: + return val[0].split(":", 1)[ROUTE_IDX] + else: + return None + +def generate_default_route_entries(): + db = ConfigDBConnector() + db.db_connect(db.APPL_DB) + + default_routes = [] + + ipv4_default = get_route(db, '0.0.0.0/0') + if ipv4_default is not None: + default_routes.append(ipv4_default) + + ipv6_default = get_route(db, '::/0') + if ipv6_default is not None: + default_routes.append(ipv6_default) + + return default_routes + +def filter_routes(preserved_routes): + db = ConfigDBConnector() + db.db_connect(db.APPL_DB) + + key = 'ROUTE_TABLE:*' + routes = db.keys(db.APPL_DB, key) + + for route in routes: + stripped_route = route.split(":", 1)[ROUTE_IDX] + if stripped_route not in preserved_routes: + db.delete(db.APPL_DB, route) + +def main(): + default_routes = generate_default_route_entries() + connected_routes = get_connected_routes() + preserved_routes = set(default_routes + connected_routes) + filter_routes(preserved_routes) + return 0 + +if __name__ == '__main__': + res = 0 + try: + syslog.openlog('fast-reboot-filter-routes') + res = main() + except KeyboardInterrupt: + syslog.syslog(syslog.LOG_NOTICE, "SIGINT received. Quitting") + res = 1 + except Exception as e: + syslog.syslog(syslog.LOG_ERR, "Got an exception %s: Traceback: %s" % (str(e), traceback.format_exc())) + res = 2 + finally: + syslog.closelog() + try: + sys.exit(res) + except SystemExit: + os._exit(res) diff --git a/setup.py b/setup.py index f0717972..a2c85199 100644 --- a/setup.py +++ b/setup.py @@ -128,6 +128,7 @@ 'scripts/fanshow', 'scripts/fast-reboot', 'scripts/fast-reboot-dump.py', + 'scripts/fast-reboot-filter-routes.py', 'scripts/fdbclear', 'scripts/fdbshow', 'scripts/fibshow', From f5d9e6ca0d03e911a8aaa1ae71768ce87ea8caa3 Mon Sep 17 00:00:00 2001 From: Mai Bui Date: Wed, 19 Apr 2023 13:18:28 -0400 Subject: [PATCH 121/312] [config] replace shell=True and replace exit() by sys.exit() (#2658) Signed-off-by: maipbui #### What I did `subprocess()` - when using with `shell=True` is dangerous. Using subprocess function without a static string can lead to command injection. `sys.exit` is better than `exit`, considered good to use in production code. Ref: https://stackoverflow.com/questions/6501121/difference-between-exit-and-sys-exit-in-python https://stackoverflow.com/questions/19747371/python-exit-commands-why-so-many-and-when-should-each-be-used #### How I did it `subprocess()` - use `shell=False` instead, use list of strings Ref: [https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation](https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation) Replace `exit()` by `sys.exit()` #### How to verify it Pass UT Manual test ``` config/main.py 1. _get_device_type() >>> import config.main as config >>> config._get_device_type() 2. _stop_services() >>> config._stop_services() 3. _restart_services() >>> config._restart_services() 4. sudo config reload -l -f -y 5. sudo config platform firmware install 6. sudo config platform firmware update 7. config sflow enable >>> import subprocess >>> proc = subprocess.Popen(['systemctl', 'is-active', 'sflow'], text=True, stdout=subprocess.PIPE) >>> proc.communicate() config/syslog.py 8. get_vrf_list() >>> import config.syslog as c >>> c.get_vrf_list() 9. get_vrf_member_dict() >>> c.get_vrf_member_dict() 10. get_ip_addr_dict() >>> c.get_ip_addr_dict() ``` --- config/main.py | 42 +++++++++++++++---------------- config/syslog.py | 8 +++--- tests/config_test.py | 39 +++++++++++++++++++++++++++- tests/syslog_input/config_mock.py | 8 +++--- tests/syslog_test.py | 11 ++++++++ 5 files changed, 78 insertions(+), 30 deletions(-) diff --git a/config/main.py b/config/main.py index 990dfc68..1396c2b1 100644 --- a/config/main.py +++ b/config/main.py @@ -246,8 +246,8 @@ def _get_device_type(): TODO: move to sonic-py-common """ - command = "{} -m -v DEVICE_METADATA.localhost.type".format(SONIC_CFGGEN_PATH) - proc = subprocess.Popen(command, shell=True, text=True, stdout=subprocess.PIPE) + command = [SONIC_CFGGEN_PATH, "-m", "-v", "DEVICE_METADATA.localhost.type"] + proc = subprocess.Popen(command, text=True, stdout=subprocess.PIPE) device_type, err = proc.communicate() if err: click.echo("Could not get the device type from minigraph, setting device type to Unknown") @@ -383,7 +383,7 @@ def is_vrf_exists(config_db, vrf_name): elif vrf_name == "mgmt" or vrf_name == "management": entry = config_db.get_entry("MGMT_VRF_CONFIG", "vrf_global") if entry and entry.get("mgmtVrfEnabled") == "true": - return True + return True return False @@ -403,7 +403,7 @@ def is_portchannel_name_valid(portchannel_name): """ # Return True if Portchannel name is PortChannelXXXX (XXXX can be 0-9999) - if portchannel_name[:CFG_PORTCHANNEL_PREFIX_LEN] != CFG_PORTCHANNEL_PREFIX : + if portchannel_name[:CFG_PORTCHANNEL_PREFIX_LEN] != CFG_PORTCHANNEL_PREFIX: return False if (portchannel_name[CFG_PORTCHANNEL_PREFIX_LEN:].isdigit() is False or int(portchannel_name[CFG_PORTCHANNEL_PREFIX_LEN:]) > CFG_PORTCHANNEL_MAX_VAL) : @@ -431,7 +431,7 @@ def is_port_member_of_this_portchannel(db, port_name, portchannel_name): if portchannel_list is None: return False - for k,v in db.get_table('PORTCHANNEL_MEMBER'): + for k, v in db.get_table('PORTCHANNEL_MEMBER'): if (k == portchannel_name) and (v == port_name): return True @@ -855,7 +855,7 @@ def _get_disabled_services_list(config_db): def _stop_services(): try: - subprocess.check_call("sudo monit status", shell=True, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) + subprocess.check_call(['sudo', 'monit', 'status'], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) click.echo("Disabling container monitoring ...") clicommon.run_command("sudo monit unmonitor container_checker") except subprocess.CalledProcessError as err: @@ -880,7 +880,7 @@ def _restart_services(): clicommon.run_command("sudo systemctl restart sonic.target") try: - subprocess.check_call("sudo monit status", shell=True, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) + subprocess.check_call(['sudo', 'monit', 'status'], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) click.echo("Enabling container monitoring ...") clicommon.run_command("sudo monit monitor container_checker") except subprocess.CalledProcessError as err: @@ -942,7 +942,7 @@ def interface_is_in_portchannel(portchannel_member_table, interface_name): def check_mirror_direction_config(v, direction): """ Check if port is already configured for mirror in same direction """ if direction: - direction=direction.upper() + direction = direction.upper() if ('direction' in v and v['direction'] == 'BOTH') or (direction == 'BOTH'): return True if 'direction' in v and v['direction'] == direction: @@ -1170,7 +1170,7 @@ def config(ctx): load_db_config() if os.geteuid() != 0: - exit("Root privileges are required for this operation") + sys.exit("Root privileges are required for this operation") ctx.obj = Db() @@ -1538,8 +1538,8 @@ def reload(db, filename, yes, load_sysinfo, no_service_restart, force, file_form if load_sysinfo: try: - command = "{} -j {} -v DEVICE_METADATA.localhost.hwsku".format(SONIC_CFGGEN_PATH, file) - proc = subprocess.Popen(command, shell=True, text=True, stdout=subprocess.PIPE) + command = [SONIC_CFGGEN_PATH, "-j", file, '-v', "DEVICE_METADATA.localhost.hwsku"] + proc = subprocess.Popen(command, text=True, stdout=subprocess.PIPE) output, err = proc.communicate() except FileNotFoundError as e: @@ -2876,7 +2876,7 @@ def warm_restart_enable(ctx, module): config_db = ctx.obj['db'] feature_table = config_db.get_table('FEATURE') if module != 'system' and module not in feature_table: - exit('Feature {} is unknown'.format(module)) + sys.exit('Feature {} is unknown'.format(module)) prefix = ctx.obj['prefix'] _hash = '{}{}'.format(prefix, module) state_db.set(state_db.STATE_DB, _hash, 'enable', 'true') @@ -2885,12 +2885,12 @@ def warm_restart_enable(ctx, module): @warm_restart.command('disable') @click.argument('module', metavar='', default='system', required=False) @click.pass_context -def warm_restart_enable(ctx, module): +def warm_restart_disable(ctx, module): state_db = ctx.obj['state_db'] config_db = ctx.obj['db'] feature_table = config_db.get_table('FEATURE') if module != 'system' and module not in feature_table: - exit('Feature {} is unknown'.format(module)) + sys.exit('Feature {} is unknown'.format(module)) prefix = ctx.obj['prefix'] _hash = '{}{}'.format(prefix, module) state_db.set(state_db.STATE_DB, _hash, 'enable', 'false') @@ -6127,10 +6127,10 @@ def firmware(): @click.argument('args', nargs=-1, type=click.UNPROCESSED) def install(args): """Install platform firmware""" - cmd = "fwutil install {}".format(" ".join(args)) + cmd = ["fwutil", "install"] + list(args) try: - subprocess.check_call(cmd, shell=True) + subprocess.check_call(cmd) except subprocess.CalledProcessError as e: sys.exit(e.returncode) @@ -6145,10 +6145,10 @@ def install(args): @click.argument('args', nargs=-1, type=click.UNPROCESSED) def update(args): """Update platform firmware""" - cmd = "fwutil update {}".format(" ".join(args)) + cmd = ["fwutil", "update"] + list(args) try: - subprocess.check_call(cmd, shell=True) + subprocess.check_call(cmd) except subprocess.CalledProcessError as e: sys.exit(e.returncode) @@ -6308,10 +6308,10 @@ def del_loopback(ctx, loopback_name): def ztp(): """ Configure Zero Touch Provisioning """ if os.path.isfile('/usr/bin/ztp') is False: - exit("ZTP feature unavailable in this image version") + sys.exit("ZTP feature unavailable in this image version") if os.geteuid() != 0: - exit("Root privileges are required for this operation") + sys.exit("Root privileges are required for this operation") @ztp.command() @click.option('-y', '--yes', is_flag=True, callback=_abort_if_false, @@ -6430,7 +6430,7 @@ def enable(ctx): ctx.fail("Invalid ConfigDB. Error: {}".format(e)) try: - proc = subprocess.Popen("systemctl is-active sflow", shell=True, text=True, stdout=subprocess.PIPE) + proc = subprocess.Popen(['systemctl', 'is-active', 'sflow'], text=True, stdout=subprocess.PIPE) (out, err) = proc.communicate() except SystemExit as e: ctx.fail("Unable to check sflow status {}".format(e)) diff --git a/config/syslog.py b/config/syslog.py index d924a6d1..0df6fffd 100644 --- a/config/syslog.py +++ b/config/syslog.py @@ -31,13 +31,13 @@ def exec_cmd(cmd): """ Execute shell command """ - return subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True) + return subprocess.check_output(cmd, stderr=subprocess.STDOUT) def get_vrf_list(): """ Get Linux VRF device list """ vrf_list = [] - vrf_data = json.loads(exec_cmd('ip --json vrf show')) + vrf_data = json.loads(exec_cmd(['ip', '--json', 'vrf', 'show'])) for vrf_entry in vrf_data: vrf_name = vrf_entry.get('name', None) if vrf_name is not None: @@ -51,7 +51,7 @@ def get_vrf_member_dict(): vrf_list = get_vrf_list() for vrf_name in vrf_list: vrf_member_dict[vrf_name] = [] - vrf_member_data = json.loads(exec_cmd('ip --json link show vrf {}'.format(vrf_name))) + vrf_member_data = json.loads(exec_cmd(['ip', '--json', 'link', 'show', 'vrf', vrf_name])) for vrf_member_entry in vrf_member_data: vrf_member_name = vrf_member_entry.get('ifname', None) if vrf_member_name is not None: @@ -62,7 +62,7 @@ def get_vrf_member_dict(): def get_ip_addr_dict(): """ Get Linux interface to IPv4/IPv6 address list dict """ ip_addr_dict = {} - ip_addr_data = json.loads(exec_cmd('ip --json address show')) + ip_addr_data = json.loads(exec_cmd(['ip', '--json', 'address', 'show'])) for ip_addr_entry in ip_addr_data: link_name = ip_addr_entry.get('ifname', None) if link_name is not None: diff --git a/tests/config_test.py b/tests/config_test.py index e1e3037f..1efbc3e4 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -1,3 +1,4 @@ +import pytest import filecmp import importlib import os @@ -16,7 +17,7 @@ from sonic_py_common import device_info from utilities_common.db import Db from utilities_common.general import load_module_from_source -from mock import patch +from mock import patch, MagicMock from generic_config_updater.generic_updater import ConfigFormat @@ -154,6 +155,42 @@ def mock_run_command_side_effect_disabled_timer(*args, **kwargs): # Load sonic-cfggen from source since /usr/local/bin/sonic-cfggen does not have .py extension. sonic_cfggen = load_module_from_source('sonic_cfggen', '/usr/local/bin/sonic-cfggen') +class TestHelper(object): + def setup(self): + print("SETUP") + + @patch('config.main.subprocess.Popen') + def test_get_device_type(self, mock_subprocess): + mock_subprocess.return_value.communicate.return_value = ("BackendToRRouter ", None) + device_type = config._get_device_type() + mock_subprocess.assert_called_with(['/usr/local/bin/sonic-cfggen', '-m', '-v', 'DEVICE_METADATA.localhost.type'], text=True, stdout=-1) + assert device_type == "BackendToRRouter" + + mock_subprocess.return_value.communicate.return_value = (None, "error") + device_type = config._get_device_type() + mock_subprocess.assert_called_with(['/usr/local/bin/sonic-cfggen', '-m', '-v', 'DEVICE_METADATA.localhost.type'], text=True, stdout=-1) + assert device_type == "Unknown" + + def teardown(self): + print("TEARDOWN") + +class TestConfig(object): + def setup(self): + print("SETUP") + + @patch('config.main.subprocess.check_call') + def test_platform_fw_install(self, mock_check_call): + runner = CliRunner() + result = runner.invoke(config.config.commands['platform'].commands['firmware'].commands['install'], ['chassis', 'component', 'BIOS', 'fw', '/firmware_path']) + assert result.exit_code == 0 + mock_check_call.assert_called_with(["fwutil", "install", 'chassis', 'component', 'BIOS', 'fw', '/firmware_path']) + + @patch('config.main.subprocess.check_call') + def test_plattform_fw_update(self, mock_check_call): + runner = CliRunner() + result = runner.invoke(config.config.commands['platform'].commands['firmware'].commands['update'], ['update', 'module', 'Module1', 'component', 'BIOS', 'fw']) + assert result.exit_code == 0 + mock_check_call.assert_called_with(["fwutil", "update", 'update', 'module', 'Module1', 'component', 'BIOS', 'fw']) class TestConfigReload(object): dummy_cfg_file = os.path.join(os.sep, "tmp", "config.json") diff --git a/tests/syslog_input/config_mock.py b/tests/syslog_input/config_mock.py index d595b891..9eecd75e 100644 --- a/tests/syslog_input/config_mock.py +++ b/tests/syslog_input/config_mock.py @@ -59,12 +59,12 @@ ''' def exec_cmd_mock(cmd): - if cmd == 'ip --json vrf show': + if cmd == ['ip', '--json', 'vrf', 'show']: return VRF_LIST - elif cmd == 'ip --json link show vrf mgmt': + elif cmd == ['ip', '--json', 'link', 'show', 'vrf', 'mgmt']: return VRF_MGMT_MEMBERS - elif cmd == 'ip --json link show vrf Vrf-Data': + elif cmd == ['ip', '--json', 'link', 'show', 'vrf', 'Vrf-Data']: return VRF_DATA_MEMBERS - elif cmd == 'ip --json address show': + elif cmd == ['ip', '--json', 'address', 'show']: return IP_ADDR_LIST raise Exception("{}: unknown command: {}".format(__name__, cmd)) diff --git a/tests/syslog_test.py b/tests/syslog_test.py index f7d2cde1..354100a5 100644 --- a/tests/syslog_test.py +++ b/tests/syslog_test.py @@ -3,11 +3,14 @@ import pytest import os +import sys import mock import logging +import subprocess import show.main as show import config.main as config +import config.syslog as config_syslog from click.testing import CliRunner from utilities_common.db import Db @@ -57,6 +60,14 @@ def teardown_class(cls): ########## CONFIG SYSLOG ########## + def test_exec_cmd(self): + output = config_syslog.exec_cmd([sys.executable, "-c", "print('testing')"]) + assert output == b"testing\n" + + with pytest.raises(subprocess.CalledProcessError) as e: + config_syslog.exec_cmd([sys.executable, "-c", "import sys; sys.exit(6)"]) + assert e.value.returncode == 6 + @mock.patch("utilities_common.cli.run_command", mock.MagicMock(return_value=None)) @pytest.mark.parametrize("server_ip", ["2.2.2.2", "2222::2222"]) def test_config_syslog_basic(self, server_ip): From 29c7e8b68892c2b4b1b2bd0b6c257e9ab508b7da Mon Sep 17 00:00:00 2001 From: Mai Bui Date: Wed, 19 Apr 2023 16:44:27 -0400 Subject: [PATCH 122/312] [clear] Replace shell=True, replace exit() by sys.exit() (#2657) Signed-off-by: maipbui #### What I did `subprocess()` - when using with `shell=True` is dangerous. Using subprocess function without a static string can lead to command injection. `sys.exit` is better than `exit`, considered good to use in production code. Ref: https://stackoverflow.com/questions/6501121/difference-between-exit-and-sys-exit-in-python https://stackoverflow.com/questions/19747371/python-exit-commands-why-so-many-and-when-should-each-be-used #### How I did it `subprocess()` - use `shell=False` instead, use list of strings Ref: [https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation](https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation) Replace `exit()` by `sys.exit()` #### How to verify it Manual test, execute all `sonic-clear` commands Add UT --- clear/bgp_frr_v6.py | 27 ++-- clear/bgp_quagga_v4.py | 24 +-- clear/bgp_quagga_v6.py | 25 ++-- clear/main.py | 94 ++++++------ tests/clear_test.py | 288 ++++++++++++++++++++++++++++++++++++ tests/pfcstat_test.py | 66 ++++++++- tests/queue_counter_test.py | 119 +++++++++++++++ 7 files changed, 555 insertions(+), 88 deletions(-) create mode 100644 tests/clear_test.py diff --git a/clear/bgp_frr_v6.py b/clear/bgp_frr_v6.py index 1ebb6c92..8af1b762 100644 --- a/clear/bgp_frr_v6.py +++ b/clear/bgp_frr_v6.py @@ -26,9 +26,9 @@ def neigh_all(ipaddress): """Clear all BGP peers""" if ipaddress is not None: - command = 'sudo vtysh -c "clear bgp ipv6 {}"'.format(ipaddress) + command = ['sudo', 'vtysh', '-c', "clear bgp ipv6 {}".format(ipaddress)] else: - command = 'sudo vtysh -c "clear bgp ipv6 *"' + command = ['sudo', 'vtysh', '-c', "clear bgp ipv6 *"] run_command(command) # 'in' subcommand @@ -38,9 +38,9 @@ def neigh_in(ipaddress): """Send route-refresh""" if ipaddress is not None: - command = 'sudo vtysh -c "clear bgp ipv6 {} in"'.format(ipaddress) + command = ['sudo', 'vtysh', '-c', "clear bgp ipv6 {} in".format(ipaddress)] else: - command = 'sudo vtysh -c "clear bgp ipv6 * in"' + command = ['sudo', 'vtysh', '-c', "clear bgp ipv6 * in"] run_command(command) @@ -51,9 +51,9 @@ def neigh_out(ipaddress): """Resend all outbound updates""" if ipaddress is not None: - command = 'sudo vtysh -c "clear bgp ipv6 {} out"'.format(ipaddress) + command = ['sudo', 'vtysh', '-c', "clear bgp ipv6 {} out".format(ipaddress)] else: - command = 'sudo vtysh -c "clear bgp ipv6 * out"' + command = ['sudo', 'vtysh', '-c', "clear bgp ipv6 * out"] run_command(command) @@ -69,22 +69,22 @@ def soft_in(ipaddress): """Send route-refresh""" if ipaddress is not None: - command = 'sudo vtysh -c "clear bgp ipv6 {} soft in"'.format(ipaddress) + command = ['sudo', 'vtysh', '-c', "clear bgp ipv6 {} soft in".format(ipaddress)] else: - command = 'sudo vtysh -c "clear bgp ipv6 * soft in"' + command = ['sudo', 'vtysh', '-c', "clear bgp ipv6 * soft in"] run_command(command) # 'soft all' subcommand -@neighbor.command('all') +@soft.command('all') @click.argument('ipaddress', required=False) def soft_all(ipaddress): """Clear BGP neighbors soft configuration""" if ipaddress is not None: - command = 'sudo vtysh -c "clear bgp ipv6 {} soft"'.format(ipaddress) + command = ['sudo', 'vtysh', '-c', "clear bgp ipv6 {} soft".format(ipaddress)] else: - command = 'sudo vtysh -c "clear bgp ipv6 * soft"' + command = ['sudo', 'vtysh', '-c', "clear bgp ipv6 * soft"] run_command(command) # 'soft out' subcommand @@ -94,8 +94,7 @@ def soft_out(ipaddress): """Resend all outbound updates""" if ipaddress is not None: - command = 'sudo vtysh -c "clear bgp ipv6 {} soft out"' \ - .format(ipaddress) + command = ['sudo', 'vtysh', '-c', "clear bgp ipv6 {} soft out".format(ipaddress)] else: - command = 'sudo vtysh -c "clear bgp ipv6 * soft out"' + command = ['sudo', 'vtysh', '-c', "clear bgp ipv6 * soft out"] run_command(command) diff --git a/clear/bgp_quagga_v4.py b/clear/bgp_quagga_v4.py index 4ebc5a1f..20e6e3d0 100644 --- a/clear/bgp_quagga_v4.py +++ b/clear/bgp_quagga_v4.py @@ -27,9 +27,9 @@ def neigh_all(ipaddress): """Clear all BGP peers""" if ipaddress is not None: - command = 'sudo vtysh -c "clear ip bgp {}"'.format(ipaddress) + command = ['sudo', 'vtysh', '-c', "clear ip bgp {}".format(ipaddress)] else: - command = 'sudo vtysh -c "clear ip bgp *"' + command = ['sudo', 'vtysh', '-c', "clear ip bgp *"] run_command(command) @@ -40,9 +40,9 @@ def neigh_in(ipaddress): """Send route-refresh""" if ipaddress is not None: - command = 'sudo vtysh -c "clear ip bgp {} in"'.format(ipaddress) + command = ['sudo', 'vtysh', '-c', "clear ip bgp {} in".format(ipaddress)] else: - command = 'sudo vtysh -c "clear ip bgp * in"' + command = ['sudo', 'vtysh', '-c', "clear ip bgp * in"] run_command(command) @@ -53,9 +53,9 @@ def neigh_out(ipaddress): """Resend all outbound updates""" if ipaddress is not None: - command = 'sudo vtysh -c "clear ip bgp {} out"'.format(ipaddress) + command = ['sudo', 'vtysh', '-c', "clear ip bgp {} out".format(ipaddress)] else: - command = 'sudo vtysh -c "clear ip bgp * out"' + command = ['sudo', 'vtysh', '-c', "clear ip bgp * out"] run_command(command) @@ -71,9 +71,9 @@ def soft_all(ipaddress): """Clear BGP neighbors soft configuration""" if ipaddress is not None: - command = 'sudo vtysh -c "clear ip bgp {} soft"'.format(ipaddress) + command = ['sudo', 'vtysh', '-c', "clear ip bgp {} soft".format(ipaddress)] else: - command = 'sudo vtysh -c "clear ip bgp * soft"' + command = ['sudo', 'vtysh', '-c', "clear ip bgp * soft"] run_command(command) @@ -84,9 +84,9 @@ def soft_in(ipaddress): """Send route-refresh""" if ipaddress is not None: - command = 'sudo vtysh -c "clear ip bgp {} soft in"'.format(ipaddress) + command = ['sudo', 'vtysh', '-c', "clear ip bgp {} soft in".format(ipaddress)] else: - command = 'sudo vtysh -c "clear ip bgp * soft in"' + command = ['sudo', 'vtysh', '-c', "clear ip bgp * soft in"] run_command(command) @@ -97,7 +97,7 @@ def soft_out(ipaddress): """Resend all outbound updates""" if ipaddress is not None: - command = 'sudo vtysh -c "clear ip bgp {} soft out"'.format(ipaddress) + command = ['sudo', 'vtysh', '-c', "clear ip bgp {} soft out".format(ipaddress)] else: - command = 'sudo vtysh -c "clear ip bgp * soft out"' + command = ['sudo', 'vtysh', '-c', "clear ip bgp * soft out"] run_command(command) diff --git a/clear/bgp_quagga_v6.py b/clear/bgp_quagga_v6.py index fcfe3ed1..f6385528 100644 --- a/clear/bgp_quagga_v6.py +++ b/clear/bgp_quagga_v6.py @@ -25,9 +25,9 @@ def neigh_all(ipaddress): """Clear all BGP peers""" if ipaddress is not None: - command = 'sudo vtysh -c "clear ipv6 bgp {}"'.format(ipaddress) + command = ['sudo', 'vtysh', '-c', "clear ipv6 bgp {}".format(ipaddress)] else: - command = 'sudo vtysh -c "clear ipv6 bgp *"' + command = ['sudo', 'vtysh', '-c', "clear ipv6 bgp *"] run_command(command) @@ -38,9 +38,9 @@ def neigh_in(ipaddress): """Send route-refresh""" if ipaddress is not None: - command = 'sudo vtysh -c "clear ipv6 bgp {} in"'.format(ipaddress) + command = ['sudo', 'vtysh', '-c', "clear ipv6 bgp {} in".format(ipaddress)] else: - command = 'sudo vtysh -c "clear ipv6 bgp * in"' + command = ['sudo', 'vtysh', '-c', "clear ipv6 bgp * in"] run_command(command) @@ -51,9 +51,9 @@ def neigh_out(ipaddress): """Resend all outbound updates""" if ipaddress is not None: - command = 'sudo vtysh -c "clear ipv6 bgp {} out"'.format(ipaddress) + command = ['sudo', 'vtysh', '-c', 'clear ipv6 bgp {} out'.format(ipaddress)] else: - command = 'sudo vtysh -c "clear ipv6 bgp * out"' + command = ['sudo', 'vtysh', '-c', 'clear ipv6 bgp * out'] run_command(command) @@ -69,9 +69,9 @@ def soft_all(ipaddress): """Clear BGP neighbors soft configuration""" if ipaddress is not None: - command = 'sudo vtysh -c "clear ipv6 bgp {} soft"'.format(ipaddress) + command = ['sudo', 'vtysh', '-c', "clear ipv6 bgp {} soft".format(ipaddress)] else: - command = 'sudo vtysh -c "clear ipv6 bgp * soft"' + command = ['sudo', 'vtysh', '-c', "clear ipv6 bgp * soft"] run_command(command) @@ -82,9 +82,9 @@ def soft_in(ipaddress): """Send route-refresh""" if ipaddress is not None: - command = 'sudo vtysh -c "clear ipv6 bgp {} soft in"'.format(ipaddress) + command = ['sudo', 'vtysh', '-c', "clear ipv6 bgp {} soft in".format(ipaddress)] else: - command = 'sudo vtysh -c "clear ipv6 bgp * soft in"' + command = ['sudo', 'vtysh', '-c', "clear ipv6 bgp * soft in"] run_command(command) @@ -95,8 +95,7 @@ def soft_out(ipaddress): """Resend all outbound updates""" if ipaddress is not None: - command = 'sudo vtysh -c "clear ipv6 bgp {} soft out"' \ - .format(ipaddress) + command = ['sudo' ,'vtysh' ,'-c', "clear ipv6 bgp {} soft out".format(ipaddress)] else: - command = 'sudo vtysh -c "clear ipv6 bgp * soft out"' + command = ['sudo', 'vtysh', '-c', "clear ipv6 bgp * soft out"] run_command(command) diff --git a/clear/main.py b/clear/main.py index 6980bb8b..19c1b607 100755 --- a/clear/main.py +++ b/clear/main.py @@ -5,7 +5,7 @@ import click import utilities_common.cli as clicommon import utilities_common.multi_asic as multi_asic_util - +from sonic_py_common.general import getstatusoutput_noshell_pipe from flow_counter_util.route import exit_if_route_flow_counter_not_support from utilities_common import util_base from show.plugins.pbh import read_pbh_counters @@ -79,16 +79,14 @@ def get_command(self, ctx, cmd_name): # location (configdb?), so that we prevent the continous execution of this # bash oneliner. To be revisited once routing-stack info is tracked somewhere. def get_routing_stack(): - command = "sudo docker ps | grep bgp | awk '{print$2}' | cut -d'-' -f3 | cut -d':' -f1" + cmd0 = ["sudo", "docker", "ps"] + cmd1 = ["grep", "bgp"] + cmd2 = ["awk", '{print$2}'] + cmd3 = ["cut", "-d-", "-f3"] + cmd4 = ["cut", "-d:", "-f1"] try: - proc = subprocess.Popen(command, - stdout=subprocess.PIPE, - shell=True, - text=True) - stdout = proc.communicate()[0] - proc.wait() - result = stdout.rstrip('\n') + _, result = getstatusoutput_noshell_pipe(cmd0, cmd1, cmd2, cmd3, cmd4) except OSError as e: raise OSError("Cannot detect routing-stack") @@ -102,7 +100,7 @@ def get_routing_stack(): def run_command(command, pager=False, return_output=False, return_exitstatus=False): # Provide option for caller function to Process the output. - proc = subprocess.Popen(command, shell=True, text=True, stdout=subprocess.PIPE) + proc = subprocess.Popen(command, text=True, stdout=subprocess.PIPE) if return_output: output = proc.communicate() return output if not return_exitstatus else output + (proc.returncode,) @@ -165,40 +163,40 @@ def ipv6(): @cli.command() def counters(): """Clear counters""" - command = "portstat -c" + command = ["portstat", "-c"] run_command(command) @cli.command() @click.argument('interface', metavar='', required=False, type=str) def rifcounters(interface): """Clear RIF counters""" - command = "intfstat -c" + command = ["intfstat", "-c"] if interface is not None: - command = "intfstat -i {} -c".format(interface) + command = ["intfstat", "-i", interface, "-c"] run_command(command) @cli.command() def queuecounters(): """Clear queue counters""" - command = "queuestat -c" + command = ["queuestat", "-c"] run_command(command) @cli.command() def pfccounters(): """Clear pfc counters""" - command = "pfcstat -c" + command = ["pfcstat", "-c"] run_command(command) @cli.command() def dropcounters(): """Clear drop counters""" - command = "dropstat -c clear" + command = ["dropstat", "-c", "clear"] run_command(command) @cli.command() def tunnelcounters(): """Clear Tunnel counters""" - command = "tunnelstat -c" + command = ["tunnelstat", "-c"] run_command(command) # @@ -214,18 +212,18 @@ def priority_group(): def watermark(): """Clear priority_group user WM. One does not simply clear WM, root is required""" if os.geteuid() != 0: - exit("Root privileges are required for this operation") + sys.exit("Root privileges are required for this operation") @watermark.command('headroom') def clear_wm_pg_headroom(): """Clear user headroom WM for pg""" - command = 'watermarkstat -c -t pg_headroom' + command = ['watermarkstat', '-c', '-t', 'pg_headroom'] run_command(command) @watermark.command('shared') def clear_wm_pg_shared(): """Clear user shared WM for pg""" - command = 'watermarkstat -c -t pg_shared' + command = ['watermarkstat', '-c', '-t', 'pg_shared'] run_command(command) @priority_group.group() @@ -238,26 +236,26 @@ def clear_pg_counters(): """Clear priority-group dropped packets counter """ if os.geteuid() != 0 and os.environ.get("UTILITIES_UNIT_TESTING", "0") != "2": - exit("Root privileges are required for this operation") - command = 'pg-drop -c clear' + sys.exit("Root privileges are required for this operation") + command = ['pg-drop', '-c', 'clear'] run_command(command) @priority_group.group(name='persistent-watermark') def persistent_watermark(): """Clear queue persistent WM. One does not simply clear WM, root is required""" if os.geteuid() != 0: - exit("Root privileges are required for this operation") + sys.exit("Root privileges are required for this operation") @persistent_watermark.command('headroom') def clear_pwm_pg_headroom(): """Clear persistent headroom WM for pg""" - command = 'watermarkstat -c -p -t pg_headroom' + command = ['watermarkstat', '-c', '-p', '-t', 'pg_headroom'] run_command(command) @persistent_watermark.command('shared') def clear_pwm_pg_shared(): """Clear persistent shared WM for pg""" - command = 'watermarkstat -c -p -t pg_shared' + command = ['watermarkstat', '-c', '-p', '-t', 'pg_shared'] run_command(command) @@ -270,48 +268,48 @@ def queue(): def watermark(): """Clear queue user WM. One does not simply clear WM, root is required""" if os.geteuid() != 0: - exit("Root privileges are required for this operation") + sys.exit("Root privileges are required for this operation") @watermark.command('unicast') def clear_wm_q_uni(): """Clear user WM for unicast queues""" - command = 'watermarkstat -c -t q_shared_uni' + command = ['watermarkstat', '-c', '-t', 'q_shared_uni'] run_command(command) @watermark.command('multicast') def clear_wm_q_multi(): """Clear user WM for multicast queues""" - command = 'watermarkstat -c -t q_shared_multi' + command = ['watermarkstat', '-c', '-t', 'q_shared_multi'] run_command(command) @watermark.command('all') def clear_wm_q_all(): """Clear user WM for all queues""" - command = 'watermarkstat -c -t q_shared_all' + command = ['watermarkstat', '-c', '-t', 'q_shared_all'] run_command(command) @queue.group(name='persistent-watermark') def persistent_watermark(): """Clear queue persistent WM. One does not simply clear WM, root is required""" if os.geteuid() != 0: - exit("Root privileges are required for this operation") + sys.exit("Root privileges are required for this operation") @persistent_watermark.command('unicast') def clear_pwm_q_uni(): """Clear persistent WM for persistent queues""" - command = 'watermarkstat -c -p -t q_shared_uni' + command = ['watermarkstat', '-c', '-p', '-t', 'q_shared_uni'] run_command(command) @persistent_watermark.command('multicast') def clear_pwm_q_multi(): """Clear persistent WM for multicast queues""" - command = 'watermarkstat -c -p -t q_shared_multi' + command = ['watermarkstat', '-c', '-p', '-t', 'q_shared_multi'] run_command(command) @persistent_watermark.command('all') def clear_pwm_q_all(): """Clear persistent WM for all queues""" - command = 'watermarkstat -c -p -t q_shared_all' + command = ['watermarkstat', '-c', '-p', '-t', 'q_shared_all'] run_command(command) @cli.group(name='headroom-pool') @@ -323,18 +321,18 @@ def headroom_pool(): def watermark(): """Clear headroom pool user WM. One does not simply clear WM, root is required""" if os.geteuid() != 0: - exit("Root privileges are required for this operation") + sys.exit("Root privileges are required for this operation") - command = 'watermarkstat -c -t headroom_pool' + command = ['watermarkstat', '-c', '-t', 'headroom_pool'] run_command(command) @headroom_pool.command('persistent-watermark') def persistent_watermark(): """Clear headroom pool persistent WM. One does not simply clear WM, root is required""" if os.geteuid() != 0: - exit("Root privileges are required for this operation") + sys.exit("Root privileges are required for this operation") - command = 'watermarkstat -c -p -t headroom_pool' + command = ['watermarkstat', '-c', '-p', '-t', 'headroom_pool'] run_command(command) # @@ -346,17 +344,17 @@ def persistent_watermark(): def arp(ipaddress): """Clear IP ARP table""" if ipaddress is not None: - command = 'sudo ip -4 neigh show {}'.format(ipaddress) + command = ['sudo', 'ip', '-4', 'neigh', 'show', ipaddress] (out, err) = run_command(command, return_output=True) if not err and 'dev' in out: outputList = out.split() dev = outputList[outputList.index('dev') + 1] - command = 'sudo ip -4 neigh del {} dev {}'.format(ipaddress, dev) + command = ['sudo', 'ip', '-4', 'neigh', 'del', ipaddress, 'dev', dev] else: click.echo("Neighbor {} not found".format(ipaddress)) return else: - command = "sudo ip -4 -s -s neigh flush all" + command = ['sudo', 'ip', '-4', '-s', '-s', 'neigh', 'flush', 'all'] run_command(command) @@ -369,17 +367,17 @@ def arp(ipaddress): def ndp(ipaddress): """Clear IPv6 NDP table""" if ipaddress is not None: - command = 'sudo ip -6 neigh show {}'.format(ipaddress) + command = ['sudo', 'ip', '-6', 'neigh', 'show', ipaddress] (out, err) = run_command(command, return_output=True) if not err and 'dev' in out: outputList = out.split() dev = outputList[outputList.index('dev') + 1] - command = 'sudo ip -6 neigh del {} dev {}'.format(ipaddress, dev) + command = ['sudo', 'ip', '-6', 'neigh', 'del', ipaddress, 'dev', dev] else: click.echo("Neighbor {} not found".format(ipaddress)) return else: - command = 'sudo ip -6 -s -s neigh flush all' + command = ['sudo', 'ip', '-6', '-s', '-s', 'neigh', 'flush', 'all'] run_command(command) @@ -400,7 +398,7 @@ def fdb(): @fdb.command('all') def clear_all_fdb(): """Clear All FDB entries""" - command = 'fdbclear' + command = ['fdbclear'] run_command(command) # 'sonic-clear fdb port' and 'sonic-clear fdb vlan' will be added later @@ -428,7 +426,7 @@ def clear_vlan_fdb(vlanid): @click.option('--devicename', '-d', is_flag=True, help="clear by name - if flag is set, interpret target as device name instead") def line(target, devicename): """Clear preexisting connection to line""" - cmd = "consutil clear {}".format("--devicename " if devicename else "") + str(target) + cmd = ["consutil", "clear", "--devicename", str(target)] if devicename else ["consutil", "clear", str(target)] (output, _, exitstatus) = run_command(cmd, return_output=True, return_exitstatus=True) click.echo(output) sys.exit(exitstatus) @@ -447,7 +445,7 @@ def nat(): def statistics(): """ Clear all NAT statistics """ - cmd = "natclear -s" + cmd = ["natclear", "-s"] run_command(cmd) # 'translations' subcommand ("clear nat translations") @@ -455,7 +453,7 @@ def statistics(): def translations(): """ Clear all NAT translations """ - cmd = "natclear -t" + cmd = ["natclear", "-t"] run_command(cmd) # 'pbh' group ("clear pbh ...") @@ -482,7 +480,7 @@ def statistics(db): @cli.command() def flowcnt_trap(): """ Clear trap flow counters """ - command = "flow_counters_stat -c -t trap" + command = ["flow_counters_stat", "-c", '-t', "trap"] run_command(command) diff --git a/tests/clear_test.py b/tests/clear_test.py new file mode 100644 index 00000000..a9c2a367 --- /dev/null +++ b/tests/clear_test.py @@ -0,0 +1,288 @@ +import pytest +import clear.main as clear +from click.testing import CliRunner +from unittest.mock import patch, MagicMock + +class TestClear(object): + def setup(self): + print('SETUP') + + @patch('clear.main.run_command') + def test_clear_pg_wm_hdrm(self, run_command): + runner = CliRunner() + result = runner.invoke(clear.cli.commands['priority-group'].commands['watermark'].commands['headroom']) + assert result.exit_code == 0 + run_command.assert_called_with(['watermarkstat', '-c', '-t', 'pg_headroom']) + + @patch('clear.main.run_command') + def test_clear_pg_wm_shr(self, run_command): + runner = CliRunner() + result = runner.invoke(clear.cli.commands['priority-group'].commands['watermark'].commands['shared']) + assert result.exit_code == 0 + run_command.assert_called_with(['watermarkstat', '-c', '-t', 'pg_shared']) + + @patch('clear.main.run_command') + def test_clear_pg_pst_wm_hdrm(self, run_command): + runner = CliRunner() + result = runner.invoke(clear.cli.commands['priority-group'].commands['persistent-watermark'].commands['headroom']) + assert result.exit_code == 0 + run_command.assert_called_with(['watermarkstat', '-c', '-p', '-t', 'pg_headroom']) + + @patch('clear.main.run_command') + def test_clear_pg_pst_wm_shr(self, run_command): + runner = CliRunner() + result = runner.invoke(clear.cli.commands['priority-group'].commands['persistent-watermark'].commands['shared']) + assert result.exit_code == 0 + run_command.assert_called_with(['watermarkstat', '-c', '-p', '-t', 'pg_shared']) + + @patch('clear.main.run_command') + def test_clear_q_wm_all(self, run_command): + runner = CliRunner() + result = runner.invoke(clear.cli.commands['queue'].commands['watermark'].commands['all']) + assert result.exit_code == 0 + run_command.assert_called_with(['watermarkstat', '-c', '-t', 'q_shared_all']) + + @patch('clear.main.run_command') + def test_clear_q_wm_multi(self, run_command): + runner = CliRunner() + result = runner.invoke(clear.cli.commands['queue'].commands['watermark'].commands['multicast']) + assert result.exit_code == 0 + run_command.assert_called_with(['watermarkstat', '-c', '-t', 'q_shared_multi']) + + @patch('clear.main.run_command') + def test_clear_q_wm_uni(self, run_command): + runner = CliRunner() + result = runner.invoke(clear.cli.commands['queue'].commands['watermark'].commands['unicast']) + assert result.exit_code == 0 + run_command.assert_called_with(['watermarkstat', '-c', '-t', 'q_shared_uni']) + + @patch('clear.main.run_command') + def test_clear_q_pst_wm_all(self, run_command): + runner = CliRunner() + result = runner.invoke(clear.cli.commands['queue'].commands['persistent-watermark'].commands['all']) + assert result.exit_code == 0 + run_command.assert_called_with(['watermarkstat', '-c', '-p', '-t', 'q_shared_all']) + + @patch('clear.main.run_command') + def test_clear_q_pst_wm_multi(self, run_command): + runner = CliRunner() + result = runner.invoke(clear.cli.commands['queue'].commands['persistent-watermark'].commands['multicast']) + assert result.exit_code == 0 + run_command.assert_called_with(['watermarkstat', '-c', '-p', '-t', 'q_shared_multi']) + + @patch('clear.main.run_command') + def test_clear_q_pst_wm_uni(self, run_command): + runner = CliRunner() + result = runner.invoke(clear.cli.commands['queue'].commands['persistent-watermark'].commands['unicast']) + assert result.exit_code == 0 + run_command.assert_called_with(['watermarkstat', '-c', '-p', '-t', 'q_shared_uni']) + + @patch('clear.main.run_command') + @patch('clear.main.os.geteuid', MagicMock(return_value=0)) + def test_clear_hdrm_wm(self, run_command): + runner = CliRunner() + result = runner.invoke(clear.cli.commands['headroom-pool'].commands['watermark']) + assert result.exit_code == 0 + run_command.assert_called_with(['watermarkstat', '-c', '-t', 'headroom_pool']) + + @patch('clear.main.run_command') + @patch('clear.main.os.geteuid', MagicMock(return_value=0)) + def test_clear_hdrm_pst_wm(self, run_command): + runner = CliRunner() + result = runner.invoke(clear.cli.commands['headroom-pool'].commands['persistent-watermark']) + assert result.exit_code == 0 + run_command.assert_called_with(['watermarkstat', '-c', '-p', '-t', 'headroom_pool']) + + @patch('clear.main.run_command') + def test_clear_fdb(self, run_command): + runner = CliRunner() + result = runner.invoke(clear.cli.commands['fdb'].commands['all']) + assert result.exit_code == 0 + run_command.assert_called_with(['fdbclear']) + + def teardown(self): + print('TEAR DOWN') + + +class TestClearQuaggav4(object): + def setup(self): + print('SETUP') + + @patch('clear.main.run_command') + @patch('clear.main.get_routing_stack', MagicMock(return_value='quagga')) + def test_clear_ipv4_quagga(self, run_command): + from clear.bgp_quagga_v4 import bgp + runner = CliRunner() + result = runner.invoke(clear.cli.commands['ip'].commands['bgp'].commands['neighbor'].commands['all']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ip bgp *"]) + + result = runner.invoke(clear.cli.commands['ip'].commands['bgp'].commands['neighbor'].commands['all'], ['10.0.0.1']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ip bgp 10.0.0.1"]) + + result = runner.invoke(clear.cli.commands['ip'].commands['bgp'].commands['neighbor'].commands['in']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ip bgp * in"]) + + result = runner.invoke(clear.cli.commands['ip'].commands['bgp'].commands['neighbor'].commands['in'], ['10.0.0.1']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ip bgp 10.0.0.1 in"]) + + result = runner.invoke(clear.cli.commands['ip'].commands['bgp'].commands['neighbor'].commands['out']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ip bgp * out"]) + + result = runner.invoke(clear.cli.commands['ip'].commands['bgp'].commands['neighbor'].commands['out'], ['10.0.0.1']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ip bgp 10.0.0.1 out"]) + + result = runner.invoke(clear.cli.commands['ip'].commands['bgp'].commands['neighbor'].commands['soft'].commands['all']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ip bgp * soft"]) + + result = runner.invoke(clear.cli.commands['ip'].commands['bgp'].commands['neighbor'].commands['soft'].commands['all'], ['10.0.0.1']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ip bgp 10.0.0.1 soft"]) + + result = runner.invoke(clear.cli.commands['ip'].commands['bgp'].commands['neighbor'].commands['soft'].commands['in']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ip bgp * soft in"]) + + result = runner.invoke(clear.cli.commands['ip'].commands['bgp'].commands['neighbor'].commands['soft'].commands['in'], ['10.0.0.1']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ip bgp 10.0.0.1 soft in"]) + + result = runner.invoke(clear.cli.commands['ip'].commands['bgp'].commands['neighbor'].commands['soft'].commands['out']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ip bgp * soft out"]) + + result = runner.invoke(clear.cli.commands['ip'].commands['bgp'].commands['neighbor'].commands['soft'].commands['out'], ['10.0.0.1']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ip bgp 10.0.0.1 soft out"]) + + def teardown(self): + print('TEAR DOWN') + + +class TestClearQuaggav6(object): + def setup(self): + print('SETUP') + + @patch('clear.main.run_command') + @patch('clear.main.get_routing_stack', MagicMock(return_value='quagga')) + def test_clear_ipv6_quagga(self, run_command): + from clear.bgp_quagga_v6 import bgp + runner = CliRunner() + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['all']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ipv6 bgp *"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['all'], ['10.0.0.1']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ipv6 bgp 10.0.0.1"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['in']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ipv6 bgp * in"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['in'], ['10.0.0.1']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ipv6 bgp 10.0.0.1 in"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['out']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ipv6 bgp * out"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['out'], ['10.0.0.1']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ipv6 bgp 10.0.0.1 out"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['soft'].commands['all']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ipv6 bgp * soft"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['soft'].commands['all'], ['10.0.0.1']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ipv6 bgp 10.0.0.1 soft"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['soft'].commands['in']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ipv6 bgp * soft in"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['soft'].commands['in'], ['10.0.0.1']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ipv6 bgp 10.0.0.1 soft in"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['soft'].commands['out']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ipv6 bgp * soft out"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['soft'].commands['out'], ['10.0.0.1']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear ipv6 bgp 10.0.0.1 soft out"]) + + def teardown(self): + print('TEAR DOWN') + + +class TestClearFrr(object): + def setup(self): + print('SETUP') + + @patch('clear.main.run_command') + @patch('clear.main.get_routing_stack', MagicMock(return_value='frr')) + def test_clear_ipv6_frr(self, run_command): + from clear.bgp_frr_v6 import bgp + runner = CliRunner() + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['all']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear bgp ipv6 *"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['all'], ['10.0.0.1']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear bgp ipv6 10.0.0.1"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['in']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear bgp ipv6 * in"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['in'], ['10.0.0.1']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear bgp ipv6 10.0.0.1 in"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['out']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear bgp ipv6 * out"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['out'], ['10.0.0.1']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear bgp ipv6 10.0.0.1 out"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['soft'].commands['all']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear bgp ipv6 * soft"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['soft'].commands['all'], ['10.0.0.1']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear bgp ipv6 10.0.0.1 soft"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['soft'].commands['in']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear bgp ipv6 * soft in"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['soft'].commands['in'], ['10.0.0.1']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear bgp ipv6 10.0.0.1 soft in"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['soft'].commands['out']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear bgp ipv6 * soft out"]) + + result = runner.invoke(clear.cli.commands['ipv6'].commands['bgp'].commands['neighbor'].commands['soft'].commands['out'], ['10.0.0.1']) + assert result.exit_code == 0 + run_command.assert_called_with(['sudo', 'vtysh', '-c', "clear bgp ipv6 10.0.0.1 soft out"]) + + def teardown(self): + print('TEAR DOWN') + diff --git a/tests/pfcstat_test.py b/tests/pfcstat_test.py index 75f7ea6f..fc24dd09 100644 --- a/tests/pfcstat_test.py +++ b/tests/pfcstat_test.py @@ -6,7 +6,7 @@ from click.testing import CliRunner import show.main as show - +import clear.main as clear from .utils import get_result_and_return_code from utilities_common.cli import UserCache @@ -28,6 +28,20 @@ Ethernet8 1,810 811 812 813 814 815 816 817 """ +show_pfc_counters_output_with_clear = ["""\ + Port Rx PFC0 PFC1 PFC2 PFC3 PFC4 PFC5 PFC6 PFC7 +--------- ------ ------ ------ ------ ------ ------ ------ ------ +Ethernet0 0 0 0 0 0 0 0 0 +Ethernet4 0 0 0 0 0 0 0 0 +Ethernet8 0 0 0 0 0 0 0 0 +""", """\ + Port Tx PFC0 PFC1 PFC2 PFC3 PFC4 PFC5 PFC6 PFC7 +--------- ------ ------ ------ ------ ------ ------ ------ ------ +Ethernet0 0 0 0 0 0 0 0 0 +Ethernet4 0 0 0 0 0 0 0 0 +Ethernet8 0 0 0 0 0 0 0 0 +"""] + show_pfc_counters_output_diff = """\ Port Rx PFC0 PFC1 PFC2 PFC3 PFC4 PFC5 PFC6 PFC7 --------- ------ ------ ------ ------ ------ ------ ------ ------ @@ -62,6 +76,26 @@ Ethernet-BP260 N/A N/A N/A N/A N/A N/A N/A N/A """ +show_pfc_counters_all_with_clear = ["""\ + Port Rx PFC0 PFC1 PFC2 PFC3 PFC4 PFC5 PFC6 PFC7 +-------------- ------ ------ ------ ------ ------ ------ ------ ------ + Ethernet0 0 0 0 0 0 0 0 0 + Ethernet4 0 0 0 0 0 0 0 0 + Ethernet-BP0 0 0 0 0 0 0 0 0 + Ethernet-BP4 0 0 0 0 0 0 0 0 +Ethernet-BP256 0 0 0 0 0 0 0 0 +Ethernet-BP260 0 0 0 0 0 0 0 0 +""", """\ + Port Tx PFC0 PFC1 PFC2 PFC3 PFC4 PFC5 PFC6 PFC7 +-------------- ------ ------ ------ ------ ------ ------ ------ ------ + Ethernet0 0 0 0 0 0 0 0 0 + Ethernet4 0 0 0 0 0 0 0 0 + Ethernet-BP0 0 0 0 0 0 0 0 0 + Ethernet-BP4 0 0 0 0 0 0 0 0 +Ethernet-BP256 0 0 0 0 0 0 0 0 +Ethernet-BP260 0 0 0 0 0 0 0 0 +"""] + show_pfc_counters_all_asic = """\ Port Rx PFC0 PFC1 PFC2 PFC3 PFC4 PFC5 PFC6 PFC7 ------------ ------ ------ ------ ------ ------ ------ ------ ------ @@ -172,6 +206,21 @@ def test_pfc_counters(self): assert result.exit_code == 0 assert result.output == show_pfc_counters_output + def test_pfc_counters_with_clear(self): + runner = CliRunner() + result = runner.invoke(clear.cli.commands['pfccounters'], []) + assert result.exit_code == 0 + result = runner.invoke( + show.cli.commands["pfc"].commands["counters"], + [] + ) + print(result.output) + show.run_command('pfcstat -d') + assert result.exit_code == 0 + assert "Last cached time was" in result.output + assert show_pfc_counters_output_with_clear[0] in result.output and \ + show_pfc_counters_output_with_clear[1] in result.output + def test_pfc_clear(self): pfc_clear(show_pfc_counters_output_diff) @@ -204,6 +253,21 @@ def test_pfc_counters_all(self): assert result.exit_code == 0 assert result.output == show_pfc_counters_all + def test_pfc_counters_all_with_clear(self): + runner = CliRunner() + result = runner.invoke(clear.cli.commands['pfccounters'], []) + assert result.exit_code == 0 + result = runner.invoke( + show.cli.commands["pfc"].commands["counters"], + [] + ) + print(result.output) + show.run_command('pfcstat -d') + assert result.exit_code == 0 + assert "Last cached time was" in result.output + assert show_pfc_counters_all_with_clear[0] in result.output and \ + show_pfc_counters_all_with_clear[1] in result.output + def test_pfc_counters_frontend(self): return_code, result = get_result_and_return_code( 'pfcstat -s frontend' diff --git a/tests/queue_counter_test.py b/tests/queue_counter_test.py index b7b36371..165f6e6f 100644 --- a/tests/queue_counter_test.py +++ b/tests/queue_counter_test.py @@ -10,6 +10,7 @@ from .mock_tables import dbconnector import show.main as show +import clear.main as clear from utilities_common.cli import json_dump from utilities_common.db import Db @@ -122,6 +123,106 @@ """ +show_queue_counters_with_clear = ["""\ + Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes +--------- ----- -------------- --------------- ----------- ------------ +Ethernet0 UC0 0 0 0 0 +Ethernet0 UC1 0 0 0 0 +Ethernet0 UC2 0 0 0 0 +Ethernet0 UC3 0 0 0 0 +Ethernet0 UC4 0 0 0 0 +Ethernet0 UC5 0 0 0 0 +Ethernet0 UC6 0 0 0 0 +Ethernet0 UC7 0 0 0 0 +Ethernet0 UC8 0 0 0 0 +Ethernet0 UC9 0 0 0 0 +Ethernet0 MC10 0 0 0 0 +Ethernet0 MC11 0 0 0 0 +Ethernet0 MC12 0 0 0 0 +Ethernet0 MC13 0 0 0 0 +Ethernet0 MC14 0 0 0 0 +Ethernet0 MC15 0 0 0 0 +Ethernet0 MC16 0 0 0 0 +Ethernet0 MC17 0 0 0 0 +Ethernet0 MC18 0 0 0 0 +Ethernet0 MC19 0 0 0 0 +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 0 0 0 0 +Ethernet4 UC1 0 0 0 0 +Ethernet4 UC2 0 0 0 0 +Ethernet4 UC3 0 0 0 0 +Ethernet4 UC4 0 0 0 0 +Ethernet4 UC5 0 0 0 0 +Ethernet4 UC6 0 0 0 0 +Ethernet4 UC7 0 0 0 0 +Ethernet4 UC8 0 0 0 0 +Ethernet4 UC9 0 0 0 0 +Ethernet4 MC10 0 0 0 0 +Ethernet4 MC11 0 0 0 0 +Ethernet4 MC12 0 0 0 0 +Ethernet4 MC13 0 0 0 0 +Ethernet4 MC14 0 0 0 0 +Ethernet4 MC15 0 0 0 0 +Ethernet4 MC16 0 0 0 0 +Ethernet4 MC17 0 0 0 0 +Ethernet4 MC18 0 0 0 0 +Ethernet4 MC19 0 0 0 0 +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 0 0 0 0 +Ethernet8 UC2 0 0 0 0 +Ethernet8 UC3 0 0 0 0 +Ethernet8 UC4 0 0 0 0 +Ethernet8 UC5 0 0 0 0 +Ethernet8 UC6 0 0 0 0 +Ethernet8 UC7 0 0 0 0 +Ethernet8 UC8 0 0 0 0 +Ethernet8 UC9 0 0 0 0 +Ethernet8 MC10 0 0 0 0 +Ethernet8 MC11 0 0 0 0 +Ethernet8 MC12 0 0 0 0 +Ethernet8 MC13 0 0 0 0 +Ethernet8 MC14 0 0 0 0 +Ethernet8 MC15 0 0 0 0 +Ethernet8 MC16 0 0 0 0 +Ethernet8 MC17 0 0 0 0 +Ethernet8 MC18 0 0 0 0 +Ethernet8 MC19 0 0 0 0 +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 = """\ Port TxQ Counter/pkts Counter/bytes Drop/pkts Drop/bytes @@ -1170,6 +1271,24 @@ def test_queue_counters(self): assert result.exit_code == 0 assert result.output == show_queue_counters + def test_queue_counters_with_clear(self): + runner = CliRunner() + result = runner.invoke(clear.cli.commands['queuecounters'], []) + assert result.exit_code == 0 + result = runner.invoke( + show.cli.commands["queue"].commands["counters"], + [] + ) + print(result.output) + show.run_command('queuestat -d') + assert result.exit_code == 0 + assert "Ethernet0 Last cached time was" in result.output and \ + "Ethernet4 Last cached time was" in result.output and \ + "Ethernet8 Last cached time was" in result.output + assert show_queue_counters_with_clear[0] in result.output and \ + show_queue_counters_with_clear[1] in result.output and \ + show_queue_counters_with_clear[2] in result.output + def test_queue_counters_port(self): runner = CliRunner() result = runner.invoke( From 7d2ca0b599fe525283e05e153b0b60989386735f Mon Sep 17 00:00:00 2001 From: Mai Bui Date: Wed, 19 Apr 2023 16:45:43 -0400 Subject: [PATCH 123/312] [fwutil] replace shell=True (#2663) Signed-off-by: maipbui #### What I did `subprocess()` - when using with `shell=True` is dangerous. Using subprocess function without a static string can lead to command injection. #### How I did it `subprocess()` - use `shell=False` instead, use list of strings Ref: [https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation](https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation) #### How to verify it Pass UT Manual test --- fwutil/lib.py | 45 +++++++++++-------------- tests/fwutil_test.py | 78 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 97 insertions(+), 26 deletions(-) create mode 100644 tests/fwutil_test.py diff --git a/fwutil/lib.py b/fwutil/lib.py index 5f59445c..d4f686be 100755 --- a/fwutil/lib.py +++ b/fwutil/lib.py @@ -23,6 +23,7 @@ from . import Platform from .log import LogHelper + from sonic_py_common.general import check_output_pipe except ImportError as e: raise ImportError("Required module not found: {}".format(str(e))) @@ -233,14 +234,18 @@ def __init__(self): self.overlay_mountpoint = self.OVERLAY_MOUNTPOINT_TEMPLATE.format(image_stem) def get_current_image(self): - cmd = "sonic-installer list | grep 'Current: ' | cut -f2 -d' '" - output = subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True, text=True) + cmd0 = ["sonic-installer", "list"] + cmd1 = ["grep", 'Current: '] + cmd2 = ["cut", "-f2", "-d "] + output = check_output_pipe(cmd0, cmd1, cmd2) return output.rstrip(NEWLINE) def get_next_image(self): - cmd = "sonic-installer list | grep 'Next: ' | cut -f2 -d' '" - output = subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True, text=True) + cmd0 = ["sonic-installer", "list"] + cmd1 = ["grep", 'Next: '] + cmd2 = ["cut", "-f2", "-d "] + output = check_output_pipe(cmd0, cmd1, cmd2) return output.rstrip(NEWLINE) @@ -252,37 +257,29 @@ def mount_next_image_fs(self): self.umount_next_image_fs() os.mkdir(self.fs_mountpoint) - cmd = "mount -t squashfs {} {}".format( - self.fs_path, - self.fs_mountpoint - ) - subprocess.check_call(cmd, shell=True) + cmd = ["mount", "-t", "squashfs", self.fs_path, self.fs_mountpoint] + subprocess.check_call(cmd) if not (os.path.exists(self.fs_rw) and os.path.exists(self.fs_work)): return self.fs_mountpoint os.mkdir(self.overlay_mountpoint) - cmd = "mount -n -r -t overlay -o lowerdir={},upperdir={},workdir={} overlay {}".format( - self.fs_mountpoint, - self.fs_rw, - self.fs_work, - self.overlay_mountpoint - ) - subprocess.check_call(cmd, shell=True) + cmd = ["mount", "-n", "-r", "-t", "overlay", "-o", "lowerdir={},upperdir={},workdir={}".format(self.fs_mountpoint, self.fs_rw, self.fs_work), "overlay", self.overlay_mountpoint] + subprocess.check_call(cmd) return self.overlay_mountpoint def umount_next_image_fs(self): if os.path.ismount(self.overlay_mountpoint): - cmd = "umount -rf {}".format(self.overlay_mountpoint) - subprocess.check_call(cmd, shell=True) + cmd = ["umount", "-rf", self.overlay_mountpoint] + subprocess.check_call(cmd) if os.path.exists(self.overlay_mountpoint): os.rmdir(self.overlay_mountpoint) if os.path.ismount(self.fs_mountpoint): - cmd = "umount -rf {}".format(self.fs_mountpoint) - subprocess.check_call(cmd, shell=True) + cmd = ["umount", "-rf", self.fs_mountpoint] + subprocess.check_call(cmd) if os.path.exists(self.fs_mountpoint): os.rmdir(self.fs_mountpoint) @@ -875,13 +872,9 @@ def auto_update_firmware(self, component_au_info, boot): click.echo("{} firmware auto-update starting: {} with boot_type {}".format(component_path, firmware_path, boot)) log_helper.log_fw_auto_update_start(component_path, firmware_path, boot) if os.path.isfile(utility) and os.access(utility, os.X_OK): - cmd = "{} -a {} {}".format( - utility, - firmware_path, - boot - ) + cmd = [utility, "-a", firmware_path, boot] click.echo("firmware auto-update starting:utility cmd {}".format(cmd)) - rt_code = subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True, text=True) + rt_code = subprocess.check_output(cmd, stderr=subprocess.STDOUT, text=True) rt_code = int(rt_code.strip()) else: rt_code = component.auto_update_firmware(firmware_path, boot) diff --git a/tests/fwutil_test.py b/tests/fwutil_test.py new file mode 100644 index 00000000..e7e192ee --- /dev/null +++ b/tests/fwutil_test.py @@ -0,0 +1,78 @@ +import sys +import pytest +from unittest.mock import call, patch, MagicMock + +sys.modules['sonic_platform.platform'] = MagicMock() +import fwutil.lib as fwutil_lib + +class TestSquashFs(object): + def setup(self): + print('SETUP') + + @patch('fwutil.lib.check_output_pipe') + def test_get_current_image(self, mock_check_output_pipe): + sqfs = fwutil_lib.SquashFs() + sqfs.get_current_image() + mock_check_output_pipe.assert_called_with(['sonic-installer', 'list'], ['grep', 'Current: '], ['cut', '-f2', '-d ']) + + @patch('fwutil.lib.check_output_pipe') + def test_get_next_image(self, mock_check_output_pipe): + sqfs = fwutil_lib.SquashFs() + sqfs.get_next_image() + mock_check_output_pipe.assert_called_with(['sonic-installer', 'list'], ['grep', 'Next: '], ['cut', '-f2', '-d ']) + + @patch("os.mkdir") + @patch("os.path.exists", return_value=True) + @patch("subprocess.check_call") + @patch("os.path.ismount", MagicMock(return_value=False)) + @patch("fwutil.lib.SquashFs.next_image", MagicMock(return_value="SONiC-OS-123456")) + def test_mount_next_image_fs(self, mock_check_call, mock_exists, mock_mkdir): + image_stem = fwutil_lib.SquashFs.next_image() + sqfs = fwutil_lib.SquashFs() + sqfs.fs_path = "/host/image-{}/fs.squashfs".format(image_stem) + sqfs.fs_mountpoint = "/tmp/image-{}-fs".format(image_stem) + sqfs.overlay_mountpoint = "/tmp/image-{}-overlay".format(image_stem) + + result = sqfs.mount_next_image_fs() + + assert mock_mkdir.call_args_list == [ + call(sqfs.fs_mountpoint), + call(sqfs.overlay_mountpoint) + ] + + assert mock_check_call.call_args_list == [ + call(["mount", "-t", "squashfs", sqfs.fs_path, sqfs.fs_mountpoint]), + call(["mount", "-n", "-r", "-t", "overlay", "-o", "lowerdir={},upperdir={},workdir={}".format(sqfs.fs_mountpoint, sqfs.fs_rw, sqfs.fs_work), "overlay", sqfs.overlay_mountpoint]) + ] + + assert mock_exists.call_args_list == [ + call(sqfs.fs_rw), + call(sqfs.fs_work) + ] + + assert result == sqfs.overlay_mountpoint + + @patch("os.rmdir") + @patch("os.path.exists", return_value=True) + @patch("subprocess.check_call") + @patch("os.path.ismount", MagicMock(return_value=True)) + @patch("fwutil.lib.SquashFs.next_image", MagicMock(return_value="SONiC-OS-123456")) + def test_unmount_next_image_fs(self, mock_check_call, mock_exists, mock_rmdir): + sqfs = fwutil_lib.SquashFs() + sqfs.fs_mountpoint = "/tmp/image-{}-fs".format("SONiC-OS-123456") + sqfs.overlay_mountpoint = "/tmp/image-{}-overlay".format("SONiC-OS-123456") + + sqfs.umount_next_image_fs() + + assert mock_check_call.call_args_list == [ + call(["umount", "-rf", sqfs.overlay_mountpoint]), + call(["umount", "-rf", sqfs.fs_mountpoint]) + ] + + assert mock_rmdir.call_args_list == [ + call(sqfs.overlay_mountpoint), + call(sqfs.fs_mountpoint) + ] + + def teardown(self): + print('TEARDOWN') From b547bb45ab812d5fca4eb9b43a3f81f2d5bb93eb Mon Sep 17 00:00:00 2001 From: Zhijian Li Date: Thu, 20 Apr 2023 14:53:16 +0800 Subject: [PATCH 124/312] [acl-loader] Only add default deny rule when table is L3 or L3V6 (#2796) What I did 1. Update acl-loader to only add default deny rule when table is L3 or L3V6. 2. Update unittest to cover it. How I did it Update function deny_rule and return {} if table is not L3 or L3V6. How to verify it 1. Update unittest and run all testcases to verify. 2. Built the package and installed on DUT to verify. Signed-off-by: Zhijian Li --- acl_loader/main.py | 9 +++-- tests/acl_input/acl1.json | 57 ++++++++++++++++++++++++++++++++ tests/acl_loader_test.py | 14 ++++++-- tests/aclshow_test.py | 2 +- tests/mock_tables/config_db.json | 28 ++++++++++++++++ 5 files changed, 104 insertions(+), 6 deletions(-) diff --git a/acl_loader/main.py b/acl_loader/main.py index 2eab089c..ff5d22f0 100644 --- a/acl_loader/main.py +++ b/acl_loader/main.py @@ -670,6 +670,7 @@ def convert_rule_to_db_schema(self, table_name, rule): def deny_rule(self, table_name): """ Create default deny rule in Config DB format + Only create default deny rule when table is [L3, L3V6] :param table_name: ACL table name to which rule belong :return: dict with Config DB schema """ @@ -677,10 +678,12 @@ def deny_rule(self, table_name): rule_data = {(table_name, "DEFAULT_RULE"): rule_props} rule_props["PRIORITY"] = str(self.min_priority) rule_props["PACKET_ACTION"] = "DROP" - if self.is_table_ipv6(table_name): + if self.is_table_l3v6(table_name): rule_props["IP_TYPE"] = "IPV6ANY" # ETHERTYPE is not supported for DATAACLV6 - else: + elif self.is_table_l3(table_name): rule_props["ETHER_TYPE"] = str(self.ethertype_map["ETHERTYPE_IPV4"]) + else: + return {} # Don't add default deny rule if table is not [L3, L3V6] return rule_data def convert_rules(self): @@ -707,7 +710,7 @@ def convert_rules(self): except AclLoaderException as ex: error("Error processing rule %s: %s. Skipped." % (acl_entry_name, ex)) - if not self.is_table_mirror(table_name) and not self.is_table_egress(table_name): + if not self.is_table_egress(table_name): deep_update(self.rules_info, self.deny_rule(table_name)) def full_update(self): diff --git a/tests/acl_input/acl1.json b/tests/acl_input/acl1.json index a9e4d361..177d7cb2 100644 --- a/tests/acl_input/acl1.json +++ b/tests/acl_input/acl1.json @@ -259,6 +259,63 @@ } } } + }, + "bmc_acl_northbound": { + "acl-entries": { + "acl-entry": { + "1": { + "config": { + "sequence-id": 1 + }, + "actions": { + "config": { + "forwarding-action": "ACCEPT" + } + }, + "ip": { + "config": { + "protocol": "0", + "source-ip-address": "172.17.0.200/30" + } + }, + "input_interface": { + "interface_ref": { + "config": { + "interface": "Ethernet0,Ethernet1,Ethernet2,Ethernet3,Ethernet4,Ethernet5,Ethernet6,Ethernet7,Ethernet8,Ethernet9,Ethernet10,Ethernet11,Ethernet12,Ethernet13,Ethernet14,Ethernet15,Ethernet16,Ethernet17,Ethernet18,Ethernet19,Ethernet20,Ethernet21,Ethernet22,Ethernet23,Ethernet25,Ethernet26,Ethernet27,Ethernet28,Ethernet29,Ethernet30,Ethernet31,Ethernet32,Ethernet33,Ethernet34,Ethernet35,Ethernet36,Ethernet37,Ethernet38,Ethernet39,Ethernet40,Ethernet41,Ethernet42,Ethernet43,Ethernet44,Ethernet45" + } + } + } + } + } + }, + "config": { + "name": "bmc_acl_northbound" + } + }, + "bmc_acl_northbound_v6": { + "acl-entries": { + "acl-entry": { + "1": { + "config": { + "sequence-id": 1 + }, + "actions": { + "config": { + "forwarding-action": "ACCEPT" + } + }, + "ip": { + "config": { + "protocol": "0", + "destination-ip-address": "fc02::/64" + } + } + } + } + }, + "config": { + "name": "bmc_acl_northbound_v6" + } } } } diff --git a/tests/acl_loader_test.py b/tests/acl_loader_test.py index 20b72833..37f64307 100644 --- a/tests/acl_loader_test.py +++ b/tests/acl_loader_test.py @@ -21,7 +21,7 @@ def test_acl_empty(self): def test_valid(self): yang_acl = AclLoader.parse_acl_json(os.path.join(test_path, 'acl_input/acl1.json')) - assert len(yang_acl.acl.acl_sets.acl_set) == 6 + assert len(yang_acl.acl.acl_sets.acl_set) == 8 def test_invalid(self): with pytest.raises(AclLoaderException): @@ -135,19 +135,29 @@ def test_icmpv6_translation(self, acl_loader): } def test_ingress_default_deny_rule(self, acl_loader): + acl_loader.set_mirror_stage("ingress") + acl_loader.get_session_name = mock.MagicMock(return_value="everflow_session_mock") acl_loader.rules_info = {} acl_loader.load_rules_from_file(os.path.join(test_path, 'acl_input/acl1.json')) - print(acl_loader.rules_info) + # Verify L3 can add default deny rule correctly assert acl_loader.rules_info[('DATAACL', 'DEFAULT_RULE')] == { 'PRIORITY': '1', 'PACKET_ACTION': 'DROP', 'ETHER_TYPE': '2048' } + # Verify L3V6 can add default deny rule correctly assert acl_loader.rules_info[('DATAACL_2', 'DEFAULT_RULE')] == { 'PRIORITY': '1', 'PACKET_ACTION': 'DROP', 'IP_TYPE': 'IPV6ANY' } + # Verify acl-loader doesn't add default deny rule to MIRROR + assert ('EVERFLOW', 'DEFAULT_RULE') not in acl_loader.rules_info + # Verify acl-loader doesn't add default deny rule to MIRRORV6 + assert ('EVERFLOWV6', 'DEFAULT_RULE') not in acl_loader.rules_info + # Verify acl-loader doesn't add default deny rule to custom ACL table types + assert ('BMC_ACL_NORTHBOUND', 'DEFAULT_RULE') not in acl_loader.rules_info + assert ('BMC_ACL_NORTHBOUND_V6', 'DEFAULT_RULE') not in acl_loader.rules_info def test_egress_no_default_deny_rule(self, acl_loader): acl_loader.rules_info = {} diff --git a/tests/aclshow_test.py b/tests/aclshow_test.py index 0abe509a..8e2d20cb 100644 --- a/tests/aclshow_test.py +++ b/tests/aclshow_test.py @@ -90,7 +90,7 @@ # Expected output for aclshow -r RULE_4,RULE_6 -vv rule4_rule6_verbose_output = '' + \ """Reading ACL info... -Total number of ACL Tables: 12 +Total number of ACL Tables: 15 Total number of ACL Rules: 21 RULE NAME TABLE NAME PRIO PACKETS COUNT BYTES COUNT diff --git a/tests/mock_tables/config_db.json b/tests/mock_tables/config_db.json index 22744365..2b406688 100644 --- a/tests/mock_tables/config_db.json +++ b/tests/mock_tables/config_db.json @@ -511,6 +511,18 @@ "ports@": "PortChannel0002,PortChannel0005,PortChannel0008,PortChannel0011,PortChannel0014,PortChannel0017,PortChannel0020,PortChannel0023", "type": "L3V6" }, + "ACL_TABLE|BMC_ACL_NORTHBOUND": { + "policy_desc": "BMC_ACL_NORTHBOUND", + "ports@": "Ethernet8,Ethernet0,Ethernet17,Ethernet16,Ethernet37,Ethernet4,Ethernet13,Ethernet45,Ethernet19,Ethernet24,Ethernet31,Ethernet30,Ethernet39,Ethernet40,Ethernet27,Ethernet43,Ethernet7,Ethernet3,Ethernet20,Ethernet6,Ethernet12,Ethernet34,Ethernet26,Ethernet11,Ethernet42,Ethernet5,Ethernet32,Ethernet36,Ethernet15,Ethernet33,Ethernet35,Ethernet9,Ethernet29,Ethernet21,Ethernet18,Ethernet38,Ethernet23,Ethernet41,Ethernet14,Ethernet2,Ethernet28,Ethernet22,Ethernet10,Ethernet25,Ethernet44,Ethernet1", + "stage": "ingress", + "type": "BMCDATA" + }, + "ACL_TABLE|BMC_ACL_NORTHBOUND_V6": { + "policy_desc": "BMC_ACL_NORTHBOUND_V6", + "ports@": "Ethernet13,Ethernet3,Ethernet32,Ethernet33,Ethernet34,Ethernet8,Ethernet6,Ethernet44,Ethernet39,Ethernet18,Ethernet15,Ethernet1,Ethernet19,Ethernet7,Ethernet14,Ethernet43,Ethernet40,Ethernet27,Ethernet4,Ethernet36,Ethernet41,Ethernet10,Ethernet31,Ethernet5,Ethernet9,Ethernet12,Ethernet16,Ethernet25,Ethernet24,Ethernet17,Ethernet35,Ethernet11,Ethernet38,Ethernet42,Ethernet29,Ethernet20,Ethernet45,Ethernet26,Ethernet21,Ethernet37,Ethernet0,Ethernet28,Ethernet23,Ethernet22,Ethernet2,Ethernet30", + "stage": "ingress", + "type": "BMCDATAV6" + }, "ACL_TABLE|DATAACL": { "policy_desc": "DATAACL", "ports@": "PortChannel0002,PortChannel0005,PortChannel0008,PortChannel0011,PortChannel0014,PortChannel0017,PortChannel0020,PortChannel0023,Ethernet64,Ethernet68,Ethernet72,Ethernet76,Ethernet80,Ethernet84,Ethernet88,Ethernet92,Ethernet96,Ethernet100,Ethernet104,Ethernet108,Ethernet112,Ethernet116,Ethernet120,Ethernet124", @@ -549,6 +561,12 @@ "ports@": "PortChannel0002,PortChannel0005,PortChannel0008,PortChannel0011,PortChannel0014,PortChannel0017,PortChannel0020,PortChannel0023,Ethernet100,Ethernet104,Ethernet92,Ethernet96,Ethernet84,Ethernet88,Ethernet76,Ethernet80,Ethernet108,Ethernet112,Ethernet64,Ethernet120,Ethernet116,Ethernet124,Ethernet72,Ethernet68", "type": "MIRROR" }, + "ACL_TABLE|EVERFLOWV6": { + "policy_desc": "EVERFLOWV6", + "ports@": "Ethernet0,Ethernet1,Ethernet2,Ethernet3,Ethernet4,Ethernet5,Ethernet6,Ethernet7,Ethernet8,Ethernet9,Ethernet10,Ethernet11,Ethernet12,Ethernet13,Ethernet14,Ethernet15,Ethernet16,Ethernet17,Ethernet18,Ethernet19,Ethernet20,Ethernet21,Ethernet22,Ethernet23,Ethernet24,Ethernet25,Ethernet26,Ethernet27,Ethernet28,Ethernet29,Ethernet30,Ethernet31,Ethernet32,Ethernet33,Ethernet34,Ethernet35,Ethernet36,Ethernet37,Ethernet38,Ethernet39,Ethernet40,Ethernet41,Ethernet42,Ethernet43,Ethernet44,Ethernet45,Ethernet46,Ethernet47", + "type": "MIRRORV6", + "stage": "ingress" + }, "ACL_TABLE|EVERFLOW_EGRESS": { "policy_desc": "EGRESS EVERFLOW", "ports@": "PortChannel0002,PortChannel0005,PortChannel0008,PortChannel0011,PortChannel0014,PortChannel0017,PortChannel0020,PortChannel0023,Ethernet100,Ethernet104,Ethernet92,Ethernet96,Ethernet84,Ethernet88,Ethernet76,Ethernet80,Ethernet108,Ethernet112,Ethernet64,Ethernet120,Ethernet116,Ethernet124,Ethernet72,Ethernet68", @@ -565,6 +583,16 @@ "services@": "SSH", "type": "CTRLPLANE" }, + "ACL_TABLE_TYPE|BMCDATA": { + "ACTIONS": "PACKET_ACTION,COUNTER", + "BIND_POINTS": "PORT", + "MATCHES": "SRC_IP,DST_IP,ETHER_TYPE,IP_TYPE,IP_PROTOCOL,IN_PORTS,TCP_FLAGS" + }, + "ACL_TABLE_TYPE|BMCDATAV6": { + "ACTIONS": "PACKET_ACTION,COUNTER", + "BIND_POINTS": "PORT", + "MATCHES": "SRC_IPV6,DST_IPV6,ETHER_TYPE,IP_TYPE,IP_PROTOCOL,IN_PORTS,TCP_FLAGS" + }, "PBH_TABLE|pbh_table1": { "description": "NVGRE", "interface_list@": "Ethernet8,Ethernet60" From 5e99edb531338151b3629dabbe528000212ceb6c Mon Sep 17 00:00:00 2001 From: Mai Bui Date: Thu, 20 Apr 2023 14:07:11 -0400 Subject: [PATCH 125/312] [sonic_package_manager] replace shell=True (#2726) #### What I did `subprocess()` - when using with `shell=True` is dangerous. Using subprocess function without a static string can lead to command injection. #### How I did it `subprocess()` - use `shell=False` instead, use list of strings Ref: [https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation](https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation) #### How to verify it Pass UT --- .../service_creator/creator.py | 19 ++++++++------- .../test_service_creator.py | 24 ++++++++++++++++++- 2 files changed, 33 insertions(+), 10 deletions(-) diff --git a/sonic_package_manager/service_creator/creator.py b/sonic_package_manager/service_creator/creator.py index 17993be8..a22b454d 100644 --- a/sonic_package_manager/service_creator/creator.py +++ b/sonic_package_manager/service_creator/creator.py @@ -2,10 +2,11 @@ import contextlib import os +import sys import stat import subprocess from collections import defaultdict -from typing import Dict, Type +from typing import Dict, Type, List import jinja2 as jinja2 from config.config_mgmt import ConfigMgmt @@ -96,22 +97,22 @@ def remove_if_exists(path): os.remove(path) log.info(f'removed {path}') +def is_list_of_strings(command): + return isinstance(command, list) and all(isinstance(item, str) for item in command) -def run_command(command: str): +def run_command(command: List[str]): """ Run arbitrary bash command. Args: - command: String command to execute as bash script + command: List of Strings command to execute as bash script Raises: ServiceCreatorError: Raised when the command return code is not 0. """ - + if not is_list_of_strings(command): + sys.exit("Input command should be a list of strings") log.debug(f'running command: {command}') - proc = subprocess.Popen(command, - shell=True, - executable='/bin/bash', - stdout=subprocess.PIPE) + proc = subprocess.Popen(command, stdout=subprocess.PIPE) (_, _) = proc.communicate() if proc.returncode != 0: raise ServiceCreatorError(f'Failed to execute "{command}"') @@ -647,4 +648,4 @@ def _post_operation_hook(self): """ Common operations executed after service is created/removed. """ if not in_chroot(): - run_command('systemctl daemon-reload') + run_command(['systemctl', 'daemon-reload']) diff --git a/tests/sonic_package_manager/test_service_creator.py b/tests/sonic_package_manager/test_service_creator.py index 689a6354..80c952ad 100644 --- a/tests/sonic_package_manager/test_service_creator.py +++ b/tests/sonic_package_manager/test_service_creator.py @@ -1,8 +1,9 @@ #!/usr/bin/env python import os +import sys import copy -from unittest.mock import Mock, MagicMock, call +from unittest.mock import Mock, MagicMock, call, patch import pytest @@ -62,6 +63,22 @@ def manifest(): ] }) +def test_is_list_of_strings(): + output = is_list_of_strings(['a', 'b', 'c']) + assert output is True + + output = is_list_of_strings('abc') + assert output is False + + output = is_list_of_strings(['a', 'b', 1]) + assert output is False + +def test_run_command(): + with pytest.raises(SystemExit) as e: + run_command('echo 1') + + with pytest.raises(ServiceCreatorError) as e: + run_command([sys.executable, "-c", "import sys; sys.exit(6)"]) @pytest.fixture() def service_creator(mock_feature_registry, @@ -203,6 +220,11 @@ def test_service_creator_autocli(sonic_fs, manifest, mock_cli_gen, any_order=True ) +def test_service_creator_post_operation_hook(sonic_fs, manifest, mock_sonic_db, mock_config_mgmt, service_creator): + with patch('sonic_package_manager.service_creator.creator.run_command') as run_command: + with patch('sonic_package_manager.service_creator.creator.in_chroot', MagicMock(return_value=False)): + service_creator._post_operation_hook() + run_command.assert_called_with(['systemctl', 'daemon-reload']) def test_feature_registration(mock_sonic_db, manifest): mock_connector = Mock() From 88a7daa8f2ec3688a8bdbebc84c179c419c1d655 Mon Sep 17 00:00:00 2001 From: Mai Bui Date: Thu, 20 Apr 2023 14:16:01 -0400 Subject: [PATCH 126/312] [show][barefoot] replace shell=True (#2699) #### What I did `subprocess()` - when using with `shell=True` is dangerous. Using subprocess function without a static string can lead to command injection. #### How I did it `subprocess()` - use `shell=False` instead, use list of strings Ref: [https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation](https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation) --- show/plugins/barefoot.py | 17 +++++++----- tests/show_barefoot_test.py | 53 +++++++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+), 7 deletions(-) create mode 100644 tests/show_barefoot_test.py diff --git a/show/plugins/barefoot.py b/show/plugins/barefoot.py index bc80c47b..2afdb566 100644 --- a/show/plugins/barefoot.py +++ b/show/plugins/barefoot.py @@ -4,6 +4,7 @@ import json import subprocess from sonic_py_common import device_info +from sonic_py_common.general import getstatusoutput_noshell_pipe @click.group() def barefoot(): @@ -25,21 +26,23 @@ def profile(): # Print current profile click.echo('Current profile: ', nl=False) - subprocess.run('docker exec -it syncd readlink /opt/bfn/install | sed ' - r's/install_\\\(.\*\\\)_profile/\\1/', check=True, shell=True) + cmd0 = ['docker', 'exec', '-it', 'syncd', 'readlink', '/opt/bfn/install'] + cmd1 = ['sed', r's/install_\\\(.\*\\\)_profile/\\1/'] + getstatusoutput_noshell_pipe(cmd0, cmd1) # Exclude current and unsupported profiles opts = '' if chip_family == 'tofino': - opts = r'\! -name install_y\*_profile ' + opts = r'\! -name install_y\*_profile' elif chip_family == 'tofino2': - opts = r'\! -name install_x\*_profile ' + opts = r'\! -name install_x\*_profile' # Print profile list click.echo('Available profile(s):') - subprocess.run('docker exec -it syncd find /opt/bfn -mindepth 1 ' - r'-maxdepth 1 -type d -name install_\*_profile ' + opts + '| sed ' - r's%/opt/bfn/install_\\\(.\*\\\)_profile%\\1%', shell=True) + cmd0 = ['docker', 'exec', '-it', 'syncd', 'find', '/opt/bfn', '-mindepth', '1',\ + '-maxdepth', '1', '-type', 'd', '-name', r'install_\*_profile', opts] + cmd1 = ["sed", r's%/opt/bfn/install_\\\(.\*\\\)_profile%\\1%'] + getstatusoutput_noshell_pipe(cmd0, cmd1) def register(cli): version_info = device_info.get_sonic_version_info() diff --git a/tests/show_barefoot_test.py b/tests/show_barefoot_test.py new file mode 100644 index 00000000..1ec6f176 --- /dev/null +++ b/tests/show_barefoot_test.py @@ -0,0 +1,53 @@ +import json +import click +import pytest +from click.testing import CliRunner +import show.plugins.barefoot as show +from unittest.mock import call, patch, mock_open, MagicMock + + +class TestShowBarefoot(object): + def setup(self): + print('SETUP') + + @patch('subprocess.run') + def test_default_profile(self, mock_run): + mock_run.return_value.returncode = 1 + runner = CliRunner() + result = runner.invoke(show.profile, []) + assert result.exit_code == 0 + assert result.output == 'Current profile: default\n' + mock_run.assert_called_once_with(['docker', 'exec', '-it', 'syncd', 'test', '-h', '/opt/bfn/install']) + + @patch('show.plugins.barefoot.getstatusoutput_noshell_pipe') + @patch('show.plugins.barefoot.device_info.get_path_to_hwsku_dir', MagicMock(return_value='/usr/share/sonic/hwsku_dir')) + @patch('subprocess.run') + def test_nondefault_profile(self, mock_run, mock_cmd): + mock_run.return_value.returncode = 0 + chip_list = [{'chip_family': 'TOFINO'}] + mock_open_args = mock_open(read_data=json.dumps({'chip_list': chip_list})) + expected_calls = [ + call( + ['docker', 'exec', '-it', 'syncd', 'readlink', '/opt/bfn/install'], + ['sed', 's/install_\\\\\\(.\\*\\\\\\)_profile/\\\\1/'] + ), + + call( + ['docker', 'exec', '-it', 'syncd', 'find', '/opt/bfn', '-mindepth', '1',\ + '-maxdepth', '1', '-type', 'd', '-name', r'install_\*_profile', r'\! -name install_y\*_profile'], + ["sed", r's%/opt/bfn/install_\\\(.\*\\\)_profile%\\1%'] + ) + ] + + with patch("builtins.open", mock_open_args) as mock_open_file: + runner = CliRunner() + result = runner.invoke(show.profile) + assert result.exit_code == 0 + + mock_run.assert_called_once_with(['docker', 'exec', '-it', 'syncd', 'test', '-h', '/opt/bfn/install']) + mock_open_file.assert_called_once_with('/usr/share/sonic/hwsku_dir/switch-tna-sai.conf') + assert mock_cmd.call_args_list == expected_calls + + def teardown(self): + print('TEARDOWN') + From ada603c530c4f5a0008ab364c7f6531e2e3357ba Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Fri, 21 Apr 2023 05:00:21 +0800 Subject: [PATCH 127/312] [config]Support multi-asic Golden Config override (#2738) #### What I did Support multi-asic Golden Config Override #### How I did it Add ConfigMgmt support for ASIC validation. Modify override config cli to support multi-asic. #### How to verify it Unit test: tests/config_override_test.py::TestConfigOverrideMultiasic::test_macsec_override PASSED [ 8%] tests/config_override_test.py::TestConfigOverrideMultiasic::test_device_metadata_table_rm PASSED [ 8%] --- config/config_mgmt.py | 15 ++-- config/main.py | 55 +++++++------ .../multi_asic_dm_rm.json | 11 +++ .../multi_asic_macsec_ov.json | 23 ++++++ tests/config_override_test.py | 77 ++++++++++++++++++- 5 files changed, 149 insertions(+), 32 deletions(-) create mode 100644 tests/config_override_input/multi_asic_dm_rm.json create mode 100644 tests/config_override_input/multi_asic_macsec_ov.json diff --git a/config/config_mgmt.py b/config/config_mgmt.py index a10393c7..05353a34 100644 --- a/config/config_mgmt.py +++ b/config/config_mgmt.py @@ -35,7 +35,8 @@ class ConfigMgmt(): to verify config for the commands which are capable of change in config DB. ''' - def __init__(self, source="configDB", debug=False, allowTablesWithoutYang=True, sonicYangOptions=0): + def __init__(self, source="configDB", debug=False, allowTablesWithoutYang=True, + sonicYangOptions=0, configdb=None): ''' Initialise the class, --read the config, --load in data tree. @@ -44,6 +45,7 @@ def __init__(self, source="configDB", debug=False, allowTablesWithoutYang=True, debug (bool): verbose mode. allowTablesWithoutYang (bool): allow tables without yang model in config or not. + configdb: configdb to work on. Returns: void @@ -54,6 +56,11 @@ def __init__(self, source="configDB", debug=False, allowTablesWithoutYang=True, self.source = source self.allowTablesWithoutYang = allowTablesWithoutYang self.sonicYangOptions = sonicYangOptions + if configdb is None: + self.configdb = ConfigDBConnector() + self.configdb.connect() + else: + self.configdb = configdb # logging vars self.SYSLOG_IDENTIFIER = "ConfigMgmt" @@ -194,8 +201,7 @@ def readConfigDB(self): self.sysLog(doPrint=True, msg='Reading data from Redis configDb') # Read from config DB on sonic switch data = dict() - configdb = ConfigDBConnector() - configdb.connect() + configdb = self.configdb sonic_cfggen.deep_update(data, sonic_cfggen.FormatConverter.db_to_output(configdb.get_config())) self.configdbJsonIn = sonic_cfggen.FormatConverter.to_serialized(data) self.sysLog(syslog.LOG_DEBUG, 'Reading Input from ConfigDB {}'.\ @@ -215,8 +221,7 @@ def writeConfigDB(self, jDiff): ''' self.sysLog(doPrint=True, msg='Writing in Config DB') data = dict() - configdb = ConfigDBConnector() - configdb.connect(False) + configdb = self.configdb sonic_cfggen.deep_update(data, sonic_cfggen.FormatConverter.to_deserialized(jDiff)) self.sysLog(msg="Write in DB: {}".format(data)) configdb.mod_config(sonic_cfggen.FormatConverter.output_to_db(data)) diff --git a/config/main.py b/config/main.py index 1396c2b1..7d78fdc5 100644 --- a/config/main.py +++ b/config/main.py @@ -1825,36 +1825,41 @@ def override_config_table(db, input_config_db, dry_run): fg='magenta') sys.exit(1) - config_db = db.cfgdb + cfgdb_clients = db.cfgdb_clients - # Read config from configDB - current_config = config_db.get_config() - # Serialize to the same format as json input - sonic_cfggen.FormatConverter.to_serialized(current_config) + for ns, config_db in cfgdb_clients.items(): + # Read config from configDB + current_config = config_db.get_config() + # Serialize to the same format as json input + sonic_cfggen.FormatConverter.to_serialized(current_config) - updated_config = update_config(current_config, config_input) + if multi_asic.is_multi_asic(): + ns_config_input = config_input[ns] + else: + ns_config_input = config_input + updated_config = update_config(current_config, ns_config_input) - yang_enabled = device_info.is_yang_config_validation_enabled(config_db) - if yang_enabled: - # The ConfigMgmt will load YANG and running - # config during initialization. - try: - cm = ConfigMgmt() - cm.validateConfigData() - except Exception as ex: - click.secho("Failed to validate running config. Error: {}".format(ex), fg="magenta") - sys.exit(1) + yang_enabled = device_info.is_yang_config_validation_enabled(config_db) + if yang_enabled: + # The ConfigMgmt will load YANG and running + # config during initialization. + try: + cm = ConfigMgmt(configdb=config_db) + cm.validateConfigData() + except Exception as ex: + click.secho("Failed to validate running config. Error: {}".format(ex), fg="magenta") + sys.exit(1) - # Validate input config - validate_config_by_cm(cm, config_input, "config_input") - # Validate updated whole config - validate_config_by_cm(cm, updated_config, "updated_config") + # Validate input config + validate_config_by_cm(cm, ns_config_input, "config_input") + # Validate updated whole config + validate_config_by_cm(cm, updated_config, "updated_config") - if dry_run: - print(json.dumps(updated_config, sort_keys=True, - indent=4, cls=minigraph_encoder)) - else: - override_config_db(config_db, config_input) + if dry_run: + print(json.dumps(updated_config, sort_keys=True, + indent=4, cls=minigraph_encoder)) + else: + override_config_db(config_db, ns_config_input) def validate_config_by_cm(cm, config_json, jname): diff --git a/tests/config_override_input/multi_asic_dm_rm.json b/tests/config_override_input/multi_asic_dm_rm.json new file mode 100644 index 00000000..51c0da15 --- /dev/null +++ b/tests/config_override_input/multi_asic_dm_rm.json @@ -0,0 +1,11 @@ +{ + "": { + "DEVICE_METADATA": {} + }, + "asic0": { + "DEVICE_METADATA": {} + }, + "asic1": { + "DEVICE_METADATA": {} + } +} diff --git a/tests/config_override_input/multi_asic_macsec_ov.json b/tests/config_override_input/multi_asic_macsec_ov.json new file mode 100644 index 00000000..220d779f --- /dev/null +++ b/tests/config_override_input/multi_asic_macsec_ov.json @@ -0,0 +1,23 @@ +{ + "": { + "MACSEC_PROFILE": { + "profile": { + "key": "value" + } + } + }, + "asic0": { + "MACSEC_PROFILE": { + "profile": { + "key": "value" + } + } + }, + "asic1": { + "MACSEC_PROFILE": { + "profile": { + "key": "value" + } + } + } +} diff --git a/tests/config_override_test.py b/tests/config_override_test.py index 1b058ace..ca14ae75 100644 --- a/tests/config_override_test.py +++ b/tests/config_override_test.py @@ -1,6 +1,7 @@ import os import json import filecmp +import importlib import config.main as config from click.testing import CliRunner @@ -20,6 +21,8 @@ RUNNING_CONFIG_YANG_FAILURE = os.path.join(DATA_DIR, "running_config_yang_failure.json") GOLDEN_INPUT_YANG_FAILURE = os.path.join(DATA_DIR, "golden_input_yang_failure.json") FINAL_CONFIG_YANG_FAILURE = os.path.join(DATA_DIR, "final_config_yang_failure.json") +MULTI_ASIC_MACSEC_OV = os.path.join(DATA_DIR, "multi_asic_macsec_ov.json") +MULTI_ASIC_DEVICE_METADATA_RM = os.path.join(DATA_DIR, "multi_asic_dm_rm.json") # Load sonic-cfggen from source since /usr/local/bin/sonic-cfggen does not have .py extension. sonic_cfggen = load_module_from_source('sonic_cfggen', '/usr/local/bin/sonic-cfggen') @@ -173,7 +176,7 @@ def test_yang_verification_enabled(self): def is_yang_config_validation_enabled_side_effect(filename): return True - def config_mgmt_side_effect(): + def config_mgmt_side_effect(configdb): return config_mgmt.ConfigMgmt(source=CONFIG_DB_JSON_FILE) db = Db() @@ -232,7 +235,7 @@ def check_yang_verification_failure(self, db, config, running_config, def read_json_file_side_effect(filename): return golden_config - def config_mgmt_side_effect(): + def config_mgmt_side_effect(configdb): return config_mgmt.ConfigMgmt(source=CONFIG_DB_JSON_FILE) # ConfigMgmt will call ConfigDBConnector to load default config_db.json. @@ -257,3 +260,73 @@ def teardown_class(cls): print("TEARDOWN") os.environ["UTILITIES_UNIT_TESTING"] = "0" return + + +class TestConfigOverrideMultiasic(object): + @classmethod + def setup_class(cls): + print("SETUP") + os.environ["UTILITIES_UNIT_TESTING"] = "1" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "multi_asic" + # change to multi asic config + from .mock_tables import dbconnector + from .mock_tables import mock_multi_asic + importlib.reload(mock_multi_asic) + dbconnector.load_namespace_config() + return + + def test_macsec_override(self): + def read_json_file_side_effect(filename): + with open(MULTI_ASIC_MACSEC_OV, "r") as f: + macsec_profile = json.load(f) + return macsec_profile + db = Db() + cfgdb_clients = db.cfgdb_clients + + # The profile_content was copied from MULTI_ASIC_MACSEC_OV, where all + # ns sharing the same content: {"profile": {"key": "value"}} + profile_content = {"profile": {"key": "value"}} + + with mock.patch('config.main.read_json_file', + mock.MagicMock(side_effect=read_json_file_side_effect)): + runner = CliRunner() + result = runner.invoke(config.config.commands["override-config-table"], + ['golden_config_db.json'], obj=db) + assert result.exit_code == 0 + + for ns, config_db in cfgdb_clients.items(): + assert config_db.get_config()['MACSEC_PROFILE'] == profile_content + + def test_device_metadata_table_rm(self): + def read_json_file_side_effect(filename): + with open(MULTI_ASIC_DEVICE_METADATA_RM, "r") as f: + device_metadata = json.load(f) + return device_metadata + db = Db() + cfgdb_clients = db.cfgdb_clients + + for ns, config_db in cfgdb_clients.items(): + assert 'DEVICE_METADATA' in config_db.get_config() + + with mock.patch('config.main.read_json_file', + mock.MagicMock(side_effect=read_json_file_side_effect)): + runner = CliRunner() + result = runner.invoke(config.config.commands["override-config-table"], + ['golden_config_db.json'], obj=db) + assert result.exit_code == 0 + + for ns, config_db in cfgdb_clients.items(): + assert 'DEVICE_METADATA' not in config_db.get_config() + + + @classmethod + def teardown_class(cls): + print("TEARDOWN") + os.environ["UTILITIES_UNIT_TESTING"] = "0" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "" + # change back to single asic config + from .mock_tables import dbconnector + from .mock_tables import mock_single_asic + importlib.reload(mock_single_asic) + dbconnector.load_namespace_config() + return From bee593e4acab7393cc1ff530820ae47659a36f89 Mon Sep 17 00:00:00 2001 From: Sudharsan Dhamal Gopalarathnam Date: Thu, 20 Apr 2023 15:47:07 -0700 Subject: [PATCH 128/312] [DPB]Fixing typo in config breakout output (#2802) #### What I did Fixed typo in config breakout output. Fixed dependecies to dependencies #### How I did it Fixed typo #### How to verify it Modified UT to align --- config/main.py | 4 ++-- tests/config_dpb_test.py | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/config/main.py b/config/main.py index 7d78fdc5..b2c9198b 100644 --- a/config/main.py +++ b/config/main.py @@ -224,8 +224,8 @@ def breakout_Ports(cm, delPorts=list(), portJson=dict(), force=False, \ # check if DPB failed if ret == False: if not force and deps: - click.echo("Dependecies Exist. No further action will be taken") - click.echo("*** Printing dependecies ***") + click.echo("Dependencies Exist. No further action will be taken") + click.echo("*** Printing dependencies ***") for dep in deps: click.echo(dep) sys.exit(0) diff --git a/tests/config_dpb_test.py b/tests/config_dpb_test.py index 1251f1e0..58a24dc9 100644 --- a/tests/config_dpb_test.py +++ b/tests/config_dpb_test.py @@ -397,7 +397,7 @@ def test_config_breakout_verbose(self, sonic_db): print(result.exit_code, result.output) assert result.exit_code == 0 - assert 'Dependecies Exist.' in result.output + assert 'Dependencies Exist.' in result.output # verbose must be set while creating instance of ConfigMgmt class calls = [mock.call(True)] @@ -539,8 +539,8 @@ def config_dpb_port8_2x50G_1x100G(): print(result.exit_code, result.output) assert result.exit_code == 0 - assert 'Dependecies Exist.' in result.output - assert 'Printing dependecies' in result.output + assert 'Dependencies Exist.' in result.output + assert 'Printing dependencies' in result.output assert 'NO-NSW-PACL-V4' in result.output brk_cfg_table = db.cfgdb.get_table('BREAKOUT_CFG') From 7e24463f88ba64f485e8ae5c33e00ab3b152e073 Mon Sep 17 00:00:00 2001 From: Arvindsrinivasan Lakshmi Narasimhan <55814491+arlakshm@users.noreply.github.com> Date: Fri, 21 Apr 2023 16:58:01 -0700 Subject: [PATCH 129/312] [chassis]: remote cli commands infra for sonic chassis (#2701) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit What I did Since each Linecard is running an independent SONiC Instance, the user needs to login to a linecard to run any CLI command The user can login to each Linecard 2 ways Ssh directly to the linecard using the management IP address Ssh to supervisor and from supervisor ssh to the Linecard using the Linecard’s internal IP address To simplify the user experience and allow scripting agents to execute commands on all linecards. Two new commands are being added rexec -c This command will execute the command on specified linecards or all linecards. rshell connects to the linecard for interactive shell How to verify it UT and testing in the chassis UT results for new files rcli/init.py 0 0 0 0 100% rcli/linecard.py 82 8 16 2 88% rcli/rexec.py 28 2 10 1 92% rcli/rshell.py 25 3 6 2 84% rcli/utils.py 78 6 26 2 90% Signed-off-by: Arvindsrinivasan Lakshmi Narasimhan --- rcli/__init__.py | 0 rcli/linecard.py | 151 ++++++++++ rcli/rexec.py | 44 +++ rcli/rshell.py | 38 +++ rcli/utils.py | 149 ++++++++++ setup.py | 4 + sonic-utilities-data/bash_completion.d/rexec | 21 ++ sonic-utilities-data/bash_completion.d/rshell | 21 ++ tests/chassis_modules_test.py | 12 +- tests/mock_tables/asic0/state_db.json | 12 + tests/mock_tables/chassis_state_db.json | 9 + tests/mock_tables/database_config.json | 5 + tests/mock_tables/state_db.json | 4 +- tests/remote_cli_test.py | 260 ++++++++++++++++++ 14 files changed, 722 insertions(+), 8 deletions(-) create mode 100644 rcli/__init__.py create mode 100644 rcli/linecard.py create mode 100644 rcli/rexec.py create mode 100644 rcli/rshell.py create mode 100644 rcli/utils.py create mode 100644 sonic-utilities-data/bash_completion.d/rexec create mode 100644 sonic-utilities-data/bash_completion.d/rshell create mode 100644 tests/mock_tables/chassis_state_db.json create mode 100644 tests/remote_cli_test.py diff --git a/rcli/__init__.py b/rcli/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/rcli/linecard.py b/rcli/linecard.py new file mode 100644 index 00000000..fdc6882e --- /dev/null +++ b/rcli/linecard.py @@ -0,0 +1,151 @@ +import click +import os +import paramiko +import sys +import select +import socket +import sys +import termios +import tty + +from .utils import get_linecard_ip +from paramiko.py3compat import u +from paramiko import Channel + +EMPTY_OUTPUTS = ['', '\x1b[?2004l\r'] + +class Linecard: + + def __init__(self, linecard_name, username, password): + """ + Initialize Linecard object and store credentials, connection, and channel + + :param linecard_name: The name of the linecard you want to connect to + :param username: The username to use to connect to the linecard + :param password: The linecard password. If password not provided, it + will prompt the user for it + :param use_ssh_keys: Whether or not to use SSH keys to authenticate. + """ + self.ip = get_linecard_ip(linecard_name) + + if not self.ip: + sys.exit(1) + + self.linecard_name = linecard_name + self.username = username + self.password = password + + self.connection = self._connect() + + + def _connect(self): + connection = paramiko.SSHClient() + # if ip address not in known_hosts, ignore known_hosts error + connection.set_missing_host_key_policy(paramiko.AutoAddPolicy()) + try: + connection.connect(self.ip, username=self.username, password=self.password) + except paramiko.ssh_exception.NoValidConnectionsError as e: + connection = None + click.echo(e) + return connection + + def _get_password(self): + """ + Prompts the user for a password, and returns the password + + :param username: The username that we want to get the password for + :type username: str + :return: The password for the username. + """ + + return getpass( + "Password for username '{}': ".format(self.username), + # Pass in click stdout stream - this is similar to using click.echo + stream=click.get_text_stream('stdout') + ) + + def _set_tty_params(self): + tty.setraw(sys.stdin.fileno()) + tty.setcbreak(sys.stdin.fileno()) + + def _is_data_to_read(self, read): + if self.channel in read: + return True + return False + + def _is_data_to_write(self, read): + if sys.stdin in read: + return True + return False + + def _write_to_terminal(self, data): + # Write channel output to terminal + sys.stdout.write(data) + sys.stdout.flush() + + def _start_interactive_shell(self): + oldtty = termios.tcgetattr(sys.stdin) + try: + self._set_tty_params() + self.channel.settimeout(0.0) + + while True: + #Continuously wait for commands and execute them + read, write, ex = select.select([self.channel, sys.stdin], [], []) + if self._is_data_to_read(read): + try: + # Get output from channel + x = u(self.channel.recv(1024)) + if len(x) == 0: + # logout message will be displayed + break + self._write_to_terminal(x) + except socket.timeout as e: + click.echo("Connection timed out") + break + if self._is_data_to_write(read): + # If we are able to send input, get the input from stdin + x = sys.stdin.read(1) + if len(x) == 0: + break + # Send the input to the channel + self.channel.send(x) + finally: + # Now that the channel has been exited, return to the previously-saved old tty + termios.tcsetattr(sys.stdin, termios.TCSADRAIN, oldtty) + pass + + + def start_shell(self) -> None: + """ + Opens a session, gets a pseudo-terminal, invokes a shell, and then + attaches the host shell to the remote shell. + """ + # Create shell session + self.channel = self.connection.get_transport().open_session() + self.channel.get_pty() + self.channel.invoke_shell() + # Use Paramiko Interactive script to connect to the shell + self._start_interactive_shell() + # After user exits interactive shell, close the connection + self.connection.close() + + + def execute_cmd(self, command) -> str: + """ + Takes a command as an argument, executes it on the remote shell, and returns the output + + :param command: The command to execute on the remote shell + :return: The output of the command. + """ + # Execute the command and gather errors and output + _, stdout, stderr = self.connection.exec_command(command + "\n") + output = stdout.read().decode('utf-8') + + if stderr: + # Error was present, add message to output + output += stderr.read().decode('utf-8') + + # Close connection and return output + self.connection.close() + return output diff --git a/rcli/rexec.py b/rcli/rexec.py new file mode 100644 index 00000000..fb56df83 --- /dev/null +++ b/rcli/rexec.py @@ -0,0 +1,44 @@ +import os +import click +import paramiko +import sys + +from .linecard import Linecard +from rcli import utils as rcli_utils +from sonic_py_common import device_info + +@click.command() +@click.argument('linecard_names', nargs=-1, type=str, required=True) +@click.option('-c', '--command', type=str, required=True) +def cli(linecard_names, command): + """ + Executes a command on one or many linecards + + :param linecard_names: A list of linecard names to execute the command on, + use `all` to execute on all linecards. + :param command: The command to execute on the linecard(s) + """ + if not device_info.is_chassis(): + click.echo("This commmand is only supported Chassis") + sys.exit(1) + + username = os.getlogin() + password = rcli_utils.get_password(username) + + if list(linecard_names) == ["all"]: + # Get all linecard names using autocompletion helper + linecard_names = rcli_utils.get_all_linecards(None, None, "") + + # Iterate through each linecard, execute command, and gather output + for linecard_name in linecard_names: + try: + lc = Linecard(linecard_name, username, password) + if lc.connection: + # If connection was created, connection exists. Otherwise, user will see an error message. + click.echo("======== {} output: ========".format(lc.linecard_name)) + click.echo(lc.execute_cmd(command)) + except paramiko.ssh_exception.AuthenticationException: + click.echo("Login failed on '{}' with username '{}'".format(linecard_name, lc.username)) + +if __name__=="__main__": + cli(prog_name='rexec') diff --git a/rcli/rshell.py b/rcli/rshell.py new file mode 100644 index 00000000..decda6cd --- /dev/null +++ b/rcli/rshell.py @@ -0,0 +1,38 @@ +import os +import click +import paramiko +import sys + +from .linecard import Linecard +from sonic_py_common import device_info +from rcli import utils as rcli_utils + + +@click.command() +@click.argument('linecard_name', type=str, autocompletion=rcli_utils.get_all_linecards) +def cli(linecard_name): + """ + Open interactive shell for one linecard + + :param linecard_name: The name of the linecard to connect to + """ + if not device_info.is_chassis(): + click.echo("This commmand is only supported Chassis") + sys.exit(1) + + username = os.getlogin() + password = rcli_utils.get_password(username) + + try: + lc =Linecard(linecard_name, username, password) + if lc.connection: + click.echo("Connecting to {}".format(lc.linecard_name)) + # If connection was created, connection exists. Otherwise, user will see an error message. + lc.start_shell() + click.echo("Connection Closed") + except paramiko.ssh_exception.AuthenticationException: + click.echo("Login failed on '{}' with username '{}'".format(linecard_name, lc.username)) + + +if __name__=="__main__": + cli(prog_name='rshell') diff --git a/rcli/utils.py b/rcli/utils.py new file mode 100644 index 00000000..933043d0 --- /dev/null +++ b/rcli/utils.py @@ -0,0 +1,149 @@ +import click +from getpass import getpass +import os +import sys + +from swsscommon.swsscommon import SonicV2Connector + +CHASSIS_MODULE_INFO_TABLE = 'CHASSIS_MODULE_TABLE' +CHASSIS_MODULE_INFO_KEY_TEMPLATE = 'CHASSIS_MODULE {}' +CHASSIS_MODULE_INFO_DESC_FIELD = 'desc' +CHASSIS_MODULE_INFO_SLOT_FIELD = 'slot' +CHASSIS_MODULE_INFO_OPERSTATUS_FIELD = 'oper_status' +CHASSIS_MODULE_INFO_ADMINSTATUS_FIELD = 'admin_status' + +CHASSIS_MIDPLANE_INFO_TABLE = 'CHASSIS_MIDPLANE_TABLE' +CHASSIS_MIDPLANE_INFO_IP_FIELD = 'ip_address' +CHASSIS_MIDPLANE_INFO_ACCESS_FIELD = 'access' + +CHASSIS_MODULE_HOSTNAME_TABLE = 'CHASSIS_MODULE_HOSTNAME_TABLE' +CHASSIS_MODULE_HOSTNAME = 'module_hostname' + +def connect_to_chassis_state_db(): + chassis_state_db = SonicV2Connector(host="127.0.0.1") + chassis_state_db.connect(chassis_state_db.CHASSIS_STATE_DB) + return chassis_state_db + + +def connect_state_db(): + state_db = SonicV2Connector(host="127.0.0.1") + state_db.connect(state_db.STATE_DB) + return state_db + + + +def get_linecard_module_name_from_hostname(linecard_name: str): + + chassis_state_db = connect_to_chassis_state_db() + + keys = chassis_state_db.keys(chassis_state_db.CHASSIS_STATE_DB , '{}|{}'.format(CHASSIS_MODULE_HOSTNAME_TABLE, '*')) + for key in keys: + module_name = key.split('|')[1] + hostname = chassis_state_db.get(chassis_state_db.CHASSIS_STATE_DB, key, CHASSIS_MODULE_HOSTNAME) + if hostname.replace('-', '').lower() == linecard_name.replace('-', '').lower(): + return module_name + + return None + +def get_linecard_ip(linecard_name: str): + """ + Given a linecard name, lookup its IP address in the midplane table + + :param linecard_name: The name of the linecard you want to connect to + :type linecard_name: str + :return: IP address of the linecard + """ + # Adapted from `show chassis modules midplane-status` command logic: + # https://github.com/sonic-net/sonic-utilities/blob/master/show/chassis_modules.py + + # if the user passes linecard hostname, then try to get the module name for that linecard + module_name = get_linecard_module_name_from_hostname(linecard_name) + # if the module name cannot be found from host, assume the user has passed module name + if module_name is None: + module_name = linecard_name + module_ip, module_access = get_module_ip_and_access_from_state_db(module_name) + + if not module_ip: + click.echo('Linecard {} not found'.format(linecard_name)) + return None + + if module_access != 'True': + click.echo('Linecard {} not accessible'.format(linecard_name)) + return None + + + return module_ip + +def get_module_ip_and_access_from_state_db(module_name): + state_db = connect_state_db() + data_dict = state_db.get_all( + state_db.STATE_DB, '{}|{}'.format(CHASSIS_MIDPLANE_INFO_TABLE,module_name )) + if data_dict is None: + return None, None + + linecard_ip = data_dict.get(CHASSIS_MIDPLANE_INFO_IP_FIELD, None) + access = data_dict.get(CHASSIS_MIDPLANE_INFO_ACCESS_FIELD, None) + + return linecard_ip, access + + +def get_all_linecards(ctx, args, incomplete) -> list: + """ + Return a list of all accessible linecard names. This function is used to + autocomplete linecard names in the CLI. + + :param ctx: The Click context object that is passed to the command function + :param args: The arguments passed to the Click command + :param incomplete: The string that the user has typed so far + :return: A list of all accessible linecard names. + """ + # Adapted from `show chassis modules midplane-status` command logic: + # https://github.com/sonic-net/sonic-utilities/blob/master/show/chassis_modules.py + + + chassis_state_db = connect_to_chassis_state_db() + state_db = connect_state_db() + + linecards = [] + keys = state_db.keys(state_db.STATE_DB,'{}|*'.format(CHASSIS_MIDPLANE_INFO_TABLE)) + for key in keys: + key_list = key.split('|') + if len(key_list) != 2: # error data in DB, log it and ignore + click.echo('Warn: Invalid Key {} in {} table'.format(key, CHASSIS_MIDPLANE_INFO_TABLE )) + continue + module_name = key_list[1] + linecard_ip, access = get_module_ip_and_access_from_state_db(module_name) + if linecard_ip is None: + continue + + if access != "True" : + continue + + # get the hostname for this module + hostname = chassis_state_db.get(chassis_state_db.CHASSIS_STATE_DB, '{}|{}'.format(CHASSIS_MODULE_HOSTNAME_TABLE, module_name), CHASSIS_MODULE_HOSTNAME) + if hostname: + linecards.append(hostname) + else: + linecards.append(module_name) + + # Return a list of all matched linecards + return [lc for lc in linecards if incomplete in lc] + + +def get_password(username=None): + """ + Prompts the user for a password, and returns the password + + :param username: The username that we want to get the password for + :type username: str + :return: The password for the username. + """ + + if username is None: + username =os.getlogin() + + return getpass( + "Password for username '{}': ".format(username), + # Pass in click stdout stream - this is similar to using click.echo + stream=click.get_text_stream('stdout') + ) \ No newline at end of file diff --git a/setup.py b/setup.py index a2c85199..bcb9388a 100644 --- a/setup.py +++ b/setup.py @@ -74,6 +74,7 @@ 'pddf_thermalutil', 'pddf_ledutil', 'syslog_util', + 'rcli', 'show', 'show.interfaces', 'show.plugins', @@ -205,6 +206,8 @@ 'pddf_psuutil = pddf_psuutil.main:cli', 'pddf_thermalutil = pddf_thermalutil.main:cli', 'pddf_ledutil = pddf_ledutil.main:cli', + 'rexec = rcli.rexec:cli', + 'rshell = rcli.rshell:cli', 'show = show.main:cli', 'sonic-clear = clear.main:cli', 'sonic-installer = sonic_installer.main:sonic_installer', @@ -232,6 +235,7 @@ 'natsort>=6.2.1', # 6.2.1 is the last version which supports Python 2. Can update once we no longer support Python 2 'netaddr>=0.8.0', 'netifaces>=0.10.7', + 'paramiko==2.11.0', 'pexpect>=4.8.0', 'semantic-version>=2.8.5', 'prettyprinter>=0.18.0', diff --git a/sonic-utilities-data/bash_completion.d/rexec b/sonic-utilities-data/bash_completion.d/rexec new file mode 100644 index 00000000..1199fd06 --- /dev/null +++ b/sonic-utilities-data/bash_completion.d/rexec @@ -0,0 +1,21 @@ +_rexec_completion() { + local IFS=$' +' + COMPREPLY=( $( env COMP_WORDS="${COMP_WORDS[*]}" \ + COMP_CWORD=$COMP_CWORD \ + _REXEC_COMPLETE=complete $1 ) ) + return 0 +} + +_rexec_completionetup() { + local COMPLETION_OPTIONS="" + local BASH_VERSION_ARR=(${BASH_VERSION//./ }) + # Only BASH version 4.4 and later have the nosort option. + if [ ${BASH_VERSION_ARR[0]} -gt 4 ] || ([ ${BASH_VERSION_ARR[0]} -eq 4 ] && [ ${BASH_VERSION_ARR[1]} -ge 4 ]); then + COMPLETION_OPTIONS="-o nosort" + fi + + complete $COMPLETION_OPTIONS -F _rexec_completion rexec +} + +_rexec_completionetup; \ No newline at end of file diff --git a/sonic-utilities-data/bash_completion.d/rshell b/sonic-utilities-data/bash_completion.d/rshell new file mode 100644 index 00000000..012f754d --- /dev/null +++ b/sonic-utilities-data/bash_completion.d/rshell @@ -0,0 +1,21 @@ +_rshell_completion() { + local IFS=$' +' + COMPREPLY=( $( env COMP_WORDS="${COMP_WORDS[*]}" \ + COMP_CWORD=$COMP_CWORD \ + _RSHELL_COMPLETE=complete $1 ) ) + return 0 +} + +_rshell_completionetup() { + local COMPLETION_OPTIONS="" + local BASH_VERSION_ARR=(${BASH_VERSION//./ }) + # Only BASH version 4.4 and later have the nosort option. + if [ ${BASH_VERSION_ARR[0]} -gt 4 ] || ([ ${BASH_VERSION_ARR[0]} -eq 4 ] && [ ${BASH_VERSION_ARR[1]} -ge 4 ]); then + COMPLETION_OPTIONS="-o nosort" + fi + + complete $COMPLETION_OPTIONS -F _rshell_completion rshell +} + +_rshell_completionetup; \ No newline at end of file diff --git a/tests/chassis_modules_test.py b/tests/chassis_modules_test.py index e6dbe569..fa8cd608 100644 --- a/tests/chassis_modules_test.py +++ b/tests/chassis_modules_test.py @@ -33,11 +33,11 @@ """ show_chassis_midplane_output="""\ - Name IP-Address Reachability ------------ ------------- -------------- - LINE-CARD0 192.168.1.1 True - LINE-CARD1 192.168.1.2 False -SUPERVISOR0 192.168.1.100 True + Name IP-Address Reachability +---------- ------------- -------------- +LINE-CARD0 192.168.1.100 True +LINE-CARD1 192.168.1.2 False +LINE-CARD2 192.168.1.1 True """ show_chassis_system_ports_output_asic0="""\ @@ -225,7 +225,7 @@ def test_midplane_show_all_count_lines(self): result = runner.invoke(show.cli.commands["chassis"].commands["modules"].commands["midplane-status"], []) print(result.output) result_lines = result.output.strip('\n').split('\n') - modules = ["LINE-CARD0", "LINE-CARD1", "SUPERVISOR0"] + modules = ["LINE-CARD0", "LINE-CARD1", "LINE-CARD2"] for i, module in enumerate(modules): assert module in result_lines[i + warning_lines + header_lines] assert len(result_lines) == warning_lines + header_lines + len(modules) diff --git a/tests/mock_tables/asic0/state_db.json b/tests/mock_tables/asic0/state_db.json index 559af048..6ae0258b 100644 --- a/tests/mock_tables/asic0/state_db.json +++ b/tests/mock_tables/asic0/state_db.json @@ -287,6 +287,18 @@ "REMOTE_MOD": "0", "REMOTE_PORT": "93" }, + "CHASSIS_MIDPLANE_TABLE|LINE-CARD0": { + "ip_address": "127.0.0.1", + "access": "True" + }, + "CHASSIS_MIDPLANE_TABLE|LINE-CARD1": { + "ip_address": "127.0.0.1", + "access": "True" + }, + "CHASSIS_MIDPLANE_TABLE|LINE-CARD2": { + "ip_address": "127.0.0.1", + "access": "False" + }, "ACL_TABLE_TABLE|DATAACL_5" : { "status": "Active" }, diff --git a/tests/mock_tables/chassis_state_db.json b/tests/mock_tables/chassis_state_db.json new file mode 100644 index 00000000..5178c49c --- /dev/null +++ b/tests/mock_tables/chassis_state_db.json @@ -0,0 +1,9 @@ +{ + "CHASSIS_MODULE_HOSTNAME_TABLE|LINE-CARD0": { + "module_hostname": "sonic-lc1" + }, + "CHASSIS_MODULE_HOSTNAME_TABLE|LINE-CARD1": { + "module_hostname": "sonic-lc2" + } + +} \ No newline at end of file diff --git a/tests/mock_tables/database_config.json b/tests/mock_tables/database_config.json index d12ba054..f55c0734 100644 --- a/tests/mock_tables/database_config.json +++ b/tests/mock_tables/database_config.json @@ -56,6 +56,11 @@ "id" : 12, "separator": "|", "instance" : "redis" + }, + "CHASSIS_STATE_DB" : { + "id" : 13, + "separator": "|", + "instance" : "redis" } }, "VERSION" : "1.1" diff --git a/tests/mock_tables/state_db.json b/tests/mock_tables/state_db.json index cd1a194b..1d8f4629 100644 --- a/tests/mock_tables/state_db.json +++ b/tests/mock_tables/state_db.json @@ -935,11 +935,11 @@ "max_queues": "20", "max_priority_groups": "8" }, - "CHASSIS_MIDPLANE_TABLE|SUPERVISOR0": { + "CHASSIS_MIDPLANE_TABLE|LINE-CARD0": { "ip_address": "192.168.1.100", "access": "True" }, - "CHASSIS_MIDPLANE_TABLE|LINE-CARD0": { + "CHASSIS_MIDPLANE_TABLE|LINE-CARD2": { "ip_address": "192.168.1.1", "access": "True" }, diff --git a/tests/remote_cli_test.py b/tests/remote_cli_test.py new file mode 100644 index 00000000..67545dd1 --- /dev/null +++ b/tests/remote_cli_test.py @@ -0,0 +1,260 @@ +import os +from click.testing import CliRunner +import paramiko +from rcli import rexec +from rcli import rshell +from rcli import linecard +from rcli import utils as rcli_utils +import sys +from io import BytesIO, StringIO +from unittest import mock +import select +import socket +import termios + +MULTI_LC_REXEC_OUTPUT = '''======== sonic-lc1 output: ======== +hello world +======== LINE-CARD2 output: ======== +hello world +''' +REXEC_HELP = '''Usage: cli [OPTIONS] LINECARD_NAMES... + + Executes a command on one or many linecards + + :param linecard_names: A list of linecard names to execute the command on, + use `all` to execute on all linecards. :param command: The command to + execute on the linecard(s) + +Options: + -c, --command TEXT [required] + --help Show this message and exit. +''' + +def mock_exec_command(): + + mock_stdout = BytesIO(b"""hello world""") + mock_stderr = BytesIO() + return '', mock_stdout, None + +def mock_exec_error_cmd(): + mock_stdout = BytesIO() + mock_stderr = BytesIO(b"""Command not found""") + return '', mock_stdout, mock_stderr + +def mock_connection_channel(): + c = mock.MagicMock(return_value="channel") + c.get_pty = mock.MagicMock(return_value='') + c.invoke_shell = mock.MagicMock() + c.recv = mock.MagicMock(side_effect=['abcd', '']) + return c + +def mock_connection_channel_with_timeout(): + c = mock.MagicMock(return_value="channel") + c.get_pty = mock.MagicMock(return_value='') + c.invoke_shell = mock.MagicMock() + c.recv = mock.MagicMock(side_effect=['abcd', socket.timeout(10, 'timeout')]) + return c + +def mock_paramiko_connection(channel): + # Create a mock to return for connection. + conn = mock.MagicMock() + #create a mock return for transport + t = mock.MagicMock() + t.open_session = mock.MagicMock(return_value=channel) + conn.get_transport = mock.MagicMock(return_value=t) + conn.connect = mock.MagicMock() + conn.close = mock.MagicMock() + return conn + +class TestRemoteExec(object): + @classmethod + def setup_class(cls): + print("SETUP") + from .mock_tables import dbconnector + dbconnector.load_database_config() + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + #@mock.patch.object(linecard.Linecard, '_get_password', mock.MagicMock(return_value='dummmy')) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) + @mock.patch.object(paramiko.SSHClient, 'exec_command', mock.MagicMock(return_value = mock_exec_command())) + def test_rexec_with_module_name(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD0" + result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "pwd"]) + print(result.output) + assert result.exit_code == 0, result.output + assert "hello world" in result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) + @mock.patch.object(paramiko.SSHClient, 'exec_command', mock.MagicMock(return_value = mock_exec_command())) + def test_rexec_with_hostname(self): + runner = CliRunner() + LINECARD_NAME = "sonic-lc1" + result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "pwd"]) + print(result.output) + assert result.exit_code == 0, result.output + assert "hello world" in result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) + @mock.patch.object(paramiko.SSHClient, 'exec_command', mock.MagicMock(return_value = mock_exec_error_cmd())) + def test_rexec_error_with_module_name(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD0" + result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "pwd"]) + print(result.output) + assert result.exit_code == 0, result.output + assert "Command not found" in result.output + + def test_rexec_error(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD0" + result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "show version"]) + print(result.output) + assert result.exit_code == 1, result.output + assert "This commmand is only supported Chassis" in result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) + @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value = "hello world")) + def test_rexec_all(self): + runner = CliRunner() + LINECARD_NAME = "all" + result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "show version"]) + print(result.output) + assert result.exit_code == 0, result.output + assert MULTI_LC_REXEC_OUTPUT == result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) + @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value = "hello world")) + def test_rexec_invalid_lc(self): + runner = CliRunner() + LINECARD_NAME = "sonic-lc-3" + result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "show version"]) + print(result.output) + assert result.exit_code == 1, result.output + assert "Linecard sonic-lc-3 not found\n" == result.output + + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) + @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value = "hello world")) + def test_rexec_unreachable_lc(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD1" + result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "show version"]) + print(result.output) + assert result.exit_code == 1, result.output + assert "Linecard LINE-CARD1 not accessible\n" == result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) + @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value = "hello world")) + def test_rexec_help(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD1" + result = runner.invoke(rexec.cli, ["--help"]) + print(result.output) + assert result.exit_code == 0, result.output + assert REXEC_HELP == result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock(side_effect=paramiko.ssh_exception.NoValidConnectionsError({('192.168.0.1', + 22): "None" }))) + @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value = "hello world")) + def test_rexec_exception(self): + runner = CliRunner() + LINECARD_NAME = "sonic-lc1" + result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "show version"]) + print(result.output) + assert result.exit_code == 0, result.output + assert "[Errno None] Unable to connect to port 22 on 192.168.0.1\n" == result.output + + +class TestRemoteCLI(object): + @classmethod + def setup_class(cls): + print("SETUP") + from .mock_tables import dbconnector + dbconnector.load_database_config() + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(linecard.Linecard, '_set_tty_params', mock.MagicMock()) + @mock.patch.object(termios, 'tcsetattr', mock.MagicMock()) + @mock.patch.object(termios, 'tcgetattr', mock.MagicMock(return_value=[])) + def test_rcli_with_module_name(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD0" + channel = mock_connection_channel() + + with mock.patch('paramiko.SSHClient', mock.MagicMock(return_value=mock_paramiko_connection(channel))), \ + mock.patch('select.select', mock.MagicMock(return_value=([channel], [], []))): + result = runner.invoke(rshell.cli, [LINECARD_NAME]) + print(result.output) + assert result.exit_code == 0, result.output + assert "abcd" in result.output + + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(linecard.Linecard, '_set_tty_params', mock.MagicMock()) + @mock.patch.object(termios, 'tcsetattr', mock.MagicMock()) + @mock.patch.object(termios, 'tcgetattr', mock.MagicMock(return_value=[])) + def test_rcli_with_module_name_2(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD0" + channel = mock_connection_channel() + + with mock.patch('paramiko.SSHClient', mock.MagicMock(return_value=mock_paramiko_connection(channel))), \ + mock.patch('select.select', mock.MagicMock(side_effect=[([], [], []), ([channel], [], []),([channel], [], [])])): + result = runner.invoke(rshell.cli, [LINECARD_NAME]) + print(result.output) + assert result.exit_code == 0, result.output + assert "Connecting to LINE-CARD0" in result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(linecard.Linecard, '_set_tty_params', mock.MagicMock()) + @mock.patch.object(termios, 'tcsetattr', mock.MagicMock()) + @mock.patch.object(termios, 'tcgetattr', mock.MagicMock(return_value=[])) + def test_rcli_with_module_name_3(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD0" + channel = mock_connection_channel_with_timeout() + + with mock.patch('paramiko.SSHClient', mock.MagicMock(return_value=mock_paramiko_connection(channel))), \ + mock.patch('select.select', mock.MagicMock(return_value=([channel], [], []))): + result = runner.invoke(rshell.cli, [LINECARD_NAME]) + print(result.output) + assert result.exit_code == 0, result.output + assert "Connecting to LINE-CARD0" in result.output + + def test_rcli_error(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD0" + result = runner.invoke(rshell.cli, [LINECARD_NAME]) + print(result.output) + assert result.exit_code == 1, result.output + assert "This commmand is only supported Chassis" in result.output \ No newline at end of file From b38fcfd11c67e4a03112f00082a75b194a648640 Mon Sep 17 00:00:00 2001 From: Jing Zhang Date: Fri, 28 Apr 2023 14:17:16 -0700 Subject: [PATCH 130/312] [show][muxcable] fix `show mux hwmode muxdirection` RC (#2812) What I did show mux hwmode muxdirection always has rc==1. Fixed the issue below: get_grpc_cached_version_mux_direction_per_port has reverted TRUE/FALSE return value compared to get_hwmode_mux_direction_port. The former is used to get results for active-active ports, the latter is used to get results for active-standby ports. Use sys.exit() instead of return rc. CLI rc is different from function return value. Fixed show mux grpc muxdirection as well. sign-off: Jing Zhang How to verify it Tested on DUTs to verify rc. Run commands for single port and all ports, with and without --json. Passed all UTs. --- show/muxcable.py | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/show/muxcable.py b/show/muxcable.py index 5df4bd8c..d62760c8 100644 --- a/show/muxcable.py +++ b/show/muxcable.py @@ -1394,13 +1394,14 @@ def muxdirection(db, port, json_output): headers = ['Port', 'Direction', 'Presence'] click.echo(tabulate(body, headers=headers)) - return rc + rc_exit = EXIT_SUCCESS if rc==0 else EXIT_FAIL + sys.exit(rc_exit) else: logical_port_list = platform_sfputil_helper.get_logical_list() - rc_exit = True + rc_exit = EXIT_SUCCESS body = [] active_active = False if json_output: @@ -1449,8 +1450,9 @@ def muxdirection(db, port, json_output): active_active = True else: rc = create_active_standby_mux_direction_result(body, port, db) - if rc != 0: - rc_exit = False + + if rc != 0: + rc_exit = EXIT_FAIL @@ -1464,8 +1466,7 @@ def muxdirection(db, port, json_output): headers = ['Port', 'Direction', 'Presence'] click.echo(tabulate(body, headers=headers)) - if rc_exit == False: - sys.exit(EXIT_FAIL) + sys.exit(rc_exit) @hwmode.command() @@ -2140,7 +2141,7 @@ def get_grpc_cached_version_mux_direction_per_port(db, port): mux_info_dict = {} mux_info_full_dict = {} trans_info_full_dict = {} - mux_info_dict["rc"] = False + mux_info_dict["rc"] = 1 # Getting all front asic namespace and correspding config and state DB connector @@ -2182,7 +2183,7 @@ def get_grpc_cached_version_mux_direction_per_port(db, port): mux_info_dict["presence"] = presence - mux_info_dict["rc"] = True + mux_info_dict["rc"] = 0 return mux_info_dict @@ -2222,14 +2223,15 @@ def muxdirection(db, port, json_output): rc = create_active_active_mux_direction_result(body, port, db) click.echo(tabulate(body, headers=headers)) - return rc + rc_exit = EXIT_SUCCESS if rc==0 else EXIT_FAIL + sys.exit(rc_exit) else: logical_port_list = platform_sfputil_helper.get_logical_list() - rc_exit = True + rc_exit = EXIT_SUCCESS body = [] if json_output: result = {} @@ -2266,8 +2268,8 @@ def muxdirection(db, port, json_output): else: rc = create_active_active_mux_direction_result(body, port, db) - if rc != True: - rc_exit = False + if rc != 0: + rc_exit = EXIT_FAIL if json_output: click.echo("{}".format(json.dumps(result, indent=4))) @@ -2276,8 +2278,7 @@ def muxdirection(db, port, json_output): click.echo(tabulate(body, headers=headers)) - if rc_exit == False: - sys.exit(EXIT_FAIL) + sys.exit(rc_exit) @muxcable.command() @click.argument('port', metavar='', required=True, default=None) From 522c3a9ebeacf45bd324f601f88ebd9a910c9435 Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak <38952541+stepanblyschak@users.noreply.github.com> Date: Sun, 30 Apr 2023 21:02:56 +0300 Subject: [PATCH 131/312] [sonic-package-manager] add support for multiple CLI plugin files (#2753) #### What I did Use case for some application extensions we develop is to have multiple features as part of a single container. Therefore we want to have ability to install multiple CLI plugins from a single extension. #### How I did it Allowed to specify few CLI plugins in the manifest. #### How to verify it Build extension with multiple CLI plugins and install. Verified all plugins are installed. --- sonic_package_manager/manager.py | 25 ++++++++------ sonic_package_manager/manifest.py | 26 +++++++++++++-- tests/sonic_package_manager/test_manager.py | 37 ++++++++++++++++++--- 3 files changed, 70 insertions(+), 18 deletions(-) diff --git a/sonic_package_manager/manager.py b/sonic_package_manager/manager.py index 54636c7e..770641a2 100644 --- a/sonic_package_manager/manager.py +++ b/sonic_package_manager/manager.py @@ -160,17 +160,18 @@ def get_cli_plugin_directory(command: str) -> str: return plugins_pkg_path -def get_cli_plugin_path(package: Package, command: str) -> str: +def get_cli_plugin_path(package: Package, index: int, command: str) -> str: """ Returns a path where to put CLI plugin code. Args: package: Package to generate this path for. + index: Index of a cli plugin command: SONiC command: "show"/"config"/"clear". Returns: Path generated for this package. """ - plugin_module_file = package.name + '.py' + plugin_module_file = f'{package.name}_{index}.py' return os.path.join(get_cli_plugin_directory(command), plugin_module_file) @@ -978,19 +979,21 @@ def _uninstall_cli_plugins(self, package: Package): self._uninstall_cli_plugin(package, command) def _install_cli_plugin(self, package: Package, command: str): - image_plugin_path = package.manifest['cli'][command] - if not image_plugin_path: + image_plugins = package.manifest['cli'][command] + if not image_plugins: return - host_plugin_path = get_cli_plugin_path(package, command) - self.docker.extract(package.entry.image_id, image_plugin_path, host_plugin_path) + for index, image_plugin_path in enumerate(image_plugins): + host_plugin_path = get_cli_plugin_path(package, index, command) + self.docker.extract(package.entry.image_id, image_plugin_path, host_plugin_path) def _uninstall_cli_plugin(self, package: Package, command: str): - image_plugin_path = package.manifest['cli'][command] - if not image_plugin_path: + image_plugins = package.manifest['cli'][command] + if not image_plugins: return - host_plugin_path = get_cli_plugin_path(package, command) - if os.path.exists(host_plugin_path): - os.remove(host_plugin_path) + for index, _ in enumerate(image_plugins): + host_plugin_path = get_cli_plugin_path(package, index, command) + if os.path.exists(host_plugin_path): + os.remove(host_plugin_path) @staticmethod def get_manager() -> 'PackageManager': diff --git a/sonic_package_manager/manifest.py b/sonic_package_manager/manifest.py index dc5b16b1..c9bae840 100644 --- a/sonic_package_manager/manifest.py +++ b/sonic_package_manager/manifest.py @@ -75,6 +75,26 @@ def marshal(self, value): def unmarshal(self, value): return value + @dataclass + class ListMarshaller(Marshaller): + """ Returns a list. In case input is of other type it returns a list containing that single value. """ + + type: type + + def marshal(self, value): + if isinstance(value, list): + for item in value: + if not isinstance(item, self.type): + raise ManifestError(f'{value} has items not of type {self.type.__name__}') + return value + elif isinstance(value, self.type): + return [value] + else: + raise ManifestError(f'{value} is not of type {self.type.__name__}') + + def unmarshal(self, value): + return value + @dataclass class ManifestNode(Marshaller, ABC): """ @@ -207,9 +227,9 @@ def unmarshal(self, value): ])), ManifestRoot('cli', [ ManifestField('mandatory', DefaultMarshaller(bool), False), - ManifestField('show', DefaultMarshaller(str), ''), - ManifestField('config', DefaultMarshaller(str), ''), - ManifestField('clear', DefaultMarshaller(str), ''), + ManifestField('show', ListMarshaller(str), []), + ManifestField('config', ListMarshaller(str), []), + ManifestField('clear', ListMarshaller(str), []), ManifestField('auto-generate-show', DefaultMarshaller(bool), False), ManifestField('auto-generate-config', DefaultMarshaller(bool), False), ]) diff --git a/tests/sonic_package_manager/test_manager.py b/tests/sonic_package_manager/test_manager.py index a1348514..bc439e9d 100644 --- a/tests/sonic_package_manager/test_manager.py +++ b/tests/sonic_package_manager/test_manager.py @@ -1,10 +1,11 @@ #!/usr/bin/env python import re -from unittest.mock import Mock, call +from unittest.mock import Mock, call, patch import pytest +import sonic_package_manager from sonic_package_manager.errors import * from sonic_package_manager.version import Version @@ -161,9 +162,37 @@ def test_installation_base_os_constraint_satisfied(package_manager, fake_metadat def test_installation_cli_plugin(package_manager, fake_metadata_resolver, anything): manifest = fake_metadata_resolver.metadata_store['Azure/docker-test']['1.6.0']['manifest'] manifest['cli']= {'show': '/cli/plugin.py'} - package_manager._install_cli_plugins = Mock() - package_manager.install('test-package') - package_manager._install_cli_plugins.assert_called_once_with(anything) + with patch('sonic_package_manager.manager.get_cli_plugin_directory') as get_dir_mock: + get_dir_mock.return_value = '/' + package_manager.install('test-package') + package_manager.docker.extract.assert_called_once_with(anything, '/cli/plugin.py', '/test-package_0.py') + + +def test_installation_multiple_cli_plugin(package_manager, fake_metadata_resolver, mock_feature_registry, anything): + manifest = fake_metadata_resolver.metadata_store['Azure/docker-test']['1.6.0']['manifest'] + manifest['cli']= {'show': ['/cli/plugin.py', '/cli/plugin2.py']} + with patch('sonic_package_manager.manager.get_cli_plugin_directory') as get_dir_mock, \ + patch('os.remove') as remove_mock, \ + patch('os.path.exists') as path_exists_mock: + get_dir_mock.return_value = '/' + package_manager.install('test-package') + package_manager.docker.extract.assert_has_calls( + [ + call(anything, '/cli/plugin.py', '/test-package_0.py'), + call(anything, '/cli/plugin2.py', '/test-package_1.py'), + ], + any_order=True, + ) + + package_manager._set_feature_state = Mock() + package_manager.uninstall('test-package', force=True) + remove_mock.assert_has_calls( + [ + call('/test-package_0.py'), + call('/test-package_1.py'), + ], + any_order=True, + ) def test_installation_cli_plugin_skipped(package_manager, fake_metadata_resolver, anything): From 7443b9e55955336d91754ec39419e3850834f6c1 Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak <38952541+stepanblyschak@users.noreply.github.com> Date: Sun, 30 Apr 2023 21:11:33 +0300 Subject: [PATCH 132/312] [sonic-package-manager] support extension with multiple YANG modules (#2752) What I did I added support for application extensions to have multiple YANG modules recorded in the labels. How I did it Extended support for yang modules. Preserved backward compatibility with existing extensions. How to verify it UT. --- sonic_package_manager/manifest.py | 2 + sonic_package_manager/metadata.py | 19 +++- .../service_creator/creator.py | 63 ++++++++----- tests/sonic_package_manager/test_metadata.py | 52 ++++++++++ .../test_service_creator.py | 94 ++++++++++++++++++- 5 files changed, 201 insertions(+), 29 deletions(-) diff --git a/sonic_package_manager/manifest.py b/sonic_package_manager/manifest.py index c9bae840..865db7ef 100644 --- a/sonic_package_manager/manifest.py +++ b/sonic_package_manager/manifest.py @@ -232,6 +232,8 @@ def unmarshal(self, value): ManifestField('clear', ListMarshaller(str), []), ManifestField('auto-generate-show', DefaultMarshaller(bool), False), ManifestField('auto-generate-config', DefaultMarshaller(bool), False), + ManifestArray('auto-generate-show-source-yang-modules', DefaultMarshaller(str)), + ManifestArray('auto-generate-config-source-yang-modules', DefaultMarshaller(str)), ]) ]) diff --git a/sonic_package_manager/metadata.py b/sonic_package_manager/metadata.py index 9cfa25e9..b44b658a 100644 --- a/sonic_package_manager/metadata.py +++ b/sonic_package_manager/metadata.py @@ -4,10 +4,11 @@ import json import tarfile -from typing import Dict, Optional +from typing import Dict, List from sonic_package_manager import utils from sonic_package_manager.errors import MetadataError +from sonic_package_manager.logger import log from sonic_package_manager.manifest import Manifest from sonic_package_manager.version import Version @@ -54,7 +55,7 @@ class Metadata: manifest: Manifest components: Dict[str, Version] = field(default_factory=dict) - yang_module_str: Optional[str] = None + yang_modules: List[str] = field(default_factory=list) class MetadataResolver: @@ -164,6 +165,16 @@ def from_labels(cls, labels: Dict[str, str]) -> Metadata: except ValueError as err: raise MetadataError(f'Failed to parse component version: {err}') - yang_module_str = sonic_metadata.get('yang-module') + labels_yang_modules = sonic_metadata.get('yang-module') + yang_modules = [] - return Metadata(Manifest.marshal(manifest_dict), components, yang_module_str) + if isinstance(labels_yang_modules, str): + yang_modules.append(labels_yang_modules) + log.debug("Found one YANG module") + elif isinstance(labels_yang_modules, dict): + yang_modules.extend(labels_yang_modules.values()) + log.debug(f"Found YANG modules: {labels_yang_modules.keys()}") + else: + log.debug("No YANG modules found") + + return Metadata(Manifest.marshal(manifest_dict), components, yang_modules) diff --git a/sonic_package_manager/service_creator/creator.py b/sonic_package_manager/service_creator/creator.py index a22b454d..4b547b05 100644 --- a/sonic_package_manager/service_creator/creator.py +++ b/sonic_package_manager/service_creator/creator.py @@ -518,18 +518,19 @@ def remove_config(self, package): None """ - if not package.metadata.yang_module_str: + if not package.metadata.yang_modules: return - module_name = self.cfg_mgmt.get_module_name(package.metadata.yang_module_str) - for tablename, module in self.cfg_mgmt.sy.confDbYangMap.items(): - if module.get('module') != module_name: - continue + for module in package.metadata.yang_modules: + module_name = self.cfg_mgmt.get_module_name(module) + for tablename, module in self.cfg_mgmt.sy.confDbYangMap.items(): + if module.get('module') != module_name: + continue - for conn in self.sonic_db.get_connectors(): - keys = conn.get_table(tablename).keys() - for key in keys: - conn.set_entry(tablename, key, None) + for conn in self.sonic_db.get_connectors(): + keys = conn.get_table(tablename).keys() + for key in keys: + conn.set_entry(tablename, key, None) def validate_config(self, config): """ Validate configuration through YANG. @@ -560,10 +561,11 @@ def install_yang_module(self, package: Package): None """ - if not package.metadata.yang_module_str: + if not package.metadata.yang_modules: return - self.cfg_mgmt.add_module(package.metadata.yang_module_str) + for module in package.metadata.yang_modules: + self.cfg_mgmt.add_module(module) def uninstall_yang_module(self, package: Package): """ Uninstall package's yang module in the system. @@ -574,11 +576,12 @@ def uninstall_yang_module(self, package: Package): None """ - if not package.metadata.yang_module_str: + if not package.metadata.yang_modules: return - module_name = self.cfg_mgmt.get_module_name(package.metadata.yang_module_str) - self.cfg_mgmt.remove_module(module_name) + for module in package.metadata.yang_modules: + module_name = self.cfg_mgmt.get_module_name(module) + self.cfg_mgmt.remove_module(module_name) def install_autogen_cli_all(self, package: Package): """ Install autogenerated CLI plugins for package. @@ -614,15 +617,16 @@ def install_autogen_cli(self, package: Package, command: str): None """ - if package.metadata.yang_module_str is None: + if not package.metadata.yang_modules: return if f'auto-generate-{command}' not in package.manifest['cli']: return if not package.manifest['cli'][f'auto-generate-{command}']: return - module_name = self.cfg_mgmt.get_module_name(package.metadata.yang_module_str) - self.cli_gen.generate_cli_plugin(command, module_name) - log.debug(f'{command} command line interface autogenerated for {module_name}') + + for module_name in self._get_yang_modules_for_auto_gen(command, package): + self.cli_gen.generate_cli_plugin(command, module_name) + log.debug(f'{command} command line interface autogenerated for {module_name}') def uninstall_autogen_cli(self, package: Package, command: str): """ Uninstall autogenerated CLI plugins for package for particular command. @@ -634,18 +638,33 @@ def uninstall_autogen_cli(self, package: Package, command: str): None """ - if package.metadata.yang_module_str is None: + if not package.metadata.yang_modules: return if f'auto-generate-{command}' not in package.manifest['cli']: return if not package.manifest['cli'][f'auto-generate-{command}']: return - module_name = self.cfg_mgmt.get_module_name(package.metadata.yang_module_str) - self.cli_gen.remove_cli_plugin(command, module_name) - log.debug(f'{command} command line interface removed for {module_name}') + + for module_name in self._get_yang_modules_for_auto_gen(command, package): + self.cli_gen.remove_cli_plugin(command, module_name) + log.debug(f'{command} command line interface removed for {module_name}') def _post_operation_hook(self): """ Common operations executed after service is created/removed. """ if not in_chroot(): run_command(['systemctl', 'daemon-reload']) + + def _get_yang_modules_for_auto_gen(self, command: str, package: Package): + source_yang_modules = package.manifest['cli'][f'auto-generate-{command}-source-yang-modules'] + + def filter_yang_modules_for_auto_gen(module_name): + if not source_yang_modules: + return True + if module_name in source_yang_modules: + return True + return False + + filtered_yang_modules = filter(filter_yang_modules_for_auto_gen, + map(self.cfg_mgmt.get_module_name, package.metadata.yang_modules)) + return list(filtered_yang_modules) diff --git a/tests/sonic_package_manager/test_metadata.py b/tests/sonic_package_manager/test_metadata.py index aee2f494..96f9bbc3 100644 --- a/tests/sonic_package_manager/test_metadata.py +++ b/tests/sonic_package_manager/test_metadata.py @@ -1,14 +1,36 @@ #!/usr/bin/env python +import json import contextlib from unittest.mock import Mock, MagicMock +import pytest + from sonic_package_manager.database import PackageEntry from sonic_package_manager.errors import MetadataError +from sonic_package_manager.manifest import Manifest from sonic_package_manager.metadata import MetadataResolver from sonic_package_manager.version import Version +@pytest.fixture +def manifest_str(): + return json.dumps({ + 'package': { + 'name': 'test', + 'version': '1.0.0', + }, + 'service': { + 'name': 'test', + 'asic-service': False, + 'host-service': True, + }, + 'container': { + 'privileged': True, + }, + }) + + def test_metadata_resolver_local(mock_registry_resolver, mock_docker_api): metadata_resolver = MetadataResolver(mock_docker_api, mock_registry_resolver) # it raises exception because mock manifest is not a valid manifest @@ -35,3 +57,33 @@ def return_mock_registry(repository): mock_registry.manifest.assert_called_once_with('test-repository', '1.2.0') mock_registry.blobs.assert_called_once_with('test-repository', 'some-digest') mock_docker_api.labels.assert_not_called() + + +def test_metadata_construction(manifest_str): + metadata = MetadataResolver.from_labels({ + 'com': { + 'azure': { + 'sonic': { + 'manifest': manifest_str, + 'yang-module': 'TEST' + } + } + } + }) + assert metadata.yang_modules == ['TEST'] + + metadata = MetadataResolver.from_labels({ + 'com': { + 'azure': { + 'sonic': { + 'manifest': manifest_str, + 'yang-module': { + 'sonic-test': 'TEST', + 'sonic-test-2': 'TEST 2', + }, + }, + }, + }, + }) + assert metadata.yang_modules == ['TEST', 'TEST 2'] + diff --git a/tests/sonic_package_manager/test_service_creator.py b/tests/sonic_package_manager/test_service_creator.py index 80c952ad..657e4aac 100644 --- a/tests/sonic_package_manager/test_service_creator.py +++ b/tests/sonic_package_manager/test_service_creator.py @@ -157,7 +157,7 @@ def test_service_creator_yang(sonic_fs, manifest, mock_sonic_db, }) entry = PackageEntry('test', 'azure/sonic-test') - package = Package(entry, Metadata(manifest, yang_module_str=test_yang)) + package = Package(entry, Metadata(manifest, yang_modules=[test_yang])) service_creator.create(package) mock_config_mgmt.add_module.assert_called_with(test_yang) @@ -171,7 +171,7 @@ def test_service_creator_yang(sonic_fs, manifest, mock_sonic_db, }, }, } - package = Package(entry, Metadata(manifest, yang_module_str=test_yang)) + package = Package(entry, Metadata(manifest, yang_modules=[test_yang])) service_creator.create(package) @@ -190,6 +190,42 @@ def test_service_creator_yang(sonic_fs, manifest, mock_sonic_db, mock_config_mgmt.remove_module.assert_called_with(test_yang_module) +def test_service_creator_multi_yang(sonic_fs, manifest, mock_config_mgmt, service_creator): + test_yang = 'TEST YANG' + test_yang_2 = 'TEST YANG 2' + + def get_module_name(module_src): + if module_src == test_yang: + return 'sonic-test' + elif module_src == test_yang_2: + return 'sonic-test-2' + else: + raise ValueError(f'Unknown module {module_src}') + + entry = PackageEntry('test', 'azure/sonic-test') + package = Package(entry, Metadata(manifest, yang_modules=[test_yang, test_yang_2])) + service_creator.create(package) + + mock_config_mgmt.add_module.assert_has_calls( + [ + call(test_yang), + call(test_yang_2) + ], + any_order=True, + ) + + mock_config_mgmt.get_module_name = Mock(side_effect=get_module_name) + + service_creator.remove(package) + mock_config_mgmt.remove_module.assert_has_calls( + [ + call(get_module_name(test_yang)), + call(get_module_name(test_yang_2)) + ], + any_order=True, + ) + + def test_service_creator_autocli(sonic_fs, manifest, mock_cli_gen, mock_config_mgmt, service_creator): test_yang = 'TEST YANG' @@ -199,7 +235,7 @@ def test_service_creator_autocli(sonic_fs, manifest, mock_cli_gen, manifest['cli']['auto-generate-config'] = True entry = PackageEntry('test', 'azure/sonic-test') - package = Package(entry, Metadata(manifest, yang_module_str=test_yang)) + package = Package(entry, Metadata(manifest, yang_modules=[test_yang])) mock_config_mgmt.get_module_name = Mock(return_value=test_yang_module) service_creator.create(package) @@ -226,6 +262,58 @@ def test_service_creator_post_operation_hook(sonic_fs, manifest, mock_sonic_db, service_creator._post_operation_hook() run_command.assert_called_with(['systemctl', 'daemon-reload']) +def test_service_creator_multi_yang_filter_auto_cli_modules(sonic_fs, manifest, mock_cli_gen, + mock_config_mgmt, service_creator): + test_yang = 'TEST YANG' + test_yang_2 = 'TEST YANG 2' + test_yang_3 = 'TEST YANG 3' + test_yang_4 = 'TEST YANG 4' + + def get_module_name(module_src): + if module_src == test_yang: + return 'sonic-test' + elif module_src == test_yang_2: + return 'sonic-test-2' + elif module_src == test_yang_3: + return 'sonic-test-3' + elif module_src == test_yang_4: + return 'sonic-test-4' + else: + raise ValueError(f'Unknown module {module_src}') + + manifest['cli']['auto-generate-show'] = True + manifest['cli']['auto-generate-config'] = True + manifest['cli']['auto-generate-show-source-yang-modules'] = ['sonic-test-2', 'sonic-test-4'] + manifest['cli']['auto-generate-config-source-yang-modules'] = ['sonic-test-2', 'sonic-test-4'] + + entry = PackageEntry('test', 'azure/sonic-test') + package = Package(entry, Metadata(manifest, yang_modules=[test_yang, test_yang_2, test_yang_3, test_yang_4])) + mock_config_mgmt.get_module_name = Mock(side_effect=get_module_name) + service_creator.create(package) + + assert mock_cli_gen.generate_cli_plugin.call_count == 4 + mock_cli_gen.generate_cli_plugin.assert_has_calls( + [ + call('show', get_module_name(test_yang_2)), + call('show', get_module_name(test_yang_4)), + call('config', get_module_name(test_yang_2)), + call('config', get_module_name(test_yang_4)), + ], + any_order=True + ) + + service_creator.remove(package) + assert mock_cli_gen.remove_cli_plugin.call_count == 4 + mock_cli_gen.remove_cli_plugin.assert_has_calls( + [ + call('show', get_module_name(test_yang_2)), + call('show', get_module_name(test_yang_4)), + call('config', get_module_name(test_yang_2)), + call('config', get_module_name(test_yang_4)), + ], + any_order=True + ) + def test_feature_registration(mock_sonic_db, manifest): mock_connector = Mock() mock_connector.get_entry = Mock(return_value={}) From 88ffb16721d6f867f71100bb14564120a456e07b Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Mon, 1 May 2023 10:49:04 +0800 Subject: [PATCH 133/312] [config]config reload should generate sysinfo if missing (#2778) 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 | 13 ++++++++++ tests/config_test.py | 61 +++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 73 insertions(+), 1 deletion(-) diff --git a/config/main.py b/config/main.py index b2c9198b..624241d1 100644 --- a/config/main.py +++ b/config/main.py @@ -1536,6 +1536,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"] diff --git a/tests/config_test.py b/tests/config_test.py index 1efbc3e4..859d5a82 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -398,9 +398,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) @@ -420,6 +477,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) @@ -439,6 +497,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 d4355a9646afc44a10c16b40f78748551f882c51 Mon Sep 17 00:00:00 2001 From: mihirpat1 <112018033+mihirpat1@users.noreply.github.com> Date: Wed, 3 May 2023 06:54:26 -0700 Subject: [PATCH 134/312] Change default CDB run mode to non-hitless (#2817) * Change default CDB run mode to non-hitless Signed-off-by: Mihir Patel * Improved diff coverage --------- Signed-off-by: Mihir Patel --- sfputil/main.py | 13 ++--- tests/sfputil_test.py | 111 ++++++++++++++++++++++++------------------ 2 files changed, 70 insertions(+), 54 deletions(-) diff --git a/sfputil/main.py b/sfputil/main.py index 726ed2fe..53116e12 100644 --- a/sfputil/main.py +++ b/sfputil/main.py @@ -813,7 +813,7 @@ def hexdump(indent, data, mem_address): result += '{} '.format(byte_string) result += '|{}|'.format(ascii_string) ascii_string = "" - elif mem_address % 16 == 7: + elif mem_address % 16 == 8: result += ' {} '.format(byte_string) else: result += '{} '.format(byte_string) @@ -1388,13 +1388,13 @@ def download_firmware(port_name, filepath): # 'run' subcommand @firmware.command() @click.argument('port_name', required=True, default=None) -@click.option('--mode', default="1", type=click.Choice(["0", "1", "2", "3"]), show_default=True, +@click.option('--mode', default="0", type=click.Choice(["0", "1", "2", "3"]), show_default=True, help="0 = Non-hitless Reset to Inactive Image\n \ 1 = Hitless Reset to Inactive Image (Default)\n \ 2 = Attempt non-hitless Reset to Running Image\n \ 3 = Attempt Hitless Reset to Running Image\n") def run(port_name, mode): - """Run the firmware with default mode=1""" + """Run the firmware with default mode=0""" if is_port_type_rj45(port_name): click.echo("This functionality is not applicable for RJ45 port {}.".format(port_name)) @@ -1458,12 +1458,13 @@ def upgrade(port_name, filepath): click.echo("Firmware download complete failed! CDB status = {}".format(status)) sys.exit(EXIT_FAIL) - status = run_firmware(port_name, 1) + default_mode = 0 + status = run_firmware(port_name, default_mode) if status != 1: - click.echo('Failed to run firmware in mode=1 ! CDB status: {}'.format(status)) + click.echo('Failed to run firmware in mode={} ! CDB status: {}'.format(default_mode, status)) sys.exit(EXIT_FAIL) - click.echo("Firmware run in mode 1 successful") + click.echo("Firmware run in mode {} successful".format(default_mode)) if is_fw_switch_done(port_name) != 1: click.echo('Failed to switch firmware images!') diff --git a/tests/sfputil_test.py b/tests/sfputil_test.py index e059d87f..e4e55b89 100644 --- a/tests/sfputil_test.py +++ b/tests/sfputil_test.py @@ -550,24 +550,24 @@ def test_show_eeprom_hexdump_sff8636_page(self, mock_chassis): upper_page0_bytearray = bytearray([13, 0, 35, 8, 0, 0, 0, 65, 128, 128, 245, 0, 0, 0, 0, 0, 0, 0, 1, 160, 77, 111, 108, 101, 120, 32, 73, 110, 99, 46, 32, 32, 32, 32, 32, 32, 7, 0, 9, 58, 49, 49, 49, 48, 52, 48, 49, 48, 53, 52, 32, 32, 32, 32, 32, 32, 32, 32, 3, 4, 0, 0, 70, 196, 0, 0, 0, 0, 54, 49, 49, 48, 51, 48, 57, 50, 57, 32, 32, 32, 32, 32, 32, 32, 49, 54, 48, 52, 49, 57, 32, 32, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) expected_output = '''EEPROM hexdump for port Ethernet0 page 0h Lower page 0h - 00000000 0d 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 00000010 00 00 00 00 00 00 01 81 00 00 00 00 00 00 00 00 |................| - 00000020 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 00000030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 00000040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 00000050 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 00000060 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 00000070 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000000 0d 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000010 00 00 00 00 00 00 01 81 00 00 00 00 00 00 00 00 |................| + 00000020 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000050 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000060 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000070 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| Upper page 0h - 00000080 0d 00 23 08 00 00 00 41 80 80 f5 00 00 00 00 00 |..#....A........| - 00000090 00 00 01 a0 4d 6f 6c 65 78 20 49 6e 63 2e 20 20 |....Molex Inc. | - 000000a0 20 20 20 20 07 00 09 3a 31 31 31 30 34 30 31 30 | ...:11104010| - 000000b0 35 34 20 20 20 20 20 20 20 20 03 04 00 00 46 c4 |54 ....F.| - 000000c0 00 00 00 00 36 31 31 30 33 30 39 32 39 20 20 20 |....611030929 | - 000000d0 20 20 20 20 31 36 30 34 31 39 20 20 00 00 00 24 | 160419 ...$| - 000000e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000080 0d 00 23 08 00 00 00 41 80 80 f5 00 00 00 00 00 |..#....A........| + 00000090 00 00 01 a0 4d 6f 6c 65 78 20 49 6e 63 2e 20 20 |....Molex Inc. | + 000000a0 20 20 20 20 07 00 09 3a 31 31 31 30 34 30 31 30 | ...:11104010| + 000000b0 35 34 20 20 20 20 20 20 20 20 03 04 00 00 46 c4 |54 ....F.| + 000000c0 00 00 00 00 36 31 31 30 33 30 39 32 39 20 20 20 |....611030929 | + 000000d0 20 20 20 20 31 36 30 34 31 39 20 20 00 00 00 24 | 160419 ...$| + 000000e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| ''' def side_effect(offset, num_bytes): @@ -594,42 +594,42 @@ def test_show_eeprom_hexdump_sff8472_page(self, mock_chassis): a2h_upper_bytearray = bytearray([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) expected_output = '''EEPROM hexdump for port Ethernet256 page 0h A0h dump - 00000000 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 |............g...| - 00000010 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 |....FINISAR CORP| - 00000020 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 |. ...eFTLX8571| - 00000030 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 |D3BCL A .R.H| - 00000040 00 1a 00 00 41 55 4a 30 52 43 4a 20 20 20 20 20 |....AUJ0RCJ | - 00000050 20 20 20 20 31 35 31 30 32 39 20 20 68 f0 03 f6 | 151029 h...| - 00000060 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 00000070 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 00000080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 00000090 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 000000a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 000000b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 000000c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 000000d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 000000e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000000 03 04 07 10 00 00 00 00 00 00 00 06 67 00 00 00 |............g...| + 00000010 08 03 00 1e 46 49 4e 49 53 41 52 20 43 4f 52 50 |....FINISAR CORP| + 00000020 2e 20 20 20 00 00 90 65 46 54 4c 58 38 35 37 31 |. ...eFTLX8571| + 00000030 44 33 42 43 4c 20 20 20 41 20 20 20 03 52 00 48 |D3BCL A .R.H| + 00000040 00 1a 00 00 41 55 4a 30 52 43 4a 20 20 20 20 20 |....AUJ0RCJ | + 00000050 20 20 20 20 31 35 31 30 32 39 20 20 68 f0 03 f6 | 151029 h...| + 00000060 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000070 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000090 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| A2h dump (lower 128 bytes) - 00000000 4e 00 f3 00 49 00 f8 00 90 88 71 48 8c a0 75 30 |N...I.....qH..u0| - 00000010 19 c8 07 d0 18 9c 09 c4 27 10 09 d0 1f 07 0c 5a |........'......Z| - 00000020 27 10 00 64 1f 07 00 9e 00 00 00 00 00 00 00 00 |'..d............| - 00000030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 00000040 00 00 00 00 3f 80 00 00 00 00 00 00 01 00 00 00 |....?...........| - 00000050 01 00 00 00 01 00 00 00 01 00 00 00 00 00 00 1b |................| - 00000060 14 02 81 b1 0d 5a 17 a5 15 87 00 00 00 00 30 00 |.....Z........0.| - 00000070 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff 01 |................| + 00000000 4e 00 f3 00 49 00 f8 00 90 88 71 48 8c a0 75 30 |N...I.....qH..u0| + 00000010 19 c8 07 d0 18 9c 09 c4 27 10 09 d0 1f 07 0c 5a |........'......Z| + 00000020 27 10 00 64 1f 07 00 9e 00 00 00 00 00 00 00 00 |'..d............| + 00000030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000040 00 00 00 00 3f 80 00 00 00 00 00 00 01 00 00 00 |....?...........| + 00000050 01 00 00 00 01 00 00 00 01 00 00 00 00 00 00 1b |................| + 00000060 14 02 81 b1 0d 5a 17 a5 15 87 00 00 00 00 30 00 |.....Z........0.| + 00000070 00 00 00 00 00 00 00 00 ff ff ff ff ff ff ff 01 |................| A2h dump (upper 128 bytes) page 0h - 00000080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 00000090 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 000000a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 000000b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 000000c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 000000d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 000000e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| - 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 00000090 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| + 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| ''' SFF8472_A0_SIZE = 256 @@ -742,6 +742,21 @@ def test_commit_firmwre(self, mock_chassis): status = sfputil.commit_firmware("Ethernet0") assert status == 1 + @patch('sfputil.main.platform_chassis') + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=False)) + @patch('sfputil.main.is_sfp_present', MagicMock(return_value=True)) + @patch('sfputil.main.show_firmware_version', MagicMock()) + @patch('sfputil.main.download_firmware', MagicMock(return_value=1)) + @patch('sfputil.main.run_firmware', MagicMock(return_value=1)) + @patch('sfputil.main.is_fw_switch_done', MagicMock(return_value=1)) + @patch('sfputil.main.commit_firmware', MagicMock(return_value=1)) + def test_firmware_upgrade(self, mock_chassis): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['firmware'].commands['upgrade'], ['Ethernet0', 'path']) + assert result.output == 'Firmware download complete success\nFirmware run in mode 0 successful\nFirmware commit successful\n' + assert result.exit_code == 0 + @patch('sfputil.main.is_sfp_present', MagicMock(return_value=True)) @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=True)) def test_firmware_run_RJ45(self): From 61e0e8108cf66de9c9524744e5ccc92d53a52ddd Mon Sep 17 00:00:00 2001 From: anamehra <54692434+anamehra@users.noreply.github.com> Date: Wed, 3 May 2023 13:50:11 -0700 Subject: [PATCH 135/312] Added platform plugin support in load_minigraph (#2808) Added platform plugin hook to execute platform script after minigraph config is loaded in config db and before starting the services. --- config/main.py | 11 ++++ tests/config_test.py | 53 +++++++++++++++++++ .../platform/plugins/platform_mg_post_check | 4 ++ .../plugins/platform_mg_post_check | 4 ++ 4 files changed, 72 insertions(+) create mode 100755 tests/load_minigraph_input/platform/plugins/platform_mg_post_check create mode 100755 tests/load_minigraph_input/platform_false/plugins/platform_mg_post_check diff --git a/config/main.py b/config/main.py index 624241d1..a18f11e3 100644 --- a/config/main.py +++ b/config/main.py @@ -1755,6 +1755,17 @@ def load_minigraph(db, no_service_restart, traffic_shift_away, override_config, raise click.Abort() override_config_by(golden_config_path) + # Invoke platform script if available before starting the services + platform_path, _ = device_info.get_paths_to_platform_and_hwsku_dirs() + platform_mg_plugin = platform_path + '/plugins/platform_mg_post_check' + if os.path.isfile(platform_mg_plugin): + click.echo("Running Platform plugin ............!") + proc = subprocess.Popen([platform_mg_plugin], text=True, stdout=subprocess.PIPE) + proc.communicate() + if proc.returncode != 0: + click.echo("Platform plugin failed! retruncode {}".format(proc.returncode)) + raise click.Abort() + # We first run "systemctl reset-failed" to remove the "failed" # status from all services before we attempt to restart them if not no_service_restart: diff --git a/tests/config_test.py b/tests/config_test.py index 859d5a82..8d5e6c82 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -36,6 +36,10 @@ # Config Reload input Path mock_db_path = os.path.join(test_path, "config_reload_input") +# Load minigraph input Path +load_minigraph_input_path = os.path.join(test_path, "load_minigraph_input") +load_minigraph_platform_path = os.path.join(load_minigraph_input_path, "platform") +load_minigraph_platform_false_path = os.path.join(load_minigraph_input_path, "platform_false") load_minigraph_command_output="""\ Stopping SONiC target ... @@ -47,6 +51,17 @@ Please note setting loaded from minigraph will be lost after system reboot. To preserve setting, run `config save`. """ +load_minigraph_platform_plugin_command_output="""\ +Stopping SONiC target ... +Running command: /usr/local/bin/sonic-cfggen -H -m --write-to-db +Running command: config qos reload --no-dynamic-buffer --no-delay +Running command: pfcwd start_default +Running Platform plugin ............! +Restarting SONiC target ... +Reloading Monit configuration ... +Please note setting loaded from minigraph will be lost after system reboot. To preserve setting, run `config save`. +""" + load_mgmt_config_command_ipv4_only_output="""\ Running command: /usr/local/bin/sonic-cfggen -M device_desc.xml --write-to-db parse dummy device_desc.xml @@ -253,6 +268,7 @@ def setup_class(cls): import config.main importlib.reload(config.main) + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=("dummy_path", None))) def test_load_minigraph(self, get_cmd_module, setup_single_broadcom_asic): with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command: (config, show) = get_cmd_module @@ -267,6 +283,35 @@ def test_load_minigraph(self, get_cmd_module, setup_single_broadcom_asic): mock_run_command.assert_any_call('systemctl reset-failed swss') assert mock_run_command.call_count == 8 + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=(load_minigraph_platform_path, None))) + def test_load_minigraph_platform_plugin(self, get_cmd_module, setup_single_broadcom_asic): + with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command: + (config, show) = get_cmd_module + runner = CliRunner() + result = runner.invoke(config.config.commands["load_minigraph"], ["-y"]) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code == 0 + assert "\n".join([l.rstrip() for l in result.output.split('\n')]) == load_minigraph_platform_plugin_command_output + # Verify "systemctl reset-failed" is called for services under sonic.target + mock_run_command.assert_any_call('systemctl reset-failed swss') + assert mock_run_command.call_count == 8 + + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=(load_minigraph_platform_false_path, None))) + def test_load_minigraph_platform_plugin_fail(self, get_cmd_module, setup_single_broadcom_asic): + print(load_minigraph_platform_false_path) + with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command: + (config, show) = get_cmd_module + runner = CliRunner() + result = runner.invoke(config.config.commands["load_minigraph"], ["-y"]) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code != 0 + assert "Platform plugin failed" in result.output + + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=("dummy_path", None))) def test_load_minigraph_with_port_config_bad_format(self, get_cmd_module, setup_single_broadcom_asic): with mock.patch( "utilities_common.cli.run_command", @@ -281,6 +326,7 @@ def test_load_minigraph_with_port_config_bad_format(self, get_cmd_module, setup_ port_config = [{}] self.check_port_config(None, config, port_config, "Failed to load port_config.json, Error: Bad format: PORT table not exists") + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=("dummy_path", None))) def test_load_minigraph_with_port_config_inconsistent_port(self, get_cmd_module, setup_single_broadcom_asic): with mock.patch( "utilities_common.cli.run_command", @@ -292,6 +338,7 @@ def test_load_minigraph_with_port_config_inconsistent_port(self, get_cmd_module, port_config = [{"PORT": {"Eth1": {"admin_status": "up"}}}] self.check_port_config(db, config, port_config, "Failed to load port_config.json, Error: Port Eth1 is not defined in current device") + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=("dummy_path", None))) def test_load_minigraph_with_port_config(self, get_cmd_module, setup_single_broadcom_asic): with mock.patch( "utilities_common.cli.run_command", @@ -309,6 +356,7 @@ def test_load_minigraph_with_port_config(self, get_cmd_module, setup_single_broa port_config = [{"PORT": {"Ethernet0": {"admin_status": "up"}}}] self.check_port_config(db, config, port_config, "config interface startup Ethernet0") + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=("dummy_path", None))) def check_port_config(self, db, config, port_config, expected_output): def read_json_file_side_effect(filename): return port_config @@ -323,6 +371,7 @@ def is_file_side_effect(filename): assert result.exit_code == 0 assert expected_output in result.output + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=("dummy_path", None))) def test_load_minigraph_with_non_exist_golden_config_path(self, get_cmd_module): def is_file_side_effect(filename): return True if 'golden_config' in filename else False @@ -334,6 +383,7 @@ def is_file_side_effect(filename): assert result.exit_code != 0 assert "Cannot find 'non_exist.json'" in result.output + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=("dummy_path", None))) def test_load_minigraph_with_specified_golden_config_path(self, get_cmd_module): def is_file_side_effect(filename): return True if 'golden_config' in filename else False @@ -345,6 +395,7 @@ def is_file_side_effect(filename): assert result.exit_code == 0 assert "config override-config-table golden_config.json" in result.output + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=("dummy_path", None))) def test_load_minigraph_with_default_golden_config_path(self, get_cmd_module): def is_file_side_effect(filename): return True if 'golden_config' in filename else False @@ -356,6 +407,7 @@ def is_file_side_effect(filename): assert result.exit_code == 0 assert "config override-config-table /etc/sonic/golden_config_db.json" in result.output + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=("dummy_path", None))) def test_load_minigraph_with_traffic_shift_away(self, get_cmd_module): with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command: (config, show) = get_cmd_module @@ -367,6 +419,7 @@ def test_load_minigraph_with_traffic_shift_away(self, get_cmd_module): assert result.exit_code == 0 assert "TSA" in result.output + @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=("dummy_path", None))) def test_load_minigraph_with_traffic_shift_away_with_golden_config(self, get_cmd_module): with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command: def is_file_side_effect(filename): diff --git a/tests/load_minigraph_input/platform/plugins/platform_mg_post_check b/tests/load_minigraph_input/platform/plugins/platform_mg_post_check new file mode 100755 index 00000000..08025e64 --- /dev/null +++ b/tests/load_minigraph_input/platform/plugins/platform_mg_post_check @@ -0,0 +1,4 @@ +#!/bin/bash + +echo "Do Nothing!" +exit 0 diff --git a/tests/load_minigraph_input/platform_false/plugins/platform_mg_post_check b/tests/load_minigraph_input/platform_false/plugins/platform_mg_post_check new file mode 100755 index 00000000..67c96d71 --- /dev/null +++ b/tests/load_minigraph_input/platform_false/plugins/platform_mg_post_check @@ -0,0 +1,4 @@ +#!/bin/bash + +echo "Do Nothing!" +exit 1 From ce81a340c0baf7720d6b726a3fa3ca69d72cbbd8 Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Thu, 4 May 2023 13:32:45 +0800 Subject: [PATCH 136/312] Revert "[config]Support multi-asic Golden Config override (#2738)" (#2823) This reverts commit ada603c530c4f5a0008ab364c7f6531e2e3357ba. --- config/config_mgmt.py | 15 ++-- config/main.py | 55 ++++++------- .../multi_asic_dm_rm.json | 11 --- .../multi_asic_macsec_ov.json | 23 ------ tests/config_override_test.py | 77 +------------------ 5 files changed, 32 insertions(+), 149 deletions(-) delete mode 100644 tests/config_override_input/multi_asic_dm_rm.json delete mode 100644 tests/config_override_input/multi_asic_macsec_ov.json diff --git a/config/config_mgmt.py b/config/config_mgmt.py index 05353a34..a10393c7 100644 --- a/config/config_mgmt.py +++ b/config/config_mgmt.py @@ -35,8 +35,7 @@ class ConfigMgmt(): to verify config for the commands which are capable of change in config DB. ''' - def __init__(self, source="configDB", debug=False, allowTablesWithoutYang=True, - sonicYangOptions=0, configdb=None): + def __init__(self, source="configDB", debug=False, allowTablesWithoutYang=True, sonicYangOptions=0): ''' Initialise the class, --read the config, --load in data tree. @@ -45,7 +44,6 @@ def __init__(self, source="configDB", debug=False, allowTablesWithoutYang=True, debug (bool): verbose mode. allowTablesWithoutYang (bool): allow tables without yang model in config or not. - configdb: configdb to work on. Returns: void @@ -56,11 +54,6 @@ def __init__(self, source="configDB", debug=False, allowTablesWithoutYang=True, self.source = source self.allowTablesWithoutYang = allowTablesWithoutYang self.sonicYangOptions = sonicYangOptions - if configdb is None: - self.configdb = ConfigDBConnector() - self.configdb.connect() - else: - self.configdb = configdb # logging vars self.SYSLOG_IDENTIFIER = "ConfigMgmt" @@ -201,7 +194,8 @@ def readConfigDB(self): self.sysLog(doPrint=True, msg='Reading data from Redis configDb') # Read from config DB on sonic switch data = dict() - configdb = self.configdb + configdb = ConfigDBConnector() + configdb.connect() sonic_cfggen.deep_update(data, sonic_cfggen.FormatConverter.db_to_output(configdb.get_config())) self.configdbJsonIn = sonic_cfggen.FormatConverter.to_serialized(data) self.sysLog(syslog.LOG_DEBUG, 'Reading Input from ConfigDB {}'.\ @@ -221,7 +215,8 @@ def writeConfigDB(self, jDiff): ''' self.sysLog(doPrint=True, msg='Writing in Config DB') data = dict() - configdb = self.configdb + configdb = ConfigDBConnector() + configdb.connect(False) sonic_cfggen.deep_update(data, sonic_cfggen.FormatConverter.to_deserialized(jDiff)) self.sysLog(msg="Write in DB: {}".format(data)) configdb.mod_config(sonic_cfggen.FormatConverter.output_to_db(data)) diff --git a/config/main.py b/config/main.py index a18f11e3..cfe862af 100644 --- a/config/main.py +++ b/config/main.py @@ -1849,41 +1849,36 @@ def override_config_table(db, input_config_db, dry_run): fg='magenta') sys.exit(1) - cfgdb_clients = db.cfgdb_clients + config_db = db.cfgdb - for ns, config_db in cfgdb_clients.items(): - # Read config from configDB - current_config = config_db.get_config() - # Serialize to the same format as json input - sonic_cfggen.FormatConverter.to_serialized(current_config) + # Read config from configDB + current_config = config_db.get_config() + # Serialize to the same format as json input + sonic_cfggen.FormatConverter.to_serialized(current_config) - if multi_asic.is_multi_asic(): - ns_config_input = config_input[ns] - else: - ns_config_input = config_input - updated_config = update_config(current_config, ns_config_input) + updated_config = update_config(current_config, config_input) - yang_enabled = device_info.is_yang_config_validation_enabled(config_db) - if yang_enabled: - # The ConfigMgmt will load YANG and running - # config during initialization. - try: - cm = ConfigMgmt(configdb=config_db) - cm.validateConfigData() - except Exception as ex: - click.secho("Failed to validate running config. Error: {}".format(ex), fg="magenta") - sys.exit(1) + yang_enabled = device_info.is_yang_config_validation_enabled(config_db) + if yang_enabled: + # The ConfigMgmt will load YANG and running + # config during initialization. + try: + cm = ConfigMgmt() + cm.validateConfigData() + except Exception as ex: + click.secho("Failed to validate running config. Error: {}".format(ex), fg="magenta") + sys.exit(1) - # Validate input config - validate_config_by_cm(cm, ns_config_input, "config_input") - # Validate updated whole config - validate_config_by_cm(cm, updated_config, "updated_config") + # Validate input config + validate_config_by_cm(cm, config_input, "config_input") + # Validate updated whole config + validate_config_by_cm(cm, updated_config, "updated_config") - if dry_run: - print(json.dumps(updated_config, sort_keys=True, - indent=4, cls=minigraph_encoder)) - else: - override_config_db(config_db, ns_config_input) + if dry_run: + print(json.dumps(updated_config, sort_keys=True, + indent=4, cls=minigraph_encoder)) + else: + override_config_db(config_db, config_input) def validate_config_by_cm(cm, config_json, jname): diff --git a/tests/config_override_input/multi_asic_dm_rm.json b/tests/config_override_input/multi_asic_dm_rm.json deleted file mode 100644 index 51c0da15..00000000 --- a/tests/config_override_input/multi_asic_dm_rm.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "": { - "DEVICE_METADATA": {} - }, - "asic0": { - "DEVICE_METADATA": {} - }, - "asic1": { - "DEVICE_METADATA": {} - } -} diff --git a/tests/config_override_input/multi_asic_macsec_ov.json b/tests/config_override_input/multi_asic_macsec_ov.json deleted file mode 100644 index 220d779f..00000000 --- a/tests/config_override_input/multi_asic_macsec_ov.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "": { - "MACSEC_PROFILE": { - "profile": { - "key": "value" - } - } - }, - "asic0": { - "MACSEC_PROFILE": { - "profile": { - "key": "value" - } - } - }, - "asic1": { - "MACSEC_PROFILE": { - "profile": { - "key": "value" - } - } - } -} diff --git a/tests/config_override_test.py b/tests/config_override_test.py index ca14ae75..1b058ace 100644 --- a/tests/config_override_test.py +++ b/tests/config_override_test.py @@ -1,7 +1,6 @@ import os import json import filecmp -import importlib import config.main as config from click.testing import CliRunner @@ -21,8 +20,6 @@ RUNNING_CONFIG_YANG_FAILURE = os.path.join(DATA_DIR, "running_config_yang_failure.json") GOLDEN_INPUT_YANG_FAILURE = os.path.join(DATA_DIR, "golden_input_yang_failure.json") FINAL_CONFIG_YANG_FAILURE = os.path.join(DATA_DIR, "final_config_yang_failure.json") -MULTI_ASIC_MACSEC_OV = os.path.join(DATA_DIR, "multi_asic_macsec_ov.json") -MULTI_ASIC_DEVICE_METADATA_RM = os.path.join(DATA_DIR, "multi_asic_dm_rm.json") # Load sonic-cfggen from source since /usr/local/bin/sonic-cfggen does not have .py extension. sonic_cfggen = load_module_from_source('sonic_cfggen', '/usr/local/bin/sonic-cfggen') @@ -176,7 +173,7 @@ def test_yang_verification_enabled(self): def is_yang_config_validation_enabled_side_effect(filename): return True - def config_mgmt_side_effect(configdb): + def config_mgmt_side_effect(): return config_mgmt.ConfigMgmt(source=CONFIG_DB_JSON_FILE) db = Db() @@ -235,7 +232,7 @@ def check_yang_verification_failure(self, db, config, running_config, def read_json_file_side_effect(filename): return golden_config - def config_mgmt_side_effect(configdb): + def config_mgmt_side_effect(): return config_mgmt.ConfigMgmt(source=CONFIG_DB_JSON_FILE) # ConfigMgmt will call ConfigDBConnector to load default config_db.json. @@ -260,73 +257,3 @@ def teardown_class(cls): print("TEARDOWN") os.environ["UTILITIES_UNIT_TESTING"] = "0" return - - -class TestConfigOverrideMultiasic(object): - @classmethod - def setup_class(cls): - print("SETUP") - os.environ["UTILITIES_UNIT_TESTING"] = "1" - os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "multi_asic" - # change to multi asic config - from .mock_tables import dbconnector - from .mock_tables import mock_multi_asic - importlib.reload(mock_multi_asic) - dbconnector.load_namespace_config() - return - - def test_macsec_override(self): - def read_json_file_side_effect(filename): - with open(MULTI_ASIC_MACSEC_OV, "r") as f: - macsec_profile = json.load(f) - return macsec_profile - db = Db() - cfgdb_clients = db.cfgdb_clients - - # The profile_content was copied from MULTI_ASIC_MACSEC_OV, where all - # ns sharing the same content: {"profile": {"key": "value"}} - profile_content = {"profile": {"key": "value"}} - - with mock.patch('config.main.read_json_file', - mock.MagicMock(side_effect=read_json_file_side_effect)): - runner = CliRunner() - result = runner.invoke(config.config.commands["override-config-table"], - ['golden_config_db.json'], obj=db) - assert result.exit_code == 0 - - for ns, config_db in cfgdb_clients.items(): - assert config_db.get_config()['MACSEC_PROFILE'] == profile_content - - def test_device_metadata_table_rm(self): - def read_json_file_side_effect(filename): - with open(MULTI_ASIC_DEVICE_METADATA_RM, "r") as f: - device_metadata = json.load(f) - return device_metadata - db = Db() - cfgdb_clients = db.cfgdb_clients - - for ns, config_db in cfgdb_clients.items(): - assert 'DEVICE_METADATA' in config_db.get_config() - - with mock.patch('config.main.read_json_file', - mock.MagicMock(side_effect=read_json_file_side_effect)): - runner = CliRunner() - result = runner.invoke(config.config.commands["override-config-table"], - ['golden_config_db.json'], obj=db) - assert result.exit_code == 0 - - for ns, config_db in cfgdb_clients.items(): - assert 'DEVICE_METADATA' not in config_db.get_config() - - - @classmethod - def teardown_class(cls): - print("TEARDOWN") - os.environ["UTILITIES_UNIT_TESTING"] = "0" - os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "" - # change back to single asic config - from .mock_tables import dbconnector - from .mock_tables import mock_single_asic - importlib.reload(mock_single_asic) - dbconnector.load_namespace_config() - return From d1f307d063229811f6777705c5db0338370fbc64 Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Thu, 4 May 2023 14:45:28 +0800 Subject: [PATCH 137/312] [GCU]Fix rdma check failure (#2824) What I did if substring.isdigit() and re.match(r'^\d{8}$', substring): In this version check, it only applies to this pattern: 20220531.XXX. It will fail the master and other build check. For example, master.261851-010dc3957 is a master build_version string. It will fail version validation and return failure. My thought to remove the check is that GCU is only supported in 202205 and later. Either branch_version >= "20201200" or branch_version >= "20181100" is already satisfied. How I did it Remove redundant check in GCU RDMA validator How to verify it Unit test --- .../field_operation_validators.py | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/generic_config_updater/field_operation_validators.py b/generic_config_updater/field_operation_validators.py index befd4b87..84cc4854 100644 --- a/generic_config_updater/field_operation_validators.py +++ b/generic_config_updater/field_operation_validators.py @@ -3,24 +3,8 @@ def rdma_config_update_validator(): version_info = device_info.get_sonic_version_info() - build_version = version_info.get('build_version') asic_type = version_info.get('asic_type') if (asic_type != 'mellanox' and asic_type != 'broadcom' and asic_type != 'cisco-8000'): return False - - version_substrings = build_version.split('.') - branch_version = None - - for substring in version_substrings: - if substring.isdigit() and re.match(r'^\d{8}$', substring): - branch_version = substring - break - - if branch_version is None: - return False - - if asic_type == 'cisco-8000': - return branch_version >= "20201200" - else: - return branch_version >= "20181100" + return True From 331c9de08a5aae60e44c350b09b733464126cbd6 Mon Sep 17 00:00:00 2001 From: Lawrence Lee Date: Thu, 4 May 2023 10:55:04 -0700 Subject: [PATCH 138/312] [config]: Dynamically start and stop ndppd (#2814) - When enabling proxy_arp for a VLAN, configure and start the ndppd service if it isn't already running - When removing the last VLAN, stop the ndppd service Signed-off-by: Lawrence Lee --- config/vlan.py | 24 +++++++++++++++++++++-- tests/vlan_test.py | 49 +++++++++++++++++++++++++++++++++++++--------- 2 files changed, 62 insertions(+), 11 deletions(-) diff --git a/config/vlan.py b/config/vlan.py index 33c61457..05407392 100644 --- a/config/vlan.py +++ b/config/vlan.py @@ -115,11 +115,24 @@ 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() + + vlans = db.cfgdb.get_keys('VLAN') + if not vlans: + docker_exec_cmd = "docker exec -i swss {}" + _, rc = clicommon.run_command(docker_exec_cmd.format("supervisorctl status ndppd"), ignore_error=True, return_cmd=True) + if rc == 0: + click.echo("No VLANs remaining, stopping ndppd service") + clicommon.run_command(docker_exec_cmd.format("supervisorctl stop ndppd"), ignore_error=True, return_cmd=True) + clicommon.run_command(docker_exec_cmd.format("rm -f /etc/supervisor/conf.d/ndppd.conf"), ignore_error=True, return_cmd=True) + clicommon.run_command(docker_exec_cmd.format("supervisorctl update"), return_cmd=True) def restart_ndppd(): verify_swss_running_cmd = "docker container inspect -f '{{.State.Status}}' swss" docker_exec_cmd = "docker exec -i swss {}" + ndppd_status_cmd= "supervisorctl status ndppd" + ndppd_conf_copy_cmd = "cp /usr/share/sonic/templates/ndppd.conf /etc/supervisor/conf.d/" + supervisor_update_cmd = "supervisorctl update" ndppd_config_gen_cmd = "sonic-cfggen -d -t /usr/share/sonic/templates/ndppd.conf.j2,/etc/ndppd.conf" ndppd_restart_cmd = "supervisorctl restart ndppd" @@ -129,9 +142,16 @@ def restart_ndppd(): click.echo(click.style('SWSS container is not running, changes will take effect the next time the SWSS container starts', fg='red'),) return - clicommon.run_command(docker_exec_cmd.format(ndppd_config_gen_cmd), display_cmd=True) + _, rc = clicommon.run_command(docker_exec_cmd.format(ndppd_status_cmd), ignore_error=True, return_cmd=True) + + if rc != 0: + clicommon.run_command(docker_exec_cmd.format(ndppd_conf_copy_cmd)) + clicommon.run_command(docker_exec_cmd.format(supervisor_update_cmd), return_cmd=True) + + click.echo("Starting ndppd service") + clicommon.run_command(docker_exec_cmd.format(ndppd_config_gen_cmd)) sleep(3) - clicommon.run_command(docker_exec_cmd.format(ndppd_restart_cmd), display_cmd=True) + clicommon.run_command(docker_exec_cmd.format(ndppd_restart_cmd), return_cmd=True) @vlan.command('proxy_arp') diff --git a/tests/vlan_test.py b/tests/vlan_test.py index 19622777..ce127102 100644 --- a/tests/vlan_test.py +++ b/tests/vlan_test.py @@ -403,6 +403,27 @@ def test_config_vlan_del_vlan(self, mock_restart_dhcp_relay_service): assert result.exit_code == 0 assert result.output == show_vlan_brief_empty_output + def test_config_vlan_del_last_vlan(self): + runner = CliRunner() + db = Db() + db.cfgdb.delete_table("VLAN_MEMBER") + db.cfgdb.delete_table("VLAN_INTERFACE") + db.cfgdb.set_entry("VLAN", "Vlan2000", None) + db.cfgdb.set_entry("VLAN", "Vlan3000", None) + db.cfgdb.set_entry("VLAN", "Vlan4000", None) + + with mock.patch("utilities_common.cli.run_command", mock.Mock(return_value=("", 0))) as mock_run_command: + result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1000"], obj=db) + print(result.exit_code) + print(result.output) + mock_run_command.assert_has_calls([ + mock.call("docker exec -i swss supervisorctl status ndppd", ignore_error=True, return_cmd=True), + mock.call("docker exec -i swss supervisorctl stop ndppd", ignore_error=True, return_cmd=True), + mock.call("docker exec -i swss rm -f /etc/supervisor/conf.d/ndppd.conf", ignore_error=True, return_cmd=True), + mock.call("docker exec -i swss supervisorctl update", return_cmd=True) + ]) + assert result.exit_code == 0 + def test_config_vlan_del_nonexist_vlan_member(self): runner = CliRunner() @@ -533,19 +554,29 @@ def test_config_vlan_proxy_arp_with_nonexist_vlan_intf(self): assert result.exit_code != 0 assert "Interface Vlan1001 does not exist" in result.output - def test_config_vlan_proxy_arp_enable(self, mock_restart_dhcp_relay_service): - runner = CliRunner() - db = Db() + def test_config_vlan_proxy_arp_enable(self): + mock_cli_returns = [("running", 0),("", 1)] + [("", 0)] * 4 + with mock.patch("utilities_common.cli.run_command", mock.Mock(side_effect=mock_cli_returns)) as mock_run_command: + runner = CliRunner() + db = Db() - result = runner.invoke(config.config.commands["vlan"].commands["proxy_arp"], ["1000", "enabled"], obj=db) + result = runner.invoke(config.config.commands["vlan"].commands["proxy_arp"], ["1000", "enabled"], obj=db) - print(result.exit_code) - print(result.output) + print(result.exit_code) + print(result.output) + + expected_calls = [mock.call("docker container inspect -f '{{.State.Status}}' swss", return_cmd=True), + mock.call('docker exec -i swss supervisorctl status ndppd', ignore_error=True, return_cmd=True), + mock.call('docker exec -i swss cp /usr/share/sonic/templates/ndppd.conf /etc/supervisor/conf.d/'), + mock.call('docker exec -i swss supervisorctl update', return_cmd=True), + mock.call('docker exec -i swss sonic-cfggen -d -t /usr/share/sonic/templates/ndppd.conf.j2,/etc/ndppd.conf'), + mock.call('docker exec -i swss supervisorctl restart ndppd', return_cmd=True)] + mock_run_command.assert_has_calls(expected_calls) - assert result.exit_code == 0 - assert db.cfgdb.get_entry("VLAN_INTERFACE", "Vlan1000") == {"proxy_arp": "enabled"} + assert result.exit_code == 0 + assert db.cfgdb.get_entry("VLAN_INTERFACE", "Vlan1000") == {"proxy_arp": "enabled"} - def test_config_vlan_proxy_arp_disable(self, mock_restart_dhcp_relay_service): + def test_config_vlan_proxy_arp_disable(self): runner = CliRunner() db = Db() From 634ac77c1ab06acd5ba8841c4ce4765dea8f2ce4 Mon Sep 17 00:00:00 2001 From: Vaibhav Hemant Dixit Date: Thu, 4 May 2023 11:35:20 -0700 Subject: [PATCH 139/312] LAG keepalive script to reduce lacp session wait during warm-reboot (#2806) A new mechanism is added here to to reduce LAG flap issue during hitless upgrades. Problem being solved: During warm upgrades T0 goes down and with that wait time for LACP session starts. If the waittime to refresh LACP session is > 90s then T1 initiates LAG teardown, and as a result dataplane impact is seen. This script makes sure that LACPDUs are sent in the going down path continuously. How time is saved w/ this mechanism: The lacpsession wait period earlier used to start from when teamd container goes down. New lacpsession wait period starts when kexec in current kernel is issued, and new kernel boots up. Implementation: When warm-reboot starts, capture LACPDUs sent from all LAG member ports. For this allow 60s of prep + collection time. Start sending LACPDUs w/ ~1s interval. The last LACPDU is sent after all containers are down and kexec is issued. Results: Tested this on different platforms and images. Some results for time saved: BRCM: 201811 -> 202012 --- 18s BRCM: 202012 -> 202012 --- 20s MLNX: 201911 -> 202205 --- 10s MLNX: 202205 -> 202205 --- 10s --- scripts/fast-reboot | 8 +++ scripts/lag_keepalive.py | 102 +++++++++++++++++++++++++++++++++++++++ setup.py | 1 + 3 files changed, 111 insertions(+) create mode 100644 scripts/lag_keepalive.py diff --git a/scripts/fast-reboot b/scripts/fast-reboot index eea97e79..99a63104 100755 --- a/scripts/fast-reboot +++ b/scripts/fast-reboot @@ -17,6 +17,7 @@ STRICT=no REBOOT_METHOD="/sbin/kexec -e" ASSISTANT_IP_LIST="" ASSISTANT_SCRIPT="/usr/local/bin/neighbor_advertiser" +LAG_KEEPALIVE_SCRIPT="/usr/local/bin/lag_keepalive.py" WATCHDOG_UTIL="/usr/local/bin/watchdogutil" DEVPATH="/usr/share/sonic/device" PLATFORM=$(sonic-cfggen -H -v DEVICE_METADATA.localhost.platform) @@ -682,6 +683,13 @@ fi # disable trap-handlers which were set before trap '' EXIT HUP INT QUIT TERM KILL ABRT ALRM +# start sending LACPDUs to keep the LAGs refreshed +# this is a non-blocking call, and the process will die in 300s +debug "Starting lag_keepalive to send LACPDUs ..." +timeout 300 python ${LAG_KEEPALIVE_SCRIPT} & +# give the lag_keepalive script a chance to get ready (30s) and collect one lacpdu before going down (30s) +sleep 60 + if [ -x ${LOG_SSD_HEALTH} ]; then debug "Collecting logs to check ssd health before ${REBOOT_TYPE}..." ${LOG_SSD_HEALTH} diff --git a/scripts/lag_keepalive.py b/scripts/lag_keepalive.py new file mode 100644 index 00000000..04ac01a0 --- /dev/null +++ b/scripts/lag_keepalive.py @@ -0,0 +1,102 @@ +#!/usr/bin/env python3 + +from scapy.config import conf +conf.ipv6_enabled = False +from scapy.all import sendp, sniff +from swsscommon.swsscommon import ConfigDBConnector +import time, threading, traceback +import syslog + +SYSLOG_ID = 'lag_keepalive' + + +def log_info(msg): + syslog.openlog(SYSLOG_ID) + syslog.syslog(syslog.LOG_INFO, msg) + syslog.closelog() + + +def log_error(msg): + syslog.openlog(SYSLOG_ID) + syslog.syslog(syslog.LOG_ERR, msg) + syslog.closelog() + + +def sniff_lacpdu(device_mac, lag_member, lag_member_to_packet): + sniffed_packet = sniff(iface=lag_member, + filter="ether proto 0x8809 and ether src {}".format(device_mac), + count=1, timeout=30) + lag_member_to_packet[lag_member] = sniffed_packet + + +def get_lacpdu_per_lag_member(): + appDB = ConfigDBConnector() + appDB.db_connect('APPL_DB') + appDB_lag_info = appDB.get_keys('LAG_MEMBER_TABLE') + configDB = ConfigDBConnector() + configDB.db_connect('CONFIG_DB') + device_mac = configDB.get(configDB.CONFIG_DB, "DEVICE_METADATA|localhost", "mac") + hwsku = configDB.get(configDB.CONFIG_DB, "DEVICE_METADATA|localhost", "hwsku") + active_lag_members = list() + lag_member_to_packet = dict() + sniffer_threads = list() + for lag_entry in appDB_lag_info: + lag_name = str(lag_entry[0]) + oper_status = appDB.get(appDB.APPL_DB,"LAG_TABLE:{}".format(lag_name), "oper_status") + if oper_status == "up": + # only apply the workaround for active lags + lag_member = str(lag_entry[1]) + active_lag_members.append(lag_member) + # use threading to capture lacpdus from several lag members simultaneously + sniffer_thread = threading.Thread(target=sniff_lacpdu, + args=(device_mac, lag_member, lag_member_to_packet)) + sniffer_thread.start() + sniffer_threads.append(sniffer_thread) + + # sniff for lacpdu should finish in <= 30s. sniff timeout is also set to 30s + for sniffer in sniffer_threads: + sniffer.join(timeout=30) + + return active_lag_members, lag_member_to_packet + + +def lag_keepalive(lag_member_to_packet): + while True: + for lag_member, packet in lag_member_to_packet.items(): + try: + sendp(packet, iface=lag_member, verbose=False) + except Exception: + # log failure and continue to send lacpdu + traceback_msg = traceback.format_exc() + log_error("Failed to send LACPDU packet from interface {} with error: {}".format( + lag_member, traceback_msg)) + continue + log_info("sent LACPDU packets via {}".format(lag_member_to_packet.keys())) + time.sleep(1) + + +def main(): + while True: + try: + active_lag_members, lag_member_to_packet = get_lacpdu_per_lag_member() + if len(active_lag_members) != len(lag_member_to_packet.keys()): + log_error("Failed to capture LACPDU packets for some lag members. " +\ + "Active lag members: {}. LACPDUs captured for: {}".format( + active_lag_members, lag_member_to_packet.keys())) + + log_info("ready to send LACPDU packets via {}".format(lag_member_to_packet.keys())) + except Exception: + traceback_msg = traceback.format_exc() + log_error("Failed to get LAG members and LACPDUs with error: {}".format( + traceback_msg)) + # keep attempting until sniffed packets are ready + continue + # if no exceptions are thrown, break from loop as LACPDUs are ready to be sent + break + + if lag_member_to_packet: + # start an infinite loop to keep sending lacpdus from lag member ports + lag_keepalive(lag_member_to_packet) + +if __name__ == "__main__": + main() diff --git a/setup.py b/setup.py index bcb9388a..a0ea2eee 100644 --- a/setup.py +++ b/setup.py @@ -140,6 +140,7 @@ 'scripts/intfutil', 'scripts/intfstat', 'scripts/ipintutil', + 'scripts/lag_keepalive.py', 'scripts/lldpshow', 'scripts/log_ssd_health', 'scripts/mellanox_buffer_migrator.py', From 589375fc6c0cade2868562ea59f9d48b899bdc9f Mon Sep 17 00:00:00 2001 From: Keith Lu <54458415+yenlu-keith@users.noreply.github.com> Date: Thu, 4 May 2023 12:41:04 -0700 Subject: [PATCH 140/312] correctly parsing complete ipv6 vnet info (#2827) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit cisco sonic router will hit below error message from route_check str3-8101-02 ERR monit[519]: 'routeCheck' status failed (255) – Failure results: #12 "Unaccounted_ROUTE_ENTRY_TABLE_entries": #12 "fddd:a150:a0::a66:1/128",#12 "fddd:a150:a0::a67:1/128",#12 "fddd:a150:a0::a71:1/128",#12 "fddd:a150:a0::a78:1/128",#12 "fddd:a150:a0::a80:1/128"#12 #12#012Failed. Look at reported mismatches above#012add: []#012del: [] the parser will only cut the chars before : regardless it is the IPv6 format. For instance, route_check: "fddd:a150:a0::a21:1/128 Will be parsed as “fddd" ONLY Vnet_v6_in_v4-0: : a150:a0::a21:1/128" solution: fix the parsing scheme on route check when APPL_DB refers IPv6 format. --- scripts/route_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/route_check.py b/scripts/route_check.py index c6234bcc..75806cf9 100755 --- a/scripts/route_check.py +++ b/scripts/route_check.py @@ -436,7 +436,7 @@ def filter_out_vnet_routes(routes): vnet_routes = [] for vnet_route_db_key in vnet_routes_db_keys: - vnet_route_attrs = vnet_route_db_key.split(':') + vnet_route_attrs = vnet_route_db_key.split(':', 1) vnet_name = vnet_route_attrs[0] vnet_route = vnet_route_attrs[1] vnet_routes.append(vnet_route) From 1097373b4ea4144bc54abdf6148af0e1cf09a099 Mon Sep 17 00:00:00 2001 From: Julian Chang - TW Date: Sat, 6 May 2023 02:18:26 +0800 Subject: [PATCH 141/312] [show] Added alias interface mode support for 'show interfaces counters ...' command (#2468) Fixes #2464 #### What I did This change fixed "show interfaces counters xxx" output nothing when naming mode is alias. #### How I did it Convert the alias name into interface name for "show interfaces counters -u xxx", "show interfaces counters detailed xxx" and "show interfaces counters rif xxx" subcommands. #### How to verify it 1. Set interface naming mode to alias. 2. Logout/Login. 3. Verify "show interfaces counters -i Eth1". 4. Verify "show interfaces counters rif Eth1". 5. Verify "show interfaces counters detailed Eth1". 6. Set interface naming mode to default. 7. Logout/Login 8. Repeat step 3~5. --- show/interfaces/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/show/interfaces/__init__.py b/show/interfaces/__init__.py index a7a56244..3b876cda 100644 --- a/show/interfaces/__init__.py +++ b/show/interfaces/__init__.py @@ -578,6 +578,7 @@ def counters(ctx, verbose, period, interface, printall, namespace, display): if period is not None: cmd += " -p {}".format(period) if interface is not None: + interface = try_convert_interfacename_from_alias(ctx, interface) cmd += " -i {}".format(interface) else: cmd += " -s {}".format(display) @@ -643,10 +644,13 @@ def rates(verbose, period, namespace, display): def rif(interface, period, verbose): """Show interface counters""" + ctx = click.get_current_context() + cmd = "intfstat" if period is not None: cmd += " -p {}".format(period) if interface is not None: + interface = try_convert_interfacename_from_alias(ctx, interface) cmd += " -i {}".format(interface) clicommon.run_command(cmd, display_cmd=verbose) @@ -659,10 +663,13 @@ def rif(interface, period, verbose): def detailed(interface, period, verbose): """Show interface counters detailed""" + ctx = click.get_current_context() + cmd = "portstat -l" if period is not None: cmd += " -p {}".format(period) if interface is not None: + interface = try_convert_interfacename_from_alias(ctx, interface) cmd += " -i {}".format(interface) clicommon.run_command(cmd, display_cmd=verbose) From 71ef4f16d8ba485ae9f8bd65516877e3e00680a9 Mon Sep 17 00:00:00 2001 From: Oleksandr Ivantsiv Date: Mon, 8 May 2023 18:48:55 +0200 Subject: [PATCH 142/312] [build] Fix base OS compilation issue caused by incompatibility with requests >= 2.29.0. (#2830) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #### What I did Fix SONiC image compilation issue: ``` [2023-05-03T17:54:00.146Z] + sudo cp files/build_templates/docker_image_ctl.j2 ./fs********-mellanox/usr/share/sonic/templates/docker_image_ctl.j2 [2023-05-03T17:54:00.146Z] + sudo LANG=C DOCKER_HOST= ch******** ./fs********-mellanox /usr/local/bin/generate_shutdown_order.py [2023-05-03T17:54:00.146Z] Traceback (most recent call last): [2023-05-03T17:54:00.146Z]   File "/usr/local/lib/python3.9/dist-packages/docker/api/client.py", line 214, in _retrieve_server_version [2023-05-03T17:54:00.146Z]     return self.version(api_version=False)["ApiVersion"] [2023-05-03T17:54:00.147Z]   File "/usr/local/lib/python3.9/dist-packages/docker/api/daemon.py", line 181, in version [2023-05-03T17:54:00.147Z]     return self._result(self._get(url), json=True) [2023-05-03T17:54:00.147Z]   File "/usr/local/lib/python3.9/dist-packages/docker/utils/decorators.py", line 46, in inner [2023-05-03T17:54:00.147Z]     return f(self, *args, **kwargs) [2023-05-03T17:54:00.147Z]   File "/usr/local/lib/python3.9/dist-packages/docker/api/client.py", line 237, in _get [2023-05-03T17:54:00.147Z]     return self.get(url, **self._set_request_timeout(kwargs)) [2023-05-03T17:54:00.147Z]   File "/usr/local/lib/python3.9/dist-packages/requests/sessions.py", line 600, in get [2023-05-03T17:54:00.147Z]     return self.request("GET", url, **kwargs) [2023-05-03T17:54:00.147Z]   File "/usr/local/lib/python3.9/dist-packages/requests/sessions.py", line 587, in request [2023-05-03T17:54:00.147Z]     resp = self.send(prep, **send_kwargs) [2023-05-03T17:54:00.147Z]   File "/usr/local/lib/python3.9/dist-packages/requests/sessions.py", line 701, in send [2023-05-03T17:54:00.147Z]     r = adapter.send(request, **kwargs) [2023-05-03T17:54:00.147Z]   File "/usr/local/lib/python3.9/dist-packages/requests/adapters.py", line 486, in send [2023-05-03T17:54:00.147Z]     resp = conn.urlopen( [2023-05-03T17:54:00.147Z]   File "/usr/local/lib/python3.9/dist-packages/urllib3/connectionpool.py", line 790, in urlopen [2023-05-03T17:54:00.147Z]     response = self._make_request( [2023-05-03T17:54:00.147Z]   File "/usr/local/lib/python3.9/dist-packages/urllib3/connectionpool.py", line 496, in _make_request [2023-05-03T17:54:00.147Z]     conn.request( [2023-05-03T17:54:00.147Z] TypeError: request() got an unexpected keyword argument 'chunked' ``` #### How I did it Pin urllib to version < 2 as it was suggested in https://github.com/docker/docker-py/issues/3113. #### How to verify it Run SONiC image compilation. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index a0ea2eee..cdeddb8f 100644 --- a/setup.py +++ b/setup.py @@ -222,6 +222,7 @@ }, install_requires=[ 'click==7.0', + 'urllib3<2', 'click-log>=0.3.2', 'docker>=4.4.4', 'docker-image-py>=0.1.10', From a5091bba3901582601e800026d219aa872f1315f Mon Sep 17 00:00:00 2001 From: Mai Bui Date: Tue, 9 May 2023 19:09:27 -0400 Subject: [PATCH 143/312] [sonic_sku_create] remove shell=True, replace exit() with sys.exit() (#2816) #### What I did `subprocess()` - when using with `shell=True` is dangerous. Using subprocess function without a static string can lead to command injection. `sys.exit` is better than `exit`, considered good to use in production code. Ref: https://stackoverflow.com/questions/6501121/difference-between-exit-and-sys-exit-in-python https://stackoverflow.com/questions/19747371/python-exit-commands-why-so-many-and-when-should-each-be-used #### How I did it `subprocess()` - use `shell=False` instead, use list of strings Ref: [https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation](https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation) Replace `exit()` by `sys.exit()` #### How to verify it Add UT --- scripts/sonic_sku_create.py | 60 ++-- .../config_db_incorrect_platform.json | 12 + .../config_db_invalid_portname.json | 302 ++++++++++++++++++ tests/sku_create_test.py | 300 +++++++++++++++++ 4 files changed, 644 insertions(+), 30 deletions(-) create mode 100644 tests/sku_create_input/2700_files/config_db_incorrect_platform.json create mode 100644 tests/sku_create_input/2700_files/config_db_invalid_portname.json diff --git a/scripts/sonic_sku_create.py b/scripts/sonic_sku_create.py index e32af358..123bfd46 100755 --- a/scripts/sonic_sku_create.py +++ b/scripts/sonic_sku_create.py @@ -37,7 +37,7 @@ from tabulate import tabulate from lxml import etree as ET from lxml.etree import QName - +from sonic_py_common.general import check_output_pipe minigraph_ns = "Microsoft.Search.Autopilot.Evolution" minigraph_ns1 = "http://schemas.datacontract.org/2004/07/Microsoft.Search.Autopilot.Evolution" @@ -105,10 +105,10 @@ def sku_def_parser(self, sku_def): # Parsing XML sku definition file to extract Interface speed and InterfaceName(alias) |/<#> to be used to analyze split configuration # Rest of the fields are used as placeholders for portconfig_dict [name,lanes,SPEED,ALIAS,index] try: - f = open(str(sku_def),"r") + f = open(str(sku_def), "r") except IOError: print("Couldn't open file: " + str(sku_def), file=sys.stderr) - exit(1) + sys.exit(1) element = ET.parse(f) root = element.getroot() @@ -184,7 +184,7 @@ def check_json_lanes_with_bko(self, data, port_idx): int_port_speed = int(port_speed) else: print(port_str, "does not contain speed key, Exiting...", file=sys.stderr) - exit(1) + sys.exit(1) for i in range(1,self.base_lanes): curr_port_str = "Ethernet{:d}".format(port_idx+i) if curr_port_str in data['PORT']: @@ -193,20 +193,20 @@ def check_json_lanes_with_bko(self, data, port_idx): curr_speed = curr_port_dict.get("speed") else: print(curr_port_str, "does not contain speed key, Exiting...", file=sys.stderr) - exit(1) + sys.exit(1) if port_speed != curr_speed: print(curr_port_str, "speed is different from that of ",port_str,", Exiting...", file=sys.stderr) - exit(1) + sys.exit(1) if "alias" in curr_port_dict: curr_alias = curr_port_dict.get("alias") else: print(curr_port_str, "does not contain alias key, Exiting...", file=sys.stderr) - exit(1) + sys.exit(1) if "lanes" in curr_port_dict: curr_lanes = curr_port_dict.get("lanes") else: print(curr_port_str, "does not contain lanes key, Exiting...", file=sys.stderr) - exit(1) + sys.exit(1) port_bmp |= (1< Date: Tue, 9 May 2023 22:34:04 -0400 Subject: [PATCH 144/312] [show][mlnx] replace shell=True, replace xml (#2700) Signed-off-by: maipbui #### What I did `subprocess()` - when using with `shell=True` is dangerous. Using subprocess function without a static string can lead to command injection. #### How I did it `subprocess()` - use `shell=False` instead, use list of strings Ref: [https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation](https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation) #### How to verify it Add UT Manual test ``` admin@***:~$ show platform mlnx issu ISSU is enabled admin@***:~$ show platform mlnx sniffer sdk sniffer is disabled ``` --- show/plugins/mlnx.py | 23 +++++++-------- tests/show_mlnx_test.py | 63 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+), 12 deletions(-) create mode 100644 tests/show_mlnx_test.py diff --git a/show/plugins/mlnx.py b/show/plugins/mlnx.py index cefe0cbd..04d6a78b 100644 --- a/show/plugins/mlnx.py +++ b/show/plugins/mlnx.py @@ -26,7 +26,8 @@ import sys import subprocess import click - import xml.etree.ElementTree as ET + from shlex import join + from lxml import etree as ET from sonic_py_common import device_info except ImportError as e: raise ImportError("%s - required module not found" % str(e)) @@ -46,9 +47,9 @@ def run_command(command, display_cmd=False, ignore_error=False, print_to_console """Run bash command and print output to stdout """ if display_cmd == True: - click.echo(click.style("Running command: ", fg='cyan') + click.style(command, fg='green')) + click.echo(click.style("Running command: ", fg='cyan') + click.style(join(command), fg='green')) - proc = subprocess.Popen(command, shell=True, text=True, stdout=subprocess.PIPE) + proc = subprocess.Popen(command, text=True, stdout=subprocess.PIPE) (out, err) = proc.communicate() if len(out) > 0 and print_to_console: @@ -70,9 +71,9 @@ def mlnx(): # get current status of sniffer from conf file def sniffer_status_get(env_variable_name): enabled = False - command = "docker exec {} bash -c 'touch {}'".format(CONTAINER_NAME, SNIFFER_CONF_FILE) + command = ["docker", "exec", CONTAINER_NAME, "bash", "-c", 'touch {}'.format(SNIFFER_CONF_FILE)] run_command(command) - command = 'docker cp {} {}'.format(SNIFFER_CONF_FILE_IN_CONTAINER, TMP_SNIFFER_CONF_FILE) + command = ['docker', 'cp', SNIFFER_CONF_FILE_IN_CONTAINER, TMP_SNIFFER_CONF_FILE] run_command(command) conf_file = open(TMP_SNIFFER_CONF_FILE, 'r') for env_variable_string in conf_file: @@ -80,7 +81,7 @@ def sniffer_status_get(env_variable_name): enabled = True break conf_file.close() - command = 'rm -rf {}'.format(TMP_SNIFFER_CONF_FILE) + command = ['rm', '-rf', TMP_SNIFFER_CONF_FILE] run_command(command) return enabled @@ -97,10 +98,8 @@ def is_issu_status_enabled(): # Get the SAI XML path from sai.profile sai_profile_path = '/{}/sai.profile'.format(HWSKU_PATH) - DOCKER_CAT_COMMAND = 'docker exec {container_name} cat {path}' - - command = DOCKER_CAT_COMMAND.format(container_name=CONTAINER_NAME, path=sai_profile_path) - sai_profile_content, _ = run_command(command, print_to_console=False) + DOCKER_CAT_COMMAND = ['docker', 'exec', CONTAINER_NAME, 'cat', sai_profile_path] + sai_profile_content, _ = run_command(DOCKER_CAT_COMMAND, print_to_console=False) sai_profile_kvs = {} @@ -117,8 +116,8 @@ def is_issu_status_enabled(): sys.exit(1) # Get ISSU from SAI XML - command = DOCKER_CAT_COMMAND.format(container_name=CONTAINER_NAME, path=sai_xml_path) - sai_xml_content, _ = run_command(command, print_to_console=False) + DOCKER_CAT_COMMAND = ['docker', 'exec', CONTAINER_NAME, 'cat', sai_xml_path] + sai_xml_content, _ = run_command(DOCKER_CAT_COMMAND, print_to_console=False) try: root = ET.fromstring(sai_xml_content) diff --git a/tests/show_mlnx_test.py b/tests/show_mlnx_test.py new file mode 100644 index 00000000..63e2aea1 --- /dev/null +++ b/tests/show_mlnx_test.py @@ -0,0 +1,63 @@ +import sys +import click +import pytest +import show.plugins.mlnx as show +from unittest.mock import call, patch, mock_open, MagicMock + + +class TestShowMlnx(object): + def setup(self): + print('SETUP') + + @patch('click.style') + def test_run_command(self, mock_click): + cmd0 = ['echo', 'test'] + out, err = show.run_command(cmd0, display_cmd=True) + + assert mock_click.call_args_list == [call('Running command: ', fg='cyan'), call(' '.join(cmd0), fg='green')] + assert out == 'test\n' + + cmd1 = [sys.executable, "-c", "import sys; sys.exit(6)"] + with pytest.raises(SystemExit) as e: + show.run_command(cmd1) + assert e.value.code == 6 + + @patch('builtins.open', mock_open(read_data=show.ENV_VARIABLE_SX_SNIFFER)) + @patch('show.plugins.mlnx.run_command') + def test_sniffer_status_get_enable(self, mock_runcmd): + expected_calls = [ + call(["docker", "exec", show.CONTAINER_NAME, "bash", "-c", 'touch {}'.format(show.SNIFFER_CONF_FILE)]), + call(['docker', 'cp', show.SNIFFER_CONF_FILE_IN_CONTAINER, show.TMP_SNIFFER_CONF_FILE]), + call(['rm', '-rf', show.TMP_SNIFFER_CONF_FILE]) + ] + + output = show.sniffer_status_get(show.ENV_VARIABLE_SX_SNIFFER) + assert mock_runcmd.call_args_list == expected_calls + assert output + + @patch('builtins.open', mock_open(read_data='not_enable')) + @patch('show.plugins.mlnx.run_command') + def test_sniffer_status_get_disable(self, mock_runcmd): + expected_calls = [ + call(["docker", "exec", show.CONTAINER_NAME, "bash", "-c", 'touch {}'.format(show.SNIFFER_CONF_FILE)]), + call(['docker', 'cp', show.SNIFFER_CONF_FILE_IN_CONTAINER, show.TMP_SNIFFER_CONF_FILE]), + call(['rm', '-rf', show.TMP_SNIFFER_CONF_FILE]) + ] + + output = show.sniffer_status_get(show.ENV_VARIABLE_SX_SNIFFER) + assert mock_runcmd.call_args_list == expected_calls + assert not output + + @patch('show.plugins.mlnx.run_command') + def test_is_issu_status_enabled_systemexit(self, mock_runcmd): + mock_runcmd.return_value = ('key0=value0\n', '') + expected_calls = ['docker', 'exec', show.CONTAINER_NAME, 'cat', r'/{}/sai.profile'.format(show.HWSKU_PATH)] + + with pytest.raises(SystemExit) as e: + show.is_issu_status_enabled() + assert e.value.code == 1 + mock_runcmd.assert_called_with(expected_calls, print_to_console=False) + + def teardown(self): + print('TEARDOWN') + From 3fb3258806c25b8d60a255ce0508dcd20018bdc6 Mon Sep 17 00:00:00 2001 From: Arvindsrinivasan Lakshmi Narasimhan <55814491+arlakshm@users.noreply.github.com> Date: Wed, 10 May 2023 13:41:58 -0700 Subject: [PATCH 145/312] Revert "[chassis]: remote cli commands infra for sonic chassis (#2701)" (#2832) This reverts commit 7e24463f88ba64f485e8ae5c33e00ab3b152e073. --- rcli/__init__.py | 0 rcli/linecard.py | 151 ---------- rcli/rexec.py | 44 --- rcli/rshell.py | 38 --- rcli/utils.py | 149 ---------- setup.py | 4 - sonic-utilities-data/bash_completion.d/rexec | 21 -- sonic-utilities-data/bash_completion.d/rshell | 21 -- tests/chassis_modules_test.py | 12 +- tests/mock_tables/asic0/state_db.json | 12 - tests/mock_tables/chassis_state_db.json | 9 - tests/mock_tables/database_config.json | 5 - tests/mock_tables/state_db.json | 4 +- tests/remote_cli_test.py | 260 ------------------ 14 files changed, 8 insertions(+), 722 deletions(-) delete mode 100644 rcli/__init__.py delete mode 100644 rcli/linecard.py delete mode 100644 rcli/rexec.py delete mode 100644 rcli/rshell.py delete mode 100644 rcli/utils.py delete mode 100644 sonic-utilities-data/bash_completion.d/rexec delete mode 100644 sonic-utilities-data/bash_completion.d/rshell delete mode 100644 tests/mock_tables/chassis_state_db.json delete mode 100644 tests/remote_cli_test.py diff --git a/rcli/__init__.py b/rcli/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/rcli/linecard.py b/rcli/linecard.py deleted file mode 100644 index fdc6882e..00000000 --- a/rcli/linecard.py +++ /dev/null @@ -1,151 +0,0 @@ -import click -import os -import paramiko -import sys -import select -import socket -import sys -import termios -import tty - -from .utils import get_linecard_ip -from paramiko.py3compat import u -from paramiko import Channel - -EMPTY_OUTPUTS = ['', '\x1b[?2004l\r'] - -class Linecard: - - def __init__(self, linecard_name, username, password): - """ - Initialize Linecard object and store credentials, connection, and channel - - :param linecard_name: The name of the linecard you want to connect to - :param username: The username to use to connect to the linecard - :param password: The linecard password. If password not provided, it - will prompt the user for it - :param use_ssh_keys: Whether or not to use SSH keys to authenticate. - """ - self.ip = get_linecard_ip(linecard_name) - - if not self.ip: - sys.exit(1) - - self.linecard_name = linecard_name - self.username = username - self.password = password - - self.connection = self._connect() - - - def _connect(self): - connection = paramiko.SSHClient() - # if ip address not in known_hosts, ignore known_hosts error - connection.set_missing_host_key_policy(paramiko.AutoAddPolicy()) - try: - connection.connect(self.ip, username=self.username, password=self.password) - except paramiko.ssh_exception.NoValidConnectionsError as e: - connection = None - click.echo(e) - return connection - - def _get_password(self): - """ - Prompts the user for a password, and returns the password - - :param username: The username that we want to get the password for - :type username: str - :return: The password for the username. - """ - - return getpass( - "Password for username '{}': ".format(self.username), - # Pass in click stdout stream - this is similar to using click.echo - stream=click.get_text_stream('stdout') - ) - - def _set_tty_params(self): - tty.setraw(sys.stdin.fileno()) - tty.setcbreak(sys.stdin.fileno()) - - def _is_data_to_read(self, read): - if self.channel in read: - return True - return False - - def _is_data_to_write(self, read): - if sys.stdin in read: - return True - return False - - def _write_to_terminal(self, data): - # Write channel output to terminal - sys.stdout.write(data) - sys.stdout.flush() - - def _start_interactive_shell(self): - oldtty = termios.tcgetattr(sys.stdin) - try: - self._set_tty_params() - self.channel.settimeout(0.0) - - while True: - #Continuously wait for commands and execute them - read, write, ex = select.select([self.channel, sys.stdin], [], []) - if self._is_data_to_read(read): - try: - # Get output from channel - x = u(self.channel.recv(1024)) - if len(x) == 0: - # logout message will be displayed - break - self._write_to_terminal(x) - except socket.timeout as e: - click.echo("Connection timed out") - break - if self._is_data_to_write(read): - # If we are able to send input, get the input from stdin - x = sys.stdin.read(1) - if len(x) == 0: - break - # Send the input to the channel - self.channel.send(x) - finally: - # Now that the channel has been exited, return to the previously-saved old tty - termios.tcsetattr(sys.stdin, termios.TCSADRAIN, oldtty) - pass - - - def start_shell(self) -> None: - """ - Opens a session, gets a pseudo-terminal, invokes a shell, and then - attaches the host shell to the remote shell. - """ - # Create shell session - self.channel = self.connection.get_transport().open_session() - self.channel.get_pty() - self.channel.invoke_shell() - # Use Paramiko Interactive script to connect to the shell - self._start_interactive_shell() - # After user exits interactive shell, close the connection - self.connection.close() - - - def execute_cmd(self, command) -> str: - """ - Takes a command as an argument, executes it on the remote shell, and returns the output - - :param command: The command to execute on the remote shell - :return: The output of the command. - """ - # Execute the command and gather errors and output - _, stdout, stderr = self.connection.exec_command(command + "\n") - output = stdout.read().decode('utf-8') - - if stderr: - # Error was present, add message to output - output += stderr.read().decode('utf-8') - - # Close connection and return output - self.connection.close() - return output diff --git a/rcli/rexec.py b/rcli/rexec.py deleted file mode 100644 index fb56df83..00000000 --- a/rcli/rexec.py +++ /dev/null @@ -1,44 +0,0 @@ -import os -import click -import paramiko -import sys - -from .linecard import Linecard -from rcli import utils as rcli_utils -from sonic_py_common import device_info - -@click.command() -@click.argument('linecard_names', nargs=-1, type=str, required=True) -@click.option('-c', '--command', type=str, required=True) -def cli(linecard_names, command): - """ - Executes a command on one or many linecards - - :param linecard_names: A list of linecard names to execute the command on, - use `all` to execute on all linecards. - :param command: The command to execute on the linecard(s) - """ - if not device_info.is_chassis(): - click.echo("This commmand is only supported Chassis") - sys.exit(1) - - username = os.getlogin() - password = rcli_utils.get_password(username) - - if list(linecard_names) == ["all"]: - # Get all linecard names using autocompletion helper - linecard_names = rcli_utils.get_all_linecards(None, None, "") - - # Iterate through each linecard, execute command, and gather output - for linecard_name in linecard_names: - try: - lc = Linecard(linecard_name, username, password) - if lc.connection: - # If connection was created, connection exists. Otherwise, user will see an error message. - click.echo("======== {} output: ========".format(lc.linecard_name)) - click.echo(lc.execute_cmd(command)) - except paramiko.ssh_exception.AuthenticationException: - click.echo("Login failed on '{}' with username '{}'".format(linecard_name, lc.username)) - -if __name__=="__main__": - cli(prog_name='rexec') diff --git a/rcli/rshell.py b/rcli/rshell.py deleted file mode 100644 index decda6cd..00000000 --- a/rcli/rshell.py +++ /dev/null @@ -1,38 +0,0 @@ -import os -import click -import paramiko -import sys - -from .linecard import Linecard -from sonic_py_common import device_info -from rcli import utils as rcli_utils - - -@click.command() -@click.argument('linecard_name', type=str, autocompletion=rcli_utils.get_all_linecards) -def cli(linecard_name): - """ - Open interactive shell for one linecard - - :param linecard_name: The name of the linecard to connect to - """ - if not device_info.is_chassis(): - click.echo("This commmand is only supported Chassis") - sys.exit(1) - - username = os.getlogin() - password = rcli_utils.get_password(username) - - try: - lc =Linecard(linecard_name, username, password) - if lc.connection: - click.echo("Connecting to {}".format(lc.linecard_name)) - # If connection was created, connection exists. Otherwise, user will see an error message. - lc.start_shell() - click.echo("Connection Closed") - except paramiko.ssh_exception.AuthenticationException: - click.echo("Login failed on '{}' with username '{}'".format(linecard_name, lc.username)) - - -if __name__=="__main__": - cli(prog_name='rshell') diff --git a/rcli/utils.py b/rcli/utils.py deleted file mode 100644 index 933043d0..00000000 --- a/rcli/utils.py +++ /dev/null @@ -1,149 +0,0 @@ -import click -from getpass import getpass -import os -import sys - -from swsscommon.swsscommon import SonicV2Connector - -CHASSIS_MODULE_INFO_TABLE = 'CHASSIS_MODULE_TABLE' -CHASSIS_MODULE_INFO_KEY_TEMPLATE = 'CHASSIS_MODULE {}' -CHASSIS_MODULE_INFO_DESC_FIELD = 'desc' -CHASSIS_MODULE_INFO_SLOT_FIELD = 'slot' -CHASSIS_MODULE_INFO_OPERSTATUS_FIELD = 'oper_status' -CHASSIS_MODULE_INFO_ADMINSTATUS_FIELD = 'admin_status' - -CHASSIS_MIDPLANE_INFO_TABLE = 'CHASSIS_MIDPLANE_TABLE' -CHASSIS_MIDPLANE_INFO_IP_FIELD = 'ip_address' -CHASSIS_MIDPLANE_INFO_ACCESS_FIELD = 'access' - -CHASSIS_MODULE_HOSTNAME_TABLE = 'CHASSIS_MODULE_HOSTNAME_TABLE' -CHASSIS_MODULE_HOSTNAME = 'module_hostname' - -def connect_to_chassis_state_db(): - chassis_state_db = SonicV2Connector(host="127.0.0.1") - chassis_state_db.connect(chassis_state_db.CHASSIS_STATE_DB) - return chassis_state_db - - -def connect_state_db(): - state_db = SonicV2Connector(host="127.0.0.1") - state_db.connect(state_db.STATE_DB) - return state_db - - - -def get_linecard_module_name_from_hostname(linecard_name: str): - - chassis_state_db = connect_to_chassis_state_db() - - keys = chassis_state_db.keys(chassis_state_db.CHASSIS_STATE_DB , '{}|{}'.format(CHASSIS_MODULE_HOSTNAME_TABLE, '*')) - for key in keys: - module_name = key.split('|')[1] - hostname = chassis_state_db.get(chassis_state_db.CHASSIS_STATE_DB, key, CHASSIS_MODULE_HOSTNAME) - if hostname.replace('-', '').lower() == linecard_name.replace('-', '').lower(): - return module_name - - return None - -def get_linecard_ip(linecard_name: str): - """ - Given a linecard name, lookup its IP address in the midplane table - - :param linecard_name: The name of the linecard you want to connect to - :type linecard_name: str - :return: IP address of the linecard - """ - # Adapted from `show chassis modules midplane-status` command logic: - # https://github.com/sonic-net/sonic-utilities/blob/master/show/chassis_modules.py - - # if the user passes linecard hostname, then try to get the module name for that linecard - module_name = get_linecard_module_name_from_hostname(linecard_name) - # if the module name cannot be found from host, assume the user has passed module name - if module_name is None: - module_name = linecard_name - module_ip, module_access = get_module_ip_and_access_from_state_db(module_name) - - if not module_ip: - click.echo('Linecard {} not found'.format(linecard_name)) - return None - - if module_access != 'True': - click.echo('Linecard {} not accessible'.format(linecard_name)) - return None - - - return module_ip - -def get_module_ip_and_access_from_state_db(module_name): - state_db = connect_state_db() - data_dict = state_db.get_all( - state_db.STATE_DB, '{}|{}'.format(CHASSIS_MIDPLANE_INFO_TABLE,module_name )) - if data_dict is None: - return None, None - - linecard_ip = data_dict.get(CHASSIS_MIDPLANE_INFO_IP_FIELD, None) - access = data_dict.get(CHASSIS_MIDPLANE_INFO_ACCESS_FIELD, None) - - return linecard_ip, access - - -def get_all_linecards(ctx, args, incomplete) -> list: - """ - Return a list of all accessible linecard names. This function is used to - autocomplete linecard names in the CLI. - - :param ctx: The Click context object that is passed to the command function - :param args: The arguments passed to the Click command - :param incomplete: The string that the user has typed so far - :return: A list of all accessible linecard names. - """ - # Adapted from `show chassis modules midplane-status` command logic: - # https://github.com/sonic-net/sonic-utilities/blob/master/show/chassis_modules.py - - - chassis_state_db = connect_to_chassis_state_db() - state_db = connect_state_db() - - linecards = [] - keys = state_db.keys(state_db.STATE_DB,'{}|*'.format(CHASSIS_MIDPLANE_INFO_TABLE)) - for key in keys: - key_list = key.split('|') - if len(key_list) != 2: # error data in DB, log it and ignore - click.echo('Warn: Invalid Key {} in {} table'.format(key, CHASSIS_MIDPLANE_INFO_TABLE )) - continue - module_name = key_list[1] - linecard_ip, access = get_module_ip_and_access_from_state_db(module_name) - if linecard_ip is None: - continue - - if access != "True" : - continue - - # get the hostname for this module - hostname = chassis_state_db.get(chassis_state_db.CHASSIS_STATE_DB, '{}|{}'.format(CHASSIS_MODULE_HOSTNAME_TABLE, module_name), CHASSIS_MODULE_HOSTNAME) - if hostname: - linecards.append(hostname) - else: - linecards.append(module_name) - - # Return a list of all matched linecards - return [lc for lc in linecards if incomplete in lc] - - -def get_password(username=None): - """ - Prompts the user for a password, and returns the password - - :param username: The username that we want to get the password for - :type username: str - :return: The password for the username. - """ - - if username is None: - username =os.getlogin() - - return getpass( - "Password for username '{}': ".format(username), - # Pass in click stdout stream - this is similar to using click.echo - stream=click.get_text_stream('stdout') - ) \ No newline at end of file diff --git a/setup.py b/setup.py index cdeddb8f..ea0e949a 100644 --- a/setup.py +++ b/setup.py @@ -74,7 +74,6 @@ 'pddf_thermalutil', 'pddf_ledutil', 'syslog_util', - 'rcli', 'show', 'show.interfaces', 'show.plugins', @@ -207,8 +206,6 @@ 'pddf_psuutil = pddf_psuutil.main:cli', 'pddf_thermalutil = pddf_thermalutil.main:cli', 'pddf_ledutil = pddf_ledutil.main:cli', - 'rexec = rcli.rexec:cli', - 'rshell = rcli.rshell:cli', 'show = show.main:cli', 'sonic-clear = clear.main:cli', 'sonic-installer = sonic_installer.main:sonic_installer', @@ -237,7 +234,6 @@ 'natsort>=6.2.1', # 6.2.1 is the last version which supports Python 2. Can update once we no longer support Python 2 'netaddr>=0.8.0', 'netifaces>=0.10.7', - 'paramiko==2.11.0', 'pexpect>=4.8.0', 'semantic-version>=2.8.5', 'prettyprinter>=0.18.0', diff --git a/sonic-utilities-data/bash_completion.d/rexec b/sonic-utilities-data/bash_completion.d/rexec deleted file mode 100644 index 1199fd06..00000000 --- a/sonic-utilities-data/bash_completion.d/rexec +++ /dev/null @@ -1,21 +0,0 @@ -_rexec_completion() { - local IFS=$' -' - COMPREPLY=( $( env COMP_WORDS="${COMP_WORDS[*]}" \ - COMP_CWORD=$COMP_CWORD \ - _REXEC_COMPLETE=complete $1 ) ) - return 0 -} - -_rexec_completionetup() { - local COMPLETION_OPTIONS="" - local BASH_VERSION_ARR=(${BASH_VERSION//./ }) - # Only BASH version 4.4 and later have the nosort option. - if [ ${BASH_VERSION_ARR[0]} -gt 4 ] || ([ ${BASH_VERSION_ARR[0]} -eq 4 ] && [ ${BASH_VERSION_ARR[1]} -ge 4 ]); then - COMPLETION_OPTIONS="-o nosort" - fi - - complete $COMPLETION_OPTIONS -F _rexec_completion rexec -} - -_rexec_completionetup; \ No newline at end of file diff --git a/sonic-utilities-data/bash_completion.d/rshell b/sonic-utilities-data/bash_completion.d/rshell deleted file mode 100644 index 012f754d..00000000 --- a/sonic-utilities-data/bash_completion.d/rshell +++ /dev/null @@ -1,21 +0,0 @@ -_rshell_completion() { - local IFS=$' -' - COMPREPLY=( $( env COMP_WORDS="${COMP_WORDS[*]}" \ - COMP_CWORD=$COMP_CWORD \ - _RSHELL_COMPLETE=complete $1 ) ) - return 0 -} - -_rshell_completionetup() { - local COMPLETION_OPTIONS="" - local BASH_VERSION_ARR=(${BASH_VERSION//./ }) - # Only BASH version 4.4 and later have the nosort option. - if [ ${BASH_VERSION_ARR[0]} -gt 4 ] || ([ ${BASH_VERSION_ARR[0]} -eq 4 ] && [ ${BASH_VERSION_ARR[1]} -ge 4 ]); then - COMPLETION_OPTIONS="-o nosort" - fi - - complete $COMPLETION_OPTIONS -F _rshell_completion rshell -} - -_rshell_completionetup; \ No newline at end of file diff --git a/tests/chassis_modules_test.py b/tests/chassis_modules_test.py index fa8cd608..e6dbe569 100644 --- a/tests/chassis_modules_test.py +++ b/tests/chassis_modules_test.py @@ -33,11 +33,11 @@ """ show_chassis_midplane_output="""\ - Name IP-Address Reachability ----------- ------------- -------------- -LINE-CARD0 192.168.1.100 True -LINE-CARD1 192.168.1.2 False -LINE-CARD2 192.168.1.1 True + Name IP-Address Reachability +----------- ------------- -------------- + LINE-CARD0 192.168.1.1 True + LINE-CARD1 192.168.1.2 False +SUPERVISOR0 192.168.1.100 True """ show_chassis_system_ports_output_asic0="""\ @@ -225,7 +225,7 @@ def test_midplane_show_all_count_lines(self): result = runner.invoke(show.cli.commands["chassis"].commands["modules"].commands["midplane-status"], []) print(result.output) result_lines = result.output.strip('\n').split('\n') - modules = ["LINE-CARD0", "LINE-CARD1", "LINE-CARD2"] + modules = ["LINE-CARD0", "LINE-CARD1", "SUPERVISOR0"] for i, module in enumerate(modules): assert module in result_lines[i + warning_lines + header_lines] assert len(result_lines) == warning_lines + header_lines + len(modules) diff --git a/tests/mock_tables/asic0/state_db.json b/tests/mock_tables/asic0/state_db.json index 6ae0258b..559af048 100644 --- a/tests/mock_tables/asic0/state_db.json +++ b/tests/mock_tables/asic0/state_db.json @@ -287,18 +287,6 @@ "REMOTE_MOD": "0", "REMOTE_PORT": "93" }, - "CHASSIS_MIDPLANE_TABLE|LINE-CARD0": { - "ip_address": "127.0.0.1", - "access": "True" - }, - "CHASSIS_MIDPLANE_TABLE|LINE-CARD1": { - "ip_address": "127.0.0.1", - "access": "True" - }, - "CHASSIS_MIDPLANE_TABLE|LINE-CARD2": { - "ip_address": "127.0.0.1", - "access": "False" - }, "ACL_TABLE_TABLE|DATAACL_5" : { "status": "Active" }, diff --git a/tests/mock_tables/chassis_state_db.json b/tests/mock_tables/chassis_state_db.json deleted file mode 100644 index 5178c49c..00000000 --- a/tests/mock_tables/chassis_state_db.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "CHASSIS_MODULE_HOSTNAME_TABLE|LINE-CARD0": { - "module_hostname": "sonic-lc1" - }, - "CHASSIS_MODULE_HOSTNAME_TABLE|LINE-CARD1": { - "module_hostname": "sonic-lc2" - } - -} \ No newline at end of file diff --git a/tests/mock_tables/database_config.json b/tests/mock_tables/database_config.json index f55c0734..d12ba054 100644 --- a/tests/mock_tables/database_config.json +++ b/tests/mock_tables/database_config.json @@ -56,11 +56,6 @@ "id" : 12, "separator": "|", "instance" : "redis" - }, - "CHASSIS_STATE_DB" : { - "id" : 13, - "separator": "|", - "instance" : "redis" } }, "VERSION" : "1.1" diff --git a/tests/mock_tables/state_db.json b/tests/mock_tables/state_db.json index 1d8f4629..cd1a194b 100644 --- a/tests/mock_tables/state_db.json +++ b/tests/mock_tables/state_db.json @@ -935,11 +935,11 @@ "max_queues": "20", "max_priority_groups": "8" }, - "CHASSIS_MIDPLANE_TABLE|LINE-CARD0": { + "CHASSIS_MIDPLANE_TABLE|SUPERVISOR0": { "ip_address": "192.168.1.100", "access": "True" }, - "CHASSIS_MIDPLANE_TABLE|LINE-CARD2": { + "CHASSIS_MIDPLANE_TABLE|LINE-CARD0": { "ip_address": "192.168.1.1", "access": "True" }, diff --git a/tests/remote_cli_test.py b/tests/remote_cli_test.py deleted file mode 100644 index 67545dd1..00000000 --- a/tests/remote_cli_test.py +++ /dev/null @@ -1,260 +0,0 @@ -import os -from click.testing import CliRunner -import paramiko -from rcli import rexec -from rcli import rshell -from rcli import linecard -from rcli import utils as rcli_utils -import sys -from io import BytesIO, StringIO -from unittest import mock -import select -import socket -import termios - -MULTI_LC_REXEC_OUTPUT = '''======== sonic-lc1 output: ======== -hello world -======== LINE-CARD2 output: ======== -hello world -''' -REXEC_HELP = '''Usage: cli [OPTIONS] LINECARD_NAMES... - - Executes a command on one or many linecards - - :param linecard_names: A list of linecard names to execute the command on, - use `all` to execute on all linecards. :param command: The command to - execute on the linecard(s) - -Options: - -c, --command TEXT [required] - --help Show this message and exit. -''' - -def mock_exec_command(): - - mock_stdout = BytesIO(b"""hello world""") - mock_stderr = BytesIO() - return '', mock_stdout, None - -def mock_exec_error_cmd(): - mock_stdout = BytesIO() - mock_stderr = BytesIO(b"""Command not found""") - return '', mock_stdout, mock_stderr - -def mock_connection_channel(): - c = mock.MagicMock(return_value="channel") - c.get_pty = mock.MagicMock(return_value='') - c.invoke_shell = mock.MagicMock() - c.recv = mock.MagicMock(side_effect=['abcd', '']) - return c - -def mock_connection_channel_with_timeout(): - c = mock.MagicMock(return_value="channel") - c.get_pty = mock.MagicMock(return_value='') - c.invoke_shell = mock.MagicMock() - c.recv = mock.MagicMock(side_effect=['abcd', socket.timeout(10, 'timeout')]) - return c - -def mock_paramiko_connection(channel): - # Create a mock to return for connection. - conn = mock.MagicMock() - #create a mock return for transport - t = mock.MagicMock() - t.open_session = mock.MagicMock(return_value=channel) - conn.get_transport = mock.MagicMock(return_value=t) - conn.connect = mock.MagicMock() - conn.close = mock.MagicMock() - return conn - -class TestRemoteExec(object): - @classmethod - def setup_class(cls): - print("SETUP") - from .mock_tables import dbconnector - dbconnector.load_database_config() - - @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) - @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) - @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) - #@mock.patch.object(linecard.Linecard, '_get_password', mock.MagicMock(return_value='dummmy')) - @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) - @mock.patch.object(paramiko.SSHClient, 'exec_command', mock.MagicMock(return_value = mock_exec_command())) - def test_rexec_with_module_name(self): - runner = CliRunner() - LINECARD_NAME = "LINE-CARD0" - result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "pwd"]) - print(result.output) - assert result.exit_code == 0, result.output - assert "hello world" in result.output - - @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) - @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) - @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) - @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) - @mock.patch.object(paramiko.SSHClient, 'exec_command', mock.MagicMock(return_value = mock_exec_command())) - def test_rexec_with_hostname(self): - runner = CliRunner() - LINECARD_NAME = "sonic-lc1" - result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "pwd"]) - print(result.output) - assert result.exit_code == 0, result.output - assert "hello world" in result.output - - @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) - @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) - @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) - @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) - @mock.patch.object(paramiko.SSHClient, 'exec_command', mock.MagicMock(return_value = mock_exec_error_cmd())) - def test_rexec_error_with_module_name(self): - runner = CliRunner() - LINECARD_NAME = "LINE-CARD0" - result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "pwd"]) - print(result.output) - assert result.exit_code == 0, result.output - assert "Command not found" in result.output - - def test_rexec_error(self): - runner = CliRunner() - LINECARD_NAME = "LINE-CARD0" - result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "show version"]) - print(result.output) - assert result.exit_code == 1, result.output - assert "This commmand is only supported Chassis" in result.output - - @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) - @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) - @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) - @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) - @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value = "hello world")) - def test_rexec_all(self): - runner = CliRunner() - LINECARD_NAME = "all" - result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "show version"]) - print(result.output) - assert result.exit_code == 0, result.output - assert MULTI_LC_REXEC_OUTPUT == result.output - - @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) - @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) - @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) - @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) - @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value = "hello world")) - def test_rexec_invalid_lc(self): - runner = CliRunner() - LINECARD_NAME = "sonic-lc-3" - result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "show version"]) - print(result.output) - assert result.exit_code == 1, result.output - assert "Linecard sonic-lc-3 not found\n" == result.output - - - @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) - @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) - @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) - @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) - @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value = "hello world")) - def test_rexec_unreachable_lc(self): - runner = CliRunner() - LINECARD_NAME = "LINE-CARD1" - result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "show version"]) - print(result.output) - assert result.exit_code == 1, result.output - assert "Linecard LINE-CARD1 not accessible\n" == result.output - - @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) - @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) - @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) - @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) - @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value = "hello world")) - def test_rexec_help(self): - runner = CliRunner() - LINECARD_NAME = "LINE-CARD1" - result = runner.invoke(rexec.cli, ["--help"]) - print(result.output) - assert result.exit_code == 0, result.output - assert REXEC_HELP == result.output - - @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) - @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) - @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) - @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock(side_effect=paramiko.ssh_exception.NoValidConnectionsError({('192.168.0.1', - 22): "None" }))) - @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value = "hello world")) - def test_rexec_exception(self): - runner = CliRunner() - LINECARD_NAME = "sonic-lc1" - result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "show version"]) - print(result.output) - assert result.exit_code == 0, result.output - assert "[Errno None] Unable to connect to port 22 on 192.168.0.1\n" == result.output - - -class TestRemoteCLI(object): - @classmethod - def setup_class(cls): - print("SETUP") - from .mock_tables import dbconnector - dbconnector.load_database_config() - - @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) - @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) - @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) - @mock.patch.object(linecard.Linecard, '_set_tty_params', mock.MagicMock()) - @mock.patch.object(termios, 'tcsetattr', mock.MagicMock()) - @mock.patch.object(termios, 'tcgetattr', mock.MagicMock(return_value=[])) - def test_rcli_with_module_name(self): - runner = CliRunner() - LINECARD_NAME = "LINE-CARD0" - channel = mock_connection_channel() - - with mock.patch('paramiko.SSHClient', mock.MagicMock(return_value=mock_paramiko_connection(channel))), \ - mock.patch('select.select', mock.MagicMock(return_value=([channel], [], []))): - result = runner.invoke(rshell.cli, [LINECARD_NAME]) - print(result.output) - assert result.exit_code == 0, result.output - assert "abcd" in result.output - - - @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) - @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) - @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) - @mock.patch.object(linecard.Linecard, '_set_tty_params', mock.MagicMock()) - @mock.patch.object(termios, 'tcsetattr', mock.MagicMock()) - @mock.patch.object(termios, 'tcgetattr', mock.MagicMock(return_value=[])) - def test_rcli_with_module_name_2(self): - runner = CliRunner() - LINECARD_NAME = "LINE-CARD0" - channel = mock_connection_channel() - - with mock.patch('paramiko.SSHClient', mock.MagicMock(return_value=mock_paramiko_connection(channel))), \ - mock.patch('select.select', mock.MagicMock(side_effect=[([], [], []), ([channel], [], []),([channel], [], [])])): - result = runner.invoke(rshell.cli, [LINECARD_NAME]) - print(result.output) - assert result.exit_code == 0, result.output - assert "Connecting to LINE-CARD0" in result.output - - @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) - @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) - @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) - @mock.patch.object(linecard.Linecard, '_set_tty_params', mock.MagicMock()) - @mock.patch.object(termios, 'tcsetattr', mock.MagicMock()) - @mock.patch.object(termios, 'tcgetattr', mock.MagicMock(return_value=[])) - def test_rcli_with_module_name_3(self): - runner = CliRunner() - LINECARD_NAME = "LINE-CARD0" - channel = mock_connection_channel_with_timeout() - - with mock.patch('paramiko.SSHClient', mock.MagicMock(return_value=mock_paramiko_connection(channel))), \ - mock.patch('select.select', mock.MagicMock(return_value=([channel], [], []))): - result = runner.invoke(rshell.cli, [LINECARD_NAME]) - print(result.output) - assert result.exit_code == 0, result.output - assert "Connecting to LINE-CARD0" in result.output - - def test_rcli_error(self): - runner = CliRunner() - LINECARD_NAME = "LINE-CARD0" - result = runner.invoke(rshell.cli, [LINECARD_NAME]) - print(result.output) - assert result.exit_code == 1, result.output - assert "This commmand is only supported Chassis" in result.output \ No newline at end of file From 3a9995b6213d893f60898183160bbdf22efca153 Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Thu, 11 May 2023 14:03:51 +0800 Subject: [PATCH 146/312] [config]Support multi-asic Golden Config override with fix (#2825) ADO: 17746282 #### What I did Support multi-asic Golden Config Override with fix based on https://github.com/sonic-net/sonic-utilities/pull/2738 #### How I did it Add ConfigMgmt support for ASIC validation. Modify override config cli to support multi-asic. #### How to verify it Unit test: ``` tests/config_override_test.py::TestConfigOverrideMultiasic::test_macsec_override PASSED [ 8%] tests/config_override_test.py::TestConfigOverrideMultiasic::test_device_metadata_table_rm PASSED [ 8%] ``` --- config/config_mgmt.py | 19 +++-- config/main.py | 63 ++++++++------- .../multi_asic_dm_rm.json | 11 +++ .../multi_asic_macsec_ov.json | 23 ++++++ tests/config_override_test.py | 77 ++++++++++++++++++- 5 files changed, 159 insertions(+), 34 deletions(-) create mode 100644 tests/config_override_input/multi_asic_dm_rm.json create mode 100644 tests/config_override_input/multi_asic_macsec_ov.json diff --git a/config/config_mgmt.py b/config/config_mgmt.py index a10393c7..4e3115bd 100644 --- a/config/config_mgmt.py +++ b/config/config_mgmt.py @@ -35,7 +35,8 @@ class ConfigMgmt(): to verify config for the commands which are capable of change in config DB. ''' - def __init__(self, source="configDB", debug=False, allowTablesWithoutYang=True, sonicYangOptions=0): + def __init__(self, source="configDB", debug=False, allowTablesWithoutYang=True, + sonicYangOptions=0, configdb=None): ''' Initialise the class, --read the config, --load in data tree. @@ -44,6 +45,7 @@ def __init__(self, source="configDB", debug=False, allowTablesWithoutYang=True, debug (bool): verbose mode. allowTablesWithoutYang (bool): allow tables without yang model in config or not. + configdb: configdb to work on. Returns: void @@ -54,6 +56,7 @@ def __init__(self, source="configDB", debug=False, allowTablesWithoutYang=True, self.source = source self.allowTablesWithoutYang = allowTablesWithoutYang self.sonicYangOptions = sonicYangOptions + self.configdb = configdb # logging vars self.SYSLOG_IDENTIFIER = "ConfigMgmt" @@ -194,8 +197,11 @@ def readConfigDB(self): self.sysLog(doPrint=True, msg='Reading data from Redis configDb') # Read from config DB on sonic switch data = dict() - configdb = ConfigDBConnector() - configdb.connect() + if self.configdb is None: + configdb = ConfigDBConnector() + configdb.connect() + else: + configdb = self.configdb sonic_cfggen.deep_update(data, sonic_cfggen.FormatConverter.db_to_output(configdb.get_config())) self.configdbJsonIn = sonic_cfggen.FormatConverter.to_serialized(data) self.sysLog(syslog.LOG_DEBUG, 'Reading Input from ConfigDB {}'.\ @@ -215,8 +221,11 @@ def writeConfigDB(self, jDiff): ''' self.sysLog(doPrint=True, msg='Writing in Config DB') data = dict() - configdb = ConfigDBConnector() - configdb.connect(False) + if self.configdb is None: + configdb = ConfigDBConnector() + configdb.connect(False) + else: + configdb = self.configdb sonic_cfggen.deep_update(data, sonic_cfggen.FormatConverter.to_deserialized(jDiff)) self.sysLog(msg="Write in DB: {}".format(data)) configdb.mod_config(sonic_cfggen.FormatConverter.output_to_db(data)) diff --git a/config/main.py b/config/main.py index cfe862af..5b9bd300 100644 --- a/config/main.py +++ b/config/main.py @@ -1849,36 +1849,45 @@ def override_config_table(db, input_config_db, dry_run): fg='magenta') sys.exit(1) - config_db = db.cfgdb - - # Read config from configDB - current_config = config_db.get_config() - # Serialize to the same format as json input - sonic_cfggen.FormatConverter.to_serialized(current_config) - - updated_config = update_config(current_config, config_input) + cfgdb_clients = db.cfgdb_clients + + for ns, config_db in cfgdb_clients.items(): + # Read config from configDB + current_config = config_db.get_config() + # Serialize to the same format as json input + sonic_cfggen.FormatConverter.to_serialized(current_config) + + if multi_asic.is_multi_asic(): + # Golden Config will use "localhost" to represent host name + if ns == DEFAULT_NAMESPACE: + ns_config_input = config_input["localhost"] + else: + ns_config_input = config_input[ns] + else: + ns_config_input = config_input + updated_config = update_config(current_config, ns_config_input) - yang_enabled = device_info.is_yang_config_validation_enabled(config_db) - if yang_enabled: - # The ConfigMgmt will load YANG and running - # config during initialization. - try: - cm = ConfigMgmt() - cm.validateConfigData() - except Exception as ex: - click.secho("Failed to validate running config. Error: {}".format(ex), fg="magenta") - sys.exit(1) + yang_enabled = device_info.is_yang_config_validation_enabled(config_db) + if yang_enabled: + # The ConfigMgmt will load YANG and running + # config during initialization. + try: + cm = ConfigMgmt(configdb=config_db) + cm.validateConfigData() + except Exception as ex: + click.secho("Failed to validate running config. Error: {}".format(ex), fg="magenta") + sys.exit(1) - # Validate input config - validate_config_by_cm(cm, config_input, "config_input") - # Validate updated whole config - validate_config_by_cm(cm, updated_config, "updated_config") + # Validate input config + validate_config_by_cm(cm, ns_config_input, "config_input") + # Validate updated whole config + validate_config_by_cm(cm, updated_config, "updated_config") - if dry_run: - print(json.dumps(updated_config, sort_keys=True, - indent=4, cls=minigraph_encoder)) - else: - override_config_db(config_db, config_input) + if dry_run: + print(json.dumps(updated_config, sort_keys=True, + indent=4, cls=minigraph_encoder)) + else: + override_config_db(config_db, ns_config_input) def validate_config_by_cm(cm, config_json, jname): diff --git a/tests/config_override_input/multi_asic_dm_rm.json b/tests/config_override_input/multi_asic_dm_rm.json new file mode 100644 index 00000000..a4c0dd5f --- /dev/null +++ b/tests/config_override_input/multi_asic_dm_rm.json @@ -0,0 +1,11 @@ +{ + "localhost": { + "DEVICE_METADATA": {} + }, + "asic0": { + "DEVICE_METADATA": {} + }, + "asic1": { + "DEVICE_METADATA": {} + } +} diff --git a/tests/config_override_input/multi_asic_macsec_ov.json b/tests/config_override_input/multi_asic_macsec_ov.json new file mode 100644 index 00000000..ba86f6ef --- /dev/null +++ b/tests/config_override_input/multi_asic_macsec_ov.json @@ -0,0 +1,23 @@ +{ + "localhost": { + "MACSEC_PROFILE": { + "profile": { + "key": "value" + } + } + }, + "asic0": { + "MACSEC_PROFILE": { + "profile": { + "key": "value" + } + } + }, + "asic1": { + "MACSEC_PROFILE": { + "profile": { + "key": "value" + } + } + } +} diff --git a/tests/config_override_test.py b/tests/config_override_test.py index 1b058ace..ca14ae75 100644 --- a/tests/config_override_test.py +++ b/tests/config_override_test.py @@ -1,6 +1,7 @@ import os import json import filecmp +import importlib import config.main as config from click.testing import CliRunner @@ -20,6 +21,8 @@ RUNNING_CONFIG_YANG_FAILURE = os.path.join(DATA_DIR, "running_config_yang_failure.json") GOLDEN_INPUT_YANG_FAILURE = os.path.join(DATA_DIR, "golden_input_yang_failure.json") FINAL_CONFIG_YANG_FAILURE = os.path.join(DATA_DIR, "final_config_yang_failure.json") +MULTI_ASIC_MACSEC_OV = os.path.join(DATA_DIR, "multi_asic_macsec_ov.json") +MULTI_ASIC_DEVICE_METADATA_RM = os.path.join(DATA_DIR, "multi_asic_dm_rm.json") # Load sonic-cfggen from source since /usr/local/bin/sonic-cfggen does not have .py extension. sonic_cfggen = load_module_from_source('sonic_cfggen', '/usr/local/bin/sonic-cfggen') @@ -173,7 +176,7 @@ def test_yang_verification_enabled(self): def is_yang_config_validation_enabled_side_effect(filename): return True - def config_mgmt_side_effect(): + def config_mgmt_side_effect(configdb): return config_mgmt.ConfigMgmt(source=CONFIG_DB_JSON_FILE) db = Db() @@ -232,7 +235,7 @@ def check_yang_verification_failure(self, db, config, running_config, def read_json_file_side_effect(filename): return golden_config - def config_mgmt_side_effect(): + def config_mgmt_side_effect(configdb): return config_mgmt.ConfigMgmt(source=CONFIG_DB_JSON_FILE) # ConfigMgmt will call ConfigDBConnector to load default config_db.json. @@ -257,3 +260,73 @@ def teardown_class(cls): print("TEARDOWN") os.environ["UTILITIES_UNIT_TESTING"] = "0" return + + +class TestConfigOverrideMultiasic(object): + @classmethod + def setup_class(cls): + print("SETUP") + os.environ["UTILITIES_UNIT_TESTING"] = "1" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "multi_asic" + # change to multi asic config + from .mock_tables import dbconnector + from .mock_tables import mock_multi_asic + importlib.reload(mock_multi_asic) + dbconnector.load_namespace_config() + return + + def test_macsec_override(self): + def read_json_file_side_effect(filename): + with open(MULTI_ASIC_MACSEC_OV, "r") as f: + macsec_profile = json.load(f) + return macsec_profile + db = Db() + cfgdb_clients = db.cfgdb_clients + + # The profile_content was copied from MULTI_ASIC_MACSEC_OV, where all + # ns sharing the same content: {"profile": {"key": "value"}} + profile_content = {"profile": {"key": "value"}} + + with mock.patch('config.main.read_json_file', + mock.MagicMock(side_effect=read_json_file_side_effect)): + runner = CliRunner() + result = runner.invoke(config.config.commands["override-config-table"], + ['golden_config_db.json'], obj=db) + assert result.exit_code == 0 + + for ns, config_db in cfgdb_clients.items(): + assert config_db.get_config()['MACSEC_PROFILE'] == profile_content + + def test_device_metadata_table_rm(self): + def read_json_file_side_effect(filename): + with open(MULTI_ASIC_DEVICE_METADATA_RM, "r") as f: + device_metadata = json.load(f) + return device_metadata + db = Db() + cfgdb_clients = db.cfgdb_clients + + for ns, config_db in cfgdb_clients.items(): + assert 'DEVICE_METADATA' in config_db.get_config() + + with mock.patch('config.main.read_json_file', + mock.MagicMock(side_effect=read_json_file_side_effect)): + runner = CliRunner() + result = runner.invoke(config.config.commands["override-config-table"], + ['golden_config_db.json'], obj=db) + assert result.exit_code == 0 + + for ns, config_db in cfgdb_clients.items(): + assert 'DEVICE_METADATA' not in config_db.get_config() + + + @classmethod + def teardown_class(cls): + print("TEARDOWN") + os.environ["UTILITIES_UNIT_TESTING"] = "0" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "" + # change back to single asic config + from .mock_tables import dbconnector + from .mock_tables import mock_single_asic + importlib.reload(mock_single_asic) + dbconnector.load_namespace_config() + return From 1e73632d2f61817a1bcbb79fd595863597c4c304 Mon Sep 17 00:00:00 2001 From: isabelmsft <67024108+isabelmsft@users.noreply.github.com> Date: Fri, 12 May 2023 18:16:17 -0700 Subject: [PATCH 147/312] [test]: add UT coverage for GCU (#2818) Add GCU UT coverage to ensure each step of patch sorting is valid --- .../gcu_feature_patch_application_test.py | 24 ++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/tests/generic_config_updater/gcu_feature_patch_application_test.py b/tests/generic_config_updater/gcu_feature_patch_application_test.py index 9a52a047..3f744e20 100644 --- a/tests/generic_config_updater/gcu_feature_patch_application_test.py +++ b/tests/generic_config_updater/gcu_feature_patch_application_test.py @@ -72,6 +72,12 @@ def test_feature_patch_application_failure(self): with self.subTest(name=test_case_name): self.run_single_failure_case_applier(data[test_case_name]) + def create_strict_patch_sorter(self, config): + config_wrapper = self.config_wrapper + config_wrapper.get_config_db_as_json = MagicMock(return_value=config) + patch_wrapper = PatchWrapper(config_wrapper) + return ps.StrictPatchSorter(config_wrapper, patch_wrapper) + def create_patch_applier(self, config): global running_config running_config = copy.deepcopy(config) @@ -86,14 +92,30 @@ def create_patch_applier(self, config): @patch("generic_config_updater.change_applier.set_config") def run_single_success_case_applier(self, data, mock_set, mock_db): current_config = data["current_config"] - mock_set.side_effect = set_entry expected_config = data["expected_config"] patch = jsonpatch.JsonPatch(data["patch"]) + + # Test patch applier + mock_set.side_effect = set_entry patch_applier = self.create_patch_applier(current_config) patch_applier.apply(patch) result_config = patch_applier.config_wrapper.get_config_db_as_json() self.assertEqual(expected_config, result_config) + + # Test steps in change applier + sorter = self.create_strict_patch_sorter(current_config) + actual_changes = sorter.sort(patch) + target_config = patch.apply(current_config) + simulated_config = current_config + + for change in actual_changes: + simulated_config = change.apply(simulated_config) + is_valid, error = self.config_wrapper.validate_config_db_config(simulated_config) + self.assertTrue(is_valid, f"Change will produce invalid config. Error: {error}") + + self.assertEqual(target_config, simulated_config) + self.assertEqual(simulated_config, expected_config) @patch("generic_config_updater.change_applier.get_config_db") def run_single_failure_case_applier(self, data, mock_db): From aeb0dbc1d20f3c94e26109105842f0a1409627ce Mon Sep 17 00:00:00 2001 From: xumia <59720581+xumia@users.noreply.github.com> Date: Sat, 13 May 2023 09:32:14 +0800 Subject: [PATCH 148/312] Fix the invalid variable issue when set-fips in uboot (#2834) What I did Reproduce the issue: /home/admin# sonic-installer set-fips Command: /usr/bin/fw_setenv linuxargs net.ifnames=0 loopfstype=squashfs loop=image-20220531.27/fs.squashfs systemd.unified_cgroup_hierarchy=0 varlog_size=4096 loglevel=4 sonic_fips=1 Error: illegal character '=' in variable name "loopfstype=squashfs" Work item tracking Microsoft ADO (number only): 22333116 How I did it Add the double quotation marks when calling the command. How to verify it It works fine when calling the following command: /usr/bin/fw_setenv linuxargs "net.ifnames=0 loopfstype=squashfs loop=image-20220531.27/fs.squashfs systemd.unified_cgroup_hierarchy=0 varlog_size=4096 loglevel=4 sonic_fips=1" --- sonic_installer/bootloader/uboot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sonic_installer/bootloader/uboot.py b/sonic_installer/bootloader/uboot.py index e4818e53..9420d356 100644 --- a/sonic_installer/bootloader/uboot.py +++ b/sonic_installer/bootloader/uboot.py @@ -89,7 +89,8 @@ def set_fips(self, image, enable): cmdline = out.strip() cmdline = re.sub('^linuxargs=', '', cmdline) cmdline = re.sub(r' sonic_fips=[^\s]', '', cmdline) + " sonic_fips=" + fips - run_command('/usr/bin/fw_setenv linuxargs ' + cmdline) + cmdline = '"' + cmdline + '"' + run_command('/usr/bin/fw_setenv linuxargs ' + cmdline ) click.echo('Done') def get_fips(self, image): From 9e510a835543aaaa2b29e7b878ef514254a2ca3a Mon Sep 17 00:00:00 2001 From: jfeng-arista <98421150+jfeng-arista@users.noreply.github.com> Date: Mon, 15 May 2023 10:44:45 -0700 Subject: [PATCH 149/312] [chassis][voq[Add "config fabric port ..." commands and tests. (#2730) Added "config fabric port ..." commands and the tests. This change added following config commands and the test for them. config fabric port isolate #portId# config fabric port unisolate #portId# The above two commands can be used to manually isolate and unisolate a fabric link. config fabric port monitor error threshold #crcCells# #rxCells# It sets a fabric link monitoring error threshold config fabric port monitor poll threshold isolation #pollnumber# It sets the number of consecutive polls in which the threshold needs to be detected to isolate a link config fabric port monitor poll threshold recovery #pollnumber# It sets the number of consecutive polls in which no error is detected to unisolate a link --- config/fabric.py | 247 +++++++++++++++++++++++++++++++ config/main.py | 2 + doc/Command-Reference.md | 67 +++++++++ tests/config_fabric_test.py | 95 ++++++++++++ tests/mock_tables/config_db.json | 21 +++ 5 files changed, 432 insertions(+) create mode 100644 config/fabric.py create mode 100644 tests/config_fabric_test.py diff --git a/config/fabric.py b/config/fabric.py new file mode 100644 index 00000000..a3870589 --- /dev/null +++ b/config/fabric.py @@ -0,0 +1,247 @@ +import click +import utilities_common.cli as clicommon +import utilities_common.multi_asic as multi_asic_util +from sonic_py_common import multi_asic +from swsscommon.swsscommon import SonicV2Connector, ConfigDBConnector + +# +# 'config fabric ...' +# +@click.group(cls=clicommon.AbbreviationGroup) +def fabric(): + """FABRIC-related configuration tasks""" + pass + +# +# 'config fabric port ...' +# +@fabric.group(cls=clicommon.AbbreviationGroup) +def port(): + """FABRIC PORT configuration tasks""" + pass + +# +# 'config fabric port isolate [ -n ]' +# +@port.command() +@click.argument('portid', metavar='', required=True) +@multi_asic_util.multi_asic_click_option_namespace +def isolate(portid, namespace): + """FABRIC PORT isolate """ + + ctx = click.get_current_context() + + if not portid.isdigit(): + ctx.fail("Invalid portid") + + n_asics = multi_asic.get_num_asics() + if n_asics > 1 and namespace is None: + ctx.fail('Must specify asic') + + # Connect to config database + config_db = ConfigDBConnector(use_unix_socket_path=True, namespace=namespace) + config_db.connect() + + # Connect to state database + state_db = SonicV2Connector(use_unix_socket_path=True, namespace=namespace) + state_db.connect(state_db.STATE_DB, False) + + # check if the port is actually in use + portName = f'PORT{portid}' + portStateData = state_db.get_all(state_db.STATE_DB, "FABRIC_PORT_TABLE|" + portName) + if "REMOTE_PORT" not in portStateData: + ctx.fail(f"Port {portid} is not in use") + + # Make sure configuration data exists + portName = f'Fabric{portid}' + portConfigData = config_db.get_all(config_db.CONFIG_DB, "FABRIC_PORT|" + portName) + if not bool(portConfigData): + ctx.fail("Fabric monitor configuration data not present") + + # Update entry + config_db.mod_entry("FABRIC_PORT", portName, {'isolateStatus': True}) + +# +# 'config fabric port unisolate [ -n ]' +# +@port.command() +@click.argument('portid', metavar='', required=True) +@multi_asic_util.multi_asic_click_option_namespace +def unisolate(portid, namespace): + """FABRIC PORT unisolate """ + + ctx = click.get_current_context() + + if not portid.isdigit(): + ctx.fail("Invalid portid") + + n_asics = multi_asic.get_num_asics() + if n_asics > 1 and namespace is None: + ctx.fail('Must specify asic') + + # Connect to config database + config_db = ConfigDBConnector(use_unix_socket_path=True, namespace=namespace) + config_db.connect() + + # Connect to state database + state_db = SonicV2Connector(use_unix_socket_path=True, namespace=namespace) + state_db.connect(state_db.STATE_DB, False) + + # check if the port is actually in use + portName = f'PORT{portid}' + portStateData = state_db.get_all(state_db.STATE_DB, "FABRIC_PORT_TABLE|" + portName) + if "REMOTE_PORT" not in portStateData: + ctx.fail(f"Port {portid} is not in use") + + # Make sure configuration data exists + portName = f'Fabric{portid}' + portConfigData = config_db.get_all(config_db.CONFIG_DB, "FABRIC_PORT|" + portName) + if not bool(portConfigData): + ctx.fail("Fabric monitor configuration data not present") + + # Update entry + config_db.mod_entry("FABRIC_PORT", portName, {'isolateStatus': False}) + +# +# 'config fabric port monitor ...' +# +@port.group(cls=clicommon.AbbreviationGroup) +def monitor(): + """FABRIC PORT MONITOR configuration tasks""" + pass + +# +# 'config fabric port monitor error ...' +# +@monitor.group(cls=clicommon.AbbreviationGroup) +def error(): + """FABRIC PORT MONITOR ERROR configuration tasks""" + pass + +# +# 'config fabric port monitor error threshold ' +# +@error.command('threshold') +@click.argument('crcCells', metavar='', required=True, type=int) +@click.argument('rxcells', metavar='', required=True, type=int) +@multi_asic_util.multi_asic_click_option_namespace +def error_threshold(crccells, rxcells, namespace): + """FABRIC PORT MONITOR ERROR THRESHOLD configuration tasks""" + + ctx = click.get_current_context() + + n_asics = multi_asic.get_num_asics() + if n_asics > 1 and namespace is None: + ctx.fail('Must specify asic') + + # Check the values + if crccells < 1 or crccells > 1000: + ctx.fail("crcCells must be in range 1...1000") + if rxcells < 10000 or rxcells > 100000000: + ctx.fail("rxCells must be in range 10000...100000000") + + # Connect to config database + config_db = ConfigDBConnector(use_unix_socket_path=True, namespace=namespace) + config_db.connect() + + # Connect to state database + state_db = SonicV2Connector(use_unix_socket_path=True, namespace=namespace) + state_db.connect(state_db.STATE_DB, False) + + # Make sure configuration data exists + monitorData = config_db.get_all(config_db.CONFIG_DB, "FABRIC_MONITOR|FABRIC_MONITOR_DATA") + if not bool(monitorData): + ctx.fail("Fabric monitor configuration data not present") + + # Update entry + config_db.mod_entry("FABRIC_MONITOR", "FABRIC_MONITOR_DATA", + {'monErrThreshCrcCells': crccells, 'monErrThreshRxCells': rxcells}) + +# +# 'config fabric port monitor poll ...' +# +@monitor.group(cls=clicommon.AbbreviationGroup) +def poll(): + """FABRIC PORT MONITOR POLL configuration tasks""" + pass + +# +# 'config fabric port monitor poll threshold ...' +# +@poll.group(cls=clicommon.AbbreviationGroup, name='threshold') +def poll_threshold(): + """FABRIC PORT MONITOR POLL THRESHOLD configuration tasks""" + pass + +# +# 'config fabric port monitor poll threshold isolation ' +# +@poll_threshold.command() +@click.argument('pollcount', metavar='', required=True, type=int) +@multi_asic_util.multi_asic_click_option_namespace +def isolation(pollcount, namespace): + """FABRIC PORT MONITOR POLL THRESHOLD configuration tasks""" + + ctx = click.get_current_context() + + n_asics = multi_asic.get_num_asics() + if n_asics > 1 and namespace is None: + ctx.fail('Must specify asic') + + if pollcount < 1 or pollcount > 10: + ctx.fail("pollCount must be in range 1...10") + + # Connect to config database + config_db = ConfigDBConnector(use_unix_socket_path=True, namespace=namespace) + config_db.connect() + + # Connect to state database + state_db = SonicV2Connector(use_unix_socket_path=True, namespace=namespace) + state_db.connect(state_db.STATE_DB, False) + + # Make sure configuration data exists + monitorData = config_db.get_all(config_db.CONFIG_DB, "FABRIC_MONITOR|FABRIC_MONITOR_DATA") + if not bool(monitorData): + ctx.fail("Fabric monitor configuration data not present") + + # Update entry + config_db.mod_entry("FABRIC_MONITOR", "FABRIC_MONITOR_DATA", + {"monPollThreshIsolation": pollcount}) + + +# +# 'config fabric port monitor poll threshold recovery ' +# +@poll_threshold.command() +@click.argument('pollcount', metavar='', required=True, type=int) +@multi_asic_util.multi_asic_click_option_namespace +def recovery(pollcount, namespace): + """FABRIC PORT MONITOR POLL THRESHOLD configuration tasks""" + + ctx = click.get_current_context() + + n_asics = multi_asic.get_num_asics() + if n_asics > 1 and namespace is None: + ctx.fail('Must specify asic') + + if pollcount < 1 or pollcount > 10: + ctx.fail("pollCount must be in range 1...10") + + # Connect to config database + config_db = ConfigDBConnector(use_unix_socket_path=True, namespace=namespace) + config_db.connect() + + # Connect to state database + state_db = SonicV2Connector(use_unix_socket_path=True, namespace=namespace) + state_db.connect(state_db.STATE_DB, False) + + # Make sure configuration data exists + monitorData = config_db.get_all(config_db.CONFIG_DB, "FABRIC_MONITOR|FABRIC_MONITOR_DATA") + if not bool(monitorData): + ctx.fail("Fabric monitor configuration data not present") + + # Update entry + config_db.mod_entry("FABRIC_MONITOR", "FABRIC_MONITOR_DATA", + {"monPollThreshRecovery": pollcount}) + + diff --git a/config/main.py b/config/main.py index 5b9bd300..abef5397 100644 --- a/config/main.py +++ b/config/main.py @@ -42,6 +42,7 @@ from . import chassis_modules from . import console from . import feature +from . import fabric from . import flow_counters from . import kdump from . import kube @@ -1181,6 +1182,7 @@ def config(ctx): config.add_command(aaa.radius) config.add_command(chassis_modules.chassis) config.add_command(console.console) +config.add_command(fabric.fabric) config.add_command(feature.feature) config.add_command(flow_counters.flowcnt_route) config.add_command(kdump.kdump) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 86902cd7..03c61f1b 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -53,6 +53,8 @@ * [ECN](#ecn) * [ECN show commands](#ecn-show-commands) * [ECN config commands](#ecn-config-commands) +* [Fabric](#fabric) + * [Fabric config commands](#fabric-config-commands) * [Feature](#feature) * [Feature show commands](#feature-show-commands) * [Feature config commands](#feature-config-commands) @@ -3287,6 +3289,71 @@ The list of the WRED profile fields that are configurable is listed in the below Go Back To [Beginning of the document](#) or [Beginning of this section](#ecn) +## Fabric + +This section explains all Fabric commands that are supported in SONiC. + +### Fabric config commands + +**config fabric port isolate ** +**config fabric port unisolate ** + +The above two commands can be used to manually isolate and unisolate a fabric link. + +- Usage: + ``` + config fabric port isolate [OPTIONS] + config fabric port unisolate [OPTIONS] + ``` + +- Example: + ``` + admin@sonic:~$ config fabric port isolate 0 -n asic0 + admin@sonic:~$ config fabric port unisolate 0 -n asic0 + ``` + +**config fabric port monitor error threshold ** + +This command sets a fabric link monitoring error threshold + +- Usage: + ``` + config fabric port monitor error threshold [OPTIONS] + ``` + +- Example: + ``` + admin@sonic:~$ config fabric port monitor error threshold 2 61035156 -n asic0 + ``` + +**config fabric port monitor poll threshold isolation ** + +This command sets the number of consecutive polls in which the threshold needs to be detected to isolate a link + +- Usage: + ``` + config fabric port monitor poll threshold isolation [OPTIONS] + ``` + +- Example: + ``` + admin@sonic:~$ config fabric port monitor poll threshold isolation 2 -n asic0 + ``` + +**config fabric port monitor poll threshold recovery ** + +This command sets the number of consecutive polls in which no error is detected to unisolate a link + +- Usage: + ``` + config fabric port monitor poll threshold recovery [OPTIONS] + ``` + +- Example: + ``` + admin@sonic:~$ config fabric port monitor poll threshold recovery 5 -n asic0 + ``` + ## Feature SONiC includes a capability in which Feature state can be enabled/disabled diff --git a/tests/config_fabric_test.py b/tests/config_fabric_test.py new file mode 100644 index 00000000..1f56ea41 --- /dev/null +++ b/tests/config_fabric_test.py @@ -0,0 +1,95 @@ +import click +import config.main as config +import operator +import os +import pytest +import sys + +from click.testing import CliRunner +from utilities_common.db import Db + +test_path = os.path.dirname(os.path.abspath(__file__)) +modules_path = os.path.dirname(test_path) +scripts_path = os.path.join(modules_path, "scripts") +sys.path.insert(0, modules_path) + +@pytest.fixture(scope='module') +def ctx(scope='module'): + db = Db() + obj = {'config_db':db.cfgdb, 'namespace': ''} + yield obj + +class TestConfigFabric(object): + @classmethod + def setup_class(cls): + print("SETUP") + os.environ["PATH"] += os.pathsep + scripts_path + os.environ["UTILITIES_UNIT_TESTING"] = "1" + + def basic_check(self, command_name, para_list, ctx): + # This function issues command of "config fabric xxxx", + # and returns the result of the command. + runner = CliRunner() + result = runner.invoke(config.config.commands["fabric"].commands[command_name], para_list, obj = ctx) + print(result.output) + return result + + def test_config_isolation(self, ctx): + # Issue command "config fabric port isolate 0", + # check if the result is expected. + result = self.basic_check("port", ["isolate", "0"], ctx) + expect_result = 0 + assert operator.eq(result.exit_code, expect_result) + + # Issue command "config fabric port isolate 1", + # check if the result has the error message as port 1 is not in use. + result = self.basic_check("port", ["isolate", "1"], ctx) + assert "Port 1 is not in use" in result.output + + # Issue command "config fabric port unisolate 0", + # check if the result is expected. + result = self.basic_check("port", ["unisolate", "0"], ctx) + expect_result = 0 + assert operator.eq(result.exit_code, expect_result) + + # Issue command "config fabric port unisolate 1", + # check if the result has the error message as port 1 is not in use. + result = self.basic_check("port", ["unisolate", "1"], ctx) + assert "Port 1 is not in use" in result.output + + def test_config_fabric_monitor_threshold(self, ctx): + # Issue command "config fabric port monitor error threshold <#> <#>" + # with an out of range number, check if the result has the error message. + result = self.basic_check("port", ["monitor", "error", "threshold", "1", "2000"], ctx) + assert "rxCells must be in range 10000...100000000" in result.output + + result = self.basic_check("port", ["monitor", "error", "threshold", "10000", "20000"], ctx) + assert "crcCells must be in range 1...1000" in result.output + + # Issue command "config fabric port monitor error threshold <#> <#>" + # with a number in the range, check if the result is expected. + result = self.basic_check("port", ["monitor", "error", "threshold", "1", "20000"], ctx) + expect_result = 0 + assert operator.eq(result.exit_code, expect_result) + + # Issue command "config fabric port monitor poll threshold isolation <#>" + # with an out of range number, check if the result has the error message. + result = self.basic_check("port", ["monitor", "poll", "threshold", "isolation", "15"], ctx) + assert "pollCount must be in range 1...10" in result.output + + # Issue command "config fabric port monitor poll threshold isolation <#>" + # with a number in the range, check if the result is expected. + result = self.basic_check("port", ["monitor", "poll", "threshold", "isolation", "3"], ctx) + expect_result = 0 + assert operator.eq(result.exit_code, expect_result) + + # Issue command "config fabric port monitor poll threshold recovery <#>" + # with an out of range number, check if the result has the error message. + result = self.basic_check("port", ["monitor", "poll", "threshold", "recovery", "15"], ctx) + assert "pollCount must be in range 1...10" in result.output + + # Issue command "config fabric port monitor poll threshold recovery <#>" + # with a number in the range, check if the result is expected. + result = self.basic_check("port", ["monitor", "poll", "threshold", "recovery", "8"], ctx) + expect_result = 0 + assert operator.eq(result.exit_code, expect_result) diff --git a/tests/mock_tables/config_db.json b/tests/mock_tables/config_db.json index 2b406688..986da98a 100644 --- a/tests/mock_tables/config_db.json +++ b/tests/mock_tables/config_db.json @@ -2656,5 +2656,26 @@ "dst_port": "Ethernet44", "src_port": "Ethernet40,Ethernet48", "direction": "RX" + }, + "FABRIC_MONITOR|FABRIC_MONITOR_DATA": { + "monErrThreshCrcCells": "1", + "monErrThreshRxCells": "61035156", + "monPollThreshIsolation": "1", + "monPollThreshRecovery": "8" + }, + "FABRIC_PORT|Fabric0": { + "alias": "Fabric0", + "isolateStatus": "False", + "lanes": "0" + }, + "FABRIC_PORT|Fabric1": { + "alias": "Fabric1", + "isolateStatus": "False", + "lanes": "1" + }, + "FABRIC_PORT|Fabric2": { + "alias": "Fabric2", + "isolateStatus": "False", + "lanes": "2" } } From 33d665c4cf31bc8ea201439c6fe6083a07605390 Mon Sep 17 00:00:00 2001 From: Mai Bui Date: Mon, 15 May 2023 16:50:32 -0400 Subject: [PATCH 150/312] replace shell=True, replace xml, and replace exit() (#2664) Signed-off-by: maipbui #### What I did The [xml.etree.ElementTree](https://docs.python.org/3/library/xml.etree.elementtree.html#module-xml.etree.ElementTree) module is not secure against maliciously constructed data. `subprocess()` - when using with `shell=True` is dangerous. Using subprocess function without a static string can lead to command injection. `sys.exit` is better than `exit`, considered good to use in production code. Ref: https://stackoverflow.com/questions/6501121/difference-between-exit-and-sys-exit-in-python https://stackoverflow.com/questions/19747371/python-exit-commands-why-so-many-and-when-should-each-be-used #### How I did it Remove xml. Use [lxml](https://pypi.org/project/lxml/) XML parsers package that prevent potentially malicious operation. `subprocess()` - use `shell=False` instead, use list of strings Ref: [https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation](https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation) Replace `exit()` by `sys.exit()` #### How to verify it Pass UT Manual test --- pfcwd/main.py | 16 ++++----- scripts/boot_part | 28 ++++++++++----- scripts/check_db_integrity.py | 6 ++-- scripts/configlet | 5 ++- scripts/disk_check.py | 7 ++-- scripts/dropconfig | 8 ++--- scripts/dump_nat_entries.py | 6 ++-- scripts/ipintutil | 10 +++--- scripts/lldpshow | 15 +++++--- scripts/storyteller | 25 +++++++------ scripts/vnet_route_check.py | 6 ++-- tests/disk_check_test.py | 4 +-- tests/dropconfig_test.py | 51 ++++++++++++++++++++++++++ tests/filter_fdb_entries_test.py | 23 ------------ tests/intfutil_test.py | 10 +++--- tests/lldp_test.py | 9 +++++ tests/pfcwd_test.py | 61 +++++++++++++++++++++++++++++++- 17 files changed, 204 insertions(+), 86 deletions(-) create mode 100644 tests/dropconfig_test.py diff --git a/pfcwd/main.py b/pfcwd/main.py index 76fa31b4..7813bbd7 100644 --- a/pfcwd/main.py +++ b/pfcwd/main.py @@ -243,7 +243,7 @@ def start(self, action, restoration_time, ports, detection_time): click.echo("Failed to run command, invalid options:") for opt in invalid_ports: click.echo(opt) - exit(1) + sys.exit(1) self.start_cmd(action, restoration_time, ports, detection_time) @@ -263,7 +263,7 @@ def verify_pfc_enable_status_per_port(self, port, pfcwd_info): @multi_asic_util.run_on_multi_asic def start_cmd(self, action, restoration_time, ports, detection_time): if os.geteuid() != 0: - exit("Root privileges are required for this operation") + sys.exit("Root privileges are required for this operation") all_ports = get_all_ports( self.db, self.multi_asic.current_namespace, @@ -299,7 +299,7 @@ def start_cmd(self, action, restoration_time, ports, detection_time): @multi_asic_util.run_on_multi_asic def interval(self, poll_interval): if os.geteuid() != 0: - exit("Root privileges are required for this operation") + sys.exit("Root privileges are required for this operation") pfcwd_info = {} if poll_interval is not None: pfcwd_table = self.config_db.get_table(CONFIG_DB_PFC_WD_TABLE_NAME) @@ -331,7 +331,7 @@ def interval(self, poll_interval): poll_interval, entry_min_str ), err=True ) - exit(1) + sys.exit(1) pfcwd_info['POLL_INTERVAL'] = poll_interval self.config_db.mod_entry( @@ -341,7 +341,7 @@ def interval(self, poll_interval): @multi_asic_util.run_on_multi_asic def stop(self, ports): if os.geteuid() != 0: - exit("Root privileges are required for this operation") + sys.exit("Root privileges are required for this operation") all_ports = get_all_ports( self.db, self.multi_asic.current_namespace, @@ -359,7 +359,7 @@ def stop(self, ports): @multi_asic_util.run_on_multi_asic def start_default(self): if os.geteuid() != 0: - exit("Root privileges are required for this operation") + sys.exit("Root privileges are required for this operation") enable = self.config_db.get_entry('DEVICE_METADATA', 'localhost').get( 'default_pfcwd_status' ) @@ -394,7 +394,7 @@ def start_default(self): @multi_asic_util.run_on_multi_asic def counter_poll(self, counter_poll): if os.geteuid() != 0: - exit("Root privileges are required for this operation") + sys.exit("Root privileges are required for this operation") pfcwd_info = {} pfcwd_info['FLEX_COUNTER_STATUS'] = counter_poll self.config_db.mod_entry("FLEX_COUNTER_TABLE", "PFCWD", pfcwd_info) @@ -402,7 +402,7 @@ def counter_poll(self, counter_poll): @multi_asic_util.run_on_multi_asic def big_red_switch(self, big_red_switch): if os.geteuid() != 0: - exit("Root privileges are required for this operation") + sys.exit("Root privileges are required for this operation") pfcwd_info = {} if big_red_switch is not None: pfcwd_info['BIG_RED_SWITCH'] = big_red_switch diff --git a/scripts/boot_part b/scripts/boot_part index f41950e0..d59f3a94 100755 --- a/scripts/boot_part +++ b/scripts/boot_part @@ -4,10 +4,10 @@ import re import os import sys -import commands import argparse import logging import tempfile +from sonic_py_common.general import getstatusoutput_noshell logging.basicConfig(level=logging.WARN) logger = logging.getLogger(__name__) @@ -20,7 +20,7 @@ re_hex = r'[0-9A-F]' ## String - the standard output of the command, may be empty string def runcmd(cmd): logger.info('runcmd: {0}'.format(cmd)) - rc, out = commands.getstatusoutput(cmd) + rc, out = getstatusoutput_noshell(cmd) if rc == 0: return out else: @@ -29,7 +29,7 @@ def runcmd(cmd): def print_partitions(blkdev): assert blkdev - out = runcmd('sudo lsblk -r -o PARTLABEL,NAME') + out = runcmd(['sudo', 'lsblk', '-r', '-o', 'PARTLABEL,NAME']) ## Parse command output and print found_table = False for line in out.splitlines(): @@ -56,7 +56,7 @@ def print_partitions(blkdev): ## Get the current boot partition index def get_boot_partition(blkdev): - out = runcmd('cat /proc/mounts') + out = runcmd(['cat', '/proc/mounts']) if out is None: return None ## Parse command output and return the current boot partition index @@ -76,16 +76,26 @@ def set_boot_partition(blkdev, index): devnode = blkdev + str(index) mntpath = tempfile.mkdtemp() try: - out = runcmd('sudo mount {0} {1}'.format(devnode, mntpath)) + out = runcmd(['sudo', 'mount', devnode, mntpath]) logger.info('mount out={0}'.format(out)) if out is None: return ## Set GRUB bootable - out = runcmd('sudo grub-install --boot-directory="{0}" --recheck "{1}"'.format(mntpath, blkdev)) + out = runcmd(['sudo', 'grub-install', '--boot-directory='+mntpath, "--recheck", blkdev]) return out is not None finally: ## Cleanup - out = runcmd('sudo fuser -km {0} || sudo umount {0}'.format(mntpath)) - logger.info('fuser out={0}'.format(out)) + cmd1 = ['sudo', 'fuser', '-km', mntpath] + rc1, out1 = getstatusoutput_noshell(cmd1) + if rc1 != 0: + logger.error('Failed to run: {0}\n{1}'.format(cmd1, out1)) + cmd2 = ['sudo', 'unmount', mntpath] + rc2, out2 = getstatusoutput_noshell(cmd2) + if rc2 == 0: + logger.info('Running command: {0}\n{1}'.format(' '.join(cmd2), out2)) + else: + logger.error('Failed to run: {0}\n{1}'.format(cmd2, out2)) + else: + logger.info('Running command: {0}\n{1}'.format(' '.join(cmd1), out1)) os.rmdir(mntpath) def main(): @@ -100,7 +110,7 @@ def main(): logger.setLevel(logging.INFO) ## Find ONIE partition and get the block device containing ONIE - out = runcmd("sudo blkid") + out = runcmd(["sudo", "blkid"]) if not out: return -1 for line in out.splitlines(): m = re.match(r'/dev/(\w+)\d+: LABEL="ONIE-BOOT"', line) diff --git a/scripts/check_db_integrity.py b/scripts/check_db_integrity.py index 3a994897..57486038 100755 --- a/scripts/check_db_integrity.py +++ b/scripts/check_db_integrity.py @@ -36,9 +36,9 @@ def main(): for db_name, schema in DB_SCHEMA.items(): db_dump_file = "/tmp/{}.json".format(db_name) - dump_db_cmd = "sonic-db-dump -n 'COUNTERS_DB' -y > {}".format(db_dump_file) - p = subprocess.Popen(dump_db_cmd, shell=True, text=True, - stdout=subprocess.PIPE, stderr=subprocess.PIPE) + dump_db_cmd = ["sonic-db-dump", "-n", 'COUNTERS_DB', "-y"] + with open(db_dump_file, 'w') as f: + p = subprocess.Popen(dump_db_cmd, text=True, stdout=f, stderr=subprocess.PIPE) (_, err) = p.communicate() rc = p.wait() if rc != 0: diff --git a/scripts/configlet b/scripts/configlet index bc9ba1cf..217cf193 100755 --- a/scripts/configlet +++ b/scripts/configlet @@ -1,4 +1,7 @@ #!/usr/bin/env python3 + +import sys + """ JSON based configlet update A tool to update CONFIG-DB with JSON diffs that can update/delete redis-DB. @@ -195,7 +198,7 @@ def main(): if not do_act: print("Expect an action update/delete or for debug parse/test\n") parser.print_help() - exit(-1) + sys.exit(-1) for json_file in args.json: with open(json_file, 'r') as stream: diff --git a/scripts/disk_check.py b/scripts/disk_check.py index 0f5f8824..de1557ca 100644 --- a/scripts/disk_check.py +++ b/scripts/disk_check.py @@ -83,7 +83,7 @@ def test_writable(dirs): def run_cmd(cmd): - proc = subprocess.run(cmd, shell=True, stdout=subprocess.PIPE) + proc = subprocess.run(cmd, shell=False, stdout=subprocess.PIPE) ret = proc.returncode if ret: log_err("failed: ret={} cmd={}".format(ret, cmd)) @@ -120,9 +120,8 @@ def do_mnt(dirs): os.mkdir(d_upper) os.mkdir(d_work) - ret = run_cmd("mount -t overlay overlay_{} -o lowerdir={}," - "upperdir={},workdir={} {}".format( - d_name, d, d_upper, d_work, d)) + ret = run_cmd(["mount", "-t", "overlay", "overlay_{}".format(d_name),\ + "-o", "lowerdir={},upperdir={},workdir={}".format(d, d_upper, d_work), d]) if ret: break diff --git a/scripts/dropconfig b/scripts/dropconfig index b7a86043..180c6166 100755 --- a/scripts/dropconfig +++ b/scripts/dropconfig @@ -375,25 +375,25 @@ Examples: reasons) except InvalidArgumentError as err: print('Encountered error trying to install counter: {}'.format(err.message)) - exit(1) + sys.exit(1) elif command == 'uninstall': try: dconfig.delete_counter(name) except InvalidArgumentError as err: print('Encountered error trying to uninstall counter: {}'.format(err.message)) - exit(1) + sys.exit(1) elif command == 'add': try: dconfig.add_reasons(name, reasons) except InvalidArgumentError as err: print('Encountered error trying to add reasons: {}'.format(err.message)) - exit(1) + sys.exit(1) elif command == 'remove': try: dconfig.remove_reasons(name, reasons) except InvalidArgumentError as err: print('Encountered error trying to remove reasons: {}'.format(err.message)) - exit(1) + sys.exit(1) elif command == 'show_config': dconfig.print_counter_config(group) elif command == 'show_capabilities': diff --git a/scripts/dump_nat_entries.py b/scripts/dump_nat_entries.py index 3ab99f24..6a2bff5d 100644 --- a/scripts/dump_nat_entries.py +++ b/scripts/dump_nat_entries.py @@ -8,8 +8,10 @@ import subprocess def main(): - ctdumpcmd = 'conntrack -L -j > /host/warmboot/nat/nat_entries.dump' - p = subprocess.Popen(ctdumpcmd, shell=True, text=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + ctdumpcmd = ['conntrack', '-L', '-j'] + file = '/host/warmboot/nat/nat_entries.dump' + with open(file, 'w') as f: + p = subprocess.Popen(ctdumpcmd, text=True, stdout=f, stderr=subprocess.PIPE) (output, err) = p.communicate() rc = p.wait() diff --git a/scripts/ipintutil b/scripts/ipintutil index c61c622a..5535bce7 100755 --- a/scripts/ipintutil +++ b/scripts/ipintutil @@ -72,13 +72,12 @@ def get_if_admin_state(iface, namespace): """ Given an interface name, return its admin state reported by the kernel """ - cmd = "cat /sys/class/net/{0}/flags".format(iface) + cmd = ["cat", "/sys/class/net/{0}/flags".format(iface)] if namespace != constants.DEFAULT_NAMESPACE: - cmd = "sudo ip netns exec {} {}".format(namespace, cmd) + cmd = ["sudo", "ip", "netns", "exec", namespace] + cmd try: proc = subprocess.Popen( cmd, - shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE, text=True) @@ -105,13 +104,12 @@ def get_if_oper_state(iface, namespace): """ Given an interface name, return its oper state reported by the kernel. """ - cmd = "cat /sys/class/net/{0}/carrier".format(iface) + cmd = ["cat", "/sys/class/net/{0}/carrier".format(iface)] if namespace != constants.DEFAULT_NAMESPACE: - cmd = "sudo ip netns exec {} {}".format(namespace, cmd) + cmd = ["sudo", "ip", "netns", "exec", namespace] + cmd try: proc = subprocess.Popen( cmd, - shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE, text=True) diff --git a/scripts/lldpshow b/scripts/lldpshow index c30f4c5f..e09176cf 100755 --- a/scripts/lldpshow +++ b/scripts/lldpshow @@ -23,7 +23,7 @@ import argparse import re import subprocess import sys -import xml.etree.ElementTree as ET +from lxml import etree as ET from sonic_py_common import device_info from swsscommon.swsscommon import ConfigDBConnector @@ -80,9 +80,14 @@ class Lldpshow(object): lldp_interface_list = lldp_port if lldp_port is not None else self.lldp_interface[lldp_instace_num] # In detail mode we will pass interface list (only front ports) and get O/P as plain text # and in table format we will get xml output - lldp_cmd = 'sudo docker exec -i lldp{} lldpctl '.format(self.lldp_instance[lldp_instace_num]) + ( - '-f xml' if not lldp_detail_info else lldp_interface_list) - p = subprocess.Popen(lldp_cmd, stdout=subprocess.PIPE, shell=True, text=True) + if not lldp_detail_info: + lldp_args = ['-f', 'xml'] + elif lldp_interface_list == '': + lldp_args = [] + else: + lldp_args = [lldp_interface_list] + lldp_cmd = ['sudo', 'docker', 'exec', '-i', 'lldp{}'.format(self.lldp_instance[lldp_instace_num]), 'lldpctl'] + lldp_args + p = subprocess.Popen(lldp_cmd, stdout=subprocess.PIPE, text=True) (output, err) = p.communicate() ## Wait for end of command. Get return returncode ## returncode = p.wait() @@ -121,7 +126,7 @@ class Lldpshow(object): if lldp_detail_info: return for lldpraw in self.lldpraw: - neis = ET.fromstring(lldpraw) + neis = ET.fromstring(lldpraw.encode()) intfs = neis.findall('interface') for intf in intfs: l_intf = intf.attrib['name'] diff --git a/scripts/storyteller b/scripts/storyteller index 5d142067..1fb78e5f 100755 --- a/scripts/storyteller +++ b/scripts/storyteller @@ -11,6 +11,7 @@ import subprocess import sys from shlex import quote +from sonic_py_common.general import getstatusoutput_noshell_pipe regex_dict = { 'acl' : r'acl\|ACL\|Acl', @@ -28,7 +29,7 @@ reference_file = '/tmp/storyteller_time_reference' def exec_cmd(cmd): # Use universal_newlines (instead of text) so that this tool can work with any python versions. - out = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=True, universal_newlines=True) + out = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, universal_newlines=True) stdout, stderr = out.communicate() return out.returncode, stdout, stderr @@ -36,23 +37,27 @@ def exec_cmd(cmd): def build_options(after=0, before=0, context=0): options = [] if after: - options.append('-A {}'.format(after)) + options += ['-A', str(after)] if before: - options.append('-B {}'.format(before)) + options += ['-B', str(before)] if context: - options.append('-C {}'.format(context)) + options += ['-C', str(context)] - return ' '.join(x for x in options) + return options def find_log(logpath, log, regex, after=0, before=0, context=0, field=0): options = build_options(after, before, context) if field <= 0: - cmd = 'find -L {}/{}* -newer {} | xargs ls -rt | xargs zgrep -a {} "{}"'.format(logpath, log, reference_file, options, regex) + cmd0 = ['find', logpath, "-name", "{}*".format(log), "-newer", reference_file] + cmd1 = ["xargs", "ls", "-rt"] + cmd2 = ["xargs", "zgrep", "-a"] + options + [regex] else: - cmd = 'find -L {0}/{1}* -newer {2} | sort -rn -t . -k {3},{3} | xargs zgrep -a {4} "{5}"'.format(logpath, log, reference_file, field, options, regex) + cmd0 = ['find', logpath, "-name", "{}*".format(log), "-newer", reference_file] + cmd1 = ["sort", "-rn", "-t", ".", "-k", "{0},{0}".format(field)] + cmd2 = ["xargs", "zgrep", "-a"] + options + [regex] - _, out, _ = exec_cmd(cmd) + _, out = getstatusoutput_noshell_pipe(cmd0, cmd1, cmd2) ''' Opportunity to improve: output (out) can be split to lines and send to a filter to @@ -71,12 +76,12 @@ def build_regex(category): def configure_time_filter(since): - ret_code, _, _ = exec_cmd('date --date {}'.format(since)) + ret_code, _, _ = exec_cmd(['date', '--date', since]) if ret_code: print('invalid date "{}"'.format(since)) sys.exit(1) - exec_cmd('touch --date "{}" {}'.format(since, reference_file)) + exec_cmd(['touch', '--date', since, reference_file]) def main(): diff --git a/scripts/vnet_route_check.py b/scripts/vnet_route_check.py index dcd56af1..d925427d 100755 --- a/scripts/vnet_route_check.py +++ b/scripts/vnet_route_check.py @@ -1,9 +1,9 @@ #!/usr/bin/env python -import os import sys import json import syslog +import subprocess from swsscommon import swsscommon ''' vnet_route_check.py: tool that verifies VNET routes consistancy between SONiC and vendor SDK DBs. @@ -340,7 +340,7 @@ def get_sdk_vnet_routes_diff(routes): ''' routes_diff = {} - res = os.system('docker exec syncd test -f /usr/bin/vnet_route_check.py') + res = subprocess.call(['docker', 'exec', 'syncd', 'test', '-f', '/usr/bin/vnet_route_check.py']) if res != 0: return routes_diff @@ -348,7 +348,7 @@ def get_sdk_vnet_routes_diff(routes): vnet_routes = routes[vnet_name]["routes"] vnet_vrf_oid = routes[vnet_name]["vrf_oid"] - res = os.system('docker exec syncd "/usr/bin/vnet_route_check.py {} {}"'.format(vnet_vrf_oid, vnet_routes)) + res = subprocess.call(['docker', 'exec', 'syncd', "/usr/bin/vnet_route_check.py", vnet_vrf_oid, vnet_routes]) if res: routes_diff[vnet_name] = {} routes_diff[vnet_name]['routes'] = res diff --git a/tests/disk_check_test.py b/tests/disk_check_test.py index ce4faad9..82b8b16f 100644 --- a/tests/disk_check_test.py +++ b/tests/disk_check_test.py @@ -27,7 +27,7 @@ "workdir": "/tmp/tmpy", "mounts": "overlay_tmpx blahblah", "err": "/tmpx is not read-write|READ-ONLY: Mounted ['/tmpx'] to make Read-Write", - "cmds": ['mount -t overlay overlay_tmpx -o lowerdir=/tmpx,upperdir=/tmp/tmpx/tmpx,workdir=/tmp/tmpy/tmpx /tmpx'] + "cmds": [['mount', '-t', 'overlay', 'overlay_tmpx', '-o', 'lowerdir=/tmpx,upperdir=/tmp/tmpx/tmpx,workdir=/tmp/tmpy/tmpx', '/tmpx']] }, "3": { "desc": "Not good as /tmpx is not read-write; mount fail as create of upper fails", @@ -94,7 +94,7 @@ def __init__(self, proc_upd = None): def mock_subproc_run(cmd, shell, stdout): global cmds - assert shell == True + assert shell == False assert stdout == subprocess.PIPE upd = (current_tc["proc"][len(cmds)] diff --git a/tests/dropconfig_test.py b/tests/dropconfig_test.py new file mode 100644 index 00000000..1c2dc4b6 --- /dev/null +++ b/tests/dropconfig_test.py @@ -0,0 +1,51 @@ +import os +import pytest +from unittest.mock import call, patch, MagicMock +from utilities_common.general import load_module_from_source + +test_path = os.path.dirname(os.path.abspath(__file__)) +modules_path = os.path.dirname(test_path) +scripts_path = os.path.join(modules_path, "scripts") + +dropconfig_path = os.path.join(scripts_path, 'dropconfig') +dropconfig = load_module_from_source('dropconfig', dropconfig_path) + +class TestDropConfig(object): + def setup(self): + print('SETUP') + + @patch('builtins.print') + @patch('sys.argv', ['dropconfig', '-c', 'install']) + def test_install_error(self, mock_print): + with pytest.raises(SystemExit) as e: + dropconfig.main() + mock_print.assert_called_once_with('Encountered error trying to install counter: Counter name not provided') + assert e.value.code == 1 + + @patch('builtins.print') + @patch('sys.argv', ['dropconfig', '-c', 'uninstall']) + def test_delete_error(self, mock_print): + with pytest.raises(SystemExit) as e: + dropconfig.main() + mock_print.assert_called_once_with('Encountered error trying to uninstall counter: No counter name provided') + assert e.value.code == 1 + + @patch('builtins.print') + @patch('sys.argv', ['dropconfig', '-c', 'add']) + def test_add_error(self, mock_print): + with pytest.raises(SystemExit) as e: + dropconfig.main() + mock_print.assert_called_once_with('Encountered error trying to add reasons: No counter name provided') + assert e.value.code == 1 + + @patch('builtins.print') + @patch('sys.argv', ['dropconfig', '-c', 'remove']) + def test_remove_error(self, mock_print): + with pytest.raises(SystemExit) as e: + dropconfig.main() + mock_print.assert_called_once_with('Encountered error trying to remove reasons: No counter name provided') + assert e.value.code == 1 + + def teardown(self): + print('TEARDOWN') + diff --git a/tests/filter_fdb_entries_test.py b/tests/filter_fdb_entries_test.py index 13cb8a44..dc73e9c6 100644 --- a/tests/filter_fdb_entries_test.py +++ b/tests/filter_fdb_entries_test.py @@ -77,29 +77,6 @@ def __tearDown(self): os.remove(file) os.remove(self.CONFIG_DB_FILENAME) - def __runCommand(self, cmds): - """ - Runs command 'cmds' on host - - Args: - cmds(list): command to be run on localhost - - Returns: - stdout(str): stdout gathered during command execution - stderr(str): stderr gathered during command execution - returncode(int): command exit code - """ - process = subprocess.Popen( - cmds, - shell=False, - text=True, - stdout=subprocess.PIPE, - stderr=subprocess.PIPE - ) - stdout, stderr = process.communicate() - - return stdout, stderr, process.returncode - def __getFdbEntriesMap(self, filename): """ Generate map for FDB entries diff --git a/tests/intfutil_test.py b/tests/intfutil_test.py index 988c5329..ef37199b 100644 --- a/tests/intfutil_test.py +++ b/tests/intfutil_test.py @@ -133,7 +133,7 @@ def test_intf_status(self): assert result.output == show_interface_status_output # Test 'intfutil status' - output = subprocess.check_output('intfutil -c status', stderr=subprocess.STDOUT, shell=True, text=True) + output = subprocess.check_output(['intfutil', '-c', 'status'], stderr=subprocess.STDOUT, text=True) print(output) assert result.output == show_interface_status_output @@ -216,7 +216,7 @@ def test_subintf_status(self): self.assertEqual(result.output.strip(), expected_output) # Test 'intfutil status subport' - output = subprocess.check_output('intfutil -c status -i subport', stderr=subprocess.STDOUT, shell=True, text=True) + output = subprocess.check_output(['intfutil', '-c', 'status', '-i', 'subport'], stderr=subprocess.STDOUT, text=True) print(output, file=sys.stderr) self.assertEqual(output.strip(), expected_output) @@ -241,7 +241,7 @@ def test_single_subintf_status(self): self.assertEqual(result.output.strip(), expected_output) # Test 'intfutil status Ethernet0.10' - output = subprocess.check_output('intfutil -c status -i Ethernet0.10', stderr=subprocess.STDOUT, shell=True, text=True) + output = subprocess.check_output(['intfutil', '-c', 'status', '-i', 'Ethernet0.10'], stderr=subprocess.STDOUT, text=True) print(output, file=sys.stderr) self.assertEqual(output.strip(), expected_output) @@ -251,7 +251,7 @@ def test_single_subintf_status(self): " Eth36.10 10M 9100 100 up 802.1q-encapsulation" ) # Test 'intfutil status Eth36.10' - output = subprocess.check_output('intfutil -c status -i Eth36.10', stderr=subprocess.STDOUT, shell=True, text=True) + output = subprocess.check_output(['intfutil', '-c', 'status', '-i', 'Eth36.10'], stderr=subprocess.STDOUT, text=True) print(output, file=sys.stderr) self.assertEqual(output.strip(), expected_output) @@ -261,7 +261,7 @@ def test_single_subintf_status(self): " Po0001.10 40G 9100 100 up 802.1q-encapsulation" ) # Test 'intfutil status Po0001.10' - output = subprocess.check_output('intfutil -c status -i Po0001.10', stderr=subprocess.STDOUT, shell=True, text=True) + output = subprocess.check_output(['intfutil', '-c', 'status', '-i', 'Po0001.10'], stderr=subprocess.STDOUT, text=True) print(output, file=sys.stderr) self.assertEqual(output.strip(), expected_output) diff --git a/tests/lldp_test.py b/tests/lldp_test.py index a70c676a..89177338 100644 --- a/tests/lldp_test.py +++ b/tests/lldp_test.py @@ -74,6 +74,15 @@ def test_show_lldp_2_macs_same_phy_interface(self): output_summary = lldp.get_summary_output(lldp_detail_info=False) assert output_summary == expected_2MACs_Ethernet0_output + def test_get_info(self): + lldp = lldpshow.Lldpshow() + lldp.lldp_instance = [''] + lldp.lldpraw = expected_lldpctl_xml_output + lldp.get_info(lldp_detail_info=True, lldp_port='Ethernet0') + lldp.parse_info(lldp_detail_info=True) + output = lldp.get_summary_output(lldp_detail_info=True) + assert output.strip('\n') == expected_lldpctl_xml_output[0].strip('\n') + @classmethod def teardown_class(cls): print("TEARDOWN") diff --git a/tests/pfcwd_test.py b/tests/pfcwd_test.py index 4cb95cf8..2735cd09 100644 --- a/tests/pfcwd_test.py +++ b/tests/pfcwd_test.py @@ -1,7 +1,7 @@ import importlib import os import sys -from unittest.mock import patch +from unittest.mock import patch, MagicMock from click.testing import CliRunner @@ -275,6 +275,65 @@ def setup_class(cls): import pfcwd.main importlib.reload(pfcwd.main) + @patch('pfcwd.main.os.geteuid', MagicMock(return_value=8)) + def test_pfcwd_start_nonroot(self): + import pfcwd.main as pfcwd + runner = CliRunner() + result = runner.invoke( + pfcwd.cli.commands["start"], + [ + "--action", "drop", "--restoration-time", "601", + "all", "602" + ], + ) + print(result.output) + assert result.exit_code == 1 + assert result.output == 'Root privileges are required for this operation\n' + + @patch('pfcwd.main.os.geteuid', MagicMock(return_value=8)) + def test_pfcwd_stop_nonroot(self): + import pfcwd.main as pfcwd + runner = CliRunner() + result = runner.invoke( + pfcwd.cli.commands['stop'], + ) + print(result.output) + assert result.exit_code == 1 + assert result.output == 'Root privileges are required for this operation\n' + + @patch('pfcwd.main.os.geteuid', MagicMock(return_value=8)) + def test_pfcwd_start_default_nonroot(self): + import pfcwd.main as pfcwd + runner = CliRunner() + result = runner.invoke( + pfcwd.cli.commands['start_default'], + ) + print(result.output) + assert result.exit_code == 1 + assert result.output == 'Root privileges are required for this operation\n' + + @patch('pfcwd.main.os.geteuid', MagicMock(return_value=8)) + def test_pfcwd_counter_poll_nonroot(self): + import pfcwd.main as pfcwd + runner = CliRunner() + result = runner.invoke( + pfcwd.cli.commands['counter_poll'], ['enable'], + ) + print(result.output) + assert result.exit_code == 1 + assert result.output == 'Root privileges are required for this operation\n' + + @patch('pfcwd.main.os.geteuid', MagicMock(return_value=8)) + def test_pfcwd_big_red_switch_nonroot(self): + import pfcwd.main as pfcwd + runner = CliRunner() + result = runner.invoke( + pfcwd.cli.commands['big_red_switch'], ['enable'], + ) + print(result.output) + assert result.exit_code == 1 + assert result.output == 'Root privileges are required for this operation\n' + def test_pfcwd_stats_all(self): import pfcwd.main as pfcwd print(pfcwd.__file__) From e6aacd3735d66cecdfb538089f30596985b7d224 Mon Sep 17 00:00:00 2001 From: mihirpat1 <112018033+mihirpat1@users.noreply.github.com> Date: Tue, 16 May 2023 19:26:57 -0700 Subject: [PATCH 151/312] Update TRANSCEIVER_INFO table after CDB FW upgrade (#2837) * Update TRANSCEIVER_INFO table after CDB FW upgrade Signed-off-by: Mihir Patel * Added testcases to improve code coverage --------- Signed-off-by: Mihir Patel --- sfputil/main.py | 17 ++++++++++++++++- tests/sfputil_test.py | 41 +++++++++++++++++++++++++++++++++++------ 2 files changed, 51 insertions(+), 7 deletions(-) diff --git a/sfputil/main.py b/sfputil/main.py index 53116e12..3af370d5 100644 --- a/sfputil/main.py +++ b/sfputil/main.py @@ -1201,6 +1201,18 @@ def reset(port_name): i += 1 +def update_firmware_info_to_state_db(port_name): + physical_port = logical_port_to_physical_port_index(port_name) + + namespaces = multi_asic.get_front_end_namespaces() + for namespace in namespaces: + state_db = SonicV2Connector(use_unix_socket_path=False, namespace=namespace) + if state_db is not None: + state_db.connect(state_db.STATE_DB) + active_firmware, inactive_firmware = platform_chassis.get_sfp(physical_port).get_transceiver_info_firmware_versions() + state_db.set(state_db.STATE_DB, 'TRANSCEIVER_INFO|{}'.format(port_name), "active_firmware", active_firmware) + state_db.set(state_db.STATE_DB, 'TRANSCEIVER_INFO|{}'.format(port_name), "inactive_firmware", inactive_firmware) + # 'firmware' subgroup @cli.group() def firmware(): @@ -1271,7 +1283,7 @@ def is_fw_switch_done(port_name): if fw_info['status'] == True: (ImageA, ImageARunning, ImageACommitted, ImageAInvalid, - ImageB, ImageBRunning, ImageBCommitted, ImageBInvalid) = fw_info['result'] + ImageB, ImageBRunning, ImageBCommitted, ImageBInvalid, _, _) = fw_info['result'] if (ImageARunning == 1) and (ImageAInvalid == 1): # ImageA is running, but also invalid. click.echo("FW info error : ImageA shows running, but also shows invalid!") @@ -1382,6 +1394,7 @@ def download_firmware(port_name, filepath): sfp.set_optoe_write_max(1) status = api.cdb_firmware_download_complete() + update_firmware_info_to_state_db(port_name) click.echo('CDB: firmware download complete') return status @@ -1409,6 +1422,7 @@ def run(port_name, mode): click.echo('Failed to run firmware in mode={}! CDB status: {}'.format(mode, status)) sys.exit(EXIT_FAIL) + update_firmware_info_to_state_db(port_name) click.echo("Firmware run in mode={} success".format(mode)) # 'commit' subcommand @@ -1430,6 +1444,7 @@ def commit(port_name): click.echo('Failed to commit firmware! CDB status: {}'.format(status)) sys.exit(EXIT_FAIL) + update_firmware_info_to_state_db(port_name) click.echo("Firmware commit successful") # 'upgrade' subcommand diff --git a/tests/sfputil_test.py b/tests/sfputil_test.py index e4e55b89..bbdd1245 100644 --- a/tests/sfputil_test.py +++ b/tests/sfputil_test.py @@ -710,12 +710,12 @@ def test_run_firmwre(self, mock_chassis): @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) @pytest.mark.parametrize("mock_response, expected", [ ({'status': False, 'result': None} , -1), - ({'status': True, 'result': ("1.0.1", 1, 1, 0, "1.0.2", 0, 0, 0)} , -1), - ({'status': True, 'result': ("1.0.1", 0, 0, 0, "1.0.2", 1, 1, 0)} , -1), - ({'status': True, 'result': ("1.0.1", 1, 0, 0, "1.0.2", 0, 1, 0)} , 1), - ({'status': True, 'result': ("1.0.1", 0, 1, 0, "1.0.2", 1, 0, 0)} , 1), - ({'status': True, 'result': ("1.0.1", 1, 0, 1, "1.0.2", 0, 1, 0)} , -1), - ({'status': True, 'result': ("1.0.1", 0, 1, 0, "1.0.2", 1, 0, 1)} , -1), + ({'status': True, 'result': ("1.0.1", 1, 1, 0, "1.0.2", 0, 0, 0, "1.0.1", "1.0.2")} , -1), + ({'status': True, 'result': ("1.0.1", 0, 0, 0, "1.0.2", 1, 1, 0, "1.0.2", "1.0.1")} , -1), + ({'status': True, 'result': ("1.0.1", 1, 0, 0, "1.0.2", 0, 1, 0, "1.0.1", "1.0.2")} , 1), + ({'status': True, 'result': ("1.0.1", 0, 1, 0, "1.0.2", 1, 0, 0, "1.0.2", "1.0.1")} , 1), + ({'status': True, 'result': ("1.0.1", 1, 0, 1, "1.0.2", 0, 1, 0, "1.0.1", "1.0.2")} , -1), + ({'status': True, 'result': ("1.0.1", 0, 1, 0, "1.0.2", 1, 0, 1, "1.0.2", "1.0.1")} , -1), # "is_fw_switch_done" function will waiting until timeout under below condition, so that this test will spend around 1min. ({'status': False, 'result': 0} , -1), @@ -790,3 +790,32 @@ def test_firmware_download_RJ45(self): result = runner.invoke(sfputil.cli.commands['firmware'].commands['download'], ["Ethernet0", "a.b"]) assert result.output == 'This functionality is not applicable for RJ45 port Ethernet0.\n' assert result.exit_code == EXIT_FAIL + + @patch('sfputil.main.is_sfp_present', MagicMock(return_value=True)) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=False)) + @patch('sfputil.main.run_firmware', MagicMock(return_value=1)) + @patch('sfputil.main.update_firmware_info_to_state_db', MagicMock()) + def test_firmware_run_cli(self): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['firmware'].commands['run'], ["Ethernet0"]) + assert result.exit_code == 0 + + @patch('sfputil.main.is_sfp_present', MagicMock(return_value=True)) + @patch('sfputil.main.is_port_type_rj45', MagicMock(return_value=False)) + @patch('sfputil.main.commit_firmware', MagicMock(return_value=1)) + @patch('sfputil.main.update_firmware_info_to_state_db', MagicMock()) + def test_firmware_commit_cli(self): + runner = CliRunner() + result = runner.invoke(sfputil.cli.commands['firmware'].commands['commit'], ["Ethernet0"]) + assert result.exit_code == 0 + + @patch('sfputil.main.logical_port_to_physical_port_index', MagicMock(return_value=1)) + @patch('sonic_py_common.multi_asic.get_front_end_namespaces', MagicMock(return_value=[''])) + @patch('sfputil.main.SonicV2Connector', MagicMock()) + @patch('sfputil.main.platform_chassis') + def test_update_firmware_info_to_state_db(self, mock_chassis): + mock_sfp = MagicMock() + mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) + mock_sfp.get_transceiver_info_firmware_versions.return_value = ['a.b.c', 'd.e.f'] + + sfputil.update_firmware_info_to_state_db("Ethernet0") From 3d89589ff8aa17ad25743f06ba8bc2f536056fde Mon Sep 17 00:00:00 2001 From: cytsao1 <111393130+cytsao1@users.noreply.github.com> Date: Fri, 19 May 2023 19:17:32 -0700 Subject: [PATCH 152/312] Update pcieutil error message on loading common pcie module (#2786) * Update pcieutil load module error message * Add pcieutil test for load module warning to not print to output * Update pcieutil import test * Update pcieutil import test * Fix pcieutil import test --- pcieutil/main.py | 2 +- tests/pcieutil_test.py | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/pcieutil/main.py b/pcieutil/main.py index ad6a1ebf..0fef1935 100644 --- a/pcieutil/main.py +++ b/pcieutil/main.py @@ -54,7 +54,7 @@ def load_platform_pcieutil(): from sonic_platform.pcie import Pcie platform_pcieutil = Pcie(platform_path) except ImportError as e: - log.log_warning("Failed to load platform Pcie module. Error : {}, fallback to load Pcie common utility.".format(str(e)), True) + log.log_warning("Failed to load platform Pcie module. Warning : {}, fallback to load Pcie common utility.".format(str(e))) try: from sonic_platform_base.sonic_pcie.pcie_common import PcieUtil platform_pcieutil = PcieUtil(platform_path) diff --git a/tests/pcieutil_test.py b/tests/pcieutil_test.py index cee1feec..acac60f8 100644 --- a/tests/pcieutil_test.py +++ b/tests/pcieutil_test.py @@ -3,6 +3,7 @@ from unittest import mock from click.testing import CliRunner +from io import StringIO test_path = os.path.dirname(os.path.abspath(__file__)) modules_path = os.path.dirname(test_path) @@ -156,6 +157,8 @@ +---------------------+-----------+ """ +pcieutil_load_module_warning_msg = "Failed to load platform Pcie module. Warning : No module named 'sonic_platform.pcie', fallback to load Pcie common utility." + class TestPcieUtil(object): @classmethod def setup_class(cls): @@ -199,6 +202,16 @@ def test_aer_option_device(self): result = runner.invoke(pcieutil.cli.commands["pcie-aer"].commands["correctable"], ["-d", "0:1.0"]) assert result.output == pcieutil_pcie_aer_correctable_dev_output + def test_load_pcie_module_warning(self): + stdout = sys.stdout + sys.stdout = result = StringIO() + try: + pcieutil.load_platform_pcieutil() + except ImportError: + pass + sys.stdout = stdout + assert pcieutil_load_module_warning_msg not in result.getvalue() + @classmethod def teardown_class(cls): print("TEARDOWN") From b4f4e63ed7310a1e8684a68eb4a33cc4a559bd6d Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak <38952541+stepanblyschak@users.noreply.github.com> Date: Tue, 23 May 2023 17:01:04 +0300 Subject: [PATCH 153/312] Revert "Revert frr route check (#2761)" (#2762) This reverts commit 79a21ce. DEPENDS ON: sonic-net/sonic-buildimage#12853 What I did Reverted changes back How I did it Reverted changes back How to verify it UT --- scripts/route_check.py | 122 ++++++++++++++++++++++++++++--- tests/mock_tables/config_db.json | 3 +- tests/route_check_test.py | 17 ++++- tests/route_check_test_data.py | 122 ++++++++++++++++++++++++++++++- 4 files changed, 248 insertions(+), 16 deletions(-) diff --git a/scripts/route_check.py b/scripts/route_check.py index 75806cf9..a85222ce 100755 --- a/scripts/route_check.py +++ b/scripts/route_check.py @@ -11,11 +11,11 @@ How: NOTE: The flow from APPL-DB to ASIC-DB takes non zero milliseconds. 1) Initiate subscribe for ASIC-DB updates. - 2) Read APPL-DB & ASIC-DB + 2) Read APPL-DB & ASIC-DB 3) Get the diff. - 4) If any diff, + 4) If any diff, 4.1) Collect subscribe messages for a second - 4.2) check diff against the subscribe messages + 4.2) check diff against the subscribe messages 5) Rule out local interfaces & default routes 6) If still outstanding diffs, report failure. @@ -29,7 +29,7 @@ down to ensure failure. Analyze the reported failures to match expected. You may use the exit code to verify the result as success or not. - + """ @@ -45,7 +45,9 @@ import time import signal import traceback +import subprocess +from ipaddress import ip_network from swsscommon import swsscommon from utilities_common import chassis @@ -71,6 +73,9 @@ PRINT_MSG_LEN_MAX = 1000 +FRR_CHECK_RETRIES = 3 +FRR_WAIT_TIME = 15 + class Level(Enum): ERR = 'ERR' INFO = 'INFO' @@ -141,7 +146,7 @@ def add_prefix(ip): ip = ip + PREFIX_SEPARATOR + "32" else: ip = ip + PREFIX_SEPARATOR + "128" - return ip + return str(ip_network(ip)) def add_prefix_ifnot(ip): @@ -150,7 +155,7 @@ def add_prefix_ifnot(ip): :param ip: IP to add prefix as string. :return ip with prefix """ - return ip if ip.find(PREFIX_SEPARATOR) != -1 else add_prefix(ip) + return str(ip_network(ip)) if ip.find(PREFIX_SEPARATOR) != -1 else add_prefix(ip) def is_local(ip): @@ -293,7 +298,7 @@ def get_routes(): def get_route_entries(): """ - helper to read present route entries from ASIC-DB and + helper to read present route entries from ASIC-DB and as well initiate selector for ASIC-DB:ASIC-state updates. :return (selector, subscriber, ) """ @@ -309,7 +314,7 @@ def get_route_entries(): res, e = checkout_rt_entry(k) if res: rt.append(e) - + print_message(syslog.LOG_DEBUG, json.dumps({"ASIC_ROUTE_ENTRY": sorted(rt)}, indent=4)) selector = swsscommon.Select() @@ -317,6 +322,31 @@ def get_route_entries(): return (selector, subs, sorted(rt)) +def is_suppress_fib_pending_enabled(): + """ + Returns True if FIB suppression is enabled, False otherwise + """ + cfg_db = swsscommon.ConfigDBConnector() + cfg_db.connect() + + state = cfg_db.get_entry('DEVICE_METADATA', 'localhost').get('suppress-fib-pending') + + return state == 'enabled' + + +def get_frr_routes(): + """ + Read routes from zebra through CLI command + :return frr routes dictionary + """ + + output = subprocess.check_output('show ip route json', shell=True) + routes = json.loads(output) + output = subprocess.check_output('show ipv6 route json', shell=True) + routes.update(json.loads(output)) + return routes + + def get_interfaces(): """ helper to read interface table from APPL-DB. @@ -354,7 +384,7 @@ def filter_out_local_interfaces(keys): chassis_local_intfs = chassis.get_chassis_local_interfaces() local_if_lst.update(set(chassis_local_intfs)) - + db = swsscommon.DBConnector(APPL_DB_NAME, 0) tbl = swsscommon.Table(db, 'ROUTE_TABLE') @@ -493,6 +523,61 @@ def filter_out_standalone_tunnel_routes(routes): return updated_routes +def check_frr_pending_routes(): + """ + 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() + + for _, entries in frr_routes.items(): + for entry in entries: + if entry['protocol'] != 'bgp': + continue + + # TODO: Also handle VRF routes. Currently this script does not check for VRF routes so it would be incorrect for us + # to assume they are installed in ASIC_DB, so we don't handle them. + if entry['vrfName'] != 'default': + continue + + if not entry.get('offloaded', False): + missed_rt.append(entry) + + if not missed_rt: + break + + time.sleep(FRR_WAIT_TIME) + + return missed_rt + + +def mitigate_installed_not_offloaded_frr_routes(missed_frr_rt, rt_appl): + """ + Mitigate installed but not offloaded FRR routes. + + In case route exists in APPL_DB, this function will manually send a notification to fpmsyncd + to trigger the flow that sends offload flag to zebra. + + It is designed to mitigate a problem when orchagent fails to send notification about installed route to fpmsyncd + or fpmsyncd not being able to read the notification or in case zebra fails to receive offload update due to variety of reasons. + 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) + 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'])]) + response_producer.send('SWSS_RC_SUCCESS', entry['prefix'], fvs) + + print_message(syslog.LOG_ERR, f'Mitigated route {entry["prefix"]}') + + def get_soc_ips(config_db): mux_table = config_db.get_table('MUX_CABLE') soc_ips = [] @@ -536,7 +621,7 @@ def check_routes(): """ The heart of this script which runs the checks. Read APPL-DB & ASIC-DB, the relevant tables for route checking. - Checkout routes in ASIC-DB to match APPL-DB, discounting local & + Checkout routes in ASIC-DB to match APPL-DB, discounting local & default routes. In case of missed / unexpected entries in ASIC, it might be due to update latency between APPL & ASIC DBs. So collect ASIC-DB subscribe updates for a second, and checkout if you see SET @@ -545,12 +630,16 @@ def check_routes(): If there are still some unjustifiable diffs, between APPL & ASIC DB, related to routes report failure, else all good. + If there are FRR routes that aren't marked offloaded but all APPL & ASIC DB + routes are in sync report failure and perform a mitigation action. + :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 = [] results = {} adds = [] @@ -599,11 +688,22 @@ def check_routes(): if rt_asic_miss: results["Unaccounted_ROUTE_ENTRY_TABLE_entries"] = rt_asic_miss + rt_frr_miss = check_frr_pending_routes() + + if rt_frr_miss: + results["missed_FRR_routes"] = rt_frr_miss + 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!") @@ -649,7 +749,7 @@ def main(): return ret, res else: return ret, res - + if __name__ == "__main__": diff --git a/tests/mock_tables/config_db.json b/tests/mock_tables/config_db.json index 986da98a..5cf11f9f 100644 --- a/tests/mock_tables/config_db.json +++ b/tests/mock_tables/config_db.json @@ -870,7 +870,8 @@ "mac": "1d:34:db:16:a6:00", "platform": "x86_64-mlnx_msn3800-r0", "peer_switch": "sonic-switch", - "type": "ToRRouter" + "type": "ToRRouter", + "suppress-fib-pending": "enabled" }, "SNMP_COMMUNITY|msft": { "TYPE": "RO" diff --git a/tests/route_check_test.py b/tests/route_check_test.py index 85e6a64a..118e9eab 100644 --- a/tests/route_check_test.py +++ b/tests/route_check_test.py @@ -7,7 +7,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 +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 import pytest @@ -239,6 +239,7 @@ def setup(self): def init(self): route_check.UNIT_TESTING = 1 + route_check.FRR_WAIT_TIME = 0 @pytest.fixture def force_hang(self): @@ -258,7 +259,8 @@ def mock_dbs(self): 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("route_check.swsscommon.ConfigDBConnector", return_value=mock_config_db), \ + patch("route_check.swsscommon.NotificationProducer"): device_info.get_platform = MagicMock(return_value='unittest') set_mock(mock_table, mock_conn, mock_sel, mock_subs, mock_config_db) yield @@ -272,7 +274,16 @@ def test_route_check(self, mock_dbs, test_num): set_test_case_data(ct_data) logger.info("Running test case {}: {}".format(test_num, ct_data[DESCR])) - with patch('sys.argv', ct_data[ARGS].split()): + with patch('sys.argv', ct_data[ARGS].split()), \ + patch('route_check.subprocess.check_output') as mock_check_output: + + routes = ct_data.get(FRR_ROUTES, {}) + + def side_effect(*args, **kwargs): + return json.dumps(routes) + + mock_check_output.side_effect = side_effect + 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 diff --git a/tests/route_check_test_data.py b/tests/route_check_test_data.py index 9e4cd3a0..7ed1eee4 100644 --- a/tests/route_check_test_data.py +++ b/tests/route_check_test_data.py @@ -6,6 +6,7 @@ CONFIG_DB = 4 PRE = "pre-value" UPD = "update" +FRR_ROUTES = "frr-routes" RESULT = "res" OP_SET = "SET" @@ -359,5 +360,124 @@ } } } - } + }, + "10": { + DESCR: "basic good one, check FRR routes", + 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" }, + }, + 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", + }, + ], + }, + }, + "11": { + DESCR: "failure test case, missing FRR routes", + 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" }, + }, + 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", + }, + ], + }, + RESULT: { + "missed_FRR_routes": [ + {"prefix": "10.10.196.12/31", "vrfName": "default", "protocol": "bgp"} + ], + }, + RET: -1, + }, + "10": { + DESCR: "basic good one with IPv6 address", + ARGS: "route_check -m INFO -i 1000", + PRE: { + APPL_DB: { + ROUTE_TABLE: { + }, + INTF_TABLE: { + "PortChannel1013:2000:31:0:0::1/64": {}, + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "2000:31::1/128" + RT_ENTRY_KEY_SUFFIX: {}, + } + } + } + }, } From f258e2a3e1b705c7b05a8a42489b9219fd9a5967 Mon Sep 17 00:00:00 2001 From: isabelmsft <67024108+isabelmsft@users.noreply.github.com> Date: Wed, 24 May 2023 15:32:48 -0700 Subject: [PATCH 154/312] [GCU] Complete RDMA Platform Validation Checks (#2791) --- .../field_operation_validators.py | 117 ++++++++++++++- .../gcu_field_operation_validators.conf.json | 119 ++++++++++++++- generic_config_updater/gu_common.py | 6 +- .../field_operation_validator_test.py | 142 ++++++++++++++++++ .../gcu_feature_patch_application_test.py | 5 +- .../generic_config_updater/gu_common_test.py | 56 ------- 6 files changed, 379 insertions(+), 66 deletions(-) create mode 100644 tests/generic_config_updater/field_operation_validator_test.py diff --git a/generic_config_updater/field_operation_validators.py b/generic_config_updater/field_operation_validators.py index 84cc4854..883944c2 100644 --- a/generic_config_updater/field_operation_validators.py +++ b/generic_config_updater/field_operation_validators.py @@ -1,10 +1,117 @@ -from sonic_py_common import device_info +import os import re +import json +import jsonpointer +import subprocess +from sonic_py_common import device_info +from .gu_common import GenericConfigUpdaterError -def rdma_config_update_validator(): - version_info = device_info.get_sonic_version_info() - asic_type = version_info.get('asic_type') - if (asic_type != 'mellanox' and asic_type != 'broadcom' and asic_type != 'cisco-8000'): +SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__)) +GCU_TABLE_MOD_CONF_FILE = f"{SCRIPT_DIR}/gcu_field_operation_validators.conf.json" + +def get_asic_name(): + asic = "unknown" + + if os.path.exists(GCU_TABLE_MOD_CONF_FILE): + with open(GCU_TABLE_MOD_CONF_FILE, "r") as s: + gcu_field_operation_conf = json.load(s) + else: + raise GenericConfigUpdaterError("GCU table modification validators config file not found") + + asic_mapping = gcu_field_operation_conf["helper_data"]["rdma_config_update_validator"] + + if device_info.get_sonic_version_info()['asic_type'] == 'cisco-8000': + asic = "cisco-8000" + elif device_info.get_sonic_version_info()['asic_type'] == 'mellanox': + GET_HWSKU_CMD = "sonic-cfggen -d -v DEVICE_METADATA.localhost.hwsku" + spc1_hwskus = asic_mapping["mellanox_asics"]["spc1"] + proc = subprocess.Popen(GET_HWSKU_CMD, shell=True, universal_newlines=True, stdout=subprocess.PIPE) + output, err = proc.communicate() + hwsku = output.rstrip('\n') + if hwsku.lower() in [spc1_hwsku.lower() for spc1_hwsku in spc1_hwskus]: + asic = "spc1" + elif device_info.get_sonic_version_info()['asic_type'] == 'broadcom': + command = ["sudo", "lspci"] + proc = subprocess.Popen(command, universal_newlines=True, stdout=subprocess.PIPE) + output, err = proc.communicate() + broadcom_asics = asic_mapping["broadcom_asics"] + for asic_shorthand, asic_descriptions in broadcom_asics.items(): + if asic != "unknown": + break + for asic_description in asic_descriptions: + if asic_description in output: + asic = asic_shorthand + break + + return asic + + +def rdma_config_update_validator(patch_element): + asic = get_asic_name() + if asic == "unknown": return False + version_info = device_info.get_sonic_version_info() + build_version = version_info.get('build_version') + version_substrings = build_version.split('.') + branch_version = None + + for substring in version_substrings: + if substring.isdigit() and re.match(r'^\d{8}$', substring): + branch_version = substring + + path = patch_element["path"] + table = jsonpointer.JsonPointer(path).parts[0] + + # Helper function to return relevant cleaned paths, consdiers case where the jsonpatch value is a dict + # For paths like /PFC_WD/Ethernet112/action, remove Ethernet112 from the path so that we can clearly determine the relevant field (i.e. action, not Ethernet112) + def _get_fields_in_patch(): + cleaned_fields = [] + + field_elements = jsonpointer.JsonPointer(path).parts[1:] + cleaned_field_elements = [elem for elem in field_elements if not any(char.isdigit() for char in elem)] + cleaned_field = '/'.join(cleaned_field_elements).lower() + + + if 'value' in patch_element.keys() and isinstance(patch_element['value'], dict): + for key in patch_element['value']: + cleaned_fields.append(cleaned_field+ '/' + key) + else: + cleaned_fields.append(cleaned_field) + + return cleaned_fields + + if os.path.exists(GCU_TABLE_MOD_CONF_FILE): + with open(GCU_TABLE_MOD_CONF_FILE, "r") as s: + gcu_field_operation_conf = json.load(s) + else: + raise GenericConfigUpdaterError("GCU table modification validators config file not found") + + tables = gcu_field_operation_conf["tables"] + scenarios = tables[table]["validator_data"]["rdma_config_update_validator"] + + cleaned_fields = _get_fields_in_patch() + for cleaned_field in cleaned_fields: + scenario = None + for key in scenarios.keys(): + if cleaned_field in scenarios[key]["fields"]: + scenario = scenarios[key] + break + + if scenario is None: + return False + + if scenario["platforms"][asic] == "": + return False + + if patch_element['op'] not in scenario["operations"]: + return False + + if branch_version is not None: + if asic in scenario["platforms"]: + if branch_version < scenario["platforms"][asic]: + return False + else: + return False + return True diff --git a/generic_config_updater/gcu_field_operation_validators.conf.json b/generic_config_updater/gcu_field_operation_validators.conf.json index f12a14d8..d89c5ae1 100644 --- a/generic_config_updater/gcu_field_operation_validators.conf.json +++ b/generic_config_updater/gcu_field_operation_validators.conf.json @@ -10,11 +10,128 @@ "e.g. 'show.acl.test_acl'", "", "field_operation_validators for a given table defines a list of validators that all must pass for modification to the specified field and table to be allowed", + "", + "validator_data provides data relevant to each validator", "" ], + "helper_data": { + "rdma_config_update_validator": { + "mellanox_asics": { + "spc1": [ "ACS-MSN2700", "ACS-MSN2740", "ACS-MSN2100", "ACS-MSN2410", "ACS-MSN2010", "Mellanox-SN2700", "Mellanox-SN2700-D48C8" ] + }, + "broadcom_asics": { + "th": ["Broadcom Limited Device b960", "Broadcom Limited Broadcom BCM56960"], + "th2": ["Broadcom Limited Device b971"], + "td2": ["Broadcom Limited Device b850", "Broadcom Limited Broadcom BCM56850"], + "td3": ["Broadcom Limited Device b870", "Broadcom Inc. and subsidiaries Device b870"] + } + } + }, "tables": { "PFC_WD": { - "field_operation_validators": [ "generic_config_updater.field_operation_validators.rdma_config_update_validator" ] + "field_operation_validators": [ "generic_config_updater.field_operation_validators.rdma_config_update_validator" ], + "validator_data": { + "rdma_config_update_validator": { + "PFCWD enable/disable": { + "fields": [ + "restoration_time", + "detection_time", + "action", + "global/poll_interval" + ], + "operations": ["remove", "add", "replace"], + "platforms": { + "spc1": "20181100", + "td2": "20181100", + "th": "20181100", + "th2": "20181100", + "td3": "20201200", + "cisco-8000": "20201200" + } + } + } + } + }, + "BUFFER_POOL": { + "field_operation_validators": [ "generic_config_updater.field_operation_validators.rdma_config_update_validator" ], + "validator_data": { + "rdma_config_update_validator": { + "Shared/headroom pool size changes": { + "fields": [ + "ingress_lossless_pool/xoff", + "ingress_lossless_pool/size", + "egress_lossy_pool/size" + ], + "operations": ["replace"], + "platforms": { + "spc1": "20191100", + "td2": "", + "th": "20221100", + "th2": "20221100", + "td3": "20221100", + "cisco-8000": "" + } + } + } + } + }, + "BUFFER_PROFILE": { + "field_operation_validators": [ "generic_config_updater.field_operation_validators.rdma_config_update_validator" ], + "validator_data": { + "rdma_config_update_validator": { + "Dynamic threshold tuning": { + "fields": [ + "dynamic_th" + ], + "operations": ["replace"], + "platforms": { + "spc1": "20181100", + "td2": "20181100", + "th": "20181100", + "th2": "20181100", + "td3": "20201200", + "cisco-8000": "" + } + }, + "PG headroom modification": { + "fields": [ + "xoff" + ], + "operations": ["replace"], + "platforms": { + "spc1": "20191100", + "td2": "", + "th": "20221100", + "th2": "20221100", + "td3": "20221100", + "cisco-8000": "" + } + } + } + } + }, + "WRED_PROFILE": { + "field_operation_validators": [ "generic_config_updater.field_operation_validators.rdma_config_update_validator" ], + "validator_data": { + "rdma_config_update_validator": { + "ECN tuning": { + "fields": [ + "azure_lossless/green_min_threshold", + "azure_lossless/green_max_threshold", + "azure_lossless/green_drop_probability" + ], + "operations": ["replace"], + "platforms": { + "spc1": "20181100", + "td2": "20181100", + "th": "20181100", + "th2": "20181100", + "td3": "20201200", + "cisco-8000": "" + } + } + } + } } } } diff --git a/generic_config_updater/gu_common.py b/generic_config_updater/gu_common.py index e8c66fcb..a6cb8de0 100644 --- a/generic_config_updater/gu_common.py +++ b/generic_config_updater/gu_common.py @@ -166,7 +166,7 @@ def validate_field_operation(self, old_config, target_config): if any(op['op'] == operation and field == op['path'] for op in patch): raise IllegalPatchOperationError("Given patch operation is invalid. Operation: {} is illegal on field: {}".format(operation, field)) - def _invoke_validating_function(cmd): + def _invoke_validating_function(cmd, jsonpatch_element): # cmd is in the format as . method_name = cmd.split(".")[-1] module_name = ".".join(cmd.split(".")[0:-1]) @@ -174,7 +174,7 @@ def _invoke_validating_function(cmd): raise GenericConfigUpdaterError("Attempting to call invalid method {} in module {}. Module must be generic_config_updater.field_operation_validators, and method must be a defined validator".format(method_name, module_name)) module = importlib.import_module(module_name, package=None) method_to_call = getattr(module, method_name) - return method_to_call() + return method_to_call(jsonpatch_element) if os.path.exists(GCU_FIELD_OP_CONF_FILE): with open(GCU_FIELD_OP_CONF_FILE, "r") as s: @@ -194,7 +194,7 @@ def _invoke_validating_function(cmd): validating_functions.update(tables.get(table, {}).get("field_operation_validators", [])) for function in validating_functions: - if not _invoke_validating_function(function): + if not _invoke_validating_function(function, element): raise IllegalPatchOperationError("Modification of {} table is illegal- validating function {} returned False".format(table, function)) diff --git a/tests/generic_config_updater/field_operation_validator_test.py b/tests/generic_config_updater/field_operation_validator_test.py new file mode 100644 index 00000000..3b08b31d --- /dev/null +++ b/tests/generic_config_updater/field_operation_validator_test.py @@ -0,0 +1,142 @@ +import io +import unittest +import mock +import json +import subprocess +import generic_config_updater +import generic_config_updater.field_operation_validators as fov +import generic_config_updater.gu_common as gu_common + +from unittest.mock import MagicMock, Mock, mock_open +from mock import patch +from sonic_py_common.device_info import get_hwsku, get_sonic_version_info + + +class TestValidateFieldOperation(unittest.TestCase): + + @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="unknown")) + def test_rdma_config_update_validator_unknown_asic(self): + patch_element = {"path": "/PFC_WD/Ethernet4/restoration_time", "op": "replace", "value": "234234"} + assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == False + + @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"build_version": "SONiC.20220530"})) + @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="td3")) + @patch("os.path.exists", mock.Mock(return_value=True)) + @patch("builtins.open", mock_open(read_data='{"tables": {"BUFFER_POOL": {"validator_data": {"rdma_config_update_validator": {"Shared/headroom pool size changes": {"fields": ["ingress_lossless_pool/xoff", "ingress_lossless_pool/size", "egress_lossy_pool/size"], "operations": ["replace"], "platforms": {"td3": "20221100"}}}}}}}')) + def test_rdma_config_update_validator_td3_asic_invalid_version(self): + patch_element = {"path": "/BUFFER_POOL/ingress_lossless_pool/xoff", "op": "replace", "value": "234234"} + assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == False + + @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"build_version": "SONiC.20220530"})) + @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="spc1")) + @patch("os.path.exists", mock.Mock(return_value=True)) + @patch("builtins.open", mock_open(read_data='{"tables": {"PFC_WD": {"validator_data": {"rdma_config_update_validator": {"PFCWD enable/disable": {"fields": ["detection_time", "action"], "operations": ["remove", "replace", "add"], "platforms": {"spc1": "20181100"}}}}}}}')) + def test_rdma_config_update_validator_spc_asic_valid_version(self): + patch_element = {"path": "/PFC_WD/Ethernet8/detection_time", "op": "remove"} + assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == True + + @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"build_version": "SONiC.20220530"})) + @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="spc1")) + @patch("os.path.exists", mock.Mock(return_value=True)) + @patch("builtins.open", mock_open(read_data='{"tables": {"BUFFER_POOL": {"validator_data": {"rdma_config_update_validator": {"Shared/headroom pool size changes": {"fields": ["ingress_lossless_pool/xoff", "egress_lossy_pool/size"], "operations": ["replace"], "platforms": {"spc1": "20181100"}}}}}}}')) + def test_rdma_config_update_validator_spc_asic_invalid_op(self): + patch_element = {"path": "/BUFFER_POOL/ingress_lossless_pool/xoff", "op": "remove"} + assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == False + + @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"build_version": "SONiC.20220530"})) + @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="spc1")) + @patch("os.path.exists", mock.Mock(return_value=True)) + @patch("builtins.open", mock_open(read_data='{"tables": {"PFC_WD": {"validator_data": {"rdma_config_update_validator": {"PFCWD enable/disable": {"fields": ["detection_time", "action"], "operations": ["remove", "replace", "add"], "platforms": {"spc1": "20181100"}}}}}}}')) + def test_rdma_config_update_validator_spc_asic_other_field(self): + patch_element = {"path": "/PFC_WD/Ethernet8/other_field", "op": "add", "value": "sample_value"} + assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == False + + def test_validate_field_operation_illegal__pfcwd(self): + old_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "60"}}} + target_config = {"PFC_WD": {"GLOBAL": {}}} + config_wrapper = gu_common.ConfigWrapper() + self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) + + def test_validate_field_operation_legal__rm_loopback1(self): + old_config = { + "LOOPBACK_INTERFACE": { + "Loopback0": {}, + "Loopback0|10.1.0.32/32": {}, + "Loopback1": {}, + "Loopback1|10.1.0.33/32": {} + } + } + target_config = { + "LOOPBACK_INTERFACE": { + "Loopback0": {}, + "Loopback0|10.1.0.32/32": {} + } + } + config_wrapper = gu_common.ConfigWrapper() + config_wrapper.validate_field_operation(old_config, target_config) + + def test_validate_field_operation_illegal__rm_loopback0(self): + old_config = { + "LOOPBACK_INTERFACE": { + "Loopback0": {}, + "Loopback0|10.1.0.32/32": {}, + "Loopback1": {}, + "Loopback1|10.1.0.33/32": {} + } + } + target_config = { + "LOOPBACK_INTERFACE": { + "Loopback1": {}, + "Loopback1|10.1.0.33/32": {} + } + } + config_wrapper = gu_common.ConfigWrapper() + self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) + +class TestGetAsicName(unittest.TestCase): + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_spc1(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'mellanox'} + mock_popen.return_value = mock.Mock() + mock_popen.return_value.communicate.return_value = ["Mellanox-SN2700-D48C8", 0] + self.assertEqual(fov.get_asic_name(), "spc1") + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_th(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'broadcom'} + mock_popen.return_value = mock.Mock() + mock_popen.return_value.communicate.return_value = ["Broadcom Limited Device b960", 0] + self.assertEqual(fov.get_asic_name(), "th") + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_th2(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'broadcom'} + mock_popen.return_value = mock.Mock() + mock_popen.return_value.communicate.return_value = ["Broadcom Limited Device b971", 0] + self.assertEqual(fov.get_asic_name(), "th2") + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_td2(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'broadcom'} + mock_popen.return_value = mock.Mock() + mock_popen.return_value.communicate.return_value = ["Broadcom Limited Device b850", 0] + self.assertEqual(fov.get_asic_name(), "td2") + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_td3(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'broadcom'} + mock_popen.return_value = mock.Mock() + mock_popen.return_value.communicate.return_value = ["Broadcom Limited Device b870", 0] + self.assertEqual(fov.get_asic_name(), "td3") + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_cisco(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'cisco-8000'} + self.assertEqual(fov.get_asic_name(), "cisco-8000") diff --git a/tests/generic_config_updater/gcu_feature_patch_application_test.py b/tests/generic_config_updater/gcu_feature_patch_application_test.py index 3f744e20..db625e8c 100644 --- a/tests/generic_config_updater/gcu_feature_patch_application_test.py +++ b/tests/generic_config_updater/gcu_feature_patch_application_test.py @@ -1,6 +1,7 @@ import jsonpatch import unittest import copy +import mock from unittest.mock import MagicMock, Mock from mock import patch @@ -31,7 +32,8 @@ def get_running_config(): class TestFeaturePatchApplication(unittest.TestCase): def setUp(self): self.config_wrapper = ConfigWrapper() - + + @patch("generic_config_updater.field_operation_validators.rdma_config_update_validator", mock.Mock(return_value=True)) def test_feature_patch_application_success(self): # Format of the JSON file containing the test-cases: # @@ -52,6 +54,7 @@ def test_feature_patch_application_success(self): with self.subTest(name=test_case_name): self.run_single_success_case_applier(data[test_case_name]) + @patch("generic_config_updater.field_operation_validators.rdma_config_update_validator", mock.Mock(return_value=True)) def test_feature_patch_application_failure(self): # Fromat of the JSON file containing the test-cases: # diff --git a/tests/generic_config_updater/gu_common_test.py b/tests/generic_config_updater/gu_common_test.py index a319a25e..a2a776c0 100644 --- a/tests/generic_config_updater/gu_common_test.py +++ b/tests/generic_config_updater/gu_common_test.py @@ -71,62 +71,6 @@ def setUp(self): self.config_wrapper_mock = gu_common.ConfigWrapper() self.config_wrapper_mock.get_config_db_as_json=MagicMock(return_value=Files.CONFIG_DB_AS_JSON) - @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"asic_type": "mellanox", "build_version": "SONiC.20181131"})) - def test_validate_field_operation_legal__pfcwd(self): - old_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "60"}}} - target_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "40"}}} - config_wrapper = gu_common.ConfigWrapper() - config_wrapper.validate_field_operation(old_config, target_config) - - def test_validate_field_operation_illegal__pfcwd(self): - old_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "60"}}} - target_config = {"PFC_WD": {"GLOBAL": {}}} - config_wrapper = gu_common.ConfigWrapper() - self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) - - @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"asic_type": "invalid-asic", "build_version": "SONiC.20181131"})) - def test_validate_field_modification_illegal__pfcwd(self): - old_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "60"}}} - target_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "80"}}} - config_wrapper = gu_common.ConfigWrapper() - self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) - - def test_validate_field_operation_legal__rm_loopback1(self): - old_config = { - "LOOPBACK_INTERFACE": { - "Loopback0": {}, - "Loopback0|10.1.0.32/32": {}, - "Loopback1": {}, - "Loopback1|10.1.0.33/32": {} - } - } - target_config = { - "LOOPBACK_INTERFACE": { - "Loopback0": {}, - "Loopback0|10.1.0.32/32": {} - } - } - config_wrapper = gu_common.ConfigWrapper() - config_wrapper.validate_field_operation(old_config, target_config) - - def test_validate_field_operation_illegal__rm_loopback0(self): - old_config = { - "LOOPBACK_INTERFACE": { - "Loopback0": {}, - "Loopback0|10.1.0.32/32": {}, - "Loopback1": {}, - "Loopback1|10.1.0.33/32": {} - } - } - target_config = { - "LOOPBACK_INTERFACE": { - "Loopback1": {}, - "Loopback1|10.1.0.33/32": {} - } - } - config_wrapper = gu_common.ConfigWrapper() - self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) - def test_ctor__default_values_set(self): config_wrapper = gu_common.ConfigWrapper() From d5544b4afbf40624cde02107ba64fed2048782f6 Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Thu, 25 May 2023 10:54:08 +0800 Subject: [PATCH 155/312] [config] Generate sysinfo as needed when override config (#2836) ADO: 17921518 What I did The generated Golden Config will not have knowledge of configs that are produced in run time, such as mac and platform. Generate that info in Override Config if missing. How I did it Reuse the mac and platform in existing device runnning config and generate that if missing. How to verify it Unit test --- config/main.py | 43 +++++++++++++ .../multi_asic_dm_gen_sysinfo.json | 55 ++++++++++++++++ tests/config_override_test.py | 63 +++++++++++++++++++ 3 files changed, 161 insertions(+) create mode 100644 tests/config_override_input/multi_asic_dm_gen_sysinfo.json diff --git a/config/main.py b/config/main.py index abef5397..f6bec33f 100644 --- a/config/main.py +++ b/config/main.py @@ -1824,6 +1824,47 @@ def override_config_by(golden_config_path): return +# This funtion is to generate sysinfo if that is missing in config_input. +# It will keep the same with sysinfo in cur_config if sysinfo exists. +# Otherwise it will modify config_input with generated sysinfo. +def generate_sysinfo(cur_config, config_input, ns=None): + # Generate required sysinfo for Golden Config. + device_metadata = config_input.get('DEVICE_METADATA') + + if not device_metadata or 'localhost' not in device_metadata: + return + + mac = None + platform = None + cur_device_metadata = cur_config.get('DEVICE_METADATA') + + # Reuse current config's mac and platform. Generate if absent + if cur_device_metadata is not None: + mac = cur_device_metadata.get('localhost', {}).get('mac') + platform = cur_device_metadata.get('localhost', {}).get('platform') + + if not mac: + if ns: + asic_role = device_metadata.get('localhost', {}).get('sub_role') + switch_type = device_metadata.get('localhost', {}).get('switch_type') + + if ((switch_type is not None and switch_type.lower() == "chassis-packet") or + (asic_role is not None and asic_role.lower() == "backend")): + mac = device_info.get_system_mac(namespace=ns) + else: + mac = device_info.get_system_mac() + else: + mac = device_info.get_system_mac() + + if not platform: + platform = device_info.get_platform() + + device_metadata['localhost']['mac'] = mac + device_metadata['localhost']['platform'] = platform + + return + + # # 'override-config-table' command ('config override-config-table ...') # @@ -1865,6 +1906,8 @@ def override_config_table(db, input_config_db, dry_run): ns_config_input = config_input["localhost"] else: ns_config_input = config_input[ns] + # Generate sysinfo if missing in ns_config_input + generate_sysinfo(current_config, ns_config_input, ns) else: ns_config_input = config_input updated_config = update_config(current_config, ns_config_input) diff --git a/tests/config_override_input/multi_asic_dm_gen_sysinfo.json b/tests/config_override_input/multi_asic_dm_gen_sysinfo.json new file mode 100644 index 00000000..2cb92bbe --- /dev/null +++ b/tests/config_override_input/multi_asic_dm_gen_sysinfo.json @@ -0,0 +1,55 @@ +{ + "localhost": { + "DEVICE_METADATA": { + "localhost": { + "default_bgp_status": "down", + "default_pfcwd_status": "enable", + "deployment_id": "1", + "docker_routing_config_mode": "separated", + "hostname": "sonic-switch", + "hwsku": "Mellanox-SN3800-D112C8", + "peer_switch": "sonic-switch", + "type": "ToRRouter", + "suppress-fib-pending": "enabled" + } + } + }, + "asic0": { + "DEVICE_METADATA": { + "localhost": { + "asic_id": "01.00.0", + "asic_name": "asic0", + "bgp_asn": "65100", + "cloudtype": "None", + "default_bgp_status": "down", + "default_pfcwd_status": "enable", + "deployment_id": "None", + "docker_routing_config_mode": "separated", + "hostname": "sonic", + "hwsku": "multi_asic", + "region": "None", + "sub_role": "FrontEnd", + "type": "LeafRouter" + } + } + }, + "asic1": { + "DEVICE_METADATA": { + "localhost": { + "asic_id": "08:00.0", + "asic_name": "asic1", + "bgp_asn": "65100", + "cloudtype": "None", + "default_bgp_status": "down", + "default_pfcwd_status": "enable", + "deployment_id": "None", + "docker_routing_config_mode": "separated", + "hostname": "sonic", + "hwsku": "multi_asic", + "region": "None", + "sub_role": "BackEnd", + "type": "LeafRouter" + } + } + } +} diff --git a/tests/config_override_test.py b/tests/config_override_test.py index ca14ae75..3df8cea5 100644 --- a/tests/config_override_test.py +++ b/tests/config_override_test.py @@ -23,6 +23,7 @@ FINAL_CONFIG_YANG_FAILURE = os.path.join(DATA_DIR, "final_config_yang_failure.json") MULTI_ASIC_MACSEC_OV = os.path.join(DATA_DIR, "multi_asic_macsec_ov.json") MULTI_ASIC_DEVICE_METADATA_RM = os.path.join(DATA_DIR, "multi_asic_dm_rm.json") +MULTI_ASIC_DEVICE_METADATA_GEN_SYSINFO = os.path.join(DATA_DIR, "multi_asic_dm_gen_sysinfo.json") # Load sonic-cfggen from source since /usr/local/bin/sonic-cfggen does not have .py extension. sonic_cfggen = load_module_from_source('sonic_cfggen', '/usr/local/bin/sonic-cfggen') @@ -318,6 +319,68 @@ def read_json_file_side_effect(filename): for ns, config_db in cfgdb_clients.items(): assert 'DEVICE_METADATA' not in config_db.get_config() + def test_device_metadata_keep_sysinfo(self): + def read_json_file_side_effect(filename): + with open(MULTI_ASIC_DEVICE_METADATA_GEN_SYSINFO, "r") as f: + device_metadata = json.load(f) + return device_metadata + db = Db() + cfgdb_clients = db.cfgdb_clients + + # Save original sysinfo in dict, compare later to see if it is override + orig_sysinfo = {} + for ns, config_db in cfgdb_clients.items(): + platform = config_db.get_config()['DEVICE_METADATA']['localhost'].get('platform') + mac = config_db.get_config()['DEVICE_METADATA']['localhost'].get('mac') + orig_sysinfo[ns] = {} + orig_sysinfo[ns]['platform'] = platform + orig_sysinfo[ns]['mac'] = mac + + with mock.patch('config.main.read_json_file', + mock.MagicMock(side_effect=read_json_file_side_effect)): + runner = CliRunner() + result = runner.invoke(config.config.commands["override-config-table"], + ['golden_config_db.json'], obj=db) + assert result.exit_code == 0 + + for ns, config_db in cfgdb_clients.items(): + platform = config_db.get_config()['DEVICE_METADATA']['localhost'].get('platform') + mac = config_db.get_config()['DEVICE_METADATA']['localhost'].get('mac') + assert platform == orig_sysinfo[ns]['platform'] + assert mac == orig_sysinfo[ns]['mac'] + + def test_device_metadata_gen_sysinfo(self): + def read_json_file_side_effect(filename): + with open(MULTI_ASIC_DEVICE_METADATA_GEN_SYSINFO, "r") as f: + device_metadata = json.load(f) + return device_metadata + db = Db() + cfgdb_clients = db.cfgdb_clients + + # Remove original sysinfo and check if use generated ones + for ns, config_db in cfgdb_clients.items(): + metadata = config_db.get_config()['DEVICE_METADATA']['localhost'] + metadata.pop('platform', None) + metadata.pop('mac', None) + config_db.set_entry('DEVICE_METADATA', 'localhost', metadata) + + with mock.patch('config.main.read_json_file', + mock.MagicMock(side_effect=read_json_file_side_effect)),\ + mock.patch('sonic_py_common.device_info.get_platform', + return_value="multi_asic"),\ + mock.patch('sonic_py_common.device_info.get_system_mac', + return_value="11:22:33:44:55:66"): + runner = CliRunner() + result = runner.invoke(config.config.commands["override-config-table"], + ['golden_config_db.json'], obj=db) + assert result.exit_code == 0 + + for ns, config_db in cfgdb_clients.items(): + platform = config_db.get_config()['DEVICE_METADATA']['localhost'].get('platform') + mac = config_db.get_config()['DEVICE_METADATA']['localhost'].get('mac') + assert platform == "multi_asic" + assert mac == "11:22:33:44:55:66" + @classmethod def teardown_class(cls): From db61efcaffe232c0995da1514487fe9e5f6a4ce7 Mon Sep 17 00:00:00 2001 From: Yaqiang Zhu Date: Mon, 29 May 2023 13:30:45 +0800 Subject: [PATCH 156/312] [vlan][dhcp_relay] Clear dhcpv6 relay counter while deleting vlan (#2852) What I did Fix this issue: sonic-net/sonic-buildimage#15047 Show dhcp_relay ipv6 counter will display vlan which has been deleted. How I did it Remove related info in state_db while deleting a vlan How to verify it Add unit test Build utilities and run cmd to verify Signed-off-by: Yaqiang Zhu --- config/vlan.py | 11 +++++++++++ tests/vlan_test.py | 10 ++++++---- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/config/vlan.py b/config/vlan.py index 05407392..e1ae1f02 100644 --- a/config/vlan.py +++ b/config/vlan.py @@ -1,6 +1,7 @@ import click import utilities_common.cli as clicommon import utilities_common.dhcp_relay_util as dhcp_relay_util +from swsscommon.swsscommon import SonicV2Connector from jsonpatch import JsonPatchConflict from time import sleep @@ -65,6 +66,14 @@ 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)) + if exists: + state_db.delete(state_db.STATE_DB, 'DHCPv6_COUNTER_TABLE|{}'.format(entry_name)) + + @vlan.command('del') @click.argument('vid', metavar='', required=True, type=int) @click.option('--no_restart_dhcp_relay', is_flag=True, type=click.BOOL, required=False, default=False, @@ -109,6 +118,8 @@ def del_vlan(db, vid, no_restart_dhcp_relay): # set dhcpv4_relay table set_dhcp_relay_table('VLAN', config_db, vlan, None) + delete_state_db_entry(vlan) + 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) diff --git a/tests/vlan_test.py b/tests/vlan_test.py index ce127102..56ac1838 100644 --- a/tests/vlan_test.py +++ b/tests/vlan_test.py @@ -391,10 +391,12 @@ def test_config_vlan_del_vlan(self, mock_restart_dhcp_relay_service): print(result.output) assert result.exit_code == 0 - result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1000"], obj=db) - print(result.exit_code) - print(result.output) - assert result.exit_code == 0 + with mock.patch("config.vlan.delete_state_db_entry") as delete_state_db_entry: + result = runner.invoke(config.config.commands["vlan"].commands["del"], ["1000"], obj=db) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + delete_state_db_entry.assert_called_once_with("Vlan1000") # show output result = runner.invoke(show.cli.commands["vlan"].commands["brief"], [], obj=db) From 4fead8960a4cc4a11a0f3ba94ae43e23ed3e7b38 Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak <38952541+stepanblyschak@users.noreply.github.com> Date: Mon, 29 May 2023 14:06:54 +0300 Subject: [PATCH 157/312] [sonic-package-manager] fix CLI plugin compatibility issue (#2842) - What I did Overcome a CLI plugin compatibility issue - How I did it DHCP relay extension expects the spm to name its plugin "dhcp-relay". This change keeps that format if there is just one CLI plugin. Signed-off-by: Stepan Blyschak --- sonic_package_manager/manager.py | 6 +++++- tests/sonic_package_manager/test_manager.py | 6 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/sonic_package_manager/manager.py b/sonic_package_manager/manager.py index 770641a2..7ed2be0a 100644 --- a/sonic_package_manager/manager.py +++ b/sonic_package_manager/manager.py @@ -171,7 +171,11 @@ def get_cli_plugin_path(package: Package, index: int, command: str) -> str: Path generated for this package. """ - plugin_module_file = f'{package.name}_{index}.py' + if index == 0: + plugin_module_file = f'{package.name}.py' + else: + plugin_module_file = f'{package.name}_{index}.py' + return os.path.join(get_cli_plugin_directory(command), plugin_module_file) diff --git a/tests/sonic_package_manager/test_manager.py b/tests/sonic_package_manager/test_manager.py index bc439e9d..ad365f94 100644 --- a/tests/sonic_package_manager/test_manager.py +++ b/tests/sonic_package_manager/test_manager.py @@ -165,7 +165,7 @@ def test_installation_cli_plugin(package_manager, fake_metadata_resolver, anythi with patch('sonic_package_manager.manager.get_cli_plugin_directory') as get_dir_mock: get_dir_mock.return_value = '/' package_manager.install('test-package') - package_manager.docker.extract.assert_called_once_with(anything, '/cli/plugin.py', '/test-package_0.py') + package_manager.docker.extract.assert_called_once_with(anything, '/cli/plugin.py', '/test-package.py') def test_installation_multiple_cli_plugin(package_manager, fake_metadata_resolver, mock_feature_registry, anything): @@ -178,7 +178,7 @@ def test_installation_multiple_cli_plugin(package_manager, fake_metadata_resolve package_manager.install('test-package') package_manager.docker.extract.assert_has_calls( [ - call(anything, '/cli/plugin.py', '/test-package_0.py'), + call(anything, '/cli/plugin.py', '/test-package.py'), call(anything, '/cli/plugin2.py', '/test-package_1.py'), ], any_order=True, @@ -188,7 +188,7 @@ def test_installation_multiple_cli_plugin(package_manager, fake_metadata_resolve package_manager.uninstall('test-package', force=True) remove_mock.assert_has_calls( [ - call('/test-package_0.py'), + call('/test-package.py'), call('/test-package_1.py'), ], any_order=True, From 69abbc3cf13d53e16707f5abdba76d756f1f5783 Mon Sep 17 00:00:00 2001 From: StormLiangMS <89824293+StormLiangMS@users.noreply.github.com> Date: Tue, 30 May 2023 22:27:30 +0800 Subject: [PATCH 158/312] Revert "[GCU] Complete RDMA Platform Validation Checks (#2791)" (#2854) This reverts commit f258e2a3e1b705c7b05a8a42489b9219fd9a5967. --- .../field_operation_validators.py | 117 +-------------- .../gcu_field_operation_validators.conf.json | 119 +-------------- generic_config_updater/gu_common.py | 6 +- .../field_operation_validator_test.py | 142 ------------------ .../gcu_feature_patch_application_test.py | 5 +- .../generic_config_updater/gu_common_test.py | 56 +++++++ 6 files changed, 66 insertions(+), 379 deletions(-) delete mode 100644 tests/generic_config_updater/field_operation_validator_test.py diff --git a/generic_config_updater/field_operation_validators.py b/generic_config_updater/field_operation_validators.py index 883944c2..84cc4854 100644 --- a/generic_config_updater/field_operation_validators.py +++ b/generic_config_updater/field_operation_validators.py @@ -1,117 +1,10 @@ -import os -import re -import json -import jsonpointer -import subprocess from sonic_py_common import device_info -from .gu_common import GenericConfigUpdaterError - - -SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__)) -GCU_TABLE_MOD_CONF_FILE = f"{SCRIPT_DIR}/gcu_field_operation_validators.conf.json" - -def get_asic_name(): - asic = "unknown" - - if os.path.exists(GCU_TABLE_MOD_CONF_FILE): - with open(GCU_TABLE_MOD_CONF_FILE, "r") as s: - gcu_field_operation_conf = json.load(s) - else: - raise GenericConfigUpdaterError("GCU table modification validators config file not found") - - asic_mapping = gcu_field_operation_conf["helper_data"]["rdma_config_update_validator"] - - if device_info.get_sonic_version_info()['asic_type'] == 'cisco-8000': - asic = "cisco-8000" - elif device_info.get_sonic_version_info()['asic_type'] == 'mellanox': - GET_HWSKU_CMD = "sonic-cfggen -d -v DEVICE_METADATA.localhost.hwsku" - spc1_hwskus = asic_mapping["mellanox_asics"]["spc1"] - proc = subprocess.Popen(GET_HWSKU_CMD, shell=True, universal_newlines=True, stdout=subprocess.PIPE) - output, err = proc.communicate() - hwsku = output.rstrip('\n') - if hwsku.lower() in [spc1_hwsku.lower() for spc1_hwsku in spc1_hwskus]: - asic = "spc1" - elif device_info.get_sonic_version_info()['asic_type'] == 'broadcom': - command = ["sudo", "lspci"] - proc = subprocess.Popen(command, universal_newlines=True, stdout=subprocess.PIPE) - output, err = proc.communicate() - broadcom_asics = asic_mapping["broadcom_asics"] - for asic_shorthand, asic_descriptions in broadcom_asics.items(): - if asic != "unknown": - break - for asic_description in asic_descriptions: - if asic_description in output: - asic = asic_shorthand - break - - return asic - +import re -def rdma_config_update_validator(patch_element): - asic = get_asic_name() - if asic == "unknown": - return False +def rdma_config_update_validator(): version_info = device_info.get_sonic_version_info() - build_version = version_info.get('build_version') - version_substrings = build_version.split('.') - branch_version = None - - for substring in version_substrings: - if substring.isdigit() and re.match(r'^\d{8}$', substring): - branch_version = substring - - path = patch_element["path"] - table = jsonpointer.JsonPointer(path).parts[0] - - # Helper function to return relevant cleaned paths, consdiers case where the jsonpatch value is a dict - # For paths like /PFC_WD/Ethernet112/action, remove Ethernet112 from the path so that we can clearly determine the relevant field (i.e. action, not Ethernet112) - def _get_fields_in_patch(): - cleaned_fields = [] - - field_elements = jsonpointer.JsonPointer(path).parts[1:] - cleaned_field_elements = [elem for elem in field_elements if not any(char.isdigit() for char in elem)] - cleaned_field = '/'.join(cleaned_field_elements).lower() - - - if 'value' in patch_element.keys() and isinstance(patch_element['value'], dict): - for key in patch_element['value']: - cleaned_fields.append(cleaned_field+ '/' + key) - else: - cleaned_fields.append(cleaned_field) - - return cleaned_fields - - if os.path.exists(GCU_TABLE_MOD_CONF_FILE): - with open(GCU_TABLE_MOD_CONF_FILE, "r") as s: - gcu_field_operation_conf = json.load(s) - else: - raise GenericConfigUpdaterError("GCU table modification validators config file not found") - - tables = gcu_field_operation_conf["tables"] - scenarios = tables[table]["validator_data"]["rdma_config_update_validator"] - - cleaned_fields = _get_fields_in_patch() - for cleaned_field in cleaned_fields: - scenario = None - for key in scenarios.keys(): - if cleaned_field in scenarios[key]["fields"]: - scenario = scenarios[key] - break - - if scenario is None: - return False - - if scenario["platforms"][asic] == "": - return False - - if patch_element['op'] not in scenario["operations"]: - return False - - if branch_version is not None: - if asic in scenario["platforms"]: - if branch_version < scenario["platforms"][asic]: - return False - else: - return False + asic_type = version_info.get('asic_type') + if (asic_type != 'mellanox' and asic_type != 'broadcom' and asic_type != 'cisco-8000'): + return False return True diff --git a/generic_config_updater/gcu_field_operation_validators.conf.json b/generic_config_updater/gcu_field_operation_validators.conf.json index d89c5ae1..f12a14d8 100644 --- a/generic_config_updater/gcu_field_operation_validators.conf.json +++ b/generic_config_updater/gcu_field_operation_validators.conf.json @@ -10,128 +10,11 @@ "e.g. 'show.acl.test_acl'", "", "field_operation_validators for a given table defines a list of validators that all must pass for modification to the specified field and table to be allowed", - "", - "validator_data provides data relevant to each validator", "" ], - "helper_data": { - "rdma_config_update_validator": { - "mellanox_asics": { - "spc1": [ "ACS-MSN2700", "ACS-MSN2740", "ACS-MSN2100", "ACS-MSN2410", "ACS-MSN2010", "Mellanox-SN2700", "Mellanox-SN2700-D48C8" ] - }, - "broadcom_asics": { - "th": ["Broadcom Limited Device b960", "Broadcom Limited Broadcom BCM56960"], - "th2": ["Broadcom Limited Device b971"], - "td2": ["Broadcom Limited Device b850", "Broadcom Limited Broadcom BCM56850"], - "td3": ["Broadcom Limited Device b870", "Broadcom Inc. and subsidiaries Device b870"] - } - } - }, "tables": { "PFC_WD": { - "field_operation_validators": [ "generic_config_updater.field_operation_validators.rdma_config_update_validator" ], - "validator_data": { - "rdma_config_update_validator": { - "PFCWD enable/disable": { - "fields": [ - "restoration_time", - "detection_time", - "action", - "global/poll_interval" - ], - "operations": ["remove", "add", "replace"], - "platforms": { - "spc1": "20181100", - "td2": "20181100", - "th": "20181100", - "th2": "20181100", - "td3": "20201200", - "cisco-8000": "20201200" - } - } - } - } - }, - "BUFFER_POOL": { - "field_operation_validators": [ "generic_config_updater.field_operation_validators.rdma_config_update_validator" ], - "validator_data": { - "rdma_config_update_validator": { - "Shared/headroom pool size changes": { - "fields": [ - "ingress_lossless_pool/xoff", - "ingress_lossless_pool/size", - "egress_lossy_pool/size" - ], - "operations": ["replace"], - "platforms": { - "spc1": "20191100", - "td2": "", - "th": "20221100", - "th2": "20221100", - "td3": "20221100", - "cisco-8000": "" - } - } - } - } - }, - "BUFFER_PROFILE": { - "field_operation_validators": [ "generic_config_updater.field_operation_validators.rdma_config_update_validator" ], - "validator_data": { - "rdma_config_update_validator": { - "Dynamic threshold tuning": { - "fields": [ - "dynamic_th" - ], - "operations": ["replace"], - "platforms": { - "spc1": "20181100", - "td2": "20181100", - "th": "20181100", - "th2": "20181100", - "td3": "20201200", - "cisco-8000": "" - } - }, - "PG headroom modification": { - "fields": [ - "xoff" - ], - "operations": ["replace"], - "platforms": { - "spc1": "20191100", - "td2": "", - "th": "20221100", - "th2": "20221100", - "td3": "20221100", - "cisco-8000": "" - } - } - } - } - }, - "WRED_PROFILE": { - "field_operation_validators": [ "generic_config_updater.field_operation_validators.rdma_config_update_validator" ], - "validator_data": { - "rdma_config_update_validator": { - "ECN tuning": { - "fields": [ - "azure_lossless/green_min_threshold", - "azure_lossless/green_max_threshold", - "azure_lossless/green_drop_probability" - ], - "operations": ["replace"], - "platforms": { - "spc1": "20181100", - "td2": "20181100", - "th": "20181100", - "th2": "20181100", - "td3": "20201200", - "cisco-8000": "" - } - } - } - } + "field_operation_validators": [ "generic_config_updater.field_operation_validators.rdma_config_update_validator" ] } } } diff --git a/generic_config_updater/gu_common.py b/generic_config_updater/gu_common.py index a6cb8de0..e8c66fcb 100644 --- a/generic_config_updater/gu_common.py +++ b/generic_config_updater/gu_common.py @@ -166,7 +166,7 @@ def validate_field_operation(self, old_config, target_config): if any(op['op'] == operation and field == op['path'] for op in patch): raise IllegalPatchOperationError("Given patch operation is invalid. Operation: {} is illegal on field: {}".format(operation, field)) - def _invoke_validating_function(cmd, jsonpatch_element): + def _invoke_validating_function(cmd): # cmd is in the format as . method_name = cmd.split(".")[-1] module_name = ".".join(cmd.split(".")[0:-1]) @@ -174,7 +174,7 @@ def _invoke_validating_function(cmd, jsonpatch_element): raise GenericConfigUpdaterError("Attempting to call invalid method {} in module {}. Module must be generic_config_updater.field_operation_validators, and method must be a defined validator".format(method_name, module_name)) module = importlib.import_module(module_name, package=None) method_to_call = getattr(module, method_name) - return method_to_call(jsonpatch_element) + return method_to_call() if os.path.exists(GCU_FIELD_OP_CONF_FILE): with open(GCU_FIELD_OP_CONF_FILE, "r") as s: @@ -194,7 +194,7 @@ def _invoke_validating_function(cmd, jsonpatch_element): validating_functions.update(tables.get(table, {}).get("field_operation_validators", [])) for function in validating_functions: - if not _invoke_validating_function(function, element): + if not _invoke_validating_function(function): raise IllegalPatchOperationError("Modification of {} table is illegal- validating function {} returned False".format(table, function)) diff --git a/tests/generic_config_updater/field_operation_validator_test.py b/tests/generic_config_updater/field_operation_validator_test.py deleted file mode 100644 index 3b08b31d..00000000 --- a/tests/generic_config_updater/field_operation_validator_test.py +++ /dev/null @@ -1,142 +0,0 @@ -import io -import unittest -import mock -import json -import subprocess -import generic_config_updater -import generic_config_updater.field_operation_validators as fov -import generic_config_updater.gu_common as gu_common - -from unittest.mock import MagicMock, Mock, mock_open -from mock import patch -from sonic_py_common.device_info import get_hwsku, get_sonic_version_info - - -class TestValidateFieldOperation(unittest.TestCase): - - @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="unknown")) - def test_rdma_config_update_validator_unknown_asic(self): - patch_element = {"path": "/PFC_WD/Ethernet4/restoration_time", "op": "replace", "value": "234234"} - assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == False - - @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"build_version": "SONiC.20220530"})) - @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="td3")) - @patch("os.path.exists", mock.Mock(return_value=True)) - @patch("builtins.open", mock_open(read_data='{"tables": {"BUFFER_POOL": {"validator_data": {"rdma_config_update_validator": {"Shared/headroom pool size changes": {"fields": ["ingress_lossless_pool/xoff", "ingress_lossless_pool/size", "egress_lossy_pool/size"], "operations": ["replace"], "platforms": {"td3": "20221100"}}}}}}}')) - def test_rdma_config_update_validator_td3_asic_invalid_version(self): - patch_element = {"path": "/BUFFER_POOL/ingress_lossless_pool/xoff", "op": "replace", "value": "234234"} - assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == False - - @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"build_version": "SONiC.20220530"})) - @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="spc1")) - @patch("os.path.exists", mock.Mock(return_value=True)) - @patch("builtins.open", mock_open(read_data='{"tables": {"PFC_WD": {"validator_data": {"rdma_config_update_validator": {"PFCWD enable/disable": {"fields": ["detection_time", "action"], "operations": ["remove", "replace", "add"], "platforms": {"spc1": "20181100"}}}}}}}')) - def test_rdma_config_update_validator_spc_asic_valid_version(self): - patch_element = {"path": "/PFC_WD/Ethernet8/detection_time", "op": "remove"} - assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == True - - @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"build_version": "SONiC.20220530"})) - @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="spc1")) - @patch("os.path.exists", mock.Mock(return_value=True)) - @patch("builtins.open", mock_open(read_data='{"tables": {"BUFFER_POOL": {"validator_data": {"rdma_config_update_validator": {"Shared/headroom pool size changes": {"fields": ["ingress_lossless_pool/xoff", "egress_lossy_pool/size"], "operations": ["replace"], "platforms": {"spc1": "20181100"}}}}}}}')) - def test_rdma_config_update_validator_spc_asic_invalid_op(self): - patch_element = {"path": "/BUFFER_POOL/ingress_lossless_pool/xoff", "op": "remove"} - assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == False - - @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"build_version": "SONiC.20220530"})) - @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="spc1")) - @patch("os.path.exists", mock.Mock(return_value=True)) - @patch("builtins.open", mock_open(read_data='{"tables": {"PFC_WD": {"validator_data": {"rdma_config_update_validator": {"PFCWD enable/disable": {"fields": ["detection_time", "action"], "operations": ["remove", "replace", "add"], "platforms": {"spc1": "20181100"}}}}}}}')) - def test_rdma_config_update_validator_spc_asic_other_field(self): - patch_element = {"path": "/PFC_WD/Ethernet8/other_field", "op": "add", "value": "sample_value"} - assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == False - - def test_validate_field_operation_illegal__pfcwd(self): - old_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "60"}}} - target_config = {"PFC_WD": {"GLOBAL": {}}} - config_wrapper = gu_common.ConfigWrapper() - self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) - - def test_validate_field_operation_legal__rm_loopback1(self): - old_config = { - "LOOPBACK_INTERFACE": { - "Loopback0": {}, - "Loopback0|10.1.0.32/32": {}, - "Loopback1": {}, - "Loopback1|10.1.0.33/32": {} - } - } - target_config = { - "LOOPBACK_INTERFACE": { - "Loopback0": {}, - "Loopback0|10.1.0.32/32": {} - } - } - config_wrapper = gu_common.ConfigWrapper() - config_wrapper.validate_field_operation(old_config, target_config) - - def test_validate_field_operation_illegal__rm_loopback0(self): - old_config = { - "LOOPBACK_INTERFACE": { - "Loopback0": {}, - "Loopback0|10.1.0.32/32": {}, - "Loopback1": {}, - "Loopback1|10.1.0.33/32": {} - } - } - target_config = { - "LOOPBACK_INTERFACE": { - "Loopback1": {}, - "Loopback1|10.1.0.33/32": {} - } - } - config_wrapper = gu_common.ConfigWrapper() - self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) - -class TestGetAsicName(unittest.TestCase): - - @patch('sonic_py_common.device_info.get_sonic_version_info') - @patch('subprocess.Popen') - def test_get_asic_spc1(self, mock_popen, mock_get_sonic_version_info): - mock_get_sonic_version_info.return_value = {'asic_type': 'mellanox'} - mock_popen.return_value = mock.Mock() - mock_popen.return_value.communicate.return_value = ["Mellanox-SN2700-D48C8", 0] - self.assertEqual(fov.get_asic_name(), "spc1") - - @patch('sonic_py_common.device_info.get_sonic_version_info') - @patch('subprocess.Popen') - def test_get_asic_th(self, mock_popen, mock_get_sonic_version_info): - mock_get_sonic_version_info.return_value = {'asic_type': 'broadcom'} - mock_popen.return_value = mock.Mock() - mock_popen.return_value.communicate.return_value = ["Broadcom Limited Device b960", 0] - self.assertEqual(fov.get_asic_name(), "th") - - @patch('sonic_py_common.device_info.get_sonic_version_info') - @patch('subprocess.Popen') - def test_get_asic_th2(self, mock_popen, mock_get_sonic_version_info): - mock_get_sonic_version_info.return_value = {'asic_type': 'broadcom'} - mock_popen.return_value = mock.Mock() - mock_popen.return_value.communicate.return_value = ["Broadcom Limited Device b971", 0] - self.assertEqual(fov.get_asic_name(), "th2") - - @patch('sonic_py_common.device_info.get_sonic_version_info') - @patch('subprocess.Popen') - def test_get_asic_td2(self, mock_popen, mock_get_sonic_version_info): - mock_get_sonic_version_info.return_value = {'asic_type': 'broadcom'} - mock_popen.return_value = mock.Mock() - mock_popen.return_value.communicate.return_value = ["Broadcom Limited Device b850", 0] - self.assertEqual(fov.get_asic_name(), "td2") - - @patch('sonic_py_common.device_info.get_sonic_version_info') - @patch('subprocess.Popen') - def test_get_asic_td3(self, mock_popen, mock_get_sonic_version_info): - mock_get_sonic_version_info.return_value = {'asic_type': 'broadcom'} - mock_popen.return_value = mock.Mock() - mock_popen.return_value.communicate.return_value = ["Broadcom Limited Device b870", 0] - self.assertEqual(fov.get_asic_name(), "td3") - - @patch('sonic_py_common.device_info.get_sonic_version_info') - @patch('subprocess.Popen') - def test_get_asic_cisco(self, mock_popen, mock_get_sonic_version_info): - mock_get_sonic_version_info.return_value = {'asic_type': 'cisco-8000'} - self.assertEqual(fov.get_asic_name(), "cisco-8000") diff --git a/tests/generic_config_updater/gcu_feature_patch_application_test.py b/tests/generic_config_updater/gcu_feature_patch_application_test.py index db625e8c..3f744e20 100644 --- a/tests/generic_config_updater/gcu_feature_patch_application_test.py +++ b/tests/generic_config_updater/gcu_feature_patch_application_test.py @@ -1,7 +1,6 @@ import jsonpatch import unittest import copy -import mock from unittest.mock import MagicMock, Mock from mock import patch @@ -32,8 +31,7 @@ def get_running_config(): class TestFeaturePatchApplication(unittest.TestCase): def setUp(self): self.config_wrapper = ConfigWrapper() - - @patch("generic_config_updater.field_operation_validators.rdma_config_update_validator", mock.Mock(return_value=True)) + def test_feature_patch_application_success(self): # Format of the JSON file containing the test-cases: # @@ -54,7 +52,6 @@ def test_feature_patch_application_success(self): with self.subTest(name=test_case_name): self.run_single_success_case_applier(data[test_case_name]) - @patch("generic_config_updater.field_operation_validators.rdma_config_update_validator", mock.Mock(return_value=True)) def test_feature_patch_application_failure(self): # Fromat of the JSON file containing the test-cases: # diff --git a/tests/generic_config_updater/gu_common_test.py b/tests/generic_config_updater/gu_common_test.py index a2a776c0..a319a25e 100644 --- a/tests/generic_config_updater/gu_common_test.py +++ b/tests/generic_config_updater/gu_common_test.py @@ -71,6 +71,62 @@ def setUp(self): self.config_wrapper_mock = gu_common.ConfigWrapper() self.config_wrapper_mock.get_config_db_as_json=MagicMock(return_value=Files.CONFIG_DB_AS_JSON) + @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"asic_type": "mellanox", "build_version": "SONiC.20181131"})) + def test_validate_field_operation_legal__pfcwd(self): + old_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "60"}}} + target_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "40"}}} + config_wrapper = gu_common.ConfigWrapper() + config_wrapper.validate_field_operation(old_config, target_config) + + def test_validate_field_operation_illegal__pfcwd(self): + old_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "60"}}} + target_config = {"PFC_WD": {"GLOBAL": {}}} + config_wrapper = gu_common.ConfigWrapper() + self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) + + @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"asic_type": "invalid-asic", "build_version": "SONiC.20181131"})) + def test_validate_field_modification_illegal__pfcwd(self): + old_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "60"}}} + target_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "80"}}} + config_wrapper = gu_common.ConfigWrapper() + self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) + + def test_validate_field_operation_legal__rm_loopback1(self): + old_config = { + "LOOPBACK_INTERFACE": { + "Loopback0": {}, + "Loopback0|10.1.0.32/32": {}, + "Loopback1": {}, + "Loopback1|10.1.0.33/32": {} + } + } + target_config = { + "LOOPBACK_INTERFACE": { + "Loopback0": {}, + "Loopback0|10.1.0.32/32": {} + } + } + config_wrapper = gu_common.ConfigWrapper() + config_wrapper.validate_field_operation(old_config, target_config) + + def test_validate_field_operation_illegal__rm_loopback0(self): + old_config = { + "LOOPBACK_INTERFACE": { + "Loopback0": {}, + "Loopback0|10.1.0.32/32": {}, + "Loopback1": {}, + "Loopback1|10.1.0.33/32": {} + } + } + target_config = { + "LOOPBACK_INTERFACE": { + "Loopback1": {}, + "Loopback1|10.1.0.33/32": {} + } + } + config_wrapper = gu_common.ConfigWrapper() + self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) + def test_ctor__default_values_set(self): config_wrapper = gu_common.ConfigWrapper() From b5c1032573d7db53b6b9f896250f1d8867374ec0 Mon Sep 17 00:00:00 2001 From: Vaibhav Hemant Dixit Date: Tue, 30 May 2023 10:15:28 -0700 Subject: [PATCH 159/312] [db-migrator] Fix hwsku match for 6100 and add errors when hwsku is None (#2821) * Fix hwsku match for 6100 and add errors when hwsku is None * Asic type fix --- scripts/db_migrator.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index f1bc404d..cc9506f6 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -76,11 +76,14 @@ def __init__(self, namespace, socket=None): self.loglevelDB.connect(self.loglevelDB.LOGLEVEL_DB) version_info = device_info.get_sonic_version_info() - asic_type = version_info.get('asic_type') - self.asic_type = asic_type + self.asic_type = version_info.get('asic_type') + if not self.asic_type: + log.log_error("ASIC type information not obtained. DB migration will not be reliable") self.hwsku = device_info.get_hwsku() + if not self.hwsku: + log.log_error("HWSKU information not obtained. DB migration will not be reliable") - if asic_type == "mellanox": + if self.asic_type == "mellanox": from mellanox_buffer_migrator import MellanoxBufferMigrator self.mellanox_buffer_migrator = MellanoxBufferMigrator(self.configDB, self.appDB, self.stateDB) @@ -989,7 +992,7 @@ def common_migration_ops(self): # removed together with calling to migrate_copp_table function. if self.asic_type != "mellanox": self.migrate_copp_table() - if self.asic_type == "broadcom" and 'Force10-S6100' in self.hwsku: + if self.asic_type == "broadcom" and 'Force10-S6100' in str(self.hwsku): self.migrate_mgmt_ports_on_s6100() else: log.log_notice("Asic Type: {}, Hwsku: {}".format(self.asic_type, self.hwsku)) From b2c29b0b0c072bbabc15f36626d5bb7651a37e0a Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Wed, 31 May 2023 14:26:41 +0800 Subject: [PATCH 160/312] [config] Generate sysinfo in single asic (#2856) What I did It is a bug introduced from #2836. Need to generate sysinfo for single asic. How I did it Reuse the mac and platform in existing device runnning config and generate that if missing. How to verify it Unit test --- config/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/main.py b/config/main.py index f6bec33f..03feffaf 100644 --- a/config/main.py +++ b/config/main.py @@ -1906,10 +1906,10 @@ def override_config_table(db, input_config_db, dry_run): ns_config_input = config_input["localhost"] else: ns_config_input = config_input[ns] - # Generate sysinfo if missing in ns_config_input - generate_sysinfo(current_config, ns_config_input, ns) else: ns_config_input = config_input + # Generate sysinfo if missing in ns_config_input + generate_sysinfo(current_config, ns_config_input, ns) updated_config = update_config(current_config, ns_config_input) yang_enabled = device_info.is_yang_config_validation_enabled(config_db) From 6e0ee3e7f20a97cbb58b92a148f08ef5bad8c1f7 Mon Sep 17 00:00:00 2001 From: Oleksandr Ivantsiv Date: Wed, 31 May 2023 09:36:23 +0200 Subject: [PATCH 161/312] [CRM][DASH] Extend CRM utility to support DASH resources. (#2800) - What I did Extend CRM utility to support DASH resources. - How I did it Add "dash" sub-group to "crm config" and "crm show" commands. "dash" sub-group will be available for the user only if SONiC runs on the DPU. - How to verify it Compile sonic-utilities package. The tests will run automatically. To cover dash-related functionality new test tests/crm_dash_test.py was added. Code coverage is the following: crm/dash_config.py - 99% crm/dash_show.py - 98% crm/main.py - 92% - Previous command output (if the output of a command-line utility has changed) The existing commands are not affected. - New command output (if the output of a command-line utility has changed) crm config thresholds dash [vnet|eni|eni-ether-address] type [percentage|used|count] thresholds dash [vnet|eni|eni-ether-address] [low|high] thresholds dash [ipv4|ipv6] [inbound|outbound] routing type [percentage|used|count] thresholds dash [ipv4|ipv6] [inbound|outbound] routing [low|high] thresholds dash [ipv4|ipv6] pa-validation [percentage|used|count] thresholds dash [ipv4|ipv6] pa-validation [low|high] thresholds dash [ipv4|ipv6] outbound ca-to-pa [percentage|used|count] thresholds dash [ipv4|ipv6] outbound ca-to-pa [low|high] thresholds dash [ipv4|ipv6] acl group [percentage|used|count] thresholds dash [ipv4|ipv6] acl group [low|high] thresholds dash [ipv4|ipv6] acl rule [percentage|used|count] thresholds dash [ipv4|ipv6] acl rule [low|high] crm show [resources|thresholds] dash [vnet|eni|eni-ether-address] [resources|thresholds] dash [ipv4|ipv6] [inbound|outbound] routing [resources|thresholds] dash [ipv4|ipv6] pa-validation [resources|thresholds] dash [ipv4|ipv6] outbound ca-to-pa [resources|thresholds] dash [ipv4|ipv6] acl group [resources|thresholds] dash [ipv4|ipv6] acl rule show thresholds all show resources all Signed-off-by: Oleksandr Ivantsiv --- crm/dash_config.py | 155 ++++++++++++++++++++++++++++++++ crm/dash_show.py | 119 ++++++++++++++++++++++++ crm/main.py | 150 +++++++++++++++++++++++++++---- tests/crm_dash/config_db.json | 55 ++++++++++++ tests/crm_dash/counters_db.json | 54 +++++++++++ tests/crm_dash_test.py | 150 +++++++++++++++++++++++++++++++ 6 files changed, 666 insertions(+), 17 deletions(-) create mode 100644 crm/dash_config.py create mode 100644 crm/dash_show.py create mode 100644 tests/crm_dash/config_db.json create mode 100644 tests/crm_dash/counters_db.json create mode 100644 tests/crm_dash_test.py diff --git a/crm/dash_config.py b/crm/dash_config.py new file mode 100644 index 00000000..5412d66c --- /dev/null +++ b/crm/dash_config.py @@ -0,0 +1,155 @@ +import click + +def get_attr_full_name(ctx, threshold): + attr = 'dash_' + + if ctx.obj["crm"].addr_family: + attr += ctx.obj["crm"].addr_family + '_' + + if ctx.obj["crm"].direction: + attr += ctx.obj["crm"].direction + '_' + + attr += ctx.obj["crm"].res_type + '_' + threshold + return attr + +@click.command('type') +@click.argument('value', type=click.Choice(['percentage', 'used', 'free'])) +@click.pass_context +def config_dash_type(ctx, value): + """CRM threshold type configuration""" + ctx.obj["crm"].config(get_attr_full_name(ctx, 'threshold_type'), value) + +@click.command('low') +@click.argument('value', type=click.INT) +@click.pass_context +def config_dash_low(ctx, value): + """CRM low threshold configuration""" + ctx.obj["crm"].config(get_attr_full_name(ctx, 'low_threshold'), value) + +@click.command('high') +@click.argument('value', type=click.INT) +@click.pass_context +def config_dash_high(ctx, value): + """CRM high threshold configuration""" + ctx.obj["crm"].config(get_attr_full_name(ctx, 'high_threshold'), value) + +def group_add_thresholds(group): + group.add_command(config_dash_type) + group.add_command(config_dash_low) + group.add_command(config_dash_high) + +@click.group('dash') +@click.pass_context +def config_dash(ctx): + """CRM configuration for DASH resource""" + pass + +@config_dash.group('ipv4') +@click.pass_context +def config_dash_ipv4(ctx): + """DASH CRM resource IPv4 address family""" + ctx.obj["crm"].addr_family = 'ipv4' + +@config_dash.group('ipv6') +@click.pass_context +def config_dash_ipv6(ctx): + """DASH CRM resource IPv6 address family""" + ctx.obj["crm"].addr_family = 'ipv6' + +@click.group('inbound') +@click.pass_context +def config_dash_inbound(ctx): + """DASH CRM inbound direction resource""" + ctx.obj["crm"].direction = 'inbound' + +config_dash_ipv4.add_command(config_dash_inbound) +config_dash_ipv6.add_command(config_dash_inbound) + +@click.group('outbound') +@click.pass_context +def config_dash_outbound(ctx): + """DASH CRM outbound direction resource""" + ctx.obj["crm"].direction = 'outbound' + +config_dash_ipv4.add_command(config_dash_outbound) +config_dash_ipv6.add_command(config_dash_outbound) + +@config_dash.group('eni') +@click.pass_context +def config_dash_eni(ctx): + """CRM configuration for DASH ENI resource""" + ctx.obj["crm"].res_type = 'eni' + +group_add_thresholds(config_dash_eni) + +@config_dash.group('eni-ether-address') +@click.pass_context +def config_dash_eni_ether_address_map(ctx): + """CRM configuration for DASH ENI ETHER address map entry""" + ctx.obj["crm"].res_type = 'eni_ether_address_map' + +group_add_thresholds(config_dash_eni_ether_address_map) + +@config_dash.group('vnet') +@click.pass_context +def config_dash_vnet(ctx): + """CRM configuration for DASH VNET resource""" + ctx.obj["crm"].res_type = 'vnet' + +group_add_thresholds(config_dash_vnet) + +@click.group('routing') +@click.pass_context +def config_dash_routing(ctx): + """CRM configuration for DASH inbound routes""" + ctx.obj["crm"].res_type = 'routing' + +group_add_thresholds(config_dash_routing) +config_dash_inbound.add_command(config_dash_routing) +config_dash_outbound.add_command(config_dash_routing) + +@click.group('pa-validation') +@click.pass_context +def config_dash_pa_validation(ctx): + """CRM configuration for DASH PA validation entries""" + ctx.obj["crm"].res_type = 'pa_validation' + +group_add_thresholds(config_dash_pa_validation) +config_dash_ipv4.add_command(config_dash_pa_validation) +config_dash_ipv6.add_command(config_dash_pa_validation) + +@click.group('ca-to-pa') +@click.pass_context +def config_dash_ca_to_pa(ctx): + """CRM configuration for DASH CA to PA entries""" + ctx.obj["crm"].res_type = 'ca_to_pa' + +group_add_thresholds(config_dash_ca_to_pa) +config_dash_outbound.add_command(config_dash_ca_to_pa) + +@click.group('acl') +@click.pass_context +def config_dash_acl(ctx): + """DASH CRM ACL resource""" + +config_dash_ipv4.add_command(config_dash_acl) +config_dash_ipv6.add_command(config_dash_acl) + +@click.group('group') +@click.pass_context +def config_dash_acl_group(ctx): + """CRM configuration for DASH ACL group entries""" + ctx.obj["crm"].res_type = 'acl_group' + +group_add_thresholds(config_dash_acl_group) +config_dash_acl.add_command(config_dash_acl_group) + +@click.group('rule') +@click.pass_context +def config_dash_acl_rule(ctx): + """CRM configuration for DASH ACL rule entries""" + ctx.obj["crm"].res_type = 'acl_rule' + +group_add_thresholds(config_dash_acl_rule) +config_dash_acl.add_command(config_dash_acl_rule) + diff --git a/crm/dash_show.py b/crm/dash_show.py new file mode 100644 index 00000000..6fa59dc5 --- /dev/null +++ b/crm/dash_show.py @@ -0,0 +1,119 @@ +import click + +def show_resource(ctx, resource): + if ctx.obj["crm"].cli_mode == 'thresholds': + ctx.obj["crm"].show_thresholds(resource) + elif ctx.obj["crm"].cli_mode == 'resources': + ctx.obj["crm"].show_resources(resource) + +@click.group('dash') +@click.pass_context +def show_dash(ctx): + """Show CRM information for DASH""" + pass + +@show_dash.group('ipv4') +@click.pass_context +def show_dash_ipv4(ctx): + """Show CRM information for IPv4 address family""" + ctx.obj["crm"].addr_family = 'ipv4' + +@show_dash.group('ipv6') +@click.pass_context +def show_dash_ipv6(ctx): + """Show CRM information for IPv6 address family""" + ctx.obj["crm"].addr_family = 'ipv6' + +@click.group('inbound') +@click.pass_context +def show_dash_inbound(ctx): + """Show CRM information for inbound direction""" + ctx.obj["crm"].direction = 'inbound' + +show_dash_ipv4.add_command(show_dash_inbound) +show_dash_ipv6.add_command(show_dash_inbound) + +@click.group('outbound') +@click.pass_context +def show_dash_outbound(ctx): + """Show CRM information for outbound direction""" + ctx.obj["crm"].direction = 'outbound' + +show_dash_ipv4.add_command(show_dash_outbound) +show_dash_ipv6.add_command(show_dash_outbound) + +@show_dash.command('vnet') +@click.pass_context +def show_dash_vnet(ctx): + """Show CRM information for VNETs""" + show_resource(ctx, 'dash_vnet') + +@show_dash.command('eni') +@click.pass_context +def show_dash_eni(ctx): + """Show CRM information for ENIs""" + show_resource(ctx, 'dash_eni') + +@show_dash.command('eni-ether-address') +@click.pass_context +def show_dash_eni_ether_address_map(ctx): + """Show CRM information for ENI ETHER address map entries""" + show_resource(ctx, 'dash_eni_ether_address_map') + +@click.command('routing') +@click.pass_context +def show_dash_routing(ctx): + """Show CRM information for inbound routes""" + resource = f'dash_{ctx.obj["crm"].addr_family}_{ctx.obj["crm"].direction}_routing' + show_resource(ctx, resource) + +show_dash_inbound.add_command(show_dash_routing) +show_dash_outbound.add_command(show_dash_routing) + +@click.command('pa-validation') +@click.pass_context +def show_dash_pa_validation(ctx): + """Show CRM information for PA validation entries""" + resource = f'dash_{ctx.obj["crm"].addr_family}_pa_validation' + show_resource(ctx, resource) + +show_dash_ipv4.add_command(show_dash_pa_validation) +show_dash_ipv6.add_command(show_dash_pa_validation) + +@click.command('ca-to-pa') +@click.pass_context +def show_dash_ca_to_pa(ctx): + """Show CRM information for CA to PA entries""" + resource = f'dash_{ctx.obj["crm"].addr_family}_{ctx.obj["crm"].direction}_ca_to_pa' + show_resource(ctx, resource) + +show_dash_outbound.add_command(show_dash_ca_to_pa) + +@click.group('acl') +@click.pass_context +def show_dash_acl(ctx): + """Show CRM information for ACL resources""" + +show_dash_ipv4.add_command(show_dash_acl) +show_dash_ipv6.add_command(show_dash_acl) + +@click.command('group') +@click.pass_context +def show_dash_acl_group(ctx): + """Show CRM information for ACL group entries""" + resource = f'dash_{ctx.obj["crm"].addr_family}_acl_group' + show_resource(ctx, resource) + +show_dash_acl.add_command(show_dash_acl_group) + +@click.command('rule') +@click.pass_context +def show_dash_acl_rule(ctx): + """Show CRM information for ACL rule entries""" + resource = f'dash_{ctx.obj["crm"].addr_family}_acl_rule' + if ctx.obj["crm"].cli_mode == 'thresholds': + ctx.obj["crm"].show_thresholds(resource) + elif ctx.obj["crm"].cli_mode == 'resources': + ctx.obj["crm"].show_acl_group_resources(resource) + +show_dash_acl.add_command(show_dash_acl_rule) diff --git a/crm/main.py b/crm/main.py index 9b0d06e8..998ff23f 100644 --- a/crm/main.py +++ b/crm/main.py @@ -3,11 +3,38 @@ import click from swsscommon.swsscommon import ConfigDBConnector from tabulate import tabulate - from sonic_py_common import multi_asic from utilities_common.general import load_db_config from utilities_common import multi_asic as multi_asic_util + +from sonic_py_common import device_info + +from .dash_config import config_dash +from .dash_show import show_dash + + +platform_info = device_info.get_platform_info() + + class Crm: + + thresholds = ( + "ipv4_route", "ipv6_route", "ipv4_nexthop", "ipv6_nexthop", "ipv4_neighbor", "ipv6_neighbor", + "nexthop_group_member", "nexthop_group", "acl_table", "acl_group", "acl_entry", + "acl_counter", "fdb_entry", "ipmc_entry", "snat_entry", "dnat_entry", "mpls_inseg", + "mpls_nexthop","srv6_nexthop", "srv6_my_sid_entry" + ) + + resources = ( + "ipv4_route", "ipv6_route", "ipv4_nexthop", "ipv6_nexthop", "ipv4_neighbor", "ipv6_neighbor", + "nexthop_group_member", "nexthop_group", "fdb_entry", "ipmc_entry", "snat_entry", "dnat_entry", + "mpls_inseg", "mpls_nexthop","srv6_nexthop", "srv6_my_sid_entry" + ) + + acl_resources = ( + "acl_table", "acl_group", "acl_entry", "acl_counter" + ) + def __init__(self, db=None): self.cli_mode = None self.addr_family = None @@ -16,6 +43,12 @@ def __init__(self, db=None): self.cfgdb = db self.multi_asic = multi_asic_util.MultiAsic() + def get_thresholds_list(self): + return list(self.thresholds) + + def get_resources_list(self): + return list(self.resources) + @multi_asic_util.run_on_multi_asic def config(self, attr, val): """ @@ -53,7 +86,6 @@ def show_thresholds(self, resource): """ CRM Handler to display thresholds information. """ - configdb = self.cfgdb if configdb is None: # Get the namespace list @@ -69,10 +101,7 @@ def show_thresholds(self, resource): if crm_info: if resource == 'all': - for res in ["ipv4_route", "ipv6_route", "ipv4_nexthop", "ipv6_nexthop", "ipv4_neighbor", "ipv6_neighbor", - "nexthop_group_member", "nexthop_group", "acl_table", "acl_group", "acl_entry", - "acl_counter", "fdb_entry", "ipmc_entry", "snat_entry", "dnat_entry", "mpls_inseg", - "mpls_nexthop","srv6_nexthop", "srv6_my_sid_entry"]: + for res in self.get_thresholds_list(): try: data.append([res, crm_info[res + "_threshold_type"], crm_info[res + "_low_threshold"], crm_info[res + "_high_threshold"]]) except KeyError: @@ -98,9 +127,7 @@ def get_resources(self, resource): if crm_stats: if resource == 'all': - for res in ["ipv4_route", "ipv6_route", "ipv4_nexthop", "ipv6_nexthop", "ipv4_neighbor", "ipv6_neighbor", - "nexthop_group_member", "nexthop_group", "fdb_entry", "ipmc_entry", "snat_entry", "dnat_entry", - "mpls_inseg", "mpls_nexthop","srv6_nexthop", "srv6_my_sid_entry"]: + for res in self.get_resources_list(): if 'crm_stats_' + res + "_used" in crm_stats.keys() and 'crm_stats_' + res + "_available" in crm_stats.keys(): data.append([res, crm_stats['crm_stats_' + res + "_used"], crm_stats['crm_stats_' + res + "_available"]]) else: @@ -205,6 +232,83 @@ def show_acl_table_resources(self): click.echo(tabulate(data, headers=header, tablefmt="simple", missingval="")) click.echo() + def show_all_thresholds(self): + self.show_thresholds('all') + + def show_all_resources(self): + self.show_resources('all') + self.show_acl_resources() + self.show_acl_table_resources() + + +class DashCrm(Crm): + + dash_resources = ( + "dash_vnet", "dash_eni", "dash_eni_ether_address_map", "dash_ipv4_inbound_routing", "dash_ipv6_inbound_routing", + "dash_ipv4_outbound_routing", "dash_ipv6_outbound_routing", "dash_ipv4_pa_validation", "dash_ipv6_pa_validation", + "dash_ipv4_outbound_ca_to_pa", "dash_ipv6_outbound_ca_to_pa", "dash_ipv4_acl_group","dash_ipv6_acl_group" + ) + + dash_acl_group_resources = ( + "dash_ipv4_acl_rule", "dash_ipv6_acl_rule" + ) + + dash_thresholds = dash_resources + dash_acl_group_resources + + def __init__(self, *args, **kwargs): + self.direction = None + + super().__init__(*args, *kwargs) + + def get_thresholds_list(self): + thresholds = super().get_thresholds_list() + thresholds.extend(self.dash_thresholds) + return list(thresholds) + + def get_resources_list(self): + resources = super().get_resources_list() + resources.extend(self.dash_resources) + return list(resources) + + def show_all_resources(self): + super().show_all_resources() + self.show_acl_group_resources() + + def get_dash_acl_group_resources(self, resource=None): + # Retrieve all ACL table keys from CRM:ACL_TABLE_STATS + crm_acl_keys = self.db.keys(self.db.COUNTERS_DB, 'CRM:DASH_ACL_GROUP_STATS*') + data = [] + + for key in crm_acl_keys: + id = key.replace('CRM:DASH_ACL_GROUP_STATS:', '') + + crm_stats = self.db.get_all(self.db.COUNTERS_DB, key) + + query = [resource] if resource else self.dash_acl_group_resources + for res in query: + used = f'crm_stats_{res}_used' + available = f'crm_stats_{res}_available' + if used in crm_stats and available in crm_stats: + data.append([id, res, crm_stats[used], crm_stats[available]]) + + return data + + @multi_asic_util.run_on_multi_asic + def show_acl_group_resources(self, resource=None): + if self.multi_asic.is_multi_asic: + click.echo('\nError! Could not get CRM configuration.\n') + return + + header = ("DASH ACL Group ID", "Resource Name", "Used Count", "Available Count") + + data = [] + data = self.get_dash_acl_group_resources(resource) + + click.echo() + click.echo(tabulate(data, headers=header, tablefmt="simple", missingval="")) + click.echo() + + @click.group() @click.pass_context def cli(ctx): @@ -217,8 +321,13 @@ def cli(ctx): # Load database config files load_db_config() + if device_info.get_platform_info().get('switch_type') == "dpu": + crm = DashCrm(db) + else: + crm = Crm(db) + context = { - "crm": Crm(db) + "crm": crm } ctx.obj = context @@ -290,7 +399,7 @@ def nexthop(ctx): """CRM configuration for nexthop resource""" ctx.obj["crm"].res_type = 'nexthop' -@route.command() +@click.command() @click.argument('value', type=click.Choice(['percentage', 'used', 'free'])) @click.pass_context def type(ctx, value): @@ -304,7 +413,7 @@ def type(ctx, value): ctx.obj["crm"].config(attr, value) -@route.command() +@click.command() @click.argument('value', type=click.INT) @click.pass_context def low(ctx, value): @@ -318,7 +427,7 @@ def low(ctx, value): ctx.obj["crm"].config(attr, value) -@route.command() +@click.command() @click.argument('value', type=click.INT) @click.pass_context def high(ctx, value): @@ -332,6 +441,9 @@ def high(ctx, value): ctx.obj["crm"].config(attr, value) +route.add_command(type) +route.add_command(low) +route.add_command(high) neighbor.add_command(type) neighbor.add_command(low) neighbor.add_command(high) @@ -480,6 +592,9 @@ def srv6_my_sid_entry(ctx): srv6_my_sid_entry.add_command(low) srv6_my_sid_entry.add_command(high) +if device_info.get_platform_info().get('switch_type') == "dpu": + thresholds.add_command(config_dash) + @cli.group() @click.pass_context def show(ctx): @@ -509,11 +624,9 @@ def thresholds(ctx): def all(ctx): """Show CRM information for all resources""" if ctx.obj["crm"].cli_mode == 'thresholds': - ctx.obj["crm"].show_thresholds('all') + ctx.obj["crm"].show_all_thresholds() elif ctx.obj["crm"].cli_mode == 'resources': - ctx.obj["crm"].show_resources('all') - ctx.obj["crm"].show_acl_resources() - ctx.obj["crm"].show_acl_table_resources() + ctx.obj["crm"].show_all_resources() @resources.group() @click.pass_context @@ -695,6 +808,9 @@ def srv6_my_sid_entry(ctx): thresholds.add_command(srv6_nexthop) thresholds.add_command(srv6_my_sid_entry) +if device_info.get_platform_info().get('switch_type') == "dpu": + resources.add_command(show_dash) + thresholds.add_command(show_dash) if __name__ == '__main__': cli() diff --git a/tests/crm_dash/config_db.json b/tests/crm_dash/config_db.json new file mode 100644 index 00000000..f166b0b4 --- /dev/null +++ b/tests/crm_dash/config_db.json @@ -0,0 +1,55 @@ +{ + "CRM|Config": { + "expireat": 1680191314.928466, + "ttl": -0.001, + "type": "hash", + "value": { + "dash_eni_ether_address_map_high_threshold": "85", + "dash_eni_ether_address_map_low_threshold": "70", + "dash_eni_ether_address_map_threshold_type": "percentage", + "dash_eni_high_threshold": "85", + "dash_eni_low_threshold": "70", + "dash_eni_threshold_type": "percentage", + "dash_ipv4_acl_group_high_threshold": "85", + "dash_ipv4_acl_group_low_threshold": "70", + "dash_ipv4_acl_group_threshold_type": "percentage", + "dash_ipv4_acl_rule_high_threshold": "85", + "dash_ipv4_acl_rule_low_threshold": "70", + "dash_ipv4_acl_rule_threshold_type": "percentage", + "dash_ipv4_inbound_routing_high_threshold": "85", + "dash_ipv4_inbound_routing_low_threshold": "70", + "dash_ipv4_inbound_routing_threshold_type": "percentage", + "dash_ipv4_outbound_ca_to_pa_high_threshold": "85", + "dash_ipv4_outbound_ca_to_pa_low_threshold": "70", + "dash_ipv4_outbound_ca_to_pa_threshold_type": "percentage", + "dash_ipv4_outbound_routing_high_threshold": "85", + "dash_ipv4_outbound_routing_low_threshold": "70", + "dash_ipv4_outbound_routing_threshold_type": "percentage", + "dash_ipv4_pa_validation_high_threshold": "85", + "dash_ipv4_pa_validation_low_threshold": "70", + "dash_ipv4_pa_validation_threshold_type": "percentage", + "dash_ipv6_acl_group_high_threshold": "85", + "dash_ipv6_acl_group_low_threshold": "70", + "dash_ipv6_acl_group_threshold_type": "percentage", + "dash_ipv6_acl_rule_high_threshold": "85", + "dash_ipv6_acl_rule_low_threshold": "70", + "dash_ipv6_acl_rule_threshold_type": "percentage", + "dash_ipv6_inbound_routing_high_threshold": "85", + "dash_ipv6_inbound_routing_low_threshold": "70", + "dash_ipv6_inbound_routing_threshold_type": "percentage", + "dash_ipv6_outbound_ca_to_pa_high_threshold": "85", + "dash_ipv6_outbound_ca_to_pa_low_threshold": "70", + "dash_ipv6_outbound_ca_to_pa_threshold_type": "percentage", + "dash_ipv6_outbound_routing_high_threshold": "85", + "dash_ipv6_outbound_routing_low_threshold": "70", + "dash_ipv6_outbound_routing_threshold_type": "percentage", + "dash_ipv6_pa_validation_high_threshold": "85", + "dash_ipv6_pa_validation_low_threshold": "70", + "dash_ipv6_pa_validation_threshold_type": "percentage", + "dash_vnet_high_threshold": "85", + "dash_vnet_low_threshold": "70", + "dash_vnet_threshold_type": "percentage" + } + } +} + diff --git a/tests/crm_dash/counters_db.json b/tests/crm_dash/counters_db.json new file mode 100644 index 00000000..b0576a72 --- /dev/null +++ b/tests/crm_dash/counters_db.json @@ -0,0 +1,54 @@ +{ + "CRM:DASH_ACL_GROUP_STATS:0x6a00000000002d": { + "expireat": 1680172664.591134, + "ttl": -0.001, + "type": "hash", + "value": { + "crm_stats_dash_ipv4_acl_rule_available": "200000000", + "crm_stats_dash_ipv4_acl_rule_used": "100" + } + }, + "CRM:DASH_ACL_GROUP_STATS:0x6a00000000009d": { + "expireat": 1680172664.5912013, + "ttl": -0.001, + "type": "hash", + "value": { + "crm_stats_dash_ipv6_acl_rule_available": "200000000", + "crm_stats_dash_ipv6_acl_rule_used": "1000" + } + }, + "CRM:STATS": { + "expireat": 1680172664.5911696, + "ttl": -0.001, + "type": "hash", + "value": { + "crm_stats_dash_eni_available": "1000000", + "crm_stats_dash_eni_ether_address_map_available": "1000000", + "crm_stats_dash_eni_ether_address_map_used": "9", + "crm_stats_dash_eni_used": "9", + "crm_stats_dash_ipv4_acl_group_available": "200000000", + "crm_stats_dash_ipv4_acl_group_used": "27", + "crm_stats_dash_ipv4_inbound_routing_available": "200000000", + "crm_stats_dash_ipv4_inbound_routing_used": "9", + "crm_stats_dash_ipv4_outbound_ca_to_pa_available": "1000000", + "crm_stats_dash_ipv4_outbound_ca_to_pa_used": "0", + "crm_stats_dash_ipv4_outbound_routing_available": "1000000", + "crm_stats_dash_ipv4_outbound_routing_used": "9", + "crm_stats_dash_ipv4_pa_validation_available": "1000000", + "crm_stats_dash_ipv4_pa_validation_used": "0", + "crm_stats_dash_ipv6_acl_group_available": "200000000", + "crm_stats_dash_ipv6_acl_group_used": "0", + "crm_stats_dash_ipv6_inbound_routing_available": "200000000", + "crm_stats_dash_ipv6_inbound_routing_used": "0", + "crm_stats_dash_ipv6_outbound_ca_to_pa_available": "1000000", + "crm_stats_dash_ipv6_outbound_ca_to_pa_used": "0", + "crm_stats_dash_ipv6_outbound_routing_available": "1000000", + "crm_stats_dash_ipv6_outbound_routing_used": "0", + "crm_stats_dash_ipv6_pa_validation_available": "1000000", + "crm_stats_dash_ipv6_pa_validation_used": "0", + "crm_stats_dash_vnet_available": "200000000", + "crm_stats_dash_vnet_used": "2" + } + } +} + diff --git a/tests/crm_dash_test.py b/tests/crm_dash_test.py new file mode 100644 index 00000000..23b89658 --- /dev/null +++ b/tests/crm_dash_test.py @@ -0,0 +1,150 @@ +import os +import sys +import mock +import pytest +from importlib import reload +from tabulate import tabulate + +from click.testing import CliRunner +from utilities_common.db import Db +from .mock_tables import dbconnector + +import crm.main as crm + + +test_path = os.path.dirname(os.path.abspath(__file__)) +mock_db_path = os.path.join(test_path, "crm_dash") + + +@mock.patch('sonic_py_common.device_info.get_platform_info', mock.MagicMock(return_value={"switch_type": "dpu"})) +class TestCrmDash(object): + + dash_thresholds = [ + ("dash_vnet", ('dash', 'vnet')), + ("dash_eni", ('dash', 'eni')), + ("dash_eni_ether_address_map", ('dash', 'eni-ether-address')), + ("dash_ipv4_inbound_routing", ('dash', 'ipv4', 'inbound', 'routing')), + ("dash_ipv6_inbound_routing", ('dash', 'ipv6', 'inbound', 'routing')), + ("dash_ipv4_outbound_routing", ('dash', 'ipv4', 'outbound', 'routing')), + ("dash_ipv6_outbound_routing", ('dash', 'ipv6', 'outbound', 'routing')), + ("dash_ipv4_pa_validation", ('dash', 'ipv4', 'pa-validation')), + ("dash_ipv6_pa_validation", ('dash', 'ipv6', 'pa-validation')), + ("dash_ipv4_outbound_ca_to_pa", ('dash', 'ipv4', 'outbound', 'ca-to-pa')), + ("dash_ipv6_outbound_ca_to_pa", ('dash', 'ipv6', 'outbound', 'ca-to-pa')), + ("dash_ipv4_acl_group", ('dash', 'ipv4', 'acl', 'group')), + ("dash_ipv6_acl_group", ('dash', 'ipv6', 'acl', 'group')), + ("dash_ipv4_acl_rule", ('dash', 'ipv4', 'acl', 'rule')), + ("dash_ipv6_acl_rule", ('dash', 'ipv6', 'acl', 'rule')), + ] + + dash_resources = [ + ("dash_vnet", ('dash', 'vnet'), (2, 200000000)), + ("dash_eni", ('dash', 'eni'), (9, 1000000)), + ("dash_eni_ether_address_map", ('dash', 'eni-ether-address'), (9, 1000000)), + ("dash_ipv4_inbound_routing", ('dash', 'ipv4', 'inbound', 'routing'), (9, 200000000)), + ("dash_ipv4_outbound_routing", ('dash', 'ipv4', 'outbound', 'routing'), (9, 1000000)), + ("dash_ipv6_inbound_routing", ('dash', 'ipv6', 'inbound', 'routing'), (0, 200000000)), + ("dash_ipv6_outbound_routing", ('dash', 'ipv6', 'outbound', 'routing'), (0, 1000000)), + ("dash_ipv4_pa_validation", ('dash', 'ipv4', 'pa-validation'), (0, 1000000)), + ("dash_ipv6_pa_validation", ('dash', 'ipv6', 'pa-validation'), (0, 1000000)), + ("dash_ipv4_outbound_ca_to_pa", ('dash', 'ipv4', 'outbound', 'ca-to-pa'), (0, 1000000)), + ("dash_ipv6_outbound_ca_to_pa", ('dash', 'ipv6', 'outbound', 'ca-to-pa'), (0, 1000000)), + ("dash_ipv4_acl_group", ('dash', 'ipv4', 'acl', 'group'), (27, 200000000)), + ("dash_ipv6_acl_group", ('dash', 'ipv6', 'acl', 'group'), (0, 200000000)), + ] + + dash_acl_group_resources = [ + ("dash_ipv4_acl_rule", ('dash', 'ipv4', 'acl', 'rule'), "0x6a00000000002d", (100, 200000000)), + ("dash_ipv6_acl_rule", ('dash', 'ipv6', 'acl', 'rule'), "0x6a00000000009d", (1000, 200000000)), + ] + + dash_thresholds_header = ("Resource Name", "Threshold Type", "Low Threshold", "High Threshold") + dash_resources_header = ("Resource Name", "Used Count", "Available Count") + dash_acl_group_resources_header = ("DASH ACL Group ID", "Resource Name", "Used Count", "Available Count") + + @classmethod + def setup_class(cls): + print("SETUP") + os.environ["UTILITIES_UNIT_TESTING"] = "1" + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db') + dbconnector.dedicated_dbs['COUNTERS_DB'] = os.path.join(mock_db_path, "counters_db") + + @classmethod + def teardown_class(cls): + print("TEARDOWN") + os.environ["UTILITIES_UNIT_TESTING"] = "0" + os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "" + dbconnector.dedicated_dbs['CONFIG_DB'] = None + dbconnector.dedicated_dbs['COUNTERS_DB'] = None + dbconnector.load_namespace_config() + + @pytest.mark.parametrize("obj, cmd", dash_thresholds) + def test_crm_show_thresholds(self, obj, cmd): + reload(crm) + + db = Db() + runner = CliRunner() + result = runner.invoke(crm.cli, ('show', 'thresholds') + cmd, obj=db) + print(sys.stderr, result.output) + assert result.exit_code == 0 + + expected_output = tabulate([(obj, "percentage", "70", "85")], headers=self.dash_thresholds_header, tablefmt="simple", missingval="") + assert result.output == "\n" + expected_output + "\n\n" + + result = runner.invoke(crm.cli, ('config', 'thresholds') + cmd + ('high', '90'), obj=db) + print(sys.stderr, result.output) + assert result.exit_code == 0 + + result = runner.invoke(crm.cli, ('config', 'thresholds') + cmd + ('low', '60'), obj=db) + print(sys.stderr, result.output) + assert result.exit_code == 0 + + result = runner.invoke(crm.cli, ('show', 'thresholds') + cmd, obj=db) + print(sys.stderr, result.output) + assert result.exit_code == 0 + + expected_output = tabulate([(obj, "percentage", "60", "90")], headers=self.dash_thresholds_header, tablefmt="simple", missingval="") + assert result.output == "\n" + expected_output + "\n\n" + + def test_crm_show_all_thresholds(self): + reload(crm) + + db = Db() + runner = CliRunner() + result = runner.invoke(crm.cli, ('show', 'thresholds', 'all'), obj=db) + print(sys.stderr, result.output) + assert result.exit_code == 0 + + table = [] + for obj in self.dash_thresholds: + table.append((obj[0], "percentage", "70", "85")) + + expected_output = tabulate(table, headers=self.dash_thresholds_header, tablefmt="simple", missingval="") + assert result.output == "\n" + expected_output + "\n\n" + + @pytest.mark.parametrize("obj, cmd, cnt", dash_resources) + def test_crm_show_resources(self, obj, cmd, cnt): + reload(crm) + + db = Db() + runner = CliRunner() + result = runner.invoke(crm.cli, ('show', 'resources') + cmd, obj=db) + print(sys.stderr, result.output) + assert result.exit_code == 0 + + expected_output = tabulate([(obj,) + cnt], headers=self.dash_resources_header, tablefmt="simple", missingval="") + assert result.output == "\n" + expected_output + "\n\n" + + @pytest.mark.parametrize("obj, cmd, obj_id, cnt", dash_acl_group_resources) + def test_crm_show_acl_group_resources(self, obj, cmd, obj_id, cnt): + reload(crm) + + db = Db() + runner = CliRunner() + result = runner.invoke(crm.cli, ('show', 'resources') + cmd, obj=db) + print(sys.stderr, result.output) + assert result.exit_code == 0 + + expected_output = tabulate([(obj_id, obj) + cnt], headers=self.dash_acl_group_resources_header, tablefmt="simple", missingval="") + assert result.output == "\n" + expected_output + "\n\n" + From 575005727066022ae9153737abe554e94c7d4fec Mon Sep 17 00:00:00 2001 From: Mai Bui Date: Wed, 31 May 2023 09:00:24 -0400 Subject: [PATCH 162/312] [utilities_common] replace shell=True (#2718) #### What I did `subprocess()` - when using with `shell=True` is dangerous. Using subprocess function without a static string can lead to command injection. #### How I did it remove shell=True in utilities_common.cli.run_command() function. `subprocess()` - use `shell=False` instead, use list of strings Ref: [https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation](https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation) #### How to verify it Pass UT Manual test Signed-off-by: Mai Bui --- clear/main.py | 16 +- config/main.py | 370 +++++++++--------- config/plugins/mlnx.py | 8 +- config/syslog.py | 8 +- config/vlan.py | 25 +- scripts/sonic-bootchart | 8 +- show/acl.py | 10 +- show/chassis_modules.py | 20 +- show/dropcounters.py | 12 +- show/fabric.py | 16 +- show/flow_counters.py | 20 +- show/gearbox.py | 4 +- show/interfaces/__init__.py | 128 +++---- show/kdump.py | 12 +- show/main.py | 12 +- show/nat.py | 29 +- show/platform.py | 22 +- show/processes.py | 6 +- show/system_health.py | 6 +- show/vxlan.py | 6 +- tests/chassis_modules_test.py | 14 +- tests/clear_test.py | 33 ++ tests/config_int_ip_test.py | 2 +- tests/config_test.py | 430 +++++++++++++++++++-- tests/conftest.py | 2 +- tests/ecn_test.py | 2 +- tests/fabricstat_test.py | 16 +- tests/fdbshow_test.py | 48 +-- tests/flow_counter_stats_test.py | 14 +- tests/multi_asic_intfutil_test.py | 20 +- tests/multi_asic_queue_counter_test.py | 4 +- tests/pfcstat_test.py | 10 +- tests/portstat_test.py | 50 +-- tests/sfp_test.py | 26 +- tests/show_ip_int_test.py | 20 +- tests/show_platform_test.py | 10 +- tests/show_test.py | 496 ++++++++++++++++++++++++- tests/sonic_bootchart_test.py | 4 +- tests/utils.py | 2 +- tests/vlan_test.py | 12 +- utilities_common/bgp_util.py | 8 +- utilities_common/cli.py | 47 ++- 42 files changed, 1451 insertions(+), 557 deletions(-) diff --git a/clear/main.py b/clear/main.py index 19c1b607..21c87d55 100755 --- a/clear/main.py +++ b/clear/main.py @@ -492,10 +492,10 @@ def flowcnt_route(ctx, namespace): """Clear all route flow counters""" exit_if_route_flow_counter_not_support() if ctx.invoked_subcommand is None: - command = "flow_counters_stat -c -t route" + command = ['flow_counters_stat', '-c', '-t', 'route'] # None namespace means default namespace if namespace is not None: - command += " -n {}".format(namespace) + command += ['-n', str(namespace)] clicommon.run_command(command) @@ -506,12 +506,12 @@ def flowcnt_route(ctx, namespace): @click.argument('prefix-pattern', required=True) def pattern(prefix_pattern, vrf, namespace): """Clear route flow counters by pattern""" - command = "flow_counters_stat -c -t route --prefix_pattern {}".format(prefix_pattern) + command = ['flow_counters_stat', '-c', '-t', 'route', '--prefix_pattern', str(prefix_pattern)] if vrf: - command += ' --vrf {}'.format(vrf) + command += ['--vrf', str(vrf)] # None namespace means default namespace if namespace is not None: - command += " -n {}".format(namespace) + command += ['-n', str(namespace)] clicommon.run_command(command) @@ -522,12 +522,12 @@ def pattern(prefix_pattern, vrf, namespace): @click.argument('prefix', required=True) def route(prefix, vrf, namespace): """Clear route flow counters by prefix""" - command = "flow_counters_stat -c -t route --prefix {}".format(prefix) + command = ['flow_counters_stat', '-c', '-t', 'route', '--prefix', str(prefix)] if vrf: - command += ' --vrf {}'.format(vrf) + command += ['--vrf', str(vrf)] # None namespace means default namespace if namespace is not None: - command += " -n {}".format(namespace) + command += ['-n', str(namespace)] clicommon.run_command(command) diff --git a/config/main.py b/config/main.py index 03feffaf..aa207455 100644 --- a/config/main.py +++ b/config/main.py @@ -23,6 +23,7 @@ from portconfig import get_child_ports from socket import AF_INET, AF_INET6 from sonic_py_common import device_info, multi_asic +from sonic_py_common.general import getstatusoutput_noshell from sonic_py_common.interface import get_interface_table_name, get_port_table_name, get_intf_longname from utilities_common import util_base from swsscommon import swsscommon @@ -635,10 +636,12 @@ def _remove_bgp_neighbor_config(config_db, neighbor_ip_or_hostname): def _change_hostname(hostname): current_hostname = os.uname()[1] if current_hostname != hostname: - clicommon.run_command('echo {} > /etc/hostname'.format(hostname), display_cmd=True) - clicommon.run_command('hostname -F /etc/hostname', display_cmd=True) - clicommon.run_command(r'sed -i "/\s{}$/d" /etc/hosts'.format(current_hostname), display_cmd=True) - clicommon.run_command('echo "127.0.0.1 {}" >> /etc/hosts'.format(hostname), display_cmd=True) + with open('/etc/hostname', 'w') as f: + f.write(str(hostname) + '\n') + clicommon.run_command(['hostname', '-F', '/etc/hostname'], display_cmd=True) + clicommon.run_command(['sed', '-i', r"/\s{}$/d".format(current_hostname), '/etc/hosts'], display_cmd=True) + with open('/etc/hosts', 'a') as f: + f.write("127.0.0.1 " + str(hostname) + '\n') def _clear_cbf(): CBF_TABLE_NAMES = [ @@ -858,45 +861,44 @@ def _stop_services(): try: subprocess.check_call(['sudo', 'monit', 'status'], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) click.echo("Disabling container monitoring ...") - clicommon.run_command("sudo monit unmonitor container_checker") + clicommon.run_command(['sudo', 'monit', 'unmonitor', 'container_checker']) except subprocess.CalledProcessError as err: pass click.echo("Stopping SONiC target ...") - clicommon.run_command("sudo systemctl stop sonic.target --job-mode replace-irreversibly") + clicommon.run_command(['sudo', 'systemctl', 'stop', 'sonic.target', '--job-mode', 'replace-irreversibly']) def _get_sonic_services(): - out, _ = clicommon.run_command("systemctl list-dependencies --plain sonic.target | sed '1d'", return_cmd=True) - return (unit.strip() for unit in out.splitlines()) - + cmd = ['systemctl', 'list-dependencies', '--plain', 'sonic.target'] + out, _ = clicommon.run_command(cmd, return_cmd=True) + out = out.strip().split('\n')[1:] + return (unit.strip() for unit in out) def _reset_failed_services(): for service in _get_sonic_services(): - clicommon.run_command("systemctl reset-failed {}".format(service)) - + clicommon.run_command(['systemctl', 'reset-failed', str(service)]) def _restart_services(): click.echo("Restarting SONiC target ...") - clicommon.run_command("sudo systemctl restart sonic.target") + clicommon.run_command(['sudo', 'systemctl', 'restart', 'sonic.target']) try: subprocess.check_call(['sudo', 'monit', 'status'], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) click.echo("Enabling container monitoring ...") - clicommon.run_command("sudo monit monitor container_checker") + clicommon.run_command(['sudo', 'monit', 'monitor', 'container_checker']) except subprocess.CalledProcessError as err: pass # Reload Monit configuration to pick up new hostname in case it changed click.echo("Reloading Monit configuration ...") - clicommon.run_command("sudo monit reload") - + clicommon.run_command(['sudo', 'monit', 'reload']) def _per_namespace_swss_ready(service_name): - out, _ = clicommon.run_command("systemctl show {} --property ActiveState --value".format(service_name), return_cmd=True) + out, _ = clicommon.run_command(['systemctl', 'show', str(service_name), '--property', 'ActiveState', '--value'], return_cmd=True) if out.strip() != "active": return False - out, _ = clicommon.run_command("systemctl show {} --property ActiveEnterTimestampMonotonic --value".format(service_name), return_cmd=True) + out, _ = clicommon.run_command(['systemctl', 'show', str(service_name), '--property', 'ActiveEnterTimestampMonotonic', '--value'], return_cmd=True) swss_up_time = float(out.strip())/1000000 now = time.monotonic() if (now - swss_up_time > 120): @@ -921,7 +923,7 @@ def _swss_ready(): return True def _is_system_starting(): - out, _ = clicommon.run_command("sudo systemctl is-system-running", return_cmd=True) + out, _ = clicommon.run_command(['sudo', 'systemctl', 'is-system-running'], return_cmd=True) return out.strip() == "starting" def interface_is_in_vlan(vlan_member_table, interface_name): @@ -1092,13 +1094,8 @@ def update_sonic_environment(): if os.path.isfile(SONIC_ENV_TEMPLATE_FILE) and os.path.isfile(SONIC_VERSION_YML_FILE): clicommon.run_command( - "{} -d -y {} -t {},{}".format( - SONIC_CFGGEN_PATH, - SONIC_VERSION_YML_FILE, - SONIC_ENV_TEMPLATE_FILE, - SONIC_ENV_FILE - ), - display_cmd=True + [SONIC_CFGGEN_PATH, '-d', '-y', SONIC_VERSION_YML_FILE, '-t', '{},{}'.format(SONIC_ENV_TEMPLATE_FILE, SONIC_ENV_FILE)], + display_cmd=True ) def remove_router_interface_ip_address(config_db, interface_name, ipaddress_to_remove): @@ -1247,7 +1244,7 @@ def save(filename): command = "{} -n {} -d --print-data > {}".format(SONIC_CFGGEN_PATH, namespace, file) log.log_info("'save' executing...") - clicommon.run_command(command, display_cmd=True) + clicommon.run_command(command, display_cmd=True, shell=True) config_db = sort_dict(read_json_file(file)) with open(file, 'w') as config_db_file: @@ -1307,9 +1304,9 @@ def load(filename, yes): return if namespace is None: - command = "{} -j {} --write-to-db".format(SONIC_CFGGEN_PATH, file) + command = [str(SONIC_CFGGEN_PATH), '-j', file, '--write-to-db'] else: - command = "{} -n {} -j {} --write-to-db".format(SONIC_CFGGEN_PATH, namespace, file) + command = [str(SONIC_CFGGEN_PATH), '-n', str(namespace), '-j', file, '--write-to-db'] log.log_info("'load' executing...") clicommon.run_command(command, display_cmd=True) @@ -1581,9 +1578,9 @@ def reload(db, filename, yes, load_sysinfo, no_service_restart, force, file_form if load_sysinfo: if namespace is None: - command = "{} -H -k {} --write-to-db".format(SONIC_CFGGEN_PATH, cfg_hwsku) + command = [str(SONIC_CFGGEN_PATH), '-H', '-k', str(cfg_hwsku), '--write-to-db'] else: - command = "{} -H -k {} -n {} --write-to-db".format(SONIC_CFGGEN_PATH, cfg_hwsku, namespace) + command = [str(SONIC_CFGGEN_PATH), '-H', '-k', str(cfg_hwsku), '-n', str(namespace), '--write-to-db'] clicommon.run_command(command, display_cmd=True) # For the database service running in linux host we use the file user gives as input @@ -1591,23 +1588,20 @@ def reload(db, filename, yes, load_sysinfo, no_service_restart, force, file_form # the default config_db.json format is used. - config_gen_opts = "" + config_gen_opts = [] if os.path.isfile(INIT_CFG_FILE): - config_gen_opts += " -j {} ".format(INIT_CFG_FILE) + config_gen_opts += ['-j', str(INIT_CFG_FILE)] if file_format == 'config_db': - config_gen_opts += ' -j {} '.format(file) + config_gen_opts += ['-j', str(file)] else: - config_gen_opts += ' -Y {} '.format(file) + config_gen_opts += ['-Y', str(file)] if namespace is not None: - config_gen_opts += " -n {} ".format(namespace) - + config_gen_opts += ['-n', str(namespace)] - command = "{sonic_cfggen} {options} --write-to-db".format( - sonic_cfggen=SONIC_CFGGEN_PATH, - options=config_gen_opts) + command = [SONIC_CFGGEN_PATH] + config_gen_opts + ['--write-to-db'] clicommon.run_command(command, display_cmd=True) client.set(config_db.INIT_INDICATOR, 1) @@ -1616,9 +1610,9 @@ def reload(db, filename, yes, load_sysinfo, no_service_restart, force, file_form db_migrator='/usr/local/bin/db_migrator.py' if os.path.isfile(db_migrator) and os.access(db_migrator, os.X_OK): if namespace is None: - command = "{} -o migrate".format(db_migrator) + command = [db_migrator, '-o', 'migrate'] else: - command = "{} -o migrate -n {}".format(db_migrator, namespace) + command = [db_migrator, '-o', 'migrate', '-n', str(namespace)] clicommon.run_command(command, display_cmd=True) # Re-generate the environment variable in case config_db.json was edited @@ -1638,7 +1632,7 @@ def reload(db, filename, yes, load_sysinfo, no_service_restart, force, file_form def load_mgmt_config(filename): """Reconfigure hostname and mgmt interface based on device description file.""" log.log_info("'load_mgmt_config' executing...") - command = "{} -M {} --write-to-db".format(SONIC_CFGGEN_PATH, filename) + command = [SONIC_CFGGEN_PATH, '-M', str(filename), '--write-to-db'] clicommon.run_command(command, display_cmd=True) #FIXME: After config DB daemon for hostname and mgmt interface is implemented, we'll no longer need to do manual configuration here config_data = parse_device_desc_xml(filename) @@ -1650,19 +1644,29 @@ def load_mgmt_config(filename): mgmt_conf = netaddr.IPNetwork(key[1]) gw_addr = config_data['MGMT_INTERFACE'][key]['gwaddr'] if mgmt_conf.version == 4: - command = "ifconfig eth0 {} netmask {}".format(str(mgmt_conf.ip), str(mgmt_conf.netmask)) + command = ['ifconfig', 'eth0', str(mgmt_conf.ip), 'netmask', str(mgmt_conf.netmask)] clicommon.run_command(command, display_cmd=True) else: - command = "ifconfig eth0 add {}".format(str(mgmt_conf)) + command = ['ifconfig', 'eth0', 'add', str(mgmt_conf)] # Ignore error for IPv6 configuration command due to it not allows config the same IP twice clicommon.run_command(command, display_cmd=True, ignore_error=True) - command = "ip{} route add default via {} dev eth0 table default".format(" -6" if mgmt_conf.version == 6 else "", gw_addr) + command = ['ip'] + (["-6"] if mgmt_conf.version == 6 else []) + ['route', 'add', 'default', 'via', str(gw_addr), 'dev', 'eth0', 'table', 'default'] clicommon.run_command(command, display_cmd=True, ignore_error=True) - command = "ip{} rule add from {} table default".format(" -6" if mgmt_conf.version == 6 else "", str(mgmt_conf.ip)) + command = ['ip'] + (["-6"] if mgmt_conf.version == 6 else []) + ['rule', 'add', 'from', str(mgmt_conf.ip), 'table', 'default'] clicommon.run_command(command, display_cmd=True, ignore_error=True) if len(config_data['MGMT_INTERFACE'].keys()) > 0: - command = "[ -f /var/run/dhclient.eth0.pid ] && kill `cat /var/run/dhclient.eth0.pid` && rm -f /var/run/dhclient.eth0.pid" - clicommon.run_command(command, display_cmd=True, ignore_error=True) + filepath = '/var/run/dhclient.eth0.pid' + if not os.path.isfile(filepath): + sys.exit('File {} does not exist'.format(filepath)) + + out0, rc0 = clicommon.run_command(['cat', filepath], display_cmd=True, return_cmd=True) + if rc0 != 0: + sys.exit('Exit: {}. Command: cat {} failed.'.format(rc0, filepath)) + + out1, rc1 = clicommon.run_command(['kill', str(out0).strip('\n')], return_cmd=True) + if rc1 != 0: + sys.exit('Exit: {}. Command: kill {} failed.'.format(rc1, out0)) + clicommon.run_command(['rm', '-f', filepath], display_cmd=True, return_cmd=True) click.echo("Please note loaded setting will be lost after system reboot. To preserve setting, run `config save`.") @config.command("load_minigraph") @@ -1694,19 +1698,19 @@ def load_minigraph(db, no_service_restart, traffic_shift_away, override_config, for namespace in namespace_list: if namespace is DEFAULT_NAMESPACE: config_db = ConfigDBConnector() - cfggen_namespace_option = " " + cfggen_namespace_option = [] ns_cmd_prefix = "" else: config_db = ConfigDBConnector(use_unix_socket_path=True, namespace=namespace) - cfggen_namespace_option = " -n {}".format(namespace) + cfggen_namespace_option = ['-n', str(namespace)] ns_cmd_prefix = "sudo ip netns exec {} ".format(namespace) config_db.connect() client = config_db.get_redis_client(config_db.CONFIG_DB) client.flushdb() if os.path.isfile('/etc/sonic/init_cfg.json'): - command = "{} -H -m -j /etc/sonic/init_cfg.json {} --write-to-db".format(SONIC_CFGGEN_PATH, cfggen_namespace_option) + command = [SONIC_CFGGEN_PATH, '-H', '-m', '-j', '/etc/sonic/init_cfg.json'] + cfggen_namespace_option + ['--write-to-db'] else: - command = "{} -H -m --write-to-db {}".format(SONIC_CFGGEN_PATH, cfggen_namespace_option) + command = [SONIC_CFGGEN_PATH, '-H', '-m', '--write-to-db'] + cfggen_namespace_option clicommon.run_command(command, display_cmd=True) client.set(config_db.INIT_INDICATOR, 1) @@ -1714,7 +1718,7 @@ def load_minigraph(db, no_service_restart, traffic_shift_away, override_config, update_sonic_environment() if os.path.isfile('/etc/sonic/acl.json'): - clicommon.run_command("acl-loader update full /etc/sonic/acl.json", display_cmd=True) + clicommon.run_command(['acl-loader', 'update', 'full', '/etc/sonic/acl.json'], display_cmd=True) # Load port_config.json try: @@ -1723,26 +1727,26 @@ def load_minigraph(db, no_service_restart, traffic_shift_away, override_config, click.secho("Failed to load port_config.json, Error: {}".format(str(e)), fg='magenta') # generate QoS and Buffer configs - clicommon.run_command("config qos reload --no-dynamic-buffer --no-delay", display_cmd=True) + clicommon.run_command(['config', 'qos', 'reload', '--no-dynamic-buffer', '--no-delay'], display_cmd=True) # get the device type device_type = _get_device_type() if device_type != 'MgmtToRRouter' and device_type != 'MgmtTsToR' and device_type != 'BmcMgmtToRRouter' and device_type != 'EPMS': - clicommon.run_command("pfcwd start_default", display_cmd=True) + clicommon.run_command(['pfcwd', 'start_default'], display_cmd=True) # Write latest db version string into db - db_migrator='/usr/local/bin/db_migrator.py' + db_migrator = '/usr/local/bin/db_migrator.py' if os.path.isfile(db_migrator) and os.access(db_migrator, os.X_OK): for namespace in namespace_list: if namespace is DEFAULT_NAMESPACE: - cfggen_namespace_option = " " + cfggen_namespace_option = [] else: - cfggen_namespace_option = " -n {}".format(namespace) - clicommon.run_command(db_migrator + ' -o set_version' + cfggen_namespace_option) + cfggen_namespace_option = ['-n', str(namespace)] + clicommon.run_command([db_migrator, '-o', 'set_version'] + cfggen_namespace_option) # Keep device isolated with TSA if traffic_shift_away: - clicommon.run_command("TSA", display_cmd=True) + clicommon.run_command(["TSA"], display_cmd=True) if override_config: log.log_warning("Golden configuration may override System Maintenance state. Please execute TSC to check the current System mode") click.secho("[WARNING] Golden configuration may override Traffic-shift-away state. Please execute TSC to check the current System mode") @@ -1811,16 +1815,15 @@ def load_port_config(config_db, port_config_path): if 'admin_status' in port_table[port_name]: if port_table[port_name]['admin_status'] == port_config[port_name]['admin_status']: continue - clicommon.run_command('config interface {} {}'.format( + clicommon.run_command(['config', 'interface', 'startup' if port_config[port_name]['admin_status'] == 'up' else 'shutdown', - port_name), display_cmd=True) + port_name], display_cmd=True) return def override_config_by(golden_config_path): # Override configDB with golden config - clicommon.run_command('config override-config-table {}'.format( - golden_config_path), display_cmd=True) + clicommon.run_command(['config', 'override-config-table', str(golden_config_path)], display_cmd=True) return @@ -2500,20 +2503,20 @@ def start(action, restoration_time, ports, detection_time, verbose): Example: config pfcwd start --action drop all 400 --restoration-time 400 """ - cmd = "pfcwd start" + cmd = ['pfcwd', 'start'] if action: - cmd += " --action {}".format(action) + cmd += ['--action', str(action)] if ports: ports = set(ports) - set(['ports', 'detection-time']) - cmd += " {}".format(' '.join(ports)) + cmd += list(ports) if detection_time: - cmd += " {}".format(detection_time) + cmd += [str(detection_time)] if restoration_time: - cmd += " --restoration-time {}".format(restoration_time) + cmd += ['--restoration-time', str(restoration_time)] clicommon.run_command(cmd, display_cmd=verbose) @@ -2522,7 +2525,7 @@ def start(action, restoration_time, ports, detection_time, verbose): def stop(verbose): """ Stop PFC watchdog """ - cmd = "pfcwd stop" + cmd = ['pfcwd', 'stop'] clicommon.run_command(cmd, display_cmd=verbose) @@ -2532,7 +2535,7 @@ def stop(verbose): def interval(poll_interval, verbose): """ Set PFC watchdog counter polling interval (ms) """ - cmd = "pfcwd interval {}".format(poll_interval) + cmd = ['pfcwd', 'interval', str(poll_interval)] clicommon.run_command(cmd, display_cmd=verbose) @@ -2542,7 +2545,7 @@ def interval(poll_interval, verbose): def counter_poll(counter_poll, verbose): """ Enable/disable counter polling """ - cmd = "pfcwd counter_poll {}".format(counter_poll) + cmd = ['pfcwd', 'counter_poll', str(counter_poll)] clicommon.run_command(cmd, display_cmd=verbose) @@ -2552,7 +2555,7 @@ def counter_poll(counter_poll, verbose): def big_red_switch(big_red_switch, verbose): """ Enable/disable BIG_RED_SWITCH mode """ - cmd = "pfcwd big_red_switch {}".format(big_red_switch) + cmd = ['pfcwd', 'big_red_switch', str(big_red_switch)] clicommon.run_command(cmd, display_cmd=verbose) @@ -2561,7 +2564,7 @@ def big_red_switch(big_red_switch, verbose): def start_default(verbose): """ Start PFC WD by default configurations """ - cmd = "pfcwd start_default" + cmd = ['pfcwd', 'start_default'] clicommon.run_command(cmd, display_cmd=verbose) @@ -2597,9 +2600,9 @@ def reload(ctx, dry_run, json_data): _, hwsku_path = device_info.get_paths_to_platform_and_hwsku_dirs() sonic_version_file = device_info.get_sonic_version_file() - from_db = "-d --write-to-db" + from_db = ['-d', '--write-to-db'] if dry_run: - from_db = "--additional-data \'{}\'".format(json_data) if json_data else "" + from_db = ['--additional-data'] + [str(json_data)] if json_data else [] namespace_list = [DEFAULT_NAMESPACE] if multi_asic.get_num_asics() > 1: @@ -2628,12 +2631,9 @@ def reload(ctx, dry_run, json_data): cbf_template_file = os.path.join(hwsku_path, asic_id_suffix, "cbf.json.j2") if os.path.isfile(cbf_template_file): - cmd_ns = "" if ns is DEFAULT_NAMESPACE else "-n {}".format(ns) + cmd_ns = [] if ns is DEFAULT_NAMESPACE else ['-n', str(ns)] fname = "{}{}".format(dry_run, asic_id_suffix) if dry_run else "config-db" - command = "{} {} {} -t {},{} -y {}".format( - SONIC_CFGGEN_PATH, cmd_ns, from_db, - cbf_template_file, fname, sonic_version_file - ) + command = [SONIC_CFGGEN_PATH] + cmd_ns + from_db + ['-t', '{},{}'.format(cbf_template_file, fname), '-y', str(sonic_version_file)] # Apply the configuration clicommon.run_command(command, display_cmd=True) @@ -2695,9 +2695,9 @@ def reload(ctx, no_dynamic_buffer, no_delay, dry_run, json_data, ports, verbose) _, hwsku_path = device_info.get_paths_to_platform_and_hwsku_dirs() sonic_version_file = device_info.get_sonic_version_file() - from_db = "-d --write-to-db" + from_db = ['-d', '--write-to-db'] if dry_run: - from_db = "--additional-data \'{}\'".format(json_data) if json_data else "" + from_db = ['--additional-data'] + [str(json_data)] if json_data else [] namespace_list = [DEFAULT_NAMESPACE] if multi_asic.get_num_asics() > 1: @@ -2740,12 +2740,9 @@ def reload(ctx, no_dynamic_buffer, no_delay, dry_run, json_data, ports, verbose) hwsku_path, asic_id_suffix, "qos.json.j2" ) if os.path.isfile(qos_template_file): - cmd_ns = "" if ns is DEFAULT_NAMESPACE else "-n {}".format(ns) + cmd_ns = [] if ns is DEFAULT_NAMESPACE else ['-n', str(ns)] fname = "{}{}".format(dry_run, asic_id_suffix) if dry_run else "config-db" - command = "{} {} {} -t {},{} -t {},{} -y {}".format( - SONIC_CFGGEN_PATH, cmd_ns, from_db, buffer_template_file, - fname, qos_template_file, fname, sonic_version_file - ) + command = [SONIC_CFGGEN_PATH] + cmd_ns + from_db + ['-t', '{},{}'.format(buffer_template_file, fname), '-t', '{},{}'.format(qos_template_file, fname), '-y', sonic_version_file] # Apply the configurations only when both buffer and qos # configuration files are present clicommon.run_command(command, display_cmd=True) @@ -2786,9 +2783,9 @@ def _qos_update_ports(ctx, ports, dry_run, json_data): 'BUFFER_QUEUE'] if json_data: - from_db = "--additional-data \'{}\'".format(json_data) if json_data else "" + from_db = ['--additional-data'] + [json_data] if json_data else [] else: - from_db = "-d" + from_db = ["-d"] items_to_update = {} config_dbs = {} @@ -2832,10 +2829,8 @@ def _qos_update_ports(ctx, ports, dry_run, json_data): continue config_db.set_entry(table_name, '|'.join(key), None) - cmd_ns = "" if ns is DEFAULT_NAMESPACE else "-n {}".format(ns) - command = "{} {} {} -t {},config-db -t {},config-db -y {} --print-data".format( - SONIC_CFGGEN_PATH, cmd_ns, from_db, buffer_template_file, qos_template_file, sonic_version_file - ) + cmd_ns = [] if ns is DEFAULT_NAMESPACE else ['-n', str(ns)] + command = [SONIC_CFGGEN_PATH] + cmd_ns + from_db + ['-t', '{},config-db'.format(buffer_template_file), '-t', '{},config-db'.format(qos_template_file), '-y', sonic_version_file, '--print-data'] jsonstr, _ = clicommon.run_command(command, display_cmd=False, return_cmd=True) jsondict = json.loads(jsonstr) @@ -2913,8 +2908,8 @@ def _qos_update_ports(ctx, ports, dry_run, json_data): json.dump(items_to_apply, f, sort_keys=True, indent=4) else: jsonstr = json.dumps(items_to_apply) - cmd_ns = "" if ns is DEFAULT_NAMESPACE else "-n {}".format(ns) - command = "{} {} --additional-data '{}' --write-to-db".format(SONIC_CFGGEN_PATH, cmd_ns, jsonstr) + cmd_ns = [] if ns is DEFAULT_NAMESPACE else ['-n', str(ns)] + command = [SONIC_CFGGEN_PATH] + cmd_ns + ['--additional-data', jsonstr, '--write-to-db'] clicommon.run_command(command, display_cmd=False) if portset_to_handle != portset_handled: @@ -3320,8 +3315,8 @@ def add_community(db, community, string_type): try: click.echo("Restarting SNMP service...") - clicommon.run_command("systemctl reset-failed snmp.service", display_cmd=False) - clicommon.run_command("systemctl restart snmp.service", display_cmd=False) + clicommon.run_command(['systemctl', 'reset-failed', 'snmp.service'], display_cmd=False) + clicommon.run_command(['systemctl', 'restart', 'snmp.service'], display_cmd=False) except SystemExit as e: click.echo("Restart service snmp failed with error {}".format(e)) raise click.Abort() @@ -3348,8 +3343,8 @@ def del_community(db, community): try: click.echo("Restarting SNMP service...") - clicommon.run_command("systemctl reset-failed snmp.service", display_cmd=False) - clicommon.run_command("systemctl restart snmp.service", display_cmd=False) + clicommon.run_command(['systemctl', 'reset-failed', 'snmp.service'], display_cmd=False) + clicommon.run_command(['systemctl', 'restart', 'snmp.service'], display_cmd=False) except SystemExit as e: click.echo("Restart service snmp failed with error {}".format(e)) raise click.Abort() @@ -3379,8 +3374,8 @@ def replace_community(db, current_community, new_community): click.echo('SNMP community {} replace community {}'.format(new_community, current_community)) try: click.echo("Restarting SNMP service...") - clicommon.run_command("systemctl reset-failed snmp.service", display_cmd=False) - clicommon.run_command("systemctl restart snmp.service", display_cmd=False) + clicommon.run_command(['systemctl', 'reset-failed', 'snmp.service'], display_cmd=False) + clicommon.run_command(['systemctl', 'restart', 'snmp.service'], display_cmd=False) except SystemExit as e: click.echo("Restart service snmp failed with error {}".format(e)) raise click.Abort() @@ -3413,8 +3408,8 @@ def add_contact(db, contact, contact_email): "configuration".format(contact, contact_email)) try: click.echo("Restarting SNMP service...") - clicommon.run_command("systemctl reset-failed snmp.service", display_cmd=False) - clicommon.run_command("systemctl restart snmp.service", display_cmd=False) + clicommon.run_command(['systemctl', 'reset-failed', 'snmp.service'], display_cmd=False) + clicommon.run_command(['systemctl', 'restart', 'snmp.service'], display_cmd=False) except SystemExit as e: click.echo("Restart service snmp failed with error {}".format(e)) raise click.Abort() @@ -3428,8 +3423,8 @@ def add_contact(db, contact, contact_email): "configuration".format(contact, contact_email)) try: click.echo("Restarting SNMP service...") - clicommon.run_command("systemctl reset-failed snmp.service", display_cmd=False) - clicommon.run_command("systemctl restart snmp.service", display_cmd=False) + clicommon.run_command(['systemctl', 'reset-failed', 'snmp.service'], display_cmd=False) + clicommon.run_command(['systemctl', 'restart', 'snmp.service'], display_cmd=False) except SystemExit as e: click.echo("Restart service snmp failed with error {}".format(e)) raise click.Abort() @@ -3450,8 +3445,8 @@ def del_contact(db, contact): click.echo("SNMP contact {} removed from configuration".format(contact)) try: click.echo("Restarting SNMP service...") - clicommon.run_command("systemctl reset-failed snmp.service", display_cmd=False) - clicommon.run_command("systemctl restart snmp.service", display_cmd=False) + clicommon.run_command(['systemctl', 'reset-failed', 'snmp.service'], display_cmd=False) + clicommon.run_command(['systemctl', 'restart', 'snmp.service'], display_cmd=False) except SystemExit as e: click.echo("Restart service snmp failed with error {}".format(e)) raise click.Abort() @@ -3485,8 +3480,8 @@ def modify_contact(db, contact, contact_email): click.echo("SNMP contact {} email updated to {}".format(contact, contact_email)) try: click.echo("Restarting SNMP service...") - clicommon.run_command("systemctl reset-failed snmp.service", display_cmd=False) - clicommon.run_command("systemctl restart snmp.service", display_cmd=False) + clicommon.run_command(['systemctl', 'reset-failed', 'snmp.service'], display_cmd=False) + clicommon.run_command(['systemctl', 'restart', 'snmp.service'], display_cmd=False) except SystemExit as e: click.echo("Restart service snmp failed with error {}".format(e)) raise click.Abort() @@ -3499,8 +3494,8 @@ def modify_contact(db, contact, contact_email): click.echo("SNMP contact {} and contact email {} updated".format(contact, contact_email)) try: click.echo("Restarting SNMP service...") - clicommon.run_command("systemctl reset-failed snmp.service", display_cmd=False) - clicommon.run_command("systemctl restart snmp.service", display_cmd=False) + clicommon.run_command(['systemctl', 'reset-failed', 'snmp.service'], display_cmd=False) + clicommon.run_command(['systemctl', 'restart', 'snmp.service'], display_cmd=False) except SystemExit as e: click.echo("Restart service snmp failed with error {}".format(e)) raise click.Abort() @@ -3541,8 +3536,8 @@ def add_location(db, location): ctx.fail("Failed to set SNMP location. Error: {}".format(e)) try: click.echo("Restarting SNMP service...") - clicommon.run_command("systemctl reset-failed snmp.service", display_cmd=False) - clicommon.run_command("systemctl restart snmp.service", display_cmd=False) + clicommon.run_command(['systemctl', 'reset-failed', 'snmp.service'], display_cmd=False) + clicommon.run_command(['systemctl', 'restart', 'snmp.service'], display_cmd=False) except SystemExit as e: click.echo("Restart service snmp failed with error {}".format(e)) raise click.Abort() @@ -3569,8 +3564,8 @@ def delete_location(db, location): ctx.fail("Failed to remove SNMP location from configuration. Error: {}".format(e)) try: click.echo("Restarting SNMP service...") - clicommon.run_command("systemctl reset-failed snmp.service", display_cmd=False) - clicommon.run_command("systemctl restart snmp.service", display_cmd=False) + clicommon.run_command(['systemctl', 'reset-failed', 'snmp.service'], display_cmd=False) + clicommon.run_command(['systemctl', 'restart', 'snmp.service'], display_cmd=False) except SystemExit as e: click.echo("Restart service snmp failed with error {}".format(e)) raise click.Abort() @@ -3608,8 +3603,8 @@ def modify_location(db, location): ctx.fail("Failed to modify SNMP location. Error: {}".format(e)) try: click.echo("Restarting SNMP service...") - clicommon.run_command("systemctl reset-failed snmp.service", display_cmd=False) - clicommon.run_command("systemctl restart snmp.service", display_cmd=False) + clicommon.run_command(['systemctl', 'reset-failed', 'snmp.service'], display_cmd=False) + clicommon.run_command(['systemctl', 'restart', 'snmp.service'], display_cmd=False) except SystemExit as e: click.echo("Restart service snmp failed with error {}".format(e)) raise click.Abort() @@ -3722,8 +3717,8 @@ def add_user(db, user, user_type, user_permission_type, user_auth_type, user_aut click.echo("SNMP user {} added to configuration".format(user)) try: click.echo("Restarting SNMP service...") - clicommon.run_command("systemctl reset-failed snmp.service", display_cmd=False) - clicommon.run_command("systemctl restart snmp.service", display_cmd=False) + clicommon.run_command(['systemctl', 'reset-failed', 'snmp.service'], display_cmd=False) + clicommon.run_command(['systemctl', 'restart', 'snmp.service'], display_cmd=False) except SystemExit as e: click.echo("Restart service snmp failed with error {}".format(e)) raise click.Abort() @@ -3743,8 +3738,8 @@ def del_user(db, user): click.echo("SNMP user {} removed from configuration".format(user)) try: click.echo("Restarting SNMP service...") - clicommon.run_command("systemctl reset-failed snmp.service", display_cmd=False) - clicommon.run_command("systemctl restart snmp.service", display_cmd=False) + clicommon.run_command(['systemctl', 'reset-failed', 'snmp.service'], display_cmd=False) + clicommon.run_command(['systemctl', 'restart', 'snmp.service'], display_cmd=False) except SystemExit as e: click.echo("Restart service snmp failed with error {}".format(e)) raise click.Abort() @@ -4024,12 +4019,12 @@ def speed(ctx, interface_name, interface_speed, verbose): log.log_info("'interface speed {} {}' executing...".format(interface_name, interface_speed)) if ctx.obj['namespace'] is DEFAULT_NAMESPACE: - command = "portconfig -p {} -s {}".format(interface_name, interface_speed) + command = ['portconfig', '-p', str(interface_name), '-s', str(interface_speed)] else: - command = "portconfig -p {} -s {} -n {}".format(interface_name, interface_speed, ctx.obj['namespace']) + command = ['portconfig', '-p', str(interface_name), '-s', str(interface_speed), '-n', str(ctx.obj['namespace'])] if verbose: - command += " -vv" + command += ["-vv"] clicommon.run_command(command, display_cmd=verbose) # @@ -4054,12 +4049,12 @@ def link_training(ctx, interface_name, mode, verbose): log.log_info("'interface link-training {} {}' executing...".format(interface_name, mode)) if ctx.obj['namespace'] is DEFAULT_NAMESPACE: - command = "portconfig -p {} -lt {}".format(interface_name, mode) + command = ['portconfig', '-p', str(interface_name), '-lt', str(mode)] else: - command = "portconfig -p {} -lt {} -n {}".format(interface_name, mode, ctx.obj['namespace']) + command = ['portconfig', '-p', str(interface_name), '-lt', str(mode), '-n', str(ctx.obj['namespace'])] if verbose: - command += " -vv" + command += ["-vv"] clicommon.run_command(command, display_cmd=verbose) # @@ -4084,12 +4079,12 @@ def autoneg(ctx, interface_name, mode, verbose): log.log_info("'interface autoneg {} {}' executing...".format(interface_name, mode)) if ctx.obj['namespace'] is DEFAULT_NAMESPACE: - command = "portconfig -p {} -an {}".format(interface_name, mode) + command = ['portconfig', '-p', str(interface_name), '-an', str(mode)] else: - command = "portconfig -p {} -an {} -n {}".format(interface_name, mode, ctx.obj['namespace']) + command = ['portconfig', '-p', str(interface_name), '-an', str(mode), '-n', str(ctx.obj['namespace'])] if verbose: - command += " -vv" + command += ["-vv"] clicommon.run_command(command, display_cmd=verbose) # @@ -4114,12 +4109,12 @@ def advertised_speeds(ctx, interface_name, speed_list, verbose): log.log_info("'interface advertised_speeds {} {}' executing...".format(interface_name, speed_list)) if ctx.obj['namespace'] is DEFAULT_NAMESPACE: - command = "portconfig -p {} -S {}".format(interface_name, speed_list) + command = ['portconfig', '-p', str(interface_name), '-S', str(speed_list)] else: - command = "portconfig -p {} -S {} -n {}".format(interface_name, speed_list, ctx.obj['namespace']) + command = ['portconfig', '-p', str(interface_name), '-S', str(speed_list), '-n', ctx.obj['namespace']] if verbose: - command += " -vv" + command += ["-vv"] clicommon.run_command(command, display_cmd=verbose) # @@ -4144,12 +4139,12 @@ def interface_type(ctx, interface_name, interface_type_value, verbose): log.log_info("'interface interface_type {} {}' executing...".format(interface_name, interface_type_value)) if ctx.obj['namespace'] is DEFAULT_NAMESPACE: - command = "portconfig -p {} -t {}".format(interface_name, interface_type_value) + command = ['portconfig', '-p', str(interface_name), '-t', str(interface_type_value)] else: - command = "portconfig -p {} -t {} -n {}".format(interface_name, interface_type_value, ctx.obj['namespace']) + command = ['portconfig', '-p', str(interface_name), '-t', str(interface_type_value), '-n', str(ctx.obj['namespace'])] if verbose: - command += " -vv" + command += ["-vv"] clicommon.run_command(command, display_cmd=verbose) # @@ -4174,12 +4169,12 @@ def advertised_types(ctx, interface_name, interface_type_list, verbose): log.log_info("'interface advertised_interface_types {} {}' executing...".format(interface_name, interface_type_list)) if ctx.obj['namespace'] is DEFAULT_NAMESPACE: - command = "portconfig -p {} -T {}".format(interface_name, interface_type_list) + command = ['portconfig', '-p', str(interface_name), '-T', str(interface_type_list)] else: - command = "portconfig -p {} -T {} -n {}".format(interface_name, interface_type_list, ctx.obj['namespace']) + command = ['portconfig', '-p', str(interface_name), '-T', str(interface_type_list), '-n', str(ctx.obj['namespace'])] if verbose: - command += " -vv" + command += ["-vv"] clicommon.run_command(command, display_cmd=verbose) # @@ -4326,12 +4321,12 @@ def mtu(ctx, interface_name, interface_mtu, verbose): ctx.fail("'interface_name' is in portchannel!") if ctx.obj['namespace'] is DEFAULT_NAMESPACE: - command = "portconfig -p {} -m {}".format(interface_name, interface_mtu) + command = ['portconfig', '-p', str(interface_name), '-m', str(interface_mtu)] else: - command = "portconfig -p {} -m {} -n {}".format(interface_name, interface_mtu, ctx.obj['namespace']) + command = ['portconfig', '-p', str(interface_name), '-m', str(interface_mtu), '-n', str(ctx.obj['namespace'])] if verbose: - command += " -vv" + command += ["-vv"] clicommon.run_command(command, display_cmd=verbose) # @@ -4353,12 +4348,12 @@ def tpid(ctx, interface_name, interface_tpid, verbose): ctx.fail("'interface_name' is None!") if ctx.obj['namespace'] is DEFAULT_NAMESPACE: - command = "portconfig -p {} -tp {}".format(interface_name, interface_tpid) + command = ['portconfig', '-p', str(interface_name), '-tp', str(interface_tpid)] else: - command = "portconfig -p {} -tp {} -n {}".format(interface_name, interface_tpid, ctx.obj['namespace']) + command = ['portconfig', '-p', str(interface_name), '-tp', str(interface_tpid), '-n', str(ctx.obj['namespace'])] if verbose: - command += " -vv" + command += ["-vv"] clicommon.run_command(command, display_cmd=verbose) @@ -4378,12 +4373,12 @@ def fec(ctx, interface_name, interface_fec, verbose): ctx.fail("'interface_name' is None!") if ctx.obj['namespace'] is DEFAULT_NAMESPACE: - command = "portconfig -p {} -f {}".format(interface_name, interface_fec) + command = ['portconfig', '-p', str(interface_name), '-f', str(interface_fec)] else: - command = "portconfig -p {} -f {} -n {}".format(interface_name, interface_fec, ctx.obj['namespace']) + command = ['portconfig', '-p', str(interface_name), '-f', str(interface_fec), '-n', str(ctx.obj['namespace'])] if verbose: - command += " -vv" + command += ["-vv"] clicommon.run_command(command, display_cmd=verbose) # @@ -4479,7 +4474,6 @@ def remove(ctx, interface_name, ip_addr): """Remove an IP address from the interface""" # Get the config_db connector config_db = ValidatedConfigDBConnector(ctx.obj['config_db']) - if clicommon.get_interface_naming_mode() == "alias": interface_name = interface_alias_to_name(config_db, interface_name) if interface_name is None: @@ -4523,9 +4517,9 @@ def remove(ctx, interface_name, ip_addr): config_db.set_entry(table_name, interface_name, None) if multi_asic.is_multi_asic(): - command = "sudo ip netns exec {} ip neigh flush dev {} {}".format(ctx.obj['namespace'], interface_name, str(ip_address)) + command = ['sudo', 'ip', 'netns', 'exec', str(ctx.obj['namespace']), 'ip', 'neigh', 'flush', 'dev', str(interface_name), str(ip_address)] else: - command = "ip neigh flush dev {} {}".format(interface_name, str(ip_address)) + command = ['ip', 'neigh', 'flush', 'dev', str(interface_name), str(ip_address)] clicommon.run_command(command) # @@ -4935,9 +4929,9 @@ def frequency(ctx, interface_name, frequency): log.log_info("{} Setting transceiver frequency {} GHz".format(interface_name, frequency)) if ctx.obj['namespace'] is DEFAULT_NAMESPACE: - command = "portconfig -p {} -F {}".format(interface_name, frequency) + command = ['portconfig', '-p', str(interface_name), '-F', str(frequency)] else: - command = "portconfig -p {} -F {} -n {}".format(interface_name, frequency, ctx.obj['namespace']) + command = ['portconfig', '-p', str(interface_name), '-F', str(frequency), '-n', str(ctx.obj['namespace'])] clicommon.run_command(command) @@ -4967,9 +4961,9 @@ def tx_power(ctx, interface_name, tx_power): log.log_info("{} Setting transceiver power {} dBm".format(interface_name, tx_power)) if ctx.obj['namespace'] is DEFAULT_NAMESPACE: - command = "portconfig -p {} -P {}".format(interface_name, tx_power) + command = ['portconfig', '-p', str(interface_name), '-P', str(tx_power)] else: - command = "portconfig -p {} -P {} -n {}".format(interface_name, tx_power, ctx.obj['namespace']) + command = ['portconfig', '-p', str(interface_name), '-P', str(tx_power), '-n', str(ctx.obj['namespace'])] clicommon.run_command(command) @@ -4994,7 +4988,7 @@ def lpmode(ctx, interface_name, state): if interface_name_is_valid(config_db, interface_name) is False: ctx.fail("Interface name is invalid. Please enter a valid interface name!!") - cmd = "sudo sfputil lpmode {} {}".format("on" if state == "enable" else "off", interface_name) + cmd = ['sudo', 'sfputil', 'lpmode', "{}".format("on" if state == "enable" else "off"), str(interface_name)] clicommon.run_command(cmd) # @@ -5017,7 +5011,7 @@ def reset(ctx, interface_name): if interface_name_is_valid(config_db, interface_name) is False: ctx.fail("Interface name is invalid. Please enter a valid interface name!!") - cmd = "sudo sfputil reset {}".format(interface_name) + cmd = ['sudo', 'sfputil', 'reset', str(interface_name)] clicommon.run_command(cmd) # @@ -5756,7 +5750,7 @@ def update(): def full(file_name): """Full update of ACL rules configuration.""" log.log_info("'acl update full {}' executing...".format(file_name)) - command = "acl-loader update full {}".format(file_name) + command = ['acl-loader', 'update', 'full', str(file_name)] clicommon.run_command(command) @@ -5769,7 +5763,7 @@ def full(file_name): def incremental(file_name): """Incremental update of ACL rule configuration.""" log.log_info("'acl update incremental {}' executing...".format(file_name)) - command = "acl-loader update incremental {}".format(file_name) + command = ['acl-loader', 'update', 'incremental', str(file_name)] clicommon.run_command(command) @@ -5796,13 +5790,13 @@ def dropcounters(): @click.option('-v', '--verbose', is_flag=True, help="Enable verbose output") def install(counter_name, alias, group, counter_type, desc, reasons, verbose): """Install a new drop counter""" - command = "dropconfig -c install -n '{}' -t '{}' -r '{}'".format(counter_name, counter_type, reasons) + command = ['dropconfig', '-c', 'install', '-n', str(counter_name), '-t', str(counter_type), '-r', str(reasons)] if alias: - command += " -a '{}'".format(alias) + command += ['-a', str(alias)] if group: - command += " -g '{}'".format(group) + command += ['-g', str(group)] if desc: - command += " -d '{}'".format(desc) + command += ['-d', str(desc)] clicommon.run_command(command, display_cmd=verbose) @@ -5815,7 +5809,7 @@ def install(counter_name, alias, group, counter_type, desc, reasons, verbose): @click.option('-v', '--verbose', is_flag=True, help="Enable verbose output") def delete(counter_name, verbose): """Delete an existing drop counter""" - command = "dropconfig -c uninstall -n {}".format(counter_name) + command = ['dropconfig', '-c', 'uninstall', '-n', str(counter_name)] clicommon.run_command(command, display_cmd=verbose) @@ -5828,7 +5822,7 @@ def delete(counter_name, verbose): @click.option('-v', '--verbose', is_flag=True, help="Enable verbose output") def add_reasons(counter_name, reasons, verbose): """Add reasons to an existing drop counter""" - command = "dropconfig -c add -n {} -r {}".format(counter_name, reasons) + command = ['dropconfig', '-c', 'add', '-n', str(counter_name), '-r', str(reasons)] clicommon.run_command(command, display_cmd=verbose) @@ -5841,7 +5835,7 @@ def add_reasons(counter_name, reasons, verbose): @click.option('-v', '--verbose', is_flag=True, help="Enable verbose output") def remove_reasons(counter_name, reasons, verbose): """Remove reasons from an existing drop counter""" - command = "dropconfig -c remove -n {} -r {}".format(counter_name, reasons) + command = ['dropconfig', '-c', 'remove', '-n', str(counter_name), '-r', str(reasons)] clicommon.run_command(command, display_cmd=verbose) @@ -5863,17 +5857,17 @@ def remove_reasons(counter_name, reasons, verbose): def ecn(profile, rmax, rmin, ymax, ymin, gmax, gmin, rdrop, ydrop, gdrop, verbose): """ECN-related configuration tasks""" log.log_info("'ecn -profile {}' executing...".format(profile)) - command = "ecnconfig -p %s" % profile - if rmax is not None: command += " -rmax %d" % rmax - if rmin is not None: command += " -rmin %d" % rmin - if ymax is not None: command += " -ymax %d" % ymax - if ymin is not None: command += " -ymin %d" % ymin - if gmax is not None: command += " -gmax %d" % gmax - if gmin is not None: command += " -gmin %d" % gmin - if rdrop is not None: command += " -rdrop %d" % rdrop - if ydrop is not None: command += " -ydrop %d" % ydrop - if gdrop is not None: command += " -gdrop %d" % gdrop - if verbose: command += " -vv" + command = ['ecnconfig', '-p', str(profile)] + if rmax is not None: command += ['-rmax', str(rmax)] + if rmin is not None: command += ['-rmin', str(rmin)] + if ymax is not None: command += ['-ymax', str(ymax)] + if ymin is not None: command += ['-ymin', str(ymin)] + if gmax is not None: command += ['-gmax', str(gmax)] + if gmin is not None: command += ['-gmin', str(gmin)] + if rdrop is not None: command += ['-rdrop', str(rdrop)] + if ydrop is not None: command += ['-ydrop', str(ydrop)] + if gdrop is not None: command += ['-gdrop', str(gdrop)] + if verbose: command += ["-vv"] clicommon.run_command(command, display_cmd=verbose) @@ -5906,7 +5900,7 @@ def asymmetric(ctx, interface_name, status): if interface_name is None: ctx.fail("'interface_name' is None!") - clicommon.run_command("pfc config asymmetric {0} {1}".format(status, interface_name)) + clicommon.run_command(['pfc', 'config', 'asymmetric', str(status), str(interface_name)]) # # 'pfc priority' command ('config interface pfc priority ...') @@ -5927,7 +5921,7 @@ def priority(ctx, interface_name, priority, status): if interface_name is None: ctx.fail("'interface_name' is None!") - clicommon.run_command("pfc config priority {0} {1} {2}".format(status, interface_name, priority)) + clicommon.run_command(['pfc', 'config', 'priority', str(status), str(interface_name), str(priority)]) # # 'buffer' group ('config buffer ...') @@ -6248,7 +6242,7 @@ def telemetry(): @click.argument('interval', required=True) def interval(interval): """Configure watermark telemetry interval""" - command = 'watermarkcfg --config-interval ' + interval + command = ['watermarkcfg', '--config-interval', str(interval)] clicommon.run_command(command) @@ -6397,7 +6391,7 @@ def ztp(): @click.argument('run', required=False, type=click.Choice(["run"])) def run(run): """Restart ZTP of the device.""" - command = "ztp run -y" + command = ['ztp', 'run', '-y'] clicommon.run_command(command, display_cmd=True) @ztp.command() @@ -6406,14 +6400,14 @@ def run(run): @click.argument('disable', required=False, type=click.Choice(["disable"])) def disable(disable): """Administratively Disable ZTP.""" - command = "ztp disable -y" + command = ['ztp', 'disable', '-y'] clicommon.run_command(command, display_cmd=True) @ztp.command() @click.argument('enable', required=False, type=click.Choice(["enable"])) def enable(enable): """Administratively Enable ZTP.""" - command = "ztp enable" + command = ['ztp', 'enable'] clicommon.run_command(command, display_cmd=True) # @@ -6448,7 +6442,7 @@ def add_ntp_server(ctx, ntp_ip_address): click.echo("NTP server {} added to configuration".format(ntp_ip_address)) try: click.echo("Restarting ntp-config service...") - clicommon.run_command("systemctl restart ntp-config", display_cmd=False) + clicommon.run_command(['systemctl', 'restart', 'ntp-config'], display_cmd=False) except SystemExit as e: ctx.fail("Restart service ntp-config failed with error {}".format(e)) @@ -6472,7 +6466,7 @@ def del_ntp_server(ctx, ntp_ip_address): ctx.fail("NTP server {} is not configured.".format(ntp_ip_address)) try: click.echo("Restarting ntp-config service...") - clicommon.run_command("systemctl restart ntp-config", display_cmd=False) + clicommon.run_command(['systemctl', 'restart', 'ntp-config'], display_cmd=False) except SystemExit as e: ctx.fail("Restart service ntp-config failed with error {}".format(e)) @@ -6515,8 +6509,8 @@ def enable(ctx): if out != "active": log.log_info("sflow service is not enabled. Starting sflow docker...") - clicommon.run_command("sudo systemctl enable sflow") - clicommon.run_command("sudo systemctl start sflow") + clicommon.run_command(['sudo', 'systemctl', 'enable', 'sflow']) + clicommon.run_command(['sudo', 'systemctl', 'start', 'sflow']) # # 'sflow' command ('config sflow disable') diff --git a/config/plugins/mlnx.py b/config/plugins/mlnx.py index f088926b..75846d54 100644 --- a/config/plugins/mlnx.py +++ b/config/plugins/mlnx.py @@ -52,7 +52,7 @@ SNIFFER_CONF_FILE = '/etc/supervisor/conf.d/mlnx_sniffer.conf' SNIFFER_CONF_FILE_IN_CONTAINER = CONTAINER_NAME + ':' + SNIFFER_CONF_FILE # Command to restart swss service -COMMAND_RESTART_SWSS = 'systemctl restart swss.service' +COMMAND_RESTART_SWSS = ['systemctl', 'restart', 'swss.service'] # Global logger instance @@ -99,12 +99,12 @@ def env_variable_delete(delete_line): def conf_file_copy(src, dest): - command = 'docker cp ' + src + ' ' + dest + command = ['docker', 'cp', str(src), str(dest)] clicommon.run_command(command) def conf_file_receive(): - command = "docker exec {} bash -c 'touch {}'".format(CONTAINER_NAME, SNIFFER_CONF_FILE) + command = ['docker', 'exec', str(CONTAINER_NAME), 'bash', '-c', 'touch ' + str(SNIFFER_CONF_FILE)] clicommon.run_command(command) conf_file_copy(SNIFFER_CONF_FILE_IN_CONTAINER, TMP_SNIFFER_CONF_FILE) @@ -134,7 +134,7 @@ def sniffer_env_variable_set(enable, env_variable_name, env_variable_string=""): if not ignore: config_file_send() - command = 'rm -rf {}'.format(TMP_SNIFFER_CONF_FILE) + command = ['rm', '-rf', str(TMP_SNIFFER_CONF_FILE)] clicommon.run_command(command) return ignore diff --git a/config/syslog.py b/config/syslog.py index 0df6fffd..90fc52ec 100644 --- a/config/syslog.py +++ b/config/syslog.py @@ -410,8 +410,8 @@ def add(db, server_ip_address, source, port, vrf): try: add_entry(db.cfgdb, table, key, data) - clicommon.run_command("systemctl reset-failed rsyslog-config rsyslog", display_cmd=True) - clicommon.run_command("systemctl restart rsyslog-config", display_cmd=True) + clicommon.run_command(['systemctl', 'reset-failed', 'rsyslog-config', 'rsyslog'], display_cmd=True) + clicommon.run_command(['systemctl', 'restart', 'rsyslog-config'], display_cmd=True) log.log_notice("Added remote syslog logging: server={},source={},port={},vrf={}".format( server_ip_address, data.get(SYSLOG_SOURCE, "N/A"), @@ -442,8 +442,8 @@ def delete(db, server_ip_address): try: del_entry(db.cfgdb, table, key) - clicommon.run_command("systemctl reset-failed rsyslog-config rsyslog", display_cmd=True) - clicommon.run_command("systemctl restart rsyslog-config", display_cmd=True) + clicommon.run_command(['systemctl', 'reset-failed', 'rsyslog-config', 'rsyslog'], display_cmd=True) + clicommon.run_command(['systemctl', 'restart', 'rsyslog-config'], display_cmd=True) log.log_notice("Removed remote syslog logging: server={}".format(server_ip_address)) except Exception as e: log.log_error("Failed to remove remote syslog logging: {}".format(str(e))) diff --git a/config/vlan.py b/config/vlan.py index e1ae1f02..ec4b269c 100644 --- a/config/vlan.py +++ b/config/vlan.py @@ -139,13 +139,13 @@ def del_vlan(db, vid, no_restart_dhcp_relay): def restart_ndppd(): - verify_swss_running_cmd = "docker container inspect -f '{{.State.Status}}' swss" - docker_exec_cmd = "docker exec -i swss {}" - ndppd_status_cmd= "supervisorctl status ndppd" - ndppd_conf_copy_cmd = "cp /usr/share/sonic/templates/ndppd.conf /etc/supervisor/conf.d/" - supervisor_update_cmd = "supervisorctl update" - ndppd_config_gen_cmd = "sonic-cfggen -d -t /usr/share/sonic/templates/ndppd.conf.j2,/etc/ndppd.conf" - ndppd_restart_cmd = "supervisorctl restart ndppd" + 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_conf_copy_cmd = ['cp', '/usr/share/sonic/templates/ndppd.conf', '/etc/supervisor/conf.d/'] + supervisor_update_cmd = ['supervisorctl', 'update'] output, _ = clicommon.run_command(verify_swss_running_cmd, return_cmd=True) @@ -153,17 +153,16 @@ def restart_ndppd(): click.echo(click.style('SWSS container is not running, changes will take effect the next time the SWSS container starts', fg='red'),) return - _, rc = clicommon.run_command(docker_exec_cmd.format(ndppd_status_cmd), ignore_error=True, return_cmd=True) + _, rc = clicommon.run_command(docker_exec_cmd + ndppd_status_cmd, ignore_error=True, return_cmd=True) if rc != 0: - clicommon.run_command(docker_exec_cmd.format(ndppd_conf_copy_cmd)) - clicommon.run_command(docker_exec_cmd.format(supervisor_update_cmd), return_cmd=True) + clicommon.run_command(docker_exec_cmd + ndppd_conf_copy_cmd) + clicommon.run_command(docker_exec_cmd + supervisor_update_cmd, return_cmd=True) click.echo("Starting ndppd service") - clicommon.run_command(docker_exec_cmd.format(ndppd_config_gen_cmd)) + clicommon.run_command(docker_exec_cmd + ndppd_config_gen_cmd) sleep(3) - clicommon.run_command(docker_exec_cmd.format(ndppd_restart_cmd), return_cmd=True) - + clicommon.run_command(docker_exec_cmd + ndppd_restart_cmd, return_cmd=True) @vlan.command('proxy_arp') @click.argument('vid', metavar='', required=True, type=int) diff --git a/scripts/sonic-bootchart b/scripts/sonic-bootchart index 0b7646c7..31f54ba0 100755 --- a/scripts/sonic-bootchart +++ b/scripts/sonic-bootchart @@ -50,12 +50,12 @@ def check_bootchart_installed(): def get_enabled_status(): """ Get systemd-bootchart status """ - output, _ = clicommon.run_command("systemctl is-enabled systemd-bootchart", return_cmd=True) + output, _ = clicommon.run_command(['systemctl', 'is-enabled', 'systemd-bootchart'], return_cmd=True) return output def get_active_status(): """ Get systemd-bootchart status """ - output, _ = clicommon.run_command("systemctl is-active systemd-bootchart", return_cmd=True) + output, _ = clicommon.run_command(['systemctl', 'is-active', 'systemd-bootchart'], return_cmd=True) return output def get_output_files(): @@ -75,14 +75,14 @@ def cli(): @root_privileges_required def enable(): """ Enable bootchart """ - clicommon.run_command("systemctl enable systemd-bootchart", display_cmd=True) + clicommon.run_command(['systemctl', 'enable', 'systemd-bootchart'], display_cmd=True) @cli.command() @root_privileges_required def disable(): """ Disable bootchart """ - clicommon.run_command("systemctl disable systemd-bootchart", display_cmd=True) + clicommon.run_command(['systemctl', 'disable', 'systemd-bootchart'], display_cmd=True) @cli.command() diff --git a/show/acl.py b/show/acl.py index a2c8ab49..de3d2d06 100644 --- a/show/acl.py +++ b/show/acl.py @@ -19,13 +19,13 @@ def acl(): @click.option('--verbose', is_flag=True, help="Enable verbose output") def rule(table_name, rule_id, verbose): """Show existing ACL rules""" - cmd = "acl-loader show rule" + cmd = ['acl-loader', 'show', 'rule'] if table_name is not None: - cmd += " {}".format(table_name) + cmd += [str(table_name)] if rule_id is not None: - cmd += " {}".format(rule_id) + cmd += [str(rule_id)] clicommon.run_command(cmd, display_cmd=verbose) @@ -36,9 +36,9 @@ def rule(table_name, rule_id, verbose): @click.option('--verbose', is_flag=True, help="Enable verbose output") def table(table_name, verbose): """Show existing ACL tables""" - cmd = "acl-loader show table" + cmd = ['acl-loader', 'show', 'table'] if table_name is not None: - cmd += " {}".format(table_name) + cmd += [str(table_name)] clicommon.run_command(cmd, display_cmd=verbose) diff --git a/show/chassis_modules.py b/show/chassis_modules.py index acc0263b..73ea92d1 100644 --- a/show/chassis_modules.py +++ b/show/chassis_modules.py @@ -117,13 +117,13 @@ def midplane_status(chassis_module_name): def system_ports(systemportname, namespace, verbose): """Show VOQ system ports information""" - cmd = "voqutil -c system_ports" + cmd = ['voqutil', '-c', 'system_ports'] if systemportname is not None: - cmd += " -i \"{}\"".format(systemportname) + cmd += ['-i', str(systemportname)] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] clicommon.run_command(cmd, display_cmd=verbose) @@ -134,13 +134,13 @@ def system_ports(systemportname, namespace, verbose): def system_neighbors(asicname, ipaddress, verbose): """Show VOQ system neighbors information""" - cmd = "voqutil -c system_neighbors" + cmd = ['voqutil', '-c', 'system_neighbors'] if ipaddress is not None: - cmd += " -a {}".format(ipaddress) + cmd += ['-a', str(ipaddress)] if asicname is not None: - cmd += " -n {}".format(asicname) + cmd += ['-n', str(asicname)] clicommon.run_command(cmd, display_cmd=verbose) @@ -152,15 +152,15 @@ def system_neighbors(asicname, ipaddress, verbose): def system_lags(systemlagname, asicname, linecardname, verbose): """Show VOQ system lags information""" - cmd = "voqutil -c system_lags" + cmd = ['voqutil', '-c', 'system_lags'] if systemlagname is not None: - cmd += " -s \"{}\"".format(systemlagname) + cmd += ['-s', str(systemlagname)] if asicname is not None: - cmd += " -n {}".format(asicname) + cmd += ['-n', str(asicname)] if linecardname is not None: - cmd += " -l \"{}\"".format(linecardname) + cmd += ['-l', str(linecardname)] clicommon.run_command(cmd, display_cmd=verbose) diff --git a/show/dropcounters.py b/show/dropcounters.py index 63ae138f..30779b93 100644 --- a/show/dropcounters.py +++ b/show/dropcounters.py @@ -18,10 +18,10 @@ def dropcounters(): @click.option('--verbose', is_flag=True, help="Enable verbose output") def configuration(group, verbose): """Show current drop counter configuration""" - cmd = "dropconfig -c show_config" + cmd = ['dropconfig', '-c', 'show_config'] if group: - cmd += " -g '{}'".format(group) + cmd += ['-g', str(group)] clicommon.run_command(cmd, display_cmd=verbose) @@ -31,7 +31,7 @@ def configuration(group, verbose): @click.option('--verbose', is_flag=True, help="Enable verbose output") def capabilities(verbose): """Show device drop counter capabilities""" - cmd = "dropconfig -c show_capabilities" + cmd = ['dropconfig', '-c', 'show_capabilities'] clicommon.run_command(cmd, display_cmd=verbose) @@ -43,12 +43,12 @@ def capabilities(verbose): @click.option('--verbose', is_flag=True, help="Enable verbose output") def counts(group, counter_type, verbose): """Show drop counts""" - cmd = "dropstat -c show" + cmd = ['dropstat', '-c', 'show'] if group: - cmd += " -g '{}'".format(group) + cmd += ['-g', str(group)] if counter_type: - cmd += " -t '{}'".format(counter_type) + cmd += ['-t', str(counter_type)] clicommon.run_command(cmd, display_cmd=verbose) diff --git a/show/fabric.py b/show/fabric.py index 2e55887a..c8dc956e 100644 --- a/show/fabric.py +++ b/show/fabric.py @@ -18,11 +18,11 @@ def counters(): @click.option('-e', '--errors', is_flag=True) def reachability(namespace, errors): """Show fabric reachability""" - cmd = "fabricstat -r" + cmd = ['fabricstat', '-r'] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] if errors: - cmd += " -e" + cmd += ["-e"] clicommon.run_command(cmd) @counters.command() @@ -30,18 +30,18 @@ def reachability(namespace, errors): @click.option('-e', '--errors', is_flag=True) def port(namespace, errors): """Show fabric port stat""" - cmd = "fabricstat" + cmd = ["fabricstat"] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] if errors: - cmd += " -e" + cmd += ["-e"] clicommon.run_command(cmd) @counters.command() @multi_asic_util.multi_asic_click_option_namespace def queue(namespace): """Show fabric queue stat""" - cmd = "fabricstat -q" + cmd = ['fabricstat', '-q'] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] clicommon.run_command(cmd) diff --git a/show/flow_counters.py b/show/flow_counters.py index 0767a2a9..4c7764c9 100644 --- a/show/flow_counters.py +++ b/show/flow_counters.py @@ -21,9 +21,9 @@ def flowcnt_trap(): @click.option('--namespace', '-n', 'namespace', default=None, type=click.Choice(multi_asic_util.multi_asic_ns_choices()), show_default=True, help='Namespace name or all') def stats(verbose, namespace): """Show trap flow counter statistic""" - cmd = "flow_counters_stat -t trap" + cmd = ['flow_counters_stat', '-t', 'trap'] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] clicommon.run_command(cmd, display_cmd=verbose) # @@ -57,9 +57,9 @@ def config(db): def stats(ctx, verbose, namespace): """Show statistics of all route flow counters""" if ctx.invoked_subcommand is None: - command = "flow_counters_stat -t route" + command = ['flow_counters_stat', '-t', 'route'] if namespace is not None: - command += " -n {}".format(namespace) + command += ['-n', str(namespace)] clicommon.run_command(command, display_cmd=verbose) @@ -70,11 +70,11 @@ def stats(ctx, verbose, namespace): @click.argument('prefix-pattern', required=True) def pattern(prefix_pattern, vrf, verbose, namespace): """Show statistics of route flow counters by pattern""" - command = "flow_counters_stat -t route --prefix_pattern \"{}\"".format(prefix_pattern) + command = ['flow_counters_stat', '-t', 'route', '--prefix_pattern', str(prefix_pattern)] if vrf: - command += ' --vrf {}'.format(vrf) + command += ['--vrf', str(vrf)] if namespace is not None: - command += " -n {}".format(namespace) + command += ['-n', str(namespace)] clicommon.run_command(command, display_cmd=verbose) @@ -85,9 +85,9 @@ def pattern(prefix_pattern, vrf, verbose, namespace): @click.argument('prefix', required=True) def route(prefix, vrf, verbose, namespace): """Show statistics of route flow counters by prefix""" - command = "flow_counters_stat -t route --prefix {}".format(prefix) + command = ['flow_counters_stat', '-t', 'route', '--prefix', str(prefix)] if vrf: - command += ' --vrf {}'.format(vrf) + command += ['--vrf', str(vrf)] if namespace is not None: - command += " -n {}".format(namespace) + command += ['-n', str(namespace)] clicommon.run_command(command, display_cmd=verbose) diff --git a/show/gearbox.py b/show/gearbox.py index 1c46c781..cbb16302 100644 --- a/show/gearbox.py +++ b/show/gearbox.py @@ -18,7 +18,7 @@ def phys(): @click.pass_context def status(ctx): """Show gearbox phys status""" - clicommon.run_command("gearboxutil phys status") + clicommon.run_command(['gearboxutil', 'phys', 'status']) # 'interfaces' subcommand ("show gearbox interfaces") @gearbox.group(cls=clicommon.AliasedGroup) @@ -31,4 +31,4 @@ def interfaces(): @click.pass_context def status(ctx): """Show gearbox interfaces status""" - clicommon.run_command("gearboxutil interfaces status") + clicommon.run_command(['gearboxutil', 'interfaces', 'status']) diff --git a/show/interfaces/__init__.py b/show/interfaces/__init__.py index 3b876cda..c376afe7 100644 --- a/show/interfaces/__init__.py +++ b/show/interfaces/__init__.py @@ -103,18 +103,18 @@ def description(interfacename, namespace, display, verbose): ctx = click.get_current_context() - cmd = "intfutil -c description" + cmd = ['intfutil', '-c', 'description'] #ignore the display option when interface name is passed if interfacename is not None: interfacename = try_convert_interfacename_from_alias(ctx, interfacename) - cmd += " -i {}".format(interfacename) + cmd += ['-i', str(interfacename)] else: - cmd += " -d {}".format(display) + cmd += ['-d', str(display)] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] clicommon.run_command(cmd, display_cmd=verbose) @@ -135,17 +135,17 @@ def status(interfacename, namespace, display, verbose): ctx = click.get_current_context() - cmd = "intfutil -c status" + cmd = ['intfutil', '-c', 'status'] if interfacename is not None: interfacename = try_convert_interfacename_from_alias(ctx, interfacename) - cmd += " -i {}".format(interfacename) + cmd += ['-i', str(interfacename)] else: - cmd += " -d {}".format(display) + cmd += ['-d', str(display)] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] clicommon.run_command(cmd, display_cmd=verbose) @@ -158,17 +158,17 @@ def tpid(interfacename, namespace, display, verbose): ctx = click.get_current_context() - cmd = "intfutil -c tpid" + cmd = ['intfutil', '-c', 'tpid'] if interfacename is not None: interfacename = try_convert_interfacename_from_alias(ctx, interfacename) - cmd += " -i {}".format(interfacename) + cmd += ['-i', str(interfacename)] else: - cmd += " -d {}".format(display) + cmd += ['-d', str(display)] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] clicommon.run_command(cmd, display_cmd=verbose) @@ -431,18 +431,18 @@ def eeprom(interfacename, dump_dom, namespace, verbose): ctx = click.get_current_context() - cmd = "sfpshow eeprom" + cmd = ['sfpshow', 'eeprom'] if dump_dom: - cmd += " --dom" + cmd += ["--dom"] if interfacename is not None: interfacename = try_convert_interfacename_from_alias(ctx, interfacename) - cmd += " -p {}".format(interfacename) + cmd += ['-p', str(interfacename)] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] clicommon.run_command(cmd, display_cmd=verbose) @@ -456,16 +456,16 @@ def pm(interfacename, namespace, verbose): ctx = click.get_current_context() - cmd = "sfpshow pm" + cmd = ['sfpshow', 'pm'] if interfacename is not None: interfacename = try_convert_interfacename_from_alias( ctx, interfacename) - cmd += " -p {}".format(interfacename) + cmd += ['-p', str(interfacename)] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] clicommon.run_command(cmd, display_cmd=verbose) @@ -479,15 +479,15 @@ def info(interfacename, namespace, verbose): ctx = click.get_current_context() - cmd = "sfpshow info" + cmd = ['sfpshow', 'info'] if interfacename is not None: interfacename = try_convert_interfacename_from_alias(ctx, interfacename) - cmd += " -p {}".format(interfacename) + cmd += ['-p', str(interfacename)] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] clicommon.run_command(cmd, display_cmd=verbose) @@ -499,12 +499,12 @@ def lpmode(interfacename, verbose): ctx = click.get_current_context() - cmd = "sudo sfputil show lpmode" + cmd = ['sudo', 'sfputil', 'show', 'lpmode'] if interfacename is not None: interfacename = try_convert_interfacename_from_alias(ctx, interfacename) - cmd += " -p {}".format(interfacename) + cmd += ['-p', str(interfacename)] clicommon.run_command(cmd, display_cmd=verbose) @@ -519,15 +519,15 @@ def presence(db, interfacename, namespace, verbose): ctx = click.get_current_context() - cmd = "sfpshow presence" + cmd = ['sfpshow', 'presence'] if interfacename is not None: interfacename = try_convert_interfacename_from_alias(ctx, interfacename) - cmd += " -p {}".format(interfacename) + cmd += ['-p', str(interfacename)] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] clicommon.run_command(cmd, display_cmd=verbose) @@ -544,15 +544,17 @@ def error_status(db, interfacename, fetch_from_hardware, namespace, verbose): ctx = click.get_current_context() - cmd = "sudo sfputil show error-status" + cmd = ['sudo', 'sfputil', 'show', 'error-status'] if interfacename is not None: interfacename = try_convert_interfacename_from_alias(ctx, interfacename) - cmd += " -p {}".format(interfacename) + cmd += ['-p', str(interfacename)] if fetch_from_hardware: - cmd += " -hw" + cmd += ["-hw"] + if namespace is not None: + cmd += ['-n', str(namespace)] clicommon.run_command(cmd, display_cmd=verbose) @@ -571,19 +573,19 @@ def counters(ctx, verbose, period, interface, printall, namespace, display): """Show interface counters""" if ctx.invoked_subcommand is None: - cmd = "portstat" + cmd = ["portstat"] if printall: - cmd += " -a" + cmd += ["-a"] if period is not None: - cmd += " -p {}".format(period) + cmd += ['-p', str(period)] if interface is not None: interface = try_convert_interfacename_from_alias(ctx, interface) - cmd += " -i {}".format(interface) + cmd += ['-i', str(interface)] else: - cmd += " -s {}".format(display) + cmd += ['-s', str(display)] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] clicommon.run_command(cmd, display_cmd=verbose) @@ -594,13 +596,13 @@ def counters(ctx, verbose, period, interface, printall, namespace, display): @click.option('--verbose', is_flag=True, help="Enable verbose output") def errors(verbose, period, namespace, display): """Show interface counters errors""" - cmd = "portstat -e" + cmd = ['portstat', '-e'] if period is not None: - cmd += " -p {}".format(period) + cmd += ['-p', str(period)] - cmd += " -s {}".format(display) + cmd += ['-s', str(display)] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] clicommon.run_command(cmd, display_cmd=verbose) @@ -611,13 +613,13 @@ def errors(verbose, period, namespace, display): @click.option('--verbose', is_flag=True, help="Enable verbose output") def fec_stats(verbose, period, namespace, display): """Show interface counters fec-stats""" - cmd = "portstat -f" + cmd = ['portstat', '-f'] if period is not None: - cmd += " -p {}".format(period) + cmd += ['-p', str(period)] - cmd += " -s {}".format(display) + cmd += ['-s', str(display)] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] clicommon.run_command(cmd, display_cmd=verbose) @@ -628,12 +630,12 @@ def fec_stats(verbose, period, namespace, display): @click.option('--verbose', is_flag=True, help="Enable verbose output") def rates(verbose, period, namespace, display): """Show interface counters rates""" - cmd = "portstat -R" + cmd = ['portstat', '-R'] if period is not None: - cmd += " -p {}".format(period) - cmd += " -s {}".format(display) + cmd += ['-p', str(period)] + cmd += ['-s', str(display)] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] clicommon.run_command(cmd, display_cmd=verbose) # 'counters' subcommand ("show interfaces counters rif") @@ -645,13 +647,12 @@ def rif(interface, period, verbose): """Show interface counters""" ctx = click.get_current_context() - - cmd = "intfstat" + cmd = ["intfstat"] if period is not None: - cmd += " -p {}".format(period) + cmd += ['-p', str(period)] if interface is not None: interface = try_convert_interfacename_from_alias(ctx, interface) - cmd += " -i {}".format(interface) + cmd += ['-i', str(interface)] clicommon.run_command(cmd, display_cmd=verbose) @@ -664,13 +665,12 @@ def detailed(interface, period, verbose): """Show interface counters detailed""" ctx = click.get_current_context() - - cmd = "portstat -l" + cmd = ['portstat', '-l'] if period is not None: - cmd += " -p {}".format(period) + cmd += ['-p', str(period)] if interface is not None: interface = try_convert_interfacename_from_alias(ctx, interface) - cmd += " -i {}".format(interface) + cmd += ['-i', str(interface)] clicommon.run_command(cmd, display_cmd=verbose) @@ -694,18 +694,18 @@ def autoneg_status(interfacename, namespace, display, verbose): ctx = click.get_current_context() - cmd = "intfutil -c autoneg" + cmd = ['intfutil', '-c', 'autoneg'] #ignore the display option when interface name is passed if interfacename is not None: interfacename = try_convert_interfacename_from_alias(ctx, interfacename) - cmd += " -i {}".format(interfacename) + cmd += ['-i', str(interfacename)] else: - cmd += " -d {}".format(display) + cmd += ['-d', str(display)] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] clicommon.run_command(cmd, display_cmd=verbose) @@ -727,17 +727,17 @@ def link_training_status(interfacename, namespace, display, verbose): ctx = click.get_current_context() - cmd = "intfutil -c link_training" + cmd = ['intfutil', '-c', 'link_training'] #ignore the display option when interface name is passed if interfacename is not None: interfacename = try_convert_interfacename_from_alias(ctx, interfacename) - cmd += " -i {}".format(interfacename) + cmd += ['-i', str(interfacename)] else: - cmd += " -d {}".format(display) + cmd += ['-d', str(display)] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] clicommon.run_command(cmd, display_cmd=verbose) diff --git a/show/kdump.py b/show/kdump.py index e5ce7cde..6eba5508 100644 --- a/show/kdump.py +++ b/show/kdump.py @@ -49,7 +49,7 @@ def get_kdump_oper_mode(): returns "Not Ready"; """ oper_mode = "Not Ready" - command_stdout, _ = clicommon.run_command("/usr/sbin/kdump-config status", return_cmd=True) + command_stdout, _ = clicommon.run_command(['/usr/sbin/kdump-config', 'status'], return_cmd=True) for line in command_stdout.splitlines(): if ": ready to kdump" in line: @@ -95,7 +95,7 @@ def get_kdump_core_files(): of 'find' command. dump_file_list: A list contains kernel core dump files. """ - find_core_dump_files = "find /var/crash -name 'kdump.*'" + find_core_dump_files = ['find', '/var/crash', '-name', 'kdump.*'] dump_file_list = [] cmd_message = None @@ -119,7 +119,7 @@ def get_kdump_dmesg_files(): of 'find' command. dmesg_file_list: A list contains kernel dmesg files. """ - find_dmesg_files = "find /var/crash -name 'dmesg.*'" + find_dmesg_files = ['find', '/var/crash', '-name', 'dmesg.*'] dmesg_file_list = [] cmd_message = None @@ -167,13 +167,13 @@ def files(): @click.argument('filename', required=False) @click.option('-l', '--lines', default=10, show_default=True) def logging(filename, lines): - cmd = "sudo tail -{}".format(lines) + cmd = ['sudo', 'tail', '-'+str(lines)] if filename: timestamp = filename.strip().split(".")[-1] file_path = "/var/crash/{}/{}".format(timestamp, filename) if os.path.isfile(file_path): - cmd += " {}".format(file_path) + cmd += [str(file_path)] else: click.echo("Invalid filename: '{}'!".format(filename)) sys.exit(1) @@ -184,6 +184,6 @@ def logging(filename, lines): sys.exit(2) dmesg_file_result.sort(reverse=True) - cmd += " {}".format(dmesg_file_result[0]) + cmd += [str(dmesg_file_result[0])] clicommon.run_command(cmd) diff --git a/show/main.py b/show/main.py index 7f79cd47..2d21e1b3 100755 --- a/show/main.py +++ b/show/main.py @@ -981,11 +981,11 @@ def ip(): @click.pass_context def interfaces(ctx, namespace, display): if ctx.invoked_subcommand is None: - cmd = "sudo ipintutil -a ipv4" + cmd = ['sudo', 'ipintutil', '-a', 'ipv4'] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] - cmd += " -d {}".format(display) + cmd += ['-d', str(display)] clicommon.run_command(cmd) # @@ -1108,12 +1108,12 @@ def prefix_list(prefix_list_name, verbose): @ipv6.command() @multi_asic_util.multi_asic_click_options def interfaces(namespace, display): - cmd = "sudo ipintutil -a ipv6" + cmd = ['sudo', 'ipintutil', '-a', 'ipv6'] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] - cmd += " -d {}".format(display) + cmd += ['-d', str(display)] clicommon.run_command(cmd) diff --git a/show/nat.py b/show/nat.py index 72b81dc6..9e3c868e 100644 --- a/show/nat.py +++ b/show/nat.py @@ -18,7 +18,7 @@ def nat(): def statistics(verbose): """ Show NAT statistics """ - cmd = "sudo natshow -s" + cmd = ['sudo', 'natshow', '-s'] clicommon.run_command(cmd, display_cmd=verbose) @@ -30,16 +30,17 @@ def translations(ctx, verbose): """ Show NAT translations """ if ctx.invoked_subcommand is None: - cmd = "sudo natshow -t" + cmd = ['sudo', 'natshow', '-t'] clicommon.run_command(cmd, display_cmd=verbose) # 'count' subcommand ("show nat translations count") @translations.command() -def count(): +@click.option('--verbose', is_flag=True, help="Enable verbose output") +def count(verbose): """ Show NAT translations count """ - cmd = "sudo natshow -c" + cmd = ['sudo', 'natshow', '-c'] clicommon.run_command(cmd, display_cmd=verbose) @@ -51,23 +52,23 @@ def config(ctx, verbose): """Show NAT config related information""" if ctx.invoked_subcommand is None: click.echo("\nGlobal Values") - cmd = "sudo natconfig -g" + cmd = ['sudo', 'natconfig', '-g'] clicommon.run_command(cmd, display_cmd=verbose) click.echo("Static Entries") - cmd = "sudo natconfig -s" + cmd = ['sudo', 'natconfig', '-s'] clicommon.run_command(cmd, display_cmd=verbose) click.echo("Pool Entries") - cmd = "sudo natconfig -p" + cmd = ['sudo', 'natconfig', '-p'] clicommon.run_command(cmd, display_cmd=verbose) click.echo("NAT Bindings") - cmd = "sudo natconfig -b" + cmd = ['sudo', 'natconfig', '-b'] clicommon.run_command(cmd, display_cmd=verbose) click.echo("NAT Zones") - cmd = "sudo natconfig -z" + cmd = ['sudo', 'natconfig', '-z'] clicommon.run_command(cmd, display_cmd=verbose) @@ -77,7 +78,7 @@ def config(ctx, verbose): def static(verbose): """Show static NAT configuration""" - cmd = "sudo natconfig -s" + cmd = ['sudo', 'natconfig', '-s'] clicommon.run_command(cmd, display_cmd=verbose) @@ -87,7 +88,7 @@ def static(verbose): def pool(verbose): """Show NAT Pool configuration""" - cmd = "sudo natconfig -p" + cmd = ['sudo', 'natconfig', '-p'] clicommon.run_command(cmd, display_cmd=verbose) @@ -97,7 +98,7 @@ def pool(verbose): def bindings(verbose): """Show NAT binding configuration""" - cmd = "sudo natconfig -b" + cmd = ['sudo', 'natconfig', '-b'] clicommon.run_command(cmd, display_cmd=verbose) @@ -107,7 +108,7 @@ def bindings(verbose): def globalvalues(verbose): """Show NAT Global configuration""" - cmd = "sudo natconfig -g" + cmd = ['sudo', 'natconfig', '-g'] clicommon.run_command(cmd, display_cmd=verbose) @@ -117,5 +118,5 @@ def globalvalues(verbose): def zones(verbose): """Show NAT Zone configuration""" - cmd = "sudo natconfig -z" + cmd = ['sudo', 'natconfig', '-z'] clicommon.run_command(cmd, display_cmd=verbose) diff --git a/show/platform.py b/show/platform.py index 1916e10d..85d729df 100644 --- a/show/platform.py +++ b/show/platform.py @@ -74,7 +74,7 @@ def summary(json): @click.option('--verbose', is_flag=True, help="Enable verbose output") def syseeprom(verbose): """Show system EEPROM information""" - cmd = "sudo decode-syseeprom -d" + cmd = ['sudo', 'decode-syseeprom', '-d'] clicommon.run_command(cmd, display_cmd=verbose) @@ -85,13 +85,13 @@ def syseeprom(verbose): @click.option('--verbose', is_flag=True, help="Enable verbose output") def psustatus(index, json, verbose): """Show PSU status information""" - cmd = "psushow -s" + cmd = ['psushow', '-s'] if index >= 0: - cmd += " -i {}".format(index) + cmd += ['-i', str(index)] if json: - cmd += " -j" + cmd += ["-j"] clicommon.run_command(cmd, display_cmd=verbose) @@ -105,9 +105,9 @@ def ssdhealth(device, verbose, vendor): """Show SSD Health information""" if not device: device = os.popen("lsblk -o NAME,TYPE -p | grep disk").readline().strip().split()[0] - cmd = "sudo ssdutil -d " + device - options = " -v" if verbose else "" - options += " -e" if vendor else "" + cmd = ['sudo', 'ssdutil', '-d', str(device)] + options = ["-v"] if verbose else [] + options += ["-e"] if vendor else [] clicommon.run_command(cmd + options, display_cmd=verbose) @@ -116,9 +116,9 @@ def ssdhealth(device, verbose, vendor): @click.option('-c', '--check', is_flag=True, help="Check the platfome pcie device") def pcieinfo(check, verbose): """Show Device PCIe Info""" - cmd = "sudo pcieutil show" + cmd = ['sudo', 'pcieutil', 'show'] if check: - cmd = "sudo pcieutil check" + cmd = ['sudo', 'pcieutil', 'check'] clicommon.run_command(cmd, display_cmd=verbose) @@ -126,7 +126,7 @@ def pcieinfo(check, verbose): @platform.command() def fan(): """Show fan status information""" - cmd = 'fanshow' + cmd = ['fanshow'] clicommon.run_command(cmd) @@ -134,7 +134,7 @@ def fan(): @platform.command() def temperature(): """Show device temperature information""" - cmd = 'tempershow' + cmd = ['tempershow'] clicommon.run_command(cmd) # 'firmware' subcommand ("show platform firmware") diff --git a/show/processes.py b/show/processes.py index c603826c..69a5a2fc 100644 --- a/show/processes.py +++ b/show/processes.py @@ -17,7 +17,7 @@ def processes(): def summary(verbose): """Show processes info""" # Run top batch mode to prevent unexpected newline after each newline - cmd = "ps -eo pid,ppid,cmd,%mem,%cpu " + cmd = ['ps', '-eo', 'pid,ppid,cmd,%mem,%cpu'] clicommon.run_command(cmd, display_cmd=verbose) @@ -27,7 +27,7 @@ def summary(verbose): def cpu(verbose): """Show processes CPU info""" # Run top in batch mode to prevent unexpected newline after each newline - cmd = "top -bn 1 -o %CPU" + cmd = ['top', '-bn', '1', '-o', '%CPU'] clicommon.run_command(cmd, display_cmd=verbose) @@ -37,5 +37,5 @@ def cpu(verbose): def memory(verbose): """Show processes memory info""" # Run top batch mode to prevent unexpected newline after each newline - cmd = "top -bn 1 -o %MEM" + cmd = ['top', '-bn', '1', '-o', '%MEM'] clicommon.run_command(cmd, display_cmd=verbose) diff --git a/show/system_health.py b/show/system_health.py index 08e9e705..1fa92f65 100644 --- a/show/system_health.py +++ b/show/system_health.py @@ -137,7 +137,7 @@ def sysready_status(ctx): if ctx.invoked_subcommand is None: try: - cmd = "sysreadyshow" + cmd = ["sysreadyshow"] clicommon.run_command(cmd, display_cmd=False) except Exception as e: click.echo("Exception: {}".format(str(e))) @@ -146,7 +146,7 @@ def sysready_status(ctx): @sysready_status.command('brief') def sysready_status_brief(): try: - cmd = "sysreadyshow --brief" + cmd = ["sysreadyshow", "--brief"] clicommon.run_command(cmd, display_cmd=False) except Exception as e: click.echo("Exception: {}".format(str(e))) @@ -155,7 +155,7 @@ def sysready_status_brief(): @sysready_status.command('detail') def sysready_status_detail(): try: - cmd = "sysreadyshow --detail" + cmd = ["sysreadyshow", "--detail"] clicommon.run_command(cmd, display_cmd=False) except Exception as e: click.echo("Exception: {}".format(str(e))) diff --git a/show/vxlan.py b/show/vxlan.py index 3d045529..16743fc0 100644 --- a/show/vxlan.py +++ b/show/vxlan.py @@ -326,11 +326,11 @@ def remotemac(remote_vtep_ip, count): def counters(tunnel, period, verbose): """Show VxLAN counters""" - cmd = "tunnelstat -T vxlan" + cmd = ['tunnelstat', '-T', 'vxlan'] if period is not None: - cmd += " -p {}".format(period) + cmd += ['-p', str(period)] if tunnel is not None: - cmd += " -i {}".format(tunnel) + cmd += ['-i', str(tunnel)] clicommon.run_command(cmd, display_cmd=verbose) diff --git a/tests/chassis_modules_test.py b/tests/chassis_modules_test.py index e6dbe569..6b9e0f3e 100644 --- a/tests/chassis_modules_test.py +++ b/tests/chassis_modules_test.py @@ -259,14 +259,14 @@ def test_midplane_show_incorrect_module(self): def test_show_and_verify_system_ports_output_asic0(self): os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "multi_asic" - return_code, result = get_result_and_return_code('voqutil -c system_ports -n asic0') + return_code, result = get_result_and_return_code(['voqutil', '-c', 'system_ports', '-n', 'asic0']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result == show_chassis_system_ports_output_asic0 def test_show_and_verify_system_ports_output_1_asic0(self): - return_code, result = get_result_and_return_code('voqutil -c system_ports -i "Linecard1|Asic0|Ethernet0" -n asic0') + return_code, result = get_result_and_return_code(['voqutil', '-c', 'system_ports', '-i', "Linecard1|Asic0|Ethernet0", '-n', 'asic0']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -280,21 +280,21 @@ def test_show_and_verify_system_neighbors_output_all(self): assert(result.output == show_chassis_system_neighbors_output_all) def test_show_and_verify_system_neighbors_output_ipv4(self): - return_code, result = get_result_and_return_code('voqutil -c system_neighbors -a 10.0.0.5') + return_code, result = get_result_and_return_code(['voqutil', '-c', 'system_neighbors', '-a', '10.0.0.5']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result == show_chassis_system_neighbors_output_ipv4 def test_show_and_verify_system_neighbors_output_ipv6(self): - return_code, result = get_result_and_return_code('voqutil -c system_neighbors -a fc00::16') + return_code, result = get_result_and_return_code(['voqutil', '-c', 'system_neighbors', '-a', 'fc00::16']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result == show_chassis_system_neighbors_output_ipv6 def test_show_and_verify_system_neighbors_output_asic0(self): - return_code, result = get_result_and_return_code('voqutil -c system_neighbors -n Asic0') + return_code, result = get_result_and_return_code(['voqutil', '-c', 'system_neighbors', '-n', 'Asic0']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -313,14 +313,14 @@ def test_show_and_verify_system_lags_output_1(self): assert(result.output == show_chassis_system_lags_output_1) def test_show_and_verify_system_lags_output_asic1(self): - return_code, result = get_result_and_return_code('voqutil -c system_lags -n Asic1') + return_code, result = get_result_and_return_code(['voqutil', '-c', 'system_lags', '-n', 'Asic1']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result == show_chassis_system_lags_output_asic1 def test_show_and_verify_system_lags_output_lc4(self): - return_code, result = get_result_and_return_code('voqutil -c system_lags -l Linecard4') + return_code, result = get_result_and_return_code(['voqutil', '-c', 'system_lags', '-l', 'Linecard4']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 diff --git a/tests/clear_test.py b/tests/clear_test.py index a9c2a367..97f0f556 100644 --- a/tests/clear_test.py +++ b/tests/clear_test.py @@ -1,3 +1,4 @@ +import click import pytest import clear.main as clear from click.testing import CliRunner @@ -286,3 +287,35 @@ def test_clear_ipv6_frr(self, run_command): def teardown(self): print('TEAR DOWN') + +class TestClearFlowcnt(object): + def setup(self): + print('SETUP') + + @patch('utilities_common.cli.run_command') + @patch.object(click.Choice, 'convert', MagicMock(return_value='asic0')) + def test_flowcnt_route(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(clear.cli.commands['flowcnt-route'], ['-n', 'asic0']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['flow_counters_stat', '-c', '-t', 'route', '-n', 'asic0']) + + @patch('utilities_common.cli.run_command') + @patch.object(click.Choice, 'convert', MagicMock(return_value='asic0')) + def test_flowcnt_route_pattern(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(clear.cli.commands['flowcnt-route'].commands['pattern'], ['--vrf', 'Vrf_1', '-n', 'asic0', '3.3.0.0/16']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['flow_counters_stat', '-c', '-t', 'route', '--prefix_pattern', '3.3.0.0/16', '--vrf', str('Vrf_1'), '-n', 'asic0']) + + @patch('utilities_common.cli.run_command') + @patch.object(click.Choice, 'convert', MagicMock(return_value='asic0')) + def test_flowcnt_route_route(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(clear.cli.commands['flowcnt-route'].commands['route'], ['--vrf', 'Vrf_1', '-n', 'asic0', '3.3.0.0/16']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['flow_counters_stat', '-c', '-t', 'route', '--prefix', '3.3.0.0/16', '--vrf', str('Vrf_1'), '-n', 'asic0']) + + def teardown(self): + print('TEAR DOWN') + diff --git a/tests/config_int_ip_test.py b/tests/config_int_ip_test.py index d1addd0f..170ea4dd 100644 --- a/tests/config_int_ip_test.py +++ b/tests/config_int_ip_test.py @@ -185,4 +185,4 @@ def test_config_int_ip_rem_static_multiasic( print(result.exit_code, result.output) assert result.exit_code != 0 assert "Error: Cannot remove the last IP entry of interface Ethernet8. A static ipv6 route is still bound to the RIF." in result.output - assert mock_run_command.call_count == 0 \ No newline at end of file + assert mock_run_command.call_count == 0 diff --git a/tests/config_test.py b/tests/config_test.py index 8d5e6c82..b5be1717 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -17,7 +17,7 @@ from sonic_py_common import device_info from utilities_common.db import Db from utilities_common.general import load_module_from_source -from mock import patch, MagicMock +from mock import call, patch, mock_open, MagicMock from generic_config_updater.generic_updater import ConfigFormat @@ -69,7 +69,8 @@ Running command: ifconfig eth0 10.0.0.100 netmask 255.255.255.0 Running command: ip route add default via 10.0.0.1 dev eth0 table default Running command: ip rule add from 10.0.0.100 table default -Running command: [ -f /var/run/dhclient.eth0.pid ] && kill `cat /var/run/dhclient.eth0.pid` && rm -f /var/run/dhclient.eth0.pid +Running command: kill `cat /var/run/dhclient.eth0.pid` +Running command: rm -f /var/run/dhclient.eth0.pid Please note loaded setting will be lost after system reboot. To preserve setting, run `config save`. """ @@ -80,7 +81,8 @@ Running command: ifconfig eth0 add fc00:1::32/64 Running command: ip -6 route add default via fc00:1::1 dev eth0 table default Running command: ip -6 rule add from fc00:1::32 table default -Running command: [ -f /var/run/dhclient.eth0.pid ] && kill `cat /var/run/dhclient.eth0.pid` && rm -f /var/run/dhclient.eth0.pid +Running command: kill `cat /var/run/dhclient.eth0.pid` +Running command: rm -f /var/run/dhclient.eth0.pid Please note loaded setting will be lost after system reboot. To preserve setting, run `config save`. """ @@ -94,29 +96,30 @@ Running command: ifconfig eth0 add fc00:1::32/64 Running command: ip -6 route add default via fc00:1::1 dev eth0 table default Running command: ip -6 rule add from fc00:1::32 table default -Running command: [ -f /var/run/dhclient.eth0.pid ] && kill `cat /var/run/dhclient.eth0.pid` && rm -f /var/run/dhclient.eth0.pid +Running command: kill `cat /var/run/dhclient.eth0.pid` +Running command: rm -f /var/run/dhclient.eth0.pid Please note loaded setting will be lost after system reboot. To preserve setting, run `config save`. """ RELOAD_CONFIG_DB_OUTPUT = """\ Stopping SONiC target ... -Running command: /usr/local/bin/sonic-cfggen -j /tmp/config.json --write-to-db +Running command: /usr/local/bin/sonic-cfggen -j /tmp/config.json --write-to-db Restarting SONiC target ... Reloading Monit configuration ... """ RELOAD_YANG_CFG_OUTPUT = """\ Stopping SONiC target ... -Running command: /usr/local/bin/sonic-cfggen -Y /tmp/config.json --write-to-db +Running command: /usr/local/bin/sonic-cfggen -Y /tmp/config.json --write-to-db Restarting SONiC target ... Reloading Monit configuration ... """ RELOAD_MASIC_CONFIG_DB_OUTPUT = """\ Stopping SONiC target ... -Running command: /usr/local/bin/sonic-cfggen -j /tmp/config.json --write-to-db -Running command: /usr/local/bin/sonic-cfggen -j /tmp/config.json -n asic0 --write-to-db -Running command: /usr/local/bin/sonic-cfggen -j /tmp/config.json -n asic1 --write-to-db +Running command: /usr/local/bin/sonic-cfggen -j /tmp/config.json --write-to-db +Running command: /usr/local/bin/sonic-cfggen -j /tmp/config.json -n asic0 --write-to-db +Running command: /usr/local/bin/sonic-cfggen -j /tmp/config.json -n asic1 --write-to-db Restarting SONiC target ... Reloading Monit configuration ... """ @@ -126,22 +129,28 @@ reload_config_with_disabled_service_output="""\ Stopping SONiC target ... -Running command: /usr/local/bin/sonic-cfggen -j /tmp/config.json --write-to-db +Running command: /usr/local/bin/sonic-cfggen -j /tmp/config.json --write-to-db Restarting SONiC target ... Reloading Monit configuration ... """ def mock_run_command_side_effect(*args, **kwargs): command = args[0] + if isinstance(command, str): + command = command + elif isinstance(command, list): + command = ' '.join(command) if kwargs.get('display_cmd'): + if 'cat /var/run/dhclient.eth0.pid' in command: + command = 'kill `cat /var/run/dhclient.eth0.pid`' click.echo(click.style("Running command: ", fg='cyan') + click.style(command, fg='green')) if kwargs.get('return_cmd'): if command == "systemctl list-dependencies --plain sonic-delayed.target | sed '1d'": - return 'snmp.timer' , 0 - elif command == "systemctl list-dependencies --plain sonic.target | sed '1d'": - return 'swss', 0 + return 'snmp.timer', 0 + elif command == "systemctl list-dependencies --plain sonic.target": + return 'sonic.target\nswss', 0 elif command == "systemctl is-enabled snmp.timer": return 'enabled', 0 else: @@ -149,6 +158,10 @@ def mock_run_command_side_effect(*args, **kwargs): def mock_run_command_side_effect_disabled_timer(*args, **kwargs): command = args[0] + if isinstance(command, str): + command = command + elif isinstance(command, list): + command = ' '.join(command) if kwargs.get('display_cmd'): click.echo(click.style("Running command: ", fg='cyan') + click.style(command, fg='green')) @@ -156,8 +169,8 @@ def mock_run_command_side_effect_disabled_timer(*args, **kwargs): if kwargs.get('return_cmd'): if command == "systemctl list-dependencies --plain sonic-delayed.target | sed '1d'": return 'snmp.timer', 0 - elif command == "systemctl list-dependencies --plain sonic.target | sed '1d'": - return 'swss', 0 + elif command == "systemctl list-dependencies --plain sonic.target": + return 'sonic.target\nswss', 0 elif command == "systemctl is-enabled snmp.timer": return 'masked', 0 elif command == "systemctl show swss.service --property ActiveState --value": @@ -280,7 +293,7 @@ def test_load_minigraph(self, get_cmd_module, setup_single_broadcom_asic): assert result.exit_code == 0 assert "\n".join([l.rstrip() for l in result.output.split('\n')]) == load_minigraph_command_output # Verify "systemctl reset-failed" is called for services under sonic.target - mock_run_command.assert_any_call('systemctl reset-failed swss') + mock_run_command.assert_any_call(['systemctl', 'reset-failed', 'swss']) assert mock_run_command.call_count == 8 @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=(load_minigraph_platform_path, None))) @@ -295,7 +308,7 @@ def test_load_minigraph_platform_plugin(self, get_cmd_module, setup_single_broad assert result.exit_code == 0 assert "\n".join([l.rstrip() for l in result.output.split('\n')]) == load_minigraph_platform_plugin_command_output # Verify "systemctl reset-failed" is called for services under sonic.target - mock_run_command.assert_any_call('systemctl reset-failed swss') + mock_run_command.assert_any_call(['systemctl', 'reset-failed', 'swss']) assert mock_run_command.call_count == 8 @mock.patch('sonic_py_common.device_info.get_paths_to_platform_and_hwsku_dirs', mock.MagicMock(return_value=(load_minigraph_platform_false_path, None))) @@ -1551,7 +1564,7 @@ def test_config_load_mgmt_config_ipv4_only(self, get_cmd_module, setup_single_br } } } - self.check_output(get_cmd_module, device_desc_result, load_mgmt_config_command_ipv4_only_output, 5) + self.check_output(get_cmd_module, device_desc_result, load_mgmt_config_command_ipv4_only_output, 7) def test_config_load_mgmt_config_ipv6_only(self, get_cmd_module, setup_single_broadcom_asic): device_desc_result = { @@ -1566,7 +1579,7 @@ def test_config_load_mgmt_config_ipv6_only(self, get_cmd_module, setup_single_br } } } - self.check_output(get_cmd_module, device_desc_result, load_mgmt_config_command_ipv6_only_output, 5) + self.check_output(get_cmd_module, device_desc_result, load_mgmt_config_command_ipv6_only_output, 7) def test_config_load_mgmt_config_ipv4_ipv6(self, get_cmd_module, setup_single_broadcom_asic): device_desc_result = { @@ -1584,7 +1597,7 @@ def test_config_load_mgmt_config_ipv4_ipv6(self, get_cmd_module, setup_single_br } } } - self.check_output(get_cmd_module, device_desc_result, load_mgmt_config_command_ipv4_ipv6_output, 8) + self.check_output(get_cmd_module, device_desc_result, load_mgmt_config_command_ipv4_ipv6_output, 10) def check_output(self, get_cmd_module, parse_device_desc_xml_result, expected_output, expected_command_call_count): def parse_device_desc_xml_side_effect(filename): @@ -1593,20 +1606,21 @@ def parse_device_desc_xml_side_effect(filename): def change_hostname_side_effect(hostname): print("change hostname to {}".format(hostname)) with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_side_effect)) as mock_run_command: - with mock.patch('config.main.parse_device_desc_xml', mock.MagicMock(side_effect=parse_device_desc_xml_side_effect)): - with mock.patch('config.main._change_hostname', mock.MagicMock(side_effect=change_hostname_side_effect)): - (config, show) = get_cmd_module - runner = CliRunner() - with runner.isolated_filesystem(): - with open('device_desc.xml', 'w') as f: - f.write('dummy') - result = runner.invoke(config.config.commands["load_mgmt_config"], ["-y", "device_desc.xml"]) - print(result.exit_code) - print(result.output) - traceback.print_tb(result.exc_info[2]) - assert result.exit_code == 0 - assert "\n".join([l.rstrip() for l in result.output.split('\n')]) == expected_output - assert mock_run_command.call_count == expected_command_call_count + with mock.patch('os.path.isfile', mock.MagicMock(return_value=True)): + with mock.patch('config.main.parse_device_desc_xml', mock.MagicMock(side_effect=parse_device_desc_xml_side_effect)): + with mock.patch('config.main._change_hostname', mock.MagicMock(side_effect=change_hostname_side_effect)): + (config, show) = get_cmd_module + runner = CliRunner() + with runner.isolated_filesystem(): + with open('device_desc.xml', 'w') as f: + f.write('dummy') + result = runner.invoke(config.config.commands["load_mgmt_config"], ["-y", "device_desc.xml"]) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code == 0 + assert "\n".join([l.rstrip() for l in result.output.split('\n')]) == expected_output + assert mock_run_command.call_count == expected_command_call_count @classmethod def teardown_class(cls): @@ -2001,3 +2015,351 @@ def test_del_ntp_server_invalid_ip_yang_validation(self): @classmethod def teardown_class(cls): print("TEARDOWN") + + +class TestConfigPfcwd(object): + def setup(self): + print("SETUP") + + @patch('utilities_common.cli.run_command') + def test_start(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(config.config.commands['pfcwd'].commands['start'], ['-a', 'forward', '-r', 150, 'Ethernet0', '200', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['pfcwd', 'start', '--action', 'forward', 'Ethernet0', '200', '--restoration-time', '150'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_stop(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(config.config.commands['pfcwd'].commands['stop'], ['--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['pfcwd', 'stop'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_interval(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(config.config.commands['pfcwd'].commands['interval'], ['300', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['pfcwd', 'interval', '300'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_counter_poll(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(config.config.commands['pfcwd'].commands['counter_poll'], ['enable', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['pfcwd', 'counter_poll', 'enable'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_big_red_switch(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(config.config.commands['pfcwd'].commands['big_red_switch'], ['enable', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['pfcwd', 'big_red_switch', 'enable'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_start_default(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(config.config.commands['pfcwd'].commands['start_default'], ['--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['pfcwd', 'start_default'], display_cmd=True) + + def teardown(self): + print("TEARDOWN") + + +class TestConfigAclUpdate(object): + def setup(self): + print("SETUP") + + @patch('utilities_common.cli.run_command') + def test_full(self, mock_run_command): + file_name = '/etc/sonic/full_snmp.json' + runner = CliRunner() + result = runner.invoke(config.config.commands['acl'].commands['update'].commands['full'], [file_name]) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['acl-loader', 'update', 'full', file_name]) + + @patch('utilities_common.cli.run_command') + def test_incremental(self, mock_run_command): + file_name = '/etc/sonic/full_snmp.json' + runner = CliRunner() + result = runner.invoke(config.config.commands['acl'].commands['update'].commands['incremental'], [file_name]) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['acl-loader', 'update', 'incremental', file_name]) + + def teardown(self): + print("TEARDOWN") + + +class TestConfigDropcounters(object): + def setup(self): + print("SETUP") + + @patch('utilities_common.cli.run_command') + def test_install(self, mock_run_command): + counter_name = 'DEBUG_2' + counter_type = 'PORT_INGRESS_DROPS' + reasons = '[EXCEEDS_L2_MTU,DECAP_ERROR]' + alias = 'BAD_DROPS' + group = 'BAD' + desc = 'more port ingress drops' + + runner = CliRunner() + result = runner.invoke(config.config.commands['dropcounters'].commands['install'], [counter_name, counter_type, reasons, '-d', desc, '-g', group, '-a', alias]) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['dropconfig', '-c', 'install', '-n', str(counter_name), '-t', str(counter_type), '-r', str(reasons), '-a', str(alias), '-g', str(group), '-d', str(desc)], display_cmd=False) + + @patch('utilities_common.cli.run_command') + def test_delete(self, mock_run_command): + counter_name = 'DEBUG_2' + runner = CliRunner() + result = runner.invoke(config.config.commands['dropcounters'].commands['delete'], [counter_name, '-v']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['dropconfig', '-c', 'uninstall', '-n', str(counter_name)], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_add_reasons(self, mock_run_command): + counter_name = 'DEBUG_2' + reasons = '[EXCEEDS_L2_MTU,DECAP_ERROR]' + runner = CliRunner() + result = runner.invoke(config.config.commands['dropcounters'].commands['add-reasons'], [counter_name, reasons, '-v']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['dropconfig', '-c', 'add', '-n', str(counter_name), '-r', str(reasons)], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_remove_reasons(self, mock_run_command): + counter_name = 'DEBUG_2' + reasons = '[EXCEEDS_L2_MTU,DECAP_ERROR]' + runner = CliRunner() + result = runner.invoke(config.config.commands['dropcounters'].commands['remove-reasons'], [counter_name, reasons, '-v']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['dropconfig', '-c', 'remove', '-n', str(counter_name), '-r', str(reasons)], display_cmd=True) + + def teardown(self): + print("TEARDOWN") + + +class TestConfigWatermarkTelemetry(object): + def setup(self): + print("SETUP") + + @patch('utilities_common.cli.run_command') + def test_interval(self, mock_run_command): + interval = '18' + runner = CliRunner() + result = runner.invoke(config.config.commands['watermark'].commands['telemetry'].commands['interval'], [interval]) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['watermarkcfg', '--config-interval', str(interval)]) + + def teardown(self): + print("TEARDOWN") + + +class TestConfigZtp(object): + def setup(self): + print("SETUP") + + @patch('utilities_common.cli.run_command') + def test_run(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(config.config.commands['ztp'].commands['run'], ['-y']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['ztp', 'run', '-y'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_disable(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(config.config.commands['ztp'].commands['disable'], ['-y']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['ztp', 'disable', '-y'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_enable(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(config.config.commands['ztp'].commands['enable']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['ztp', 'enable'], display_cmd=True) + + def teardown(self): + print("TEARDOWN") + + +@patch('utilities_common.cli.run_command') +@patch('os.uname', MagicMock(return_value=['Linux', 'current-hostname', '5.11.0-34-generic', '#36~20.04.1-Ubuntu SMP Thu Aug 5 14:22:16 UTC 2021', 'x86_64'])) +def test_change_hostname(mock_run_command): + new_hostname = 'new_hostname' + with patch('builtins.open', mock_open()) as mock_file: + config._change_hostname(new_hostname) + + assert mock_file.call_args_list == [ + call('/etc/hostname', 'w'), + call('/etc/hosts', 'a') + ] + assert mock_file().write.call_args_list == [ + call('new_hostname\n'), + call('127.0.0.1 new_hostname\n') + ] + assert mock_run_command.call_args_list == [ + call(['hostname', '-F', '/etc/hostname'], display_cmd=True), + call(['sed', '-i', r"/\scurrent-hostname$/d", '/etc/hosts'], display_cmd=True) + ] + + +class TestConfigInterface(object): + def setup(self): + print("SETUP") + + @patch('utilities_common.cli.run_command') + def test_speed(self, mock_run_command): + interface_name = 'Ethernet0' + interface_speed = '100' + db = Db() + runner = CliRunner() + + obj = {'config_db': db.cfgdb, 'namespace': ''} + result = runner.invoke(config.config.commands['interface'].commands['speed'], [interface_name, interface_speed, '--verbose'], obj=obj) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['portconfig', '-p', str(interface_name), '-s', str(interface_speed), '-vv'], display_cmd=True) + + obj = {'config_db': db.cfgdb, 'namespace': 'ns'} + result = runner.invoke(config.config.commands['interface'].commands['speed'], [interface_name, interface_speed, '--verbose'], obj=obj) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['portconfig', '-p', str(interface_name), '-s', str(interface_speed), '-n', 'ns', '-vv'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_link_training(self, mock_run_command): + interface_name = 'Ethernet0' + mode = 'on' + db = Db() + runner = CliRunner() + + obj = {'config_db': db.cfgdb, 'namespace': ''} + result = runner.invoke(config.config.commands['interface'].commands['link-training'], [interface_name, mode, '--verbose'], obj=obj) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['portconfig', '-p', str(interface_name), '-lt', str(mode), '-vv'], display_cmd=True) + + obj = {'config_db': db.cfgdb, 'namespace': 'ns'} + result = runner.invoke(config.config.commands['interface'].commands['link-training'], [interface_name, mode, '--verbose'], obj=obj) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['portconfig', '-p', str(interface_name), '-lt', str(mode), '-n', 'ns', '-vv'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_advertised_speeds(self, mock_run_command): + interface_name = 'Ethernet0' + speed_list = '50,100' + db = Db() + runner = CliRunner() + + obj = {'config_db': db.cfgdb, 'namespace': ''} + result = runner.invoke(config.config.commands['interface'].commands['advertised-speeds'], [interface_name, speed_list, '--verbose'], obj=obj) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['portconfig', '-p', str(interface_name), '-S', str(speed_list), '-vv'], display_cmd=True) + + obj = {'config_db': db.cfgdb, 'namespace': 'ns'} + result = runner.invoke(config.config.commands['interface'].commands['advertised-speeds'], [interface_name, speed_list, '--verbose'], obj=obj) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['portconfig', '-p', str(interface_name), '-S', str(speed_list), '-n', 'ns', '-vv'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_advertised_types(self, mock_run_command): + interface_name = 'Ethernet0' + interface_type = 'CR,CR4' + db = Db() + runner = CliRunner() + + obj = {'config_db': db.cfgdb, 'namespace': ''} + result = runner.invoke(config.config.commands['interface'].commands['advertised-types'], [interface_name, interface_type, '--verbose'], obj=obj) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['portconfig', '-p', str(interface_name), '-T', str(interface_type), '-vv'], display_cmd=True) + + obj = {'config_db': db.cfgdb, 'namespace': 'ns'} + result = runner.invoke(config.config.commands['interface'].commands['advertised-types'], [interface_name, interface_type, '--verbose'], obj=obj) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['portconfig', '-p', str(interface_name), '-T', str(interface_type), '-n', 'ns', '-vv'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_mtu(self, mock_run_command): + interface_name = 'Ethernet0' + interface_mtu = '1000' + db = Db() + runner = CliRunner() + + obj = {'config_db': db.cfgdb, 'namespace': ''} + result = runner.invoke(config.config.commands['interface'].commands['mtu'], [interface_name, interface_mtu, '--verbose'], obj=obj) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['portconfig', '-p', str(interface_name), '-m', str(interface_mtu), '-vv'], display_cmd=True) + + obj = {'config_db': db.cfgdb, 'namespace': 'ns'} + result = runner.invoke(config.config.commands['interface'].commands['mtu'], [interface_name, interface_mtu, '--verbose'], obj=obj) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['portconfig', '-p', str(interface_name), '-m', str(interface_mtu), '-n', 'ns', '-vv'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_tpid(self, mock_run_command): + interface_name = 'Ethernet0' + interface_tpid = '0x9200' + db = Db() + runner = CliRunner() + + obj = {'config_db': db.cfgdb, 'namespace': ''} + result = runner.invoke(config.config.commands['interface'].commands['tpid'], [interface_name, interface_tpid, '--verbose'], obj=obj) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['portconfig', '-p', str(interface_name), '-tp', str(interface_tpid), '-vv'], display_cmd=True) + + obj = {'config_db': db.cfgdb, 'namespace': 'ns'} + result = runner.invoke(config.config.commands['interface'].commands['tpid'], [interface_name, interface_tpid, '--verbose'], obj=obj) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['portconfig', '-p', str(interface_name), '-tp', str(interface_tpid), '-n', 'ns', '-vv'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_fec(self, mock_run_command): + interface_name = 'Ethernet0' + interface_fec = 'rs' + db = Db() + runner = CliRunner() + + obj = {'config_db': db.cfgdb, 'namespace': ''} + result = runner.invoke(config.config.commands['interface'].commands['fec'], [interface_name, interface_fec, '--verbose'], obj=obj) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['portconfig', '-p', str(interface_name), '-f', str(interface_fec), '-vv'], display_cmd=True) + + obj = {'config_db': db.cfgdb, 'namespace': 'ns'} + result = runner.invoke(config.config.commands['interface'].commands['fec'], [interface_name, interface_fec, '--verbose'], obj=obj) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['portconfig', '-p', str(interface_name), '-f', str(interface_fec), '-n', 'ns', '-vv'], display_cmd=True) + + def teardown(self): + print("TEARDOWN") + diff --git a/tests/conftest.py b/tests/conftest.py index 6e70f8c9..fe99ef47 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -204,7 +204,7 @@ def mock_show_run_bgp(request): return mock_frr_data return "" - def mock_run_bgp_command_for_static(vtysh_cmd, bgp_namespace="", vtysh_shell_cmd=constants.RVTYSH_COMMAND): + def mock_run_bgp_command_for_static(vtysh_cmd, bgp_namespace=[], vtysh_shell_cmd=constants.RVTYSH_COMMAND): if vtysh_cmd == "show ip route vrf all static": return config_int_ip_common.show_ip_route_with_static_expected_output elif vtysh_cmd == "show ipv6 route vrf all static": diff --git a/tests/ecn_test.py b/tests/ecn_test.py index ef1539af..0eac54dd 100644 --- a/tests/ecn_test.py +++ b/tests/ecn_test.py @@ -132,7 +132,7 @@ def executor(self, input): exit_code = result.exit_code output = result.output elif 'q_cmd' in input['cmd'] : - exit_code, output = get_result_and_return_code("ecnconfig {}".format(" ".join(input['args']))) + exit_code, output = get_result_and_return_code(["ecnconfig"] + input['args']) else: exec_cmd = config.config.commands["ecn"] result = runner.invoke(exec_cmd, input['args']) diff --git a/tests/fabricstat_test.py b/tests/fabricstat_test.py index 7c2174b7..7e37e993 100644 --- a/tests/fabricstat_test.py +++ b/tests/fabricstat_test.py @@ -135,7 +135,7 @@ def test_single_show_fabric_counters(self): dbconnector.load_database_config dbconnector.load_namespace_config() - return_code, result = get_result_and_return_code('fabricstat') + return_code, result = get_result_and_return_code(['fabricstat']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -159,49 +159,49 @@ def setup_class(cls): os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "multi_asic" def test_multi_show_fabric_counters(self): - return_code, result = get_result_and_return_code('fabricstat') + return_code, result = get_result_and_return_code(['fabricstat']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result == multi_asic_fabric_counters def test_multi_show_fabric_counters_asic(self): - return_code, result = get_result_and_return_code('fabricstat -n asic0') + return_code, result = get_result_and_return_code(['fabricstat', '-n', 'asic0']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result == multi_asic_fabric_counters_asic0 def test_multi_asic_invalid_asic(self): - return_code, result = get_result_and_return_code('fabricstat -n asic99') + return_code, result = get_result_and_return_code(['fabricstat', '-n', 'asic99']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 1 assert result == fabric_invalid_asic_error def test_multi_show_fabric_counters_queue(self): - return_code, result = get_result_and_return_code('fabricstat -q') + return_code, result = get_result_and_return_code(['fabricstat', '-q']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result == multi_asic_fabric_counters_queue def test_multi_show_fabric_counters_queue_asic(self): - return_code, result = get_result_and_return_code('fabricstat -q -n asic0') + 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') + return_code, result = get_result_and_return_code(['fabricstat', '-r']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result == multi_asic_fabric_reachability def test_multi_show_fabric_reachability_asic(self): - return_code, result = get_result_and_return_code('fabricstat -r -n asic0') + return_code, result = get_result_and_return_code(['fabricstat', '-r', '-n', 'asic0']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 diff --git a/tests/fdbshow_test.py b/tests/fdbshow_test.py index 8814a6b3..578b278a 100755 --- a/tests/fdbshow_test.py +++ b/tests/fdbshow_test.py @@ -171,7 +171,7 @@ def test_show_mac_def_vlan(self): assert result.exit_code == 0 assert result.output == show_mac_output_with_def_vlan - return_code, result = get_result_and_return_code('fdbshow') + return_code, result = get_result_and_return_code(['fdbshow']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -216,7 +216,7 @@ def test_show_mac(self): assert result.exit_code == 0 assert result.output == show_mac_output - return_code, result = get_result_and_return_code('fdbshow') + return_code, result = get_result_and_return_code(['fdbshow']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -231,7 +231,7 @@ def test_show_mac_count(self): assert result.exit_code == 0 assert result.output == show_mac_count_output - return_code, result = get_result_and_return_code('fdbshow -c') + return_code, result = get_result_and_return_code(['fdbshow', '-c']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -246,7 +246,7 @@ def test_show_mac_port_vlan(self): assert result.exit_code == 0 assert result.output == show_mac__port_vlan_output - return_code, result = get_result_and_return_code('fdbshow -p Ethernet0 -v 2') + return_code, result = get_result_and_return_code(['fdbshow', '-p', 'Ethernet0', '-v', '2']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -261,7 +261,7 @@ def test_show_mac_address(self): assert result.exit_code == 0 assert result.output == show_mac__address_output - return_code, result = get_result_and_return_code('fdbshow -a 11:22:33:66:55:44') + return_code, result = get_result_and_return_code(['fdbshow', '-a', '11:22:33:66:55:44']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -276,7 +276,7 @@ def test_show_mac_address_case(self): assert result.exit_code == 0 assert result.output == show_mac__address_case_output - return_code, result = get_result_and_return_code('fdbshow -a 34:5f:78:9a:bc:de') + return_code, result = get_result_and_return_code(['fdbshow', '-a', '34:5f:78:9a:bc:de']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -291,7 +291,7 @@ def test_show_mac_type(self): assert result.exit_code == 0 assert result.output == show_mac__type_output - return_code, result = get_result_and_return_code('fdbshow -t Static') + return_code, result = get_result_and_return_code(['fdbshow', '-t', 'Static']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -306,7 +306,7 @@ def test_show_mac_type_case(self): assert result.exit_code == 0 assert result.output == show_mac__type_case_output - return_code, result = get_result_and_return_code('fdbshow -t DYNAMIC') + return_code, result = get_result_and_return_code(['fdbshow', '-t', 'DYNAMIC']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -321,7 +321,7 @@ def test_show_mac_port_address(self): assert result.exit_code == 0 assert result.output == show_mac__port_address_output - return_code, result = get_result_and_return_code('fdbshow -a 66:55:44:33:22:11 -p Ethernet0') + return_code, result = get_result_and_return_code(['fdbshow', '-a', '66:55:44:33:22:11', '-p', 'Ethernet0']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -336,7 +336,7 @@ def test_show_mac_vlan_address(self): assert result.exit_code == 0 assert result.output == show_mac__vlan_address_output - return_code, result = get_result_and_return_code('fdbshow -a 66:55:44:33:22:11 -v 4') + return_code, result = get_result_and_return_code(['fdbshow', '-a', '66:55:44:33:22:11', '-v', '4']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -351,7 +351,7 @@ def test_show_mac_port_type(self): assert result.exit_code == 0 assert result.output == show_mac__port_type_output - return_code, result = get_result_and_return_code('fdbshow -p Ethernet4 -t Static') + return_code, result = get_result_and_return_code(['fdbshow', '-p', 'Ethernet4', '-t', 'Static']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -366,7 +366,7 @@ def test_show_mac_vlan_type(self): assert result.exit_code == 0 assert result.output == show_mac__vlan_type_output - return_code, result = get_result_and_return_code('fdbshow -v 3 -t Static') + return_code, result = get_result_and_return_code(['fdbshow', '-v', '3', '-t', 'Static']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -381,7 +381,7 @@ def test_show_mac_address_type(self): assert result.exit_code == 0 assert result.output == show_mac__address_type_output - return_code, result = get_result_and_return_code('fdbshow -a 11:22:33:66:55:44 -t Static') + return_code, result = get_result_and_return_code(['fdbshow', '-a', '11:22:33:66:55:44', '-t', 'Static']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -396,7 +396,7 @@ def test_show_mac_port_vlan_address_type(self): assert result.exit_code == 0 assert result.output == show_mac__port_vlan_address_type_output - return_code, result = get_result_and_return_code('fdbshow -v 3 -p Ethernet4 -a 11:22:33:66:55:44 -t Static') + return_code, result = get_result_and_return_code(['fdbshow', '-v', '3', '-p', 'Ethernet4', '-a', '11:22:33:66:55:44', '-t', 'Static']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -411,7 +411,7 @@ def test_show_mac_no_port(self): assert result.exit_code == 0 assert result.output == show_mac_no_results_output - return_code, result = get_result_and_return_code('fdbshow -p Ethernet8') + return_code, result = get_result_and_return_code(['fdbshow', '-p', 'Ethernet8']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -426,7 +426,7 @@ def test_show_mac_no_vlan(self): assert result.exit_code == 0 assert result.output == show_mac_no_results_output - return_code, result = get_result_and_return_code('fdbshow -v 123') + return_code, result = get_result_and_return_code(['fdbshow', '-v', '123']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -441,7 +441,7 @@ def test_show_mac_no_address(self): assert result.exit_code == 0 assert result.output == show_mac_no_results_output - return_code, result = get_result_and_return_code('fdbshow -a 12:34:56:78:9A:BC') + return_code, result = get_result_and_return_code(['fdbshow', '-a', '12:34:56:78:9A:BC']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -456,7 +456,7 @@ def test_show_mac_no_type(self): assert result.exit_code == 0 assert result.output == show_mac_no_results_output - return_code, result = get_result_and_return_code('fdbshow -t Static') + return_code, result = get_result_and_return_code(['fdbshow', '-t', 'Static']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -471,7 +471,7 @@ def test_show_mac_no_fdb(self): assert result.exit_code == 0 assert result.output == show_mac_no_results_output - return_code, result = get_result_and_return_code('fdbshow') + return_code, result = get_result_and_return_code(['fdbshow']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -486,7 +486,7 @@ def test_show_mac_no_bridge(self): assert result.exit_code == 0 assert result.output == show_mac_no_results_output - return_code, result = get_result_and_return_code('fdbshow') + return_code, result = get_result_and_return_code(['fdbshow']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -522,7 +522,7 @@ def test_show_mac_invalid_port(self): assert result.exit_code == 1 assert result.output == show_mac_invalid_port_output - return_code, result = get_result_and_return_code('fdbshow -p eth123') + return_code, result = get_result_and_return_code(['fdbshow', '-p', 'eth123']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 1 @@ -537,7 +537,7 @@ def test_show_mac_invalid_vlan(self): assert result.exit_code == 1 assert result.output == show_mac_invalid_vlan_output - return_code, result = get_result_and_return_code('fdbshow -v 10000') + return_code, result = get_result_and_return_code(['fdbshow', '-v', '10000']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 1 @@ -552,7 +552,7 @@ def test_show_mac_invalid_type(self): assert result.exit_code == 1 assert result.output == show_mac_invalid_type_output - return_code, result = get_result_and_return_code('fdbshow -t both') + return_code, result = get_result_and_return_code(['fdbshow', '-t', 'both']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 1 @@ -567,7 +567,7 @@ def test_show_mac_invalid_address(self): assert result.exit_code == 1 assert result.output == show_mac_invalid_address_output - return_code, result = get_result_and_return_code('fdbshow -a 12:345:67:a9:bc:d') + return_code, result = get_result_and_return_code(['fdbshow', '-a', '12:345:67:a9:bc:d']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 1 diff --git a/tests/flow_counter_stats_test.py b/tests/flow_counter_stats_test.py index dc5bb22d..1ddd5031 100644 --- a/tests/flow_counter_stats_test.py +++ b/tests/flow_counter_stats_test.py @@ -270,7 +270,7 @@ """ def delete_cache(stat_type='trap'): - cmd = 'flow_counters_stat -t {} -d'.format(stat_type) + cmd = ['flow_counters_stat', '-t', stat_type, '-d'] get_result_and_return_code(cmd) @@ -294,7 +294,7 @@ def test_show(self): assert result.output == expect_show_output def test_show_json(self): - cmd = 'flow_counters_stat -t trap -j' + cmd = ['flow_counters_stat', '-t', 'trap', '-j'] return_code, result = get_result_and_return_code(cmd) assert return_code == 0 assert result == expect_show_output_json @@ -382,7 +382,7 @@ def test_show(self): assert result.output == expect_show_output_multi_asic def test_show_json(self): - cmd = 'flow_counters_stat -t trap -j' + cmd = ['flow_counters_stat', '-t', 'trap', '-j'] return_code, result = get_result_and_return_code(cmd) assert return_code == 0 assert result == expect_show_output_json_multi_asic @@ -764,17 +764,17 @@ def test_show_by_route(self): print(result.output) def test_show_json(self): - cmd = 'flow_counters_stat -t route -j' + cmd = ['flow_counters_stat', '-t', 'route', '-j'] return_code, result = get_result_and_return_code(cmd) assert return_code == 0 assert result == expect_show_route_stats_all_json - cmd = 'flow_counters_stat -t route -j --prefix_pattern 1.1.1.0/24' + cmd = ['flow_counters_stat', '-t', 'route', '-j', '--prefix_pattern', '1.1.1.0/24'] return_code, result = get_result_and_return_code(cmd) assert return_code == 0 assert result == expect_show_route_stats_by_pattern_v4_json - cmd = 'flow_counters_stat -t route -j --prefix 2001::1/64 --vrf Vrf_1' + cmd = ['flow_counters_stat', '-t', 'route', '-j', '--prefix', '2001::1/64', '--vrf', 'Vrf_1'] return_code, result = get_result_and_return_code(cmd) assert return_code == 0 assert result == expect_show_route_stats_by_pattern_and_vrf_v6_json @@ -916,7 +916,7 @@ def test_show_all_stats(self): assert expect_show_route_stats_all_multi_asic == result.output def test_show_json(self): - cmd = 'flow_counters_stat -t route -j' + cmd = ['flow_counters_stat', '-t', 'route', '-j'] return_code, result = get_result_and_return_code(cmd) assert return_code == 0 assert result == expect_show_route_stats_all_json_multi_asic diff --git a/tests/multi_asic_intfutil_test.py b/tests/multi_asic_intfutil_test.py index 37e5b5b0..1b3655e4 100644 --- a/tests/multi_asic_intfutil_test.py +++ b/tests/multi_asic_intfutil_test.py @@ -98,70 +98,70 @@ def setUp(self): self.runner = CliRunner() def test_multi_asic_interface_status_all(self): - return_code, result = get_result_and_return_code( 'intfutil -c status -d all') + return_code, result = get_result_and_return_code(['intfutil', '-c', 'status', '-d', 'all']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result == intf_status_all def test_multi_asic_interface_status(self): - return_code, result = get_result_and_return_code('intfutil -c status') + return_code, result = get_result_and_return_code(['intfutil', '-c', 'status']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result == intf_status def test_multi_asic_interface_status_asic0_all(self): - return_code, result = get_result_and_return_code('intfutil -c status -n asic0 -d all') + return_code, result = get_result_and_return_code(['intfutil', '-c', 'status', '-n', 'asic0', '-d', 'all']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result == intf_status_asic0_all def test_multi_asic_interface_status_asic0(self): - return_code, result = get_result_and_return_code('intfutil -c status -n asic0') + return_code, result = get_result_and_return_code(['intfutil', '-c', 'status', '-n', 'asic0']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result == intf_status_asic0 def test_multi_asic_interface_desc(self): - return_code, result = get_result_and_return_code('intfutil -c description') + return_code, result = get_result_and_return_code(['intfutil', '-c', 'description']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result == intf_description def test_multi_asic_interface_desc_all(self): - return_code, result = get_result_and_return_code( 'intfutil -c description -d all') + return_code, result = get_result_and_return_code(['intfutil', '-c', 'description', '-d', 'all']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result == intf_description_all def test_multi_asic_interface_asic0(self): - return_code, result = get_result_and_return_code( 'intfutil -c description -n asic0') + return_code, result = get_result_and_return_code(['intfutil', '-c', 'description', '-n', 'asic0']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result == intf_description_asic0 def test_multi_asic_interface_desc_asic0_all(self): - return_code, result = get_result_and_return_code('intfutil -c description -n asic0 -d all') + return_code, result = get_result_and_return_code(['intfutil', '-c', 'description', '-n', 'asic0', '-d', 'all']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result == intf_description_asic0_all def test_invalid_asic_name(self): - return_code, result = get_result_and_return_code('intfutil -c description -n asic99 -d all') + return_code, result = get_result_and_return_code(['intfutil', '-c', 'description', '-n', 'asic99', '-d', 'all']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 1 assert result == intf_invalid_asic_error def test_invalid_asic_name(self): - return_code, result = get_result_and_return_code('intfutil -c status -n asic99') + return_code, result = get_result_and_return_code(['intfutil', '-c', 'status', '-n', 'asic99']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 1 diff --git a/tests/multi_asic_queue_counter_test.py b/tests/multi_asic_queue_counter_test.py index c501c686..fe8b057b 100644 --- a/tests/multi_asic_queue_counter_test.py +++ b/tests/multi_asic_queue_counter_test.py @@ -132,13 +132,13 @@ def setup_class(cls): print("SETUP") def test_queue_counters(self): - return_code, result = get_result_and_return_code('queuestat -n asic0') + return_code, result = get_result_and_return_code(['queuestat', '-n', 'asic0']) assert return_code == 0 print(result) assert result == show_queue_counters def test_queue_counters_port(self): - return_code, result = get_result_and_return_code('queuestat -p Ethernet-BP4 -n asic0') + return_code, result = get_result_and_return_code(['queuestat', '-p', 'Ethernet-BP4', '-n', 'asic0']) assert return_code == 0 print(result) assert result == show_queue_counters_port diff --git a/tests/pfcstat_test.py b/tests/pfcstat_test.py index fc24dd09..6ac0401b 100644 --- a/tests/pfcstat_test.py +++ b/tests/pfcstat_test.py @@ -174,11 +174,11 @@ def pfc_clear(expected_output): del_cached_stats() return_code, result = get_result_and_return_code( - 'pfcstat -c' + ['pfcstat', '-c'] ) return_code, result = get_result_and_return_code( - 'pfcstat -s all' + ['pfcstat', '-s', 'all'] ) result_stat = [s for s in result.split("\n") if "Last cached" not in s] expected = expected_output.split("\n") @@ -270,21 +270,21 @@ def test_pfc_counters_all_with_clear(self): def test_pfc_counters_frontend(self): return_code, result = get_result_and_return_code( - 'pfcstat -s frontend' + ['pfcstat', '-s', 'frontend'] ) assert return_code == 0 assert result == show_pfc_counters_asic0_frontend def test_pfc_counters_asic(self): return_code, result = get_result_and_return_code( - 'pfcstat -n asic0' + ['pfcstat', '-n', 'asic0'] ) assert return_code == 0 assert result == show_pfc_counters_asic0_frontend def test_pfc_counters_asic_all(self): return_code, result = get_result_and_return_code( - 'pfcstat -n asic0 -s all' + ['pfcstat', '-n', 'asic0', '-s', 'all'] ) assert return_code == 0 assert result == show_pfc_counters_all_asic diff --git a/tests/portstat_test.py b/tests/portstat_test.py index d418a16f..bf7a2db1 100644 --- a/tests/portstat_test.py +++ b/tests/portstat_test.py @@ -269,7 +269,7 @@ def test_show_intf_counters(self): assert result.exit_code == 0 assert result.output == intf_counters_before_clear - return_code, result = get_result_and_return_code('portstat') + return_code, result = get_result_and_return_code(['portstat']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -278,14 +278,14 @@ def test_show_intf_counters(self): def test_show_intf_counters_ethernet4(self): runner = CliRunner() result = runner.invoke( - show.cli.commands["interfaces"].commands["counters"], ["-i Ethernet4"]) + show.cli.commands["interfaces"].commands["counters"], ["-i", "Ethernet4"]) print(result.exit_code) print(result.output) assert result.exit_code == 0 assert result.output == intf_counters_ethernet4 return_code, result = get_result_and_return_code( - 'portstat -i Ethernet4') + ['portstat', '-i', 'Ethernet4']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -300,7 +300,7 @@ def test_show_intf_counters_all(self): assert result.exit_code == 0 assert result.output == intf_counters_all - return_code, result = get_result_and_return_code('portstat -a') + return_code, result = get_result_and_return_code(['portstat', '-a']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -315,7 +315,7 @@ def test_show_intf_fec_counters(self): assert result.exit_code == 0 assert result.output == intf_fec_counters - return_code, result = get_result_and_return_code('portstat -f') + return_code, result = get_result_and_return_code(['portstat', '-f']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -331,7 +331,7 @@ def test_show_intf_fec_counters_period(self): assert result.output == intf_fec_counters_period return_code, result = get_result_and_return_code( - 'portstat -f -p {}'.format(TEST_PERIOD)) + ['portstat', '-f', '-p', str(TEST_PERIOD)]) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -349,7 +349,7 @@ def test_show_intf_counters_period(self): assert result.output == intf_counters_period return_code, result = get_result_and_return_code( - 'portstat -p {}'.format(TEST_PERIOD)) + ['portstat', '-p', str(TEST_PERIOD)]) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -364,7 +364,7 @@ def test_show_intf_counters_detailed(self): assert result.exit_code == 0 assert result.output == intf_counters_detailed - return_code, result = get_result_and_return_code('portstat -l -i Ethernet4') + return_code, result = get_result_and_return_code(['portstat', '-l', '-i', 'Ethernet4']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -378,7 +378,7 @@ def test_clear_intf_counters(self): assert result.exit_code == 0 assert result.output.rstrip() == clear_counter - return_code, result = get_result_and_return_code('portstat -c') + return_code, result = get_result_and_return_code(['portstat', '-c']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -392,7 +392,7 @@ def test_clear_intf_counters(self): assert result.exit_code == 0 verify_after_clear(result.output, intf_counter_after_clear) - return_code, result = get_result_and_return_code('portstat') + return_code, result = get_result_and_return_code(['portstat']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -417,21 +417,21 @@ def setup_class(cls): remove_tmp_cnstat_file() def test_multi_show_intf_counters(self): - return_code, result = get_result_and_return_code('portstat') + return_code, result = get_result_and_return_code(['portstat']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result == multi_asic_external_intf_counters def test_multi_show_intf_counters_all(self): - return_code, result = get_result_and_return_code('portstat -s all') + return_code, result = get_result_and_return_code(['portstat', '-s', 'all']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result == multi_asic_all_intf_counters def test_multi_show_intf_counters_asic(self): - return_code, result = get_result_and_return_code('portstat -n asic0') + return_code, result = get_result_and_return_code(['portstat', '-n', 'asic0']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -439,21 +439,21 @@ def test_multi_show_intf_counters_asic(self): def test_multi_show_intf_counters_asic_all(self): return_code, result = get_result_and_return_code( - 'portstat -n asic0 -s all') + ['portstat', '-n', 'asic0', '-s', 'all']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result == multi_asic_intf_counters_asic0 def test_multi_show_external_intf_counters_printall(self): - return_code, result = get_result_and_return_code('portstat -a') + return_code, result = get_result_and_return_code(['portstat', '-a']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result == multi_asic_external_intf_counters_printall def test_multi_show_intf_counters_printall(self): - return_code, result = get_result_and_return_code('portstat -a -s all') + return_code, result = get_result_and_return_code(['portstat', '-a', '-s', 'all']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -461,7 +461,7 @@ def test_multi_show_intf_counters_printall(self): def test_multi_show_intf_counters_printall_asic(self): return_code, result = get_result_and_return_code( - 'portstat --a -n asic0') + ['portstat', '--a', '-n', 'asic0']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -469,7 +469,7 @@ def test_multi_show_intf_counters_printall_asic(self): def test_multi_show_intf_counters_printall_asic_all(self): return_code, result = get_result_and_return_code( - 'portstat -a -n asic0 -s all') + ['portstat', '-a', '-n', 'asic0', '-s', 'all']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -477,7 +477,7 @@ def test_multi_show_intf_counters_printall_asic_all(self): def test_multi_show_intf_counters_period(self): return_code, result = get_result_and_return_code( - 'portstat -p {}'.format(TEST_PERIOD)) + ['portstat', '-p', str(TEST_PERIOD)]) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -485,7 +485,7 @@ def test_multi_show_intf_counters_period(self): def test_multi_show_intf_counters_period_all(self): return_code, result = get_result_and_return_code( - 'portstat -p {} -s all'.format(TEST_PERIOD)) + ['portstat', '-p', str(TEST_PERIOD), '-s', 'all']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -493,7 +493,7 @@ def test_multi_show_intf_counters_period_all(self): def test_multi_show_intf_counters_period_asic(self): return_code, result = get_result_and_return_code( - 'portstat -p {} -n asic0'.format(TEST_PERIOD)) + ['portstat', '-p', str(TEST_PERIOD), '-n', 'asic0']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 @@ -501,28 +501,28 @@ def test_multi_show_intf_counters_period_asic(self): def test_multi_show_intf_counters_period_asic_all(self): return_code, result = get_result_and_return_code( - 'portstat -p {} -n asic0 -s all'.format(TEST_PERIOD)) + ['portstat', '-p', str(TEST_PERIOD), '-n', 'asic0', '-s', 'all']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result == multi_asic_intf_counter_period_asic_all def test_multi_asic_clear_intf_counters(self): - return_code, result = get_result_and_return_code('portstat -c') + return_code, result = get_result_and_return_code(['portstat', '-c']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 assert result.rstrip() == clear_counter # check stats for all the interfaces are cleared - return_code, result = get_result_and_return_code('portstat -s all') + return_code, result = get_result_and_return_code(['portstat', '-s', 'all']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 0 verify_after_clear(result, mutli_asic_intf_counters_after_clear) def test_multi_asic_invalid_asic(self): - return_code, result = get_result_and_return_code('portstat -n asic99') + return_code, result = get_result_and_return_code(['portstat', '-n', 'asic99']) print("return_code: {}".format(return_code)) print("result = {}".format(result)) assert return_code == 1 diff --git a/tests/sfp_test.py b/tests/sfp_test.py index b6b94ebf..49000718 100644 --- a/tests/sfp_test.py +++ b/tests/sfp_test.py @@ -1,8 +1,8 @@ import sys import os from click.testing import CliRunner - from .mock_tables import dbconnector +from unittest.mock import patch, MagicMock test_path = os.path.dirname(os.path.abspath(__file__)) modules_path = os.path.dirname(test_path) @@ -10,6 +10,7 @@ sys.path.insert(0, modules_path) import show.main as show +import show as show_module test_sfp_eeprom_with_dom_output = """\ Ethernet0: SFP EEPROM detected @@ -510,13 +511,13 @@ def test_sfp_presence(self): def test_sfp_eeprom_with_dom(self): runner = CliRunner() - result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ["Ethernet0 -d"]) + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ["Ethernet0", "-d"]) assert result.exit_code == 0 assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_sfp_eeprom_with_dom_output def test_qsfp_dd_eeprom_with_dom(self): runner = CliRunner() - result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ["Ethernet8 -d"]) + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ["Ethernet8", "-d"]) assert result.exit_code == 0 assert result.output == test_qsfp_dd_eeprom_with_dom_output @@ -583,9 +584,10 @@ def setup_class(cls): os.environ["UTILITIES_UNIT_TESTING"] = "2" os.environ["UTILITIES_UNIT_TESTING_TOPOLOGY"] = "multi_asic" + @patch.object(show_module.interfaces.click.Choice, 'convert', MagicMock(return_value='asic0')) def test_sfp_presence_with_ns(self): runner = CliRunner() - result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["presence"], ["Ethernet0 -n asic0"]) + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["presence"], ['Ethernet0', '-n', 'asic0']) expected = """Port Presence --------- ---------- Ethernet0 Present @@ -593,7 +595,7 @@ def test_sfp_presence_with_ns(self): assert result.exit_code == 0 assert result.output == expected - result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["presence"], ["Ethernet200 -n asic0"]) + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["presence"], ['Ethernet200', '-n', 'asic0']) expected = """Port Presence ----------- ----------- Ethernet200 Not present @@ -607,33 +609,37 @@ def test_sfp_presence_all(self): assert result.exit_code == 0 assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_sfp_presence_all_output + @patch.object(show_module.interfaces.click.Choice, 'convert', MagicMock(return_value='asic0')) def test_sfp_eeprom_with_dom_with_ns(self): runner = CliRunner() - result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ["Ethernet0 -d -n asic0"]) + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ['Ethernet0', '-d', '-n', 'asic0']) assert result.exit_code == 0 assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_sfp_eeprom_with_dom_output + @patch.object(show_module.interfaces.click.Choice, 'convert', MagicMock(return_value='asic0')) def test_sfp_eeprom_with_ns(self): runner = CliRunner() - result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ["Ethernet0 -n asic0"]) + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ['Ethernet0', '-n', 'asic0']) assert result.exit_code == 0 assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_sfp_eeprom_output - result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ["Ethernet200 -n asic0"]) + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ['Ethernet200', '-n', 'asic0']) result_lines = result.output.strip('\n') expected = "Ethernet200: SFP EEPROM Not detected" assert result_lines == expected + @patch.object(show_module.interfaces.click.Choice, 'convert', MagicMock(return_value='asic0')) def test_qsfp_dd_pm_with_ns(self): runner = CliRunner() - result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["pm"], ["Ethernet0 -n asic0"]) + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["pm"], ['Ethernet0', '-n', 'asic0']) result_lines = result.output.strip('\n') expected = "Ethernet0: Transceiver performance monitoring not applicable" assert result_lines == expected + @patch.object(show_module.interfaces.click.Choice, 'convert', MagicMock(return_value='asic1')) def test_cmis_sfp_info_with_ns(self): runner = CliRunner() - result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["info"], ["Ethernet64 -n asic1"]) + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["info"], ['Ethernet64', '-n', 'asic1']) assert result.exit_code == 0 assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_cmis_eeprom_output diff --git a/tests/show_ip_int_test.py b/tests/show_ip_int_test.py index d2abdbbf..16160df7 100644 --- a/tests/show_ip_int_test.py +++ b/tests/show_ip_int_test.py @@ -101,18 +101,18 @@ def verify_output(output, expected_output): class TestShowIpInt(object): def test_show_ip_intf_v4(self): - return_code, result = get_result_and_return_code(" ipintutil") + return_code, result = get_result_and_return_code(["ipintutil"]) assert return_code == 0 verify_output(result, show_ipv4_intf_with_multple_ips) def test_show_ip_intf_v6(self): - return_code, result = get_result_and_return_code(" ipintutil -a ipv6") + return_code, result = get_result_and_return_code(['ipintutil', '-a', 'ipv6']) assert return_code == 0 verify_output(result, show_ipv6_intf_with_multiple_ips) def test_show_intf_invalid_af_option(self): - return_code, result = get_result_and_return_code(" ipintutil -a ipv5") + return_code, result = get_result_and_return_code(['ipintutil', '-a', 'ipv5']) assert return_code == 1 assert result == show_error_invalid_af @@ -121,36 +121,36 @@ def test_show_intf_invalid_af_option(self): class TestMultiAsicShowIpInt(object): def test_show_ip_intf_v4(self): - return_code, result = get_result_and_return_code("ipintutil") + return_code, result = get_result_and_return_code(["ipintutil"]) assert return_code == 0 verify_output(result, show_multi_asic_ip_intf) def test_show_ip_intf_v4_asic0(self): - return_code, result = get_result_and_return_code("ipintutil -n asic0") + return_code, result = get_result_and_return_code(['ipintutil', '-n', 'asic0']) assert return_code == 0 verify_output(result, show_multi_asic_ip_intf) def test_show_ip_intf_v4_all(self): - return_code, result = get_result_and_return_code("ipintutil -d all") + return_code, result = get_result_and_return_code(['ipintutil', '-d', 'all']) assert return_code == 0 verify_output(result, show_multi_asic_ip_intf_all) def test_show_ip_intf_v6(self): - return_code, result = get_result_and_return_code("ipintutil -a ipv6") + return_code, result = get_result_and_return_code(['ipintutil', '-a', 'ipv6']) assert return_code == 0 verify_output(result, show_multi_asic_ipv6_intf) def test_show_ip_intf_v6_asic0(self): - return_code, result = get_result_and_return_code("ipintutil -a ipv6 -n asic0") + return_code, result = get_result_and_return_code(['ipintutil', '-a', 'ipv6', '-n', 'asic0']) assert return_code == 0 verify_output(result, show_multi_asic_ipv6_intf) def test_show_ip_intf_v6_all(self): - return_code, result = get_result_and_return_code("ipintutil -a ipv6 -d all") + return_code, result = get_result_and_return_code(['ipintutil', '-a', 'ipv6', '-d', 'all']) assert return_code == 0 verify_output(result, show_multi_asic_ipv6_intf_all) def test_show_intf_invalid_af_option(self): - return_code, result = get_result_and_return_code(" ipintutil -a ipv5") + return_code, result = get_result_and_return_code(['ipintutil', '-a', 'ipv5']) assert return_code == 1 assert result == show_error_invalid_af diff --git a/tests/show_platform_test.py b/tests/show_platform_test.py index 4dcf73a9..a867f067 100644 --- a/tests/show_platform_test.py +++ b/tests/show_platform_test.py @@ -62,28 +62,28 @@ def test_all_psus(self): with mock.patch('utilities_common.cli.run_command') as mock_run_command: CliRunner().invoke(show.cli.commands['platform'].commands['psustatus'], []) assert mock_run_command.call_count == 1 - mock_run_command.assert_called_with('psushow -s', display_cmd=False) + mock_run_command.assert_called_with(['psushow', '-s'], display_cmd=False) def test_all_psus_json(self): with mock.patch('utilities_common.cli.run_command') as mock_run_command: CliRunner().invoke(show.cli.commands['platform'].commands['psustatus'], ['--json']) assert mock_run_command.call_count == 1 - mock_run_command.assert_called_with('psushow -s -j', display_cmd=False) + mock_run_command.assert_called_with(['psushow', '-s', '-j'], display_cmd=False) def test_single_psu(self): with mock.patch('utilities_common.cli.run_command') as mock_run_command: CliRunner().invoke(show.cli.commands['platform'].commands['psustatus'], ['--index=1']) assert mock_run_command.call_count == 1 - mock_run_command.assert_called_with('psushow -s -i 1', display_cmd=False) + mock_run_command.assert_called_with(['psushow', '-s', '-i', '1'], display_cmd=False) def test_single_psu_json(self): with mock.patch('utilities_common.cli.run_command') as mock_run_command: CliRunner().invoke(show.cli.commands['platform'].commands['psustatus'], ['--index=1', '--json']) assert mock_run_command.call_count == 1 - mock_run_command.assert_called_with('psushow -s -i 1 -j', display_cmd=False) + mock_run_command.assert_called_with(['psushow', '-s', '-i', '1', '-j'], display_cmd=False) def test_verbose(self): with mock.patch('utilities_common.cli.run_command') as mock_run_command: CliRunner().invoke(show.cli.commands['platform'].commands['psustatus'], ['--verbose']) assert mock_run_command.call_count == 1 - mock_run_command.assert_called_with('psushow -s', display_cmd=True) + mock_run_command.assert_called_with(['psushow', '-s'], display_cmd=True) diff --git a/tests/show_test.py b/tests/show_test.py index ddb59078..7b3e492f 100644 --- a/tests/show_test.py +++ b/tests/show_test.py @@ -1,9 +1,10 @@ import os import sys +import click import pytest import show.main as show -from click.testing import CliRunner from unittest import mock +from click.testing import CliRunner from unittest.mock import call, MagicMock, patch EXPECTED_BASE_COMMAND = 'sudo ' @@ -13,6 +14,15 @@ sys.path.insert(0, test_path) sys.path.insert(0, modules_path) +expected_nat_config_output = \ +""" +Global Values +Static Entries +Pool Entries +NAT Bindings +NAT Zones +""" + class TestShowRunAllCommands(object): @classmethod @@ -147,3 +157,487 @@ def test_show_version(): runner = CliRunner() result = runner.invoke(show.cli.commands["version"]) assert "SONiC OS Version: 11" in result.output + + +class TestShowAcl(object): + def setup(self): + print('SETUP') + + @patch('utilities_common.cli.run_command') + def test_rule(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['acl'].commands['rule'], ['SNMP_ACL', 'RULE_1', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['acl-loader', 'show', 'rule', 'SNMP_ACL', 'RULE_1'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_table(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['acl'].commands['table'], ['EVERFLOW', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['acl-loader', 'show', 'table', 'EVERFLOW'], display_cmd=True) + + def teardown(self): + print('TEAR DOWN') + + +class TestShowChassis(object): + def setup(self): + print('SETUP') + + @patch('utilities_common.cli.run_command') + def test_system_ports(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['chassis'].commands['system-ports'], ['Linecard1|asic0|Ethernet0', '-n', 'asic0', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['voqutil', '-c', 'system_ports', '-i', 'Linecard1|asic0|Ethernet0', '-n', 'asic0'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_system_neighbors(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['chassis'].commands['system-neighbors'], ['10.0.0.0', '-n', 'asic0', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['voqutil', '-c', 'system_neighbors', '-a', '10.0.0.0', '-n', 'asic0'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_system_lags(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['chassis'].commands['system-lags'], ['-l', 'Linecard6' , '-n', 'asic0', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['voqutil', '-c', 'system_lags', '-n', 'asic0', '-l', 'Linecard6'], display_cmd=True) + + def teardown(self): + print('TEAR DOWN') + + +class TestShowFabric(object): + def setup(self): + print('SETUP') + + @patch('utilities_common.cli.run_command') + @patch.object(click.Choice, 'convert', MagicMock(return_value='asic0')) + def test_port(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['fabric'].commands['counters'].commands['port'], ['-n', 'asic0', '-e']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(["fabricstat", '-n', 'asic0', '-e']) + + @patch('utilities_common.cli.run_command') + @patch.object(click.Choice, 'convert', MagicMock(return_value='asic0')) + def test_queue(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['fabric'].commands['counters'].commands['queue'], ['-n', 'asic0']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(["fabricstat", '-q', '-n', 'asic0']) + + def teardown(self): + print('TEAR DOWN') + + +class TestShowFlowCounters(object): + def setup(self): + print('SETUP') + + @patch('utilities_common.cli.run_command') + @patch.object(click.Choice, 'convert', MagicMock(return_value='asic0')) + def test_flowcnt_trap_stats(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['flowcnt-trap'].commands['stats'], ['-n', 'asic0', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['flow_counters_stat', '-t', 'trap', '-n', 'asic0'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + @patch.object(click.Choice, 'convert', MagicMock(return_value='asic0')) + def test_flowcnt_route_stats(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['flowcnt-route'].commands['stats'], ['-n', 'asic0', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['flow_counters_stat', '-t', 'route', '-n', 'asic0'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + @patch.object(click.Choice, 'convert', MagicMock(return_value='asic0')) + def test_flowcnt_route_stats_pattern(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['flowcnt-route'].commands['stats'].commands['pattern'], ['2001::/64', '--vrf', 'Vrf_1', '-n', 'asic0', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['flow_counters_stat', '-t', 'route', '--prefix_pattern', '2001::/64', '--vrf', 'Vrf_1', '-n', 'asic0'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + @patch.object(click.Choice, 'convert', MagicMock(return_value='asic0')) + def test_flowcnt_route_stats_route(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['flowcnt-route'].commands['stats'].commands['route'], ['2001::/64', '--vrf', 'Vrf_1', '-n', 'asic0', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['flow_counters_stat', '-t', 'route', '--prefix', '2001::/64', '--vrf', 'Vrf_1', '-n', 'asic0'], display_cmd=True) + + def teardown(self): + print('TEAR DOWN') + + +class TestShowInterfaces(object): + def setup(self): + print('SETUP') + + @patch('utilities_common.cli.run_command') + @patch.object(click.Choice, 'convert', MagicMock(return_value='asic0')) + def test_description(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['interfaces'].commands['description'], ['Ethernet0', '-n', 'asic0', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['intfutil', '-c', 'description', '-i', 'Ethernet0', '-n', 'asic0'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + @patch.object(click.Choice, 'convert', MagicMock(return_value='asic0')) + def test_status(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['interfaces'].commands['status'], ['Ethernet0', '-n', 'asic0', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['intfutil', '-c', 'status', '-i', 'Ethernet0', '-n', 'asic0'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + @patch.object(click.Choice, 'convert', MagicMock(return_value='asic0')) + def test_tpid(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['interfaces'].commands['tpid'], ['Ethernet0', '-n', 'asic0', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['intfutil', '-c', 'tpid', '-i', 'Ethernet0', '-n', 'asic0'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_transceiver_lpmode(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['interfaces'].commands['transceiver'].commands['lpmode'], ['Ethernet0', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['sudo', 'sfputil', 'show', 'lpmode', '-p', 'Ethernet0'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + @patch.object(click.Choice, 'convert', MagicMock(return_value='asic0')) + def test_transceiver_error_status(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['interfaces'].commands['transceiver'].commands['error-status'], ['Ethernet0', '-hw', '-n', 'asic0', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['sudo', 'sfputil', 'show', 'error-status', '-p', 'Ethernet0', '-hw', '-n', 'asic0'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + @patch.object(click.Choice, 'convert', MagicMock(return_value='asic0')) + def test_counters(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['interfaces'].commands['counters'], ['-i', 'Ethernet0', '-p', '3', '-a', '-n', 'asic0', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['portstat', '-a', '-p', '3', '-i', 'Ethernet0', '-n', 'asic0'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_counters_error(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['interfaces'].commands['counters'].commands['errors'], ['-p', '3', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['portstat', '-e', '-p', '3', '-s', 'all'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_counters_rates(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['interfaces'].commands['counters'].commands['rates'], ['-p', '3', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['portstat', '-R', '-p', '3', '-s', 'all'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_counters_detailed(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['interfaces'].commands['counters'].commands['detailed'], ['Ethernet0', '-p', '3', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['portstat', '-l', '-p', '3', '-i', 'Ethernet0'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + @patch.object(click.Choice, 'convert', MagicMock(return_value='asic0')) + def test_autoneg_status(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['interfaces'].commands['autoneg'].commands['status'], ['Ethernet0', '-n', 'asic0', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['intfutil', '-c', 'autoneg', '-i', 'Ethernet0', '-n', 'asic0'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + @patch.object(click.Choice, 'convert', MagicMock(return_value='asic0')) + def test_link_training_status(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['interfaces'].commands['link-training'].commands['status'], ['Ethernet0', '-n', 'asic0', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['intfutil', '-c', 'link_training', '-i', 'Ethernet0', '-n', 'asic0'], display_cmd=True) + + def teardown(self): + print('TEAR DOWN') + + +class TestShowIp(object): + def setup(self): + print('SETUP') + + @patch('utilities_common.cli.run_command') + def test_ip_interfaces(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['ip'].commands['interfaces']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['sudo', 'ipintutil', '-a', 'ipv4', '-d', 'all']) + + @patch('utilities_common.cli.run_command') + def test_ipv6_interfaces(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['ipv6'].commands['interfaces']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['sudo', 'ipintutil', '-a', 'ipv6', '-d', 'all']) + + def teardown(self): + print('TEAR DOWN') + + +class TestShowVxlan(object): + def setup(self): + print('SETUP') + + @patch('utilities_common.cli.run_command') + def test_counters(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['vxlan'].commands['counters'], ['-p', '3', 'tunnel1', '--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['tunnelstat', '-T', 'vxlan', '-p', '3', '-i', 'tunnel1'], display_cmd=True) + + def teardown(self): + print('TEAR DOWN') + + +class TestShowNat(object): + def setup(self): + print('SETUP') + + @patch('utilities_common.cli.run_command') + def test_statistics(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['nat'].commands['statistics'], ['--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['sudo', 'natshow', '-s'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_translations(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['nat'].commands['translations'], ['--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['sudo', 'natshow', '-t'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_translations_count(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['nat'].commands['translations'].commands['count'], ['--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['sudo', 'natshow', '-c'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_config(self, mock_run_command): + expected_calls = [ + call(['sudo', 'natconfig', '-g'], display_cmd=True), + call(['sudo', 'natconfig', '-s'], display_cmd=True), + call(['sudo', 'natconfig', '-p'], display_cmd=True), + call(['sudo', 'natconfig', '-b'], display_cmd=True), + call(['sudo', 'natconfig', '-z'], display_cmd=True), + ] + + runner = CliRunner() + result = runner.invoke(show.cli.commands['nat'].commands['config'], ['--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == expected_nat_config_output + assert mock_run_command.call_args_list == expected_calls + + @patch('utilities_common.cli.run_command') + def test_config_static(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['nat'].commands['config'].commands['static'], ['--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['sudo', 'natconfig', '-s'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_config_pool(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['nat'].commands['config'].commands['pool'], ['--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['sudo', 'natconfig', '-p'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_config_bindings(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['nat'].commands['config'].commands['bindings'], ['--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['sudo', 'natconfig', '-b'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_config_globalvalues(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['nat'].commands['config'].commands['globalvalues'], ['--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['sudo', 'natconfig', '-g'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_config_zones(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['nat'].commands['config'].commands['zones'], ['--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['sudo', 'natconfig', '-z'], display_cmd=True) + + def teardown(self): + print('TEAR DOWN') + + +class TestShowProcesses(object): + def setup(self): + print('SETUP') + + @patch('utilities_common.cli.run_command') + def test_summary(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['processes'].commands['summary'], ['--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['ps', '-eo', 'pid,ppid,cmd,%mem,%cpu'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_cpu(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['processes'].commands['cpu'], ['--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['top', '-bn', '1', '-o', '%CPU'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_memory(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['processes'].commands['memory'], ['--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['top', '-bn', '1', '-o', '%MEM'], display_cmd=True) + + def teardown(self): + print('TEAR DOWN') + + +class TestShowPlatform(object): + def setup(self): + print('SETUP') + + @patch('utilities_common.cli.run_command') + def test_syseeprom(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['platform'].commands['syseeprom'], ['--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['sudo', 'decode-syseeprom', '-d'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + @patch('os.popen') + def test_ssdhealth(self, mock_popen, mock_run_command): + mock_popen.return_value.readline.return_value = '/dev/sda\n' + runner = CliRunner() + result = runner.invoke(show.cli.commands['platform'].commands['ssdhealth'], ['--verbose', '--vendor']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_popen.assert_called_once_with('lsblk -o NAME,TYPE -p | grep disk') + mock_run_command.assert_called_once_with(['sudo', 'ssdutil', '-d', '/dev/sda', '-v', '-e'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_pcieinfo(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['platform'].commands['pcieinfo'], ['--verbose']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['sudo', 'pcieutil', 'show'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_pcieinfo_check(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['platform'].commands['pcieinfo'], ['--verbose', '-c']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['sudo', 'pcieutil', 'check'], display_cmd=True) + + @patch('utilities_common.cli.run_command') + def test_temporature(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['platform'].commands['temperature']) + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with(['tempershow']) + + def teardown(self): + print('TEAR DOWN') + diff --git a/tests/sonic_bootchart_test.py b/tests/sonic_bootchart_test.py index c9d796a5..9a9d3dd9 100755 --- a/tests/sonic_bootchart_test.py +++ b/tests/sonic_bootchart_test.py @@ -40,13 +40,13 @@ def test_enable(self, mock_run_command): runner = CliRunner() result = runner.invoke(sonic_bootchart.cli.commands['enable'], []) assert not result.exit_code - mock_run_command.assert_called_with("systemctl enable systemd-bootchart", display_cmd=True) + mock_run_command.assert_called_with(['systemctl', 'enable', 'systemd-bootchart'], display_cmd=True) def test_disable(self, mock_run_command): runner = CliRunner() result = runner.invoke(sonic_bootchart.cli.commands['disable'], []) assert not result.exit_code - mock_run_command.assert_called_with("systemctl disable systemd-bootchart", display_cmd=True) + mock_run_command.assert_called_with(['systemctl', 'disable', 'systemd-bootchart'], display_cmd=True) def test_config_show(self, mock_run_command): def run_command_side_effect(command, **kwargs): diff --git a/tests/utils.py b/tests/utils.py index ff40865f..f24210e3 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -8,7 +8,7 @@ def get_result_and_return_code(cmd): return_code = 0 try: output = subprocess.check_output( - cmd, stderr=subprocess.STDOUT, shell=True, text=True) + cmd, stderr=subprocess.STDOUT, text=True) except subprocess.CalledProcessError as e: return_code = e.returncode # store only the error, no need for the traceback diff --git a/tests/vlan_test.py b/tests/vlan_test.py index 56ac1838..13364f76 100644 --- a/tests/vlan_test.py +++ b/tests/vlan_test.py @@ -567,12 +567,12 @@ def test_config_vlan_proxy_arp_enable(self): print(result.exit_code) print(result.output) - expected_calls = [mock.call("docker container inspect -f '{{.State.Status}}' swss", return_cmd=True), - mock.call('docker exec -i swss supervisorctl status ndppd', ignore_error=True, return_cmd=True), - mock.call('docker exec -i swss cp /usr/share/sonic/templates/ndppd.conf /etc/supervisor/conf.d/'), - mock.call('docker exec -i swss supervisorctl update', return_cmd=True), - mock.call('docker exec -i swss sonic-cfggen -d -t /usr/share/sonic/templates/ndppd.conf.j2,/etc/ndppd.conf'), - mock.call('docker exec -i swss supervisorctl restart ndppd', return_cmd=True)] + expected_calls = [mock.call(['docker', 'container', 'inspect', '-f', '{{.State.Status}}', 'swss'], return_cmd=True), + mock.call(['docker', 'exec', '-i', 'swss', 'supervisorctl', 'status', 'ndppd'], ignore_error=True, return_cmd=True), + mock.call(['docker', 'exec', '-i', 'swss', 'cp', '/usr/share/sonic/templates/ndppd.conf', '/etc/supervisor/conf.d/']), + mock.call(['docker', 'exec', '-i', 'swss', 'supervisorctl', 'update'], return_cmd=True), + mock.call(['docker', 'exec', '-i', 'swss', 'sonic-cfggen', '-d', '-t', '/usr/share/sonic/templates/ndppd.conf.j2,/etc/ndppd.conf']), + mock.call(['docker', 'exec', '-i', 'swss', 'supervisorctl', 'restart', 'ndppd'], return_cmd=True)] mock_run_command.assert_has_calls(expected_calls) assert result.exit_code == 0 diff --git a/utilities_common/bgp_util.py b/utilities_common/bgp_util.py index 3897d4a1..fd306fdc 100644 --- a/utilities_common/bgp_util.py +++ b/utilities_common/bgp_util.py @@ -177,14 +177,12 @@ def get_neighbor_dict_from_table(db, table_name): def run_bgp_command(vtysh_cmd, bgp_namespace=multi_asic.DEFAULT_NAMESPACE, vtysh_shell_cmd=constants.VTYSH_COMMAND): - bgp_instance_id = ' ' + bgp_instance_id = [] output = None if bgp_namespace is not multi_asic.DEFAULT_NAMESPACE: - bgp_instance_id = " -n {} ".format( - multi_asic.get_asic_id_from_name(bgp_namespace)) + bgp_instance_id = ['-n', str(multi_asic.get_asic_id_from_name(bgp_namespace))] - cmd = 'sudo {} {} -c "{}"'.format( - vtysh_shell_cmd, bgp_instance_id, vtysh_cmd) + cmd = ['sudo', vtysh_shell_cmd] + bgp_instance_id + ['-c', vtysh_cmd] try: output, ret = clicommon.run_command(cmd, return_cmd=True) if ret != 0: diff --git a/utilities_common/cli.py b/utilities_common/cli.py index 45b2cc5f..9d3cdae7 100644 --- a/utilities_common/cli.py +++ b/utilities_common/cli.py @@ -15,7 +15,7 @@ from sonic_py_common import multi_asic from utilities_common.db import Db from utilities_common.general import load_db_config - +from sonic_py_common.general import getstatusoutput_noshell_pipe VLAN_SUB_INTERFACE_SEPARATOR = '.' pass_db = click.make_pass_decorator(Db, ensure=True) @@ -391,12 +391,15 @@ def print_output_in_alias_mode(output, index): click.echo(output.rstrip('\n')) -def run_command_in_alias_mode(command): +def run_command_in_alias_mode(command, shell=False): """Run command and replace all instances of SONiC interface names in output with vendor-sepecific interface aliases. """ - - process = subprocess.Popen(command, shell=True, text=True, stdout=subprocess.PIPE) + if not shell: + command_str = ' '.join(command) + else: + command_str = command + process = subprocess.Popen(command, text=True, shell=shell, stdout=subprocess.PIPE) while True: output = process.stdout.readline() @@ -408,7 +411,7 @@ def run_command_in_alias_mode(command): raw_output = output output = output.lstrip() - if command.startswith("portstat"): + if command_str.startswith("portstat"): """Show interface counters""" index = 0 if output.startswith("IFACE"): @@ -416,7 +419,7 @@ def run_command_in_alias_mode(command): iface_alias_converter.alias_max_length)) print_output_in_alias_mode(output, index) - elif command.startswith("intfstat"): + elif command_str.startswith("intfstat"): """Show RIF counters""" index = 0 if output.startswith("IFACE"): @@ -424,7 +427,7 @@ def run_command_in_alias_mode(command): iface_alias_converter.alias_max_length)) print_output_in_alias_mode(output, index) - elif command == "pfcstat": + elif command_str == "pfcstat": """Show pfc counters""" index = 0 if output.startswith("Port Tx"): @@ -436,12 +439,12 @@ def run_command_in_alias_mode(command): iface_alias_converter.alias_max_length)) print_output_in_alias_mode(output, index) - elif (command.startswith("sudo sfputil show eeprom")): + elif (command_str.startswith("sudo sfputil show eeprom")): """Show interface transceiver eeprom""" index = 0 print_output_in_alias_mode(raw_output, index) - elif (command.startswith("sudo sfputil show")): + elif (command_str.startswith("sudo sfputil show")): """Show interface transceiver lpmode, presence """ @@ -451,7 +454,7 @@ def run_command_in_alias_mode(command): iface_alias_converter.alias_max_length)) print_output_in_alias_mode(output, index) - elif command == "sudo lldpshow": + elif command_str == "sudo lldpshow": """Show lldp table""" index = 0 if output.startswith("LocalPort"): @@ -459,7 +462,7 @@ def run_command_in_alias_mode(command): iface_alias_converter.alias_max_length)) print_output_in_alias_mode(output, index) - elif command.startswith("queuestat"): + elif command_str.startswith("queuestat"): """Show queue counters""" index = 0 if output.startswith("Port"): @@ -467,7 +470,7 @@ def run_command_in_alias_mode(command): iface_alias_converter.alias_max_length)) print_output_in_alias_mode(output, index) - elif command == "fdbshow": + elif command_str == "fdbshow": """Show mac""" index = 3 if output.startswith("No."): @@ -478,13 +481,13 @@ def run_command_in_alias_mode(command): output = " " + output print_output_in_alias_mode(output, index) - elif command.startswith("nbrshow"): + elif command_str.startswith("nbrshow"): """Show arp""" index = 2 if "Vlan" in output: output = output.replace('Vlan', ' Vlan') print_output_in_alias_mode(output, index) - elif command.startswith("sudo ipintutil"): + elif command_str.startswith("sudo ipintutil"): """Show ip(v6) int""" index = 0 if output.startswith("Interface"): @@ -511,7 +514,7 @@ def run_command_in_alias_mode(command): sys.exit(rc) -def run_command(command, display_cmd=False, ignore_error=False, return_cmd=False, interactive_mode=False): +def run_command(command, display_cmd=False, ignore_error=False, return_cmd=False, interactive_mode=False, shell=False): """ Run bash command. Default behavior is to print output to stdout. If the command returns a non-zero return code, the function will exit with that return code. @@ -522,20 +525,24 @@ def run_command(command, display_cmd=False, ignore_error=False, return_cmd=False return_cmd: Boolean; If true, the function will return the output, ignoring any non-zero return code interactive_mode: Boolean; If true, it will treat the process as a long-running process which may generate multiple lines of output over time + shell: Boolean; If true, the command will be run in a shell """ - + if not shell: + command_str = ' '.join(command) + else: + command_str = command if display_cmd == True: - click.echo(click.style("Running command: ", fg='cyan') + click.style(command, fg='green')) + click.echo(click.style("Running command: ", fg='cyan') + click.style(command_str, fg='green')) # No conversion needed for intfutil commands as it already displays # both SONiC interface name and alias name for all interfaces. # IP route table cannot be handled in function run_command_in_alias_mode since it is in JSON format # with a list for next hops - if get_interface_naming_mode() == "alias" and not command.startswith("intfutil") and not re.search("show ip|ipv6 route", command): - run_command_in_alias_mode(command) + 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=True, text=True, stdout=subprocess.PIPE) + proc = subprocess.Popen(command, shell=shell, text=True, stdout=subprocess.PIPE) if return_cmd: output = proc.communicate()[0] From a66f41c45357388947500057c5a2d632ceb98918 Mon Sep 17 00:00:00 2001 From: Mai Bui Date: Wed, 31 May 2023 14:19:57 -0400 Subject: [PATCH 163/312] [show] replace shell=True, replace xml by lxml, replace exit by sys.exit (#2666) #### What I did `subprocess()` - when using with `shell=True` is dangerous. Using subprocess function without a static string can lead to command injection. `sys.exit` is better than `exit`, considered good to use in production code. Ref: https://stackoverflow.com/questions/6501121/difference-between-exit-and-sys-exit-in-python https://stackoverflow.com/questions/19747371/python-exit-commands-why-so-many-and-when-should-each-be-used #### How I did it `subprocess()` - use `shell=False` instead, use list of strings Ref: [https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation](https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation) Replace `exit()` by `sys.exit()` #### How to verify it Pass UT Manual test Signed-off-by: Mai Bui --- show/bgp_quagga_v4.py | 17 +- show/bgp_quagga_v6.py | 11 +- show/main.py | 271 ++++++++++++------------- show/platform.py | 4 +- tests/fdbshow_test.py | 2 +- tests/intfstat_test.py | 6 +- tests/pfcstat_test.py | 4 +- tests/queue_counter_test.py | 6 +- tests/show_test.py | 384 +++++++++++++++++++++++++++++++++--- tests/techsupport_test.py | 14 +- tests/tunnelstat_test.py | 4 +- 11 files changed, 534 insertions(+), 189 deletions(-) diff --git a/show/bgp_quagga_v4.py b/show/bgp_quagga_v4.py index e384cd9d..cd425474 100644 --- a/show/bgp_quagga_v4.py +++ b/show/bgp_quagga_v4.py @@ -1,7 +1,8 @@ import click -from show.main import AliasedGroup, ip, run_command +from show.main import ip, run_command from utilities_common.bgp_util import get_bgp_summary_extended import utilities_common.constants as constants +import utilities_common.cli as clicommon ############################################################################### @@ -11,7 +12,7 @@ ############################################################################### -@ip.group(cls=AliasedGroup) +@ip.group(cls=clicommon.AliasedGroup) def bgp(): """Show IPv4 BGP (Border Gateway Protocol) information""" pass @@ -22,10 +23,10 @@ def bgp(): def summary(): """Show summarized information of IPv4 BGP state""" try: - device_output = run_command('sudo {} -c "show ip bgp summary"'.format(constants.RVTYSH_COMMAND), return_cmd=True) + device_output = run_command(['sudo', constants.RVTYSH_COMMAND, '-c', "show ip bgp summary"], return_cmd=True) get_bgp_summary_extended(device_output) except Exception: - run_command('sudo {} -c "show ip bgp summary"'.format(constants.RVTYSH_COMMAND)) + run_command(['sudo', constants.RVTYSH_COMMAND, '-c', "show ip bgp summary"]) # 'neighbors' subcommand ("show ip bgp neighbors") @@ -35,15 +36,13 @@ def summary(): def neighbors(ipaddress, info_type): """Show IP (IPv4) BGP neighbors""" - command = 'sudo {} -c "show ip bgp neighbor'.format(constants.RVTYSH_COMMAND) + command = ['sudo', constants.RVTYSH_COMMAND, '-c', "show ip bgp neighbor"] if ipaddress is not None: - command += ' {}'.format(ipaddress) + command[-1] += ' {}'.format(ipaddress) # info_type is only valid if ipaddress is specified if info_type is not None: - command += ' {}'.format(info_type) - - command += '"' + command[-1] += ' {}'.format(info_type) run_command(command) diff --git a/show/bgp_quagga_v6.py b/show/bgp_quagga_v6.py index 003f4c94..3581a84c 100644 --- a/show/bgp_quagga_v6.py +++ b/show/bgp_quagga_v6.py @@ -1,7 +1,8 @@ import click -from show.main import AliasedGroup, ipv6, run_command +from show.main import ipv6, run_command from utilities_common.bgp_util import get_bgp_summary_extended import utilities_common.constants as constants +import utilities_common.cli as clicommon ############################################################################### @@ -11,7 +12,7 @@ ############################################################################### -@ipv6.group(cls=AliasedGroup) +@ipv6.group(cls=clicommon.AliasedGroup) def bgp(): """Show IPv6 BGP (Border Gateway Protocol) information""" pass @@ -22,10 +23,10 @@ def bgp(): def summary(): """Show summarized information of IPv6 BGP state""" try: - device_output = run_command('sudo {} -c "show ipv6 bgp summary"'.format(constants.RVTYSH_COMMAND), return_cmd=True) + device_output = run_command(['sudo', constants.RVTYSH_COMMAND, '-c', "show ipv6 bgp summary"], return_cmd=True) get_bgp_summary_extended(device_output) except Exception: - run_command('sudo {} -c "show ipv6 bgp summary"'.format(constants.RVTYSH_COMMAND)) + run_command(['sudo', constants.RVTYSH_COMMAND, '-c', "show ipv6 bgp summary"]) # 'neighbors' subcommand ("show ipv6 bgp neighbors") @@ -34,5 +35,5 @@ def summary(): @click.argument('info_type', type=click.Choice(['routes', 'advertised-routes', 'received-routes']), required=True) def neighbors(ipaddress, info_type): """Show IPv6 BGP neighbors""" - command = 'sudo {} -c "show ipv6 bgp neighbor {} {}"'.format(constants.RVTYSH_COMMAND, ipaddress, info_type) + command = ['sudo', constants.RVTYSH_COMMAND, '-c', "show ipv6 bgp neighbor {} {}".format(ipaddress, info_type)] run_command(command) diff --git a/show/main.py b/show/main.py index 2d21e1b3..d79777eb 100755 --- a/show/main.py +++ b/show/main.py @@ -20,6 +20,7 @@ import utilities_common.constants as constants from utilities_common.general import load_db_config from json.decoder import JSONDecodeError +from sonic_py_common.general import getstatusoutput_noshell_pipe # mock the redis for unit test purposes # try: @@ -104,17 +105,22 @@ def readJsonFile(fileName): raise click.Abort() return result -def run_command(command, display_cmd=False, return_cmd=False): +def run_command(command, display_cmd=False, return_cmd=False, shell=False): + if not shell: + command_str = ' '.join(command) + else: + command_str = command + if display_cmd: - click.echo(click.style("Command: ", fg='cyan') + click.style(command, fg='green')) + click.echo(click.style("Command: ", fg='cyan') + click.style(command_str, fg='green')) # No conversion needed for intfutil commands as it already displays # both SONiC interface name and alias name for all interfaces. - if clicommon.get_interface_naming_mode() == "alias" and not command.startswith("intfutil"): - clicommon.run_command_in_alias_mode(command) + if clicommon.get_interface_naming_mode() == "alias" and not command_str.startswith("intfutil"): + clicommon.run_command_in_alias_mode(command, shell=shell) raise sys.exit(0) - proc = subprocess.Popen(command, shell=True, text=True, stdout=subprocess.PIPE) + proc = subprocess.Popen(command, shell=shell, text=True, stdout=subprocess.PIPE) while True: if return_cmd: @@ -377,10 +383,10 @@ def event_counters(): @click.option('--verbose', is_flag=True, help="Enable verbose output") def arp(ipaddress, iface, verbose): """Show IP ARP table""" - cmd = "nbrshow -4" + cmd = ['nbrshow', '-4'] if ipaddress is not None: - cmd += " -ip {}".format(ipaddress) + cmd += ['-ip', str(ipaddress)] if iface is not None: if clicommon.get_interface_naming_mode() == "alias": @@ -388,7 +394,7 @@ def arp(ipaddress, iface, verbose): (iface.startswith("eth"))): iface = iface_alias_converter.alias_to_name(iface) - cmd += " -if {}".format(iface) + cmd += ['-if', str(iface)] run_command(cmd, display_cmd=verbose) @@ -402,22 +408,22 @@ def arp(ipaddress, iface, verbose): @click.option('--verbose', is_flag=True, help="Enable verbose output") def ndp(ip6address, iface, verbose): """Show IPv6 Neighbour table""" - cmd = "nbrshow -6" + cmd = ['nbrshow', '-6'] if ip6address is not None: - cmd += " -ip {}".format(ip6address) + cmd += ['-ip', str(ip6address)] if iface is not None: - cmd += " -if {}".format(iface) + cmd += ['-if', str(iface)] run_command(cmd, display_cmd=verbose) def is_mgmt_vrf_enabled(ctx): """Check if management VRF is enabled""" if ctx.invoked_subcommand is None: - cmd = 'sonic-cfggen -d --var-json "MGMT_VRF_CONFIG"' + cmd = ['sonic-cfggen', '-d', '--var-json', "MGMT_VRF_CONFIG"] - p = subprocess.Popen(cmd, shell=True, text=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + p = subprocess.Popen(cmd, text=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) try : mvrf_dict = json.loads(p.stdout.read()) except ValueError: @@ -487,13 +493,13 @@ def mgmt_vrf(ctx,routes): if routes is None: click.echo("\nManagementVRF : Enabled") click.echo("\nManagement VRF interfaces in Linux:") - cmd = "ip -d link show mgmt" + cmd = ['ip', '-d', 'link', 'show', 'mgmt'] run_command(cmd) - cmd = "ip link show vrf mgmt" + cmd = ['ip', 'link', 'show', 'vrf', 'mgmt'] run_command(cmd) else: click.echo("\nRoutes in Management VRF Routing Table:") - cmd = "ip route show table 5000" + cmd = ['ip', 'route', 'show', 'table', '5000'] run_command(cmd) # @@ -577,7 +583,7 @@ def subinterfaces(): @click.option('--verbose', is_flag=True, help="Enable verbose output") def status(subinterfacename, verbose): """Show sub port interface status information""" - cmd = "intfutil -c status" + cmd = ['intfutil', '-c', 'status'] if subinterfacename is not None: sub_intf_sep_idx = subinterfacename.find(VLAN_SUB_INTERFACE_SEPARATOR) @@ -588,9 +594,9 @@ def status(subinterfacename, verbose): if clicommon.get_interface_naming_mode() == "alias": subinterfacename = iface_alias_converter.alias_to_name(subinterfacename) - cmd += " -i {}".format(subinterfacename) + cmd += ['-i', str(subinterfacename)] else: - cmd += " -i subport" + cmd += ['-i', 'subport'] run_command(cmd, display_cmd=verbose) # @@ -609,9 +615,9 @@ def pfc(): def counters(namespace, display, verbose): """Show pfc counters""" - cmd = "pfcstat -s {}".format(display) + cmd = ['pfcstat', '-s', str(display)] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] run_command(cmd, display_cmd=verbose) @@ -619,12 +625,12 @@ def counters(namespace, display, verbose): @click.argument('interface', type=click.STRING, required=False) def priority(interface): """Show pfc priority""" - cmd = 'pfc show priority' + cmd = ['pfc', 'show', 'priority'] if interface is not None and clicommon.get_interface_naming_mode() == "alias": interface = iface_alias_converter.alias_to_name(interface) if interface is not None: - cmd += ' {0}'.format(interface) + cmd += [str(interface)] run_command(cmd) @@ -632,12 +638,12 @@ def priority(interface): @click.argument('interface', type=click.STRING, required=False) def asymmetric(interface): """Show asymmetric pfc""" - cmd = 'pfc show asymmetric' + cmd = ['pfc', 'show', 'asymmetric'] if interface is not None and clicommon.get_interface_naming_mode() == "alias": interface = iface_alias_converter.alias_to_name(interface) if interface is not None: - cmd += ' {0}'.format(interface) + cmd += [str(interface)] run_command(cmd) @@ -653,9 +659,9 @@ def pfcwd(): def config(namespace, display, verbose): """Show pfc watchdog config""" - cmd = "pfcwd show config -d {}".format(display) + cmd = ['pfcwd', 'show', 'config', '-d', str(display)] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] run_command(cmd, display_cmd=verbose) @@ -665,9 +671,9 @@ def config(namespace, display, verbose): def stats(namespace, display, verbose): """Show pfc watchdog stats""" - cmd = "pfcwd show stats -d {}".format(display) + cmd = ['pfcwd', 'show', 'stats', '-d', str(display)] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] run_command(cmd, display_cmd=verbose) @@ -688,7 +694,7 @@ def telemetry(): @telemetry.command('interval') def show_tm_interval(): """Show telemetry interval""" - command = 'watermarkcfg --show-interval' + command = ['watermarkcfg', '--show-interval'] run_command(command) @@ -711,23 +717,23 @@ def queue(): def counters(interfacename, namespace, display, verbose, json, voq): """Show queue counters""" - cmd = "queuestat" + cmd = ["queuestat"] if interfacename is not None: if clicommon.get_interface_naming_mode() == "alias": interfacename = iface_alias_converter.alias_to_name(interfacename) if interfacename is not None: - cmd += " -p {}".format(interfacename) + cmd += ['-p', str(interfacename)] if namespace is not None: - cmd += " -n {}".format(namespace) + cmd += ['-n', str(namespace)] if json: - cmd += " -j" + cmd += ["-j"] if voq: - cmd += " -V" + cmd += ["-V"] run_command(cmd, display_cmd=verbose) @@ -744,21 +750,21 @@ def watermark(): @watermark.command('unicast') def wm_q_uni(): """Show user WM for unicast queues""" - command = 'watermarkstat -t q_shared_uni' + command = ['watermarkstat', '-t', 'q_shared_uni'] run_command(command) # 'multicast' subcommand ("show queue watermarks multicast") @watermark.command('multicast') def wm_q_multi(): """Show user WM for multicast queues""" - command = 'watermarkstat -t q_shared_multi' + command = ['watermarkstat', '-t', 'q_shared_multi'] run_command(command) # 'all' subcommand ("show queue watermarks all") @watermark.command('all') def wm_q_all(): """Show user WM for all queues""" - command = 'watermarkstat -t q_shared_all' + command = ['watermarkstat', '-t', 'q_shared_all'] run_command(command) # @@ -774,21 +780,21 @@ def persistent_watermark(): @persistent_watermark.command('unicast') def pwm_q_uni(): """Show persistent WM for unicast queues""" - command = 'watermarkstat -p -t q_shared_uni' + command = ['watermarkstat', '-p', '-t', 'q_shared_uni'] run_command(command) # 'multicast' subcommand ("show queue persistent-watermarks multicast") @persistent_watermark.command('multicast') def pwm_q_multi(): """Show persistent WM for multicast queues""" - command = 'watermarkstat -p -t q_shared_multi' + command = ['watermarkstat', '-p', '-t', 'q_shared_multi'] run_command(command) # 'all' subcommand ("show queue persistent-watermarks all") @persistent_watermark.command('all') def pwm_q_all(): """Show persistent WM for all queues""" - command = 'watermarkstat -p -t q_shared_all' + command = ['watermarkstat', '-p', '-t', 'q_shared_all'] run_command(command) # @@ -807,13 +813,13 @@ def watermark(): @watermark.command('headroom') def wm_pg_headroom(): """Show user headroom WM for pg""" - command = 'watermarkstat -t pg_headroom' + command = ['watermarkstat', '-t', 'pg_headroom'] run_command(command) @watermark.command('shared') def wm_pg_shared(): """Show user shared WM for pg""" - command = 'watermarkstat -t pg_shared' + command = ['watermarkstat', '-t', 'pg_shared'] run_command(command) @priority_group.group() @@ -824,7 +830,7 @@ def drop(): @drop.command('counters') def pg_drop_counters(): """Show dropped packets for priority-group""" - command = 'pg-drop -c show' + command = ['pg-drop', '-c', 'show'] run_command(command) @priority_group.group(name='persistent-watermark') @@ -835,13 +841,13 @@ def persistent_watermark(): @persistent_watermark.command('headroom') def pwm_pg_headroom(): """Show persistent headroom WM for pg""" - command = 'watermarkstat -p -t pg_headroom' + command = ['watermarkstat', '-p', '-t', 'pg_headroom'] run_command(command) @persistent_watermark.command('shared') def pwm_pg_shared(): """Show persistent shared WM for pg""" - command = 'watermarkstat -p -t pg_shared' + command = ['watermarkstat', '-p', '-t', 'pg_shared'] run_command(command) @@ -856,13 +862,13 @@ def buffer_pool(): @buffer_pool.command('watermark') def wm_buffer_pool(): """Show user WM for buffer pools""" - command = 'watermarkstat -t buffer_pool' + command = ['watermarkstat', '-t' ,'buffer_pool'] run_command(command) @buffer_pool.command('persistent-watermark') def pwm_buffer_pool(): """Show persistent WM for buffer pools""" - command = 'watermarkstat -p -t buffer_pool' + command = ['watermarkstat', '-p', '-t', 'buffer_pool'] run_command(command) @@ -877,13 +883,13 @@ def headroom_pool(): @headroom_pool.command('watermark') def wm_headroom_pool(): """Show user WM for headroom pool""" - command = 'watermarkstat -t headroom_pool' + command = ['watermarkstat', '-t', 'headroom_pool'] run_command(command) @headroom_pool.command('persistent-watermark') def pwm_headroom_pool(): """Show persistent WM for headroom pool""" - command = 'watermarkstat -p -t headroom_pool' + command = ['watermarkstat', '-p', '-t', 'headroom_pool'] run_command(command) @@ -905,22 +911,22 @@ def mac(ctx, vlan, port, address, type, count, verbose): if ctx.invoked_subcommand is not None: return - cmd = "fdbshow" + cmd = ["fdbshow"] if vlan is not None: - cmd += " -v {}".format(vlan) + cmd += ['-v', str(vlan)] if port is not None: - cmd += " -p {}".format(port) + cmd += ['-p', str(port)] if address is not None: - cmd += " -a {}".format(address) + cmd += ['-a', str(address)] if type is not None: - cmd += " -t {}".format(type) + cmd += ['-t', str(type)] if count: - cmd += " -c" + cmd += ["-c"] run_command(cmd, display_cmd=verbose) @@ -951,10 +957,9 @@ def aging_time(ctx): @click.option('--verbose', is_flag=True, help="Enable verbose output") def route_map(route_map_name, verbose): """show route-map""" - cmd = 'sudo {} -c "show route-map'.format(constants.RVTYSH_COMMAND) + cmd = ['sudo', constants.RVTYSH_COMMAND, '-c', 'show route-map'] if route_map_name is not None: - cmd += ' {}'.format(route_map_name) - cmd += '"' + cmd[-1] += ' {}'.format(route_map_name) run_command(cmd, display_cmd=verbose) # @@ -1042,10 +1047,9 @@ def route(args, namespace, display, verbose): @click.option('--verbose', is_flag=True, help="Enable verbose output") def prefix_list(prefix_list_name, verbose): """show ip prefix-list""" - cmd = 'sudo {} -c "show ip prefix-list'.format(constants.RVTYSH_COMMAND) + cmd = ['sudo', constants.RVTYSH_COMMAND, '-c', 'show ip prefix-list'] if prefix_list_name is not None: - cmd += ' {}'.format(prefix_list_name) - cmd += '"' + cmd[-1] += ' {}'.format(prefix_list_name) run_command(cmd, display_cmd=verbose) @@ -1054,7 +1058,7 @@ def prefix_list(prefix_list_name, verbose): @click.option('--verbose', is_flag=True, help="Enable verbose output") def protocol(verbose): """Show IPv4 protocol information""" - cmd = 'sudo {} -c "show ip protocol"'.format(constants.RVTYSH_COMMAND) + cmd = ['sudo', constants.RVTYSH_COMMAND, '-c', "show ip protocol"] run_command(cmd, display_cmd=verbose) # @@ -1065,9 +1069,9 @@ def protocol(verbose): @click.option('--verbose', is_flag=True, help="Enable verbose output") def fib(ipaddress, verbose): """Show IP FIB table""" - cmd = "fibshow -4" + cmd = ['fibshow', '-4'] if ipaddress is not None: - cmd += " -ip {}".format(ipaddress) + cmd += ['-ip', str(ipaddress)] run_command(cmd, display_cmd=verbose) @@ -1090,10 +1094,9 @@ def ipv6(): @click.option('--verbose', is_flag=True, help="Enable verbose output") def prefix_list(prefix_list_name, verbose): """show ip prefix-list""" - cmd = 'sudo {} -c "show ipv6 prefix-list'.format(constants.RVTYSH_COMMAND) + cmd = ['sudo', constants.RVTYSH_COMMAND, '-c', 'show ipv6 prefix-list'] if prefix_list_name is not None: - cmd += ' {}'.format(prefix_list_name) - cmd += '"' + cmd[-1] += ' {}'.format(prefix_list_name) run_command(cmd, display_cmd=verbose) @@ -1138,7 +1141,7 @@ def route(args, namespace, display, verbose): @click.option('--verbose', is_flag=True, help="Enable verbose output") def protocol(verbose): """Show IPv6 protocol information""" - cmd = 'sudo {} -c "show ipv6 protocol"'.format(constants.RVTYSH_COMMAND) + cmd = ['sudo', constants.RVTYSH_COMMAND, '-c', "show ipv6 protocol"] run_command(cmd, display_cmd=verbose) # @@ -1207,9 +1210,9 @@ def link_local_mode(verbose): @click.option('--verbose', is_flag=True, help="Enable verbose output") def fib(ipaddress, verbose): """Show IP FIB table""" - cmd = "fibshow -6" + cmd = ['fibshow', '-6'] if ipaddress is not None: - cmd += " -ip {}".format(ipaddress) + cmd += ['-ip', str(ipaddress)] run_command(cmd, display_cmd=verbose) # @@ -1227,13 +1230,13 @@ def lldp(): @click.option('--verbose', is_flag=True, help="Enable verbose output") def neighbors(interfacename, verbose): """Show LLDP neighbors""" - cmd = "sudo lldpshow -d" + cmd = ['sudo', 'lldpshow', '-d'] if interfacename is not None: if clicommon.get_interface_naming_mode() == "alias": interfacename = iface_alias_converter.alias_to_name(interfacename) - cmd += " -p {}".format(interfacename) + cmd += ['-p', str(interfacename)] run_command(cmd, display_cmd=verbose) @@ -1242,7 +1245,7 @@ def neighbors(interfacename, verbose): @click.option('--verbose', is_flag=True, help="Enable verbose output") def table(verbose): """Show LLDP neighbors in tabular format""" - cmd = "sudo lldpshow" + cmd = ['sudo', 'lldpshow'] run_command(cmd, display_cmd=verbose) @@ -1252,7 +1255,7 @@ def table(verbose): @cli.command() @click.argument('process', required=False) -@click.option('-l', '--lines') +@click.option('-l', '--lines', type=int) @click.option('-f', '--follow', is_flag=True) @click.option('--verbose', is_flag=True, help="Enable verbose output") def logging(process, lines, follow, verbose): @@ -1262,7 +1265,7 @@ def logging(process, lines, follow, verbose): else: log_path = "/var/log" if follow: - cmd = "sudo tail -F {}/syslog".format(log_path) + cmd = ['sudo', 'tail', '-F', '{}/syslog'.format(log_path)] run_command(cmd, display_cmd=verbose) else: if os.path.isfile("{}/syslog.1".format(log_path)): @@ -1276,8 +1279,7 @@ def logging(process, lines, follow, verbose): if lines is not None: cmd += " | tail -{}".format(lines) - run_command(cmd, display_cmd=verbose) - + run_command(cmd, display_cmd=verbose, shell=True) # # 'version' command ("show version") @@ -1291,8 +1293,8 @@ def version(verbose): platform_info = device_info.get_platform_info() chassis_info = platform.get_chassis_info() - sys_uptime_cmd = "uptime" - sys_uptime = subprocess.Popen(sys_uptime_cmd, shell=True, text=True, stdout=subprocess.PIPE) + sys_uptime_cmd = ["uptime"] + sys_uptime = subprocess.Popen(sys_uptime_cmd, text=True, stdout=subprocess.PIPE) sys_date = datetime.now() @@ -1313,8 +1315,8 @@ def version(verbose): click.echo("Uptime: {}".format(sys_uptime.stdout.read().strip())) click.echo("Date: {}".format(sys_date.strftime("%a %d %b %Y %X"))) click.echo("\nDocker images:") - cmd = 'sudo docker images --format "table {{.Repository}}\\t{{.Tag}}\\t{{.ID}}\\t{{.Size}}"' - p = subprocess.Popen(cmd, shell=True, text=True, stdout=subprocess.PIPE) + cmd = ['sudo', 'docker', 'images', '--format', "table {{.Repository}}\\t{{.Tag}}\\t{{.ID}}\\t{{.Size}}"] + p = subprocess.Popen(cmd, text=True, stdout=subprocess.PIPE) click.echo(p.stdout.read()) # @@ -1325,7 +1327,7 @@ def version(verbose): @click.option('--verbose', is_flag=True, help="Enable verbose output") def environment(verbose): """Show environmentals (voltages, fans, temps)""" - cmd = "sudo sensors" + cmd = ['sudo', 'sensors'] run_command(cmd, display_cmd=verbose) @@ -1337,7 +1339,7 @@ def environment(verbose): @click.option('--verbose', is_flag=True, help="Enable verbose output") def users(verbose): """Show users""" - cmd = "who" + cmd = ["who"] run_command(cmd, display_cmd=verbose) @@ -1356,29 +1358,29 @@ def users(verbose): @click.option('--redirect-stderr', '-r', is_flag=True, help="Redirect an intermediate errors to STDERR") def techsupport(since, global_timeout, cmd_timeout, verbose, allow_process_stop, silent, debug_dump, redirect_stderr): """Gather information for troubleshooting""" - cmd = "sudo" + cmd = ["sudo"] if global_timeout: - cmd += " timeout --kill-after={}s -s SIGTERM --foreground {}m".format(COMMAND_TIMEOUT, global_timeout) + cmd += ['timeout', '--kill-after={}s'.format(COMMAND_TIMEOUT), '-s', 'SIGTERM', '--foreground', '{}m'.format(global_timeout)] if silent: - cmd += " generate_dump" + cmd += ["generate_dump"] click.echo("Techsupport is running with silent option. This command might take a long time.") else: - cmd += " generate_dump -v" + cmd += ['generate_dump', '-v'] if allow_process_stop: - cmd += " -a" + cmd += ["-a"] if since: - cmd += " -s '{}'".format(since) + cmd += ['-s', str(since)] if debug_dump: - cmd += " -d" + cmd += ["-d"] - cmd += " -t {}".format(cmd_timeout) + cmd += ['-t', str(cmd_timeout)] if redirect_stderr: - cmd += " -r" + cmd += ["-r"] run_command(cmd, display_cmd=verbose) @@ -1423,7 +1425,7 @@ def all(verbose): @click.option('--verbose', is_flag=True, help="Enable verbose output") def acl(verbose): """Show acl running configuration""" - cmd = "sonic-cfggen -d --var-json ACL_RULE" + cmd = ['sonic-cfggen', '-d', '--var-json', 'ACL_RULE'] run_command(cmd, display_cmd=verbose) @@ -1433,10 +1435,10 @@ def acl(verbose): @click.option('--verbose', is_flag=True, help="Enable verbose output") def ports(portname, verbose): """Show ports running configuration""" - cmd = "sonic-cfggen -d --var-json PORT" + cmd = ['sonic-cfggen', '-d', '--var-json', 'PORT'] if portname is not None: - cmd += " {0} {1}".format("--key", portname) + cmd += ["--key", str(portname)] run_command(cmd, display_cmd=verbose) @@ -1486,10 +1488,10 @@ def bgp(namespace, verbose): @click.option('--verbose', is_flag=True, help="Enable verbose output") def interfaces(interfacename, verbose): """Show interfaces running configuration""" - cmd = "sonic-cfggen -d --var-json INTERFACE" + cmd = ['sonic-cfggen', '-d', '--var-json', 'INTERFACE'] if interfacename is not None: - cmd += " {0} {1}".format("--key", interfacename) + cmd += ["--key", str(interfacename)] run_command(cmd, display_cmd=verbose) @@ -1715,16 +1717,20 @@ def startupconfiguration(): @click.option('--verbose', is_flag=True, help="Enable verbose output") def bgp(verbose): """Show BGP startup configuration""" - cmd = "sudo docker ps | grep bgp | awk '{print$2}' | cut -d'-' -f3 | cut -d':' -f1" - proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True, text=True) - result = proc.stdout.read().rstrip() + cmd0 = ['sudo', 'docker', 'ps'] + cmd1 = ['grep', 'bgp'] + cmd2 = ['awk', '{print$2}'] + cmd3 = ['cut', '-d-', '-f3'] + cmd4 = ['cut', '-d:', "-f1"] + _, stdout = getstatusoutput_noshell_pipe(cmd0, cmd1, cmd2, cmd3, cmd4) + result = stdout.rstrip() click.echo("Routing-Stack is: {}".format(result)) if result == "quagga": - run_command('sudo docker exec bgp cat /etc/quagga/bgpd.conf', display_cmd=verbose) + run_command(['sudo', 'docker', 'exec', 'bgp', 'cat', '/etc/quagga/bgpd.conf'], display_cmd=verbose) elif result == "frr": - run_command('sudo docker exec bgp cat /etc/frr/bgpd.conf', display_cmd=verbose) + run_command(['sudo', 'docker', 'exec', 'bgp', 'cat', '/etc/frr/bgpd.conf'], display_cmd=verbose) elif result == "gobgp": - run_command('sudo docker exec bgp cat /etc/gpbgp/bgpd.conf', display_cmd=verbose) + run_command(['sudo', 'docker', 'exec', 'bgp', 'cat', '/etc/gpbgp/bgpd.conf'], display_cmd=verbose) else: click.echo("Unidentified routing-stack") @@ -1738,18 +1744,18 @@ def bgp(verbose): def ntp(ctx, verbose): """Show NTP information""" from pkg_resources import parse_version - ntpstat_cmd = "ntpstat" - ntpcmd = "ntpq -p -n" + ntpstat_cmd = ["ntpstat"] + ntpcmd = ["ntpq", "-p", "-n"] if is_mgmt_vrf_enabled(ctx) is True: #ManagementVRF is enabled. Call ntpq using "ip vrf exec" or cgexec based on linux version os_info = os.uname() release = os_info[2].split('-') if parse_version(release[0]) > parse_version("4.9.0"): - ntpstat_cmd = "sudo ip vrf exec mgmt ntpstat" - ntpcmd = "sudo ip vrf exec mgmt ntpq -p -n" + ntpstat_cmd = ['sudo', 'ip', 'vrf', 'exec', 'mgmt', 'ntpstat'] + ntpcmd = ['sudo', 'ip', 'vrf', 'exec', 'mgmt', 'ntpq', '-p', '-n'] else: - ntpstat_cmd = "sudo cgexec -g l3mdev:mgmt ntpstat" - ntpcmd = "sudo cgexec -g l3mdev:mgmt ntpq -p -n" + ntpstat_cmd = ['sudo', 'cgexec', '-g', 'l3mdev:mgmt', 'ntpstat'] + ntpcmd = ['sudo', 'cgexec', '-g', 'l3mdev:mgmt', 'ntpq', '-p', '-n'] run_command(ntpstat_cmd, display_cmd=verbose) run_command(ntpcmd, display_cmd=verbose) @@ -1762,37 +1768,38 @@ def ntp(ctx, verbose): @click.option('--verbose', is_flag=True, help="Enable verbose output") def uptime(verbose): """Show system uptime""" - cmd = "uptime -p" + cmd = ['uptime', '-p'] run_command(cmd, display_cmd=verbose) @cli.command() @click.option('--verbose', is_flag=True, help="Enable verbose output") def clock(verbose): """Show date and time""" - cmd ="date" + cmd = ["date"] run_command(cmd, display_cmd=verbose) @cli.command('system-memory') @click.option('--verbose', is_flag=True, help="Enable verbose output") def system_memory(verbose): """Show memory information""" - cmd = "free -m" + cmd = ['free', '-m'] run_command(cmd, display_cmd=verbose) @cli.command('services') def services(): """Show all daemon services""" - cmd = "sudo docker ps --format '{{.Names}}'" - proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True, text=True) + cmd = ["sudo", "docker", "ps", "--format", '{{.Names}}'] + proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, text=True) while True: line = proc.stdout.readline() if line != '': print(line.rstrip()+'\t'+"docker") print("---------------------------") - cmd = "sudo docker exec {} ps aux | sed '$d'".format(line.rstrip()) - proc1 = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True, text=True) - print(proc1.stdout.read()) + cmd0 = ["sudo", "docker", "exec", line.rstrip(), "ps", "aux"] + cmd1 = ["sed", '$d'] + _, stdout = getstatusoutput_noshell_pipe(cmd0, cmd1) + print(stdout) else: break @@ -1918,10 +1925,10 @@ def radius(db): @click.option('--verbose', is_flag=True, help="Enable verbose output") def mirror_session(session_name, verbose): """Show existing everflow sessions""" - cmd = "acl-loader show session" + cmd = ['acl-loader', 'show', 'session'] if session_name is not None: - cmd += " {}".format(session_name) + cmd += [str(session_name)] run_command(cmd, display_cmd=verbose) @@ -1934,10 +1941,10 @@ def mirror_session(session_name, verbose): @click.option('--verbose', is_flag=True, help="Enable verbose output") def policer(policer_name, verbose): """Show existing policers""" - cmd = "acl-loader show policer" + cmd = ['acl-loader', 'show', 'policer'] if policer_name is not None: - cmd += " {}".format(policer_name) + cmd += [str(policer_name)] run_command(cmd, display_cmd=verbose) @@ -1949,7 +1956,7 @@ def policer(policer_name, verbose): @click.option('--verbose', is_flag=True, help="Enable verbose output") def ecn(verbose): """Show ECN configuration""" - cmd = "ecnconfig -l" + cmd = ['ecnconfig', '-l'] run_command(cmd, display_cmd=verbose) @@ -1959,8 +1966,8 @@ def ecn(verbose): @cli.command('boot') def boot(): """Show boot configuration""" - cmd = "sudo sonic-installer list" - proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True, text=True) + cmd = ["sudo", "sonic-installer", "list"] + proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, text=True) click.echo(proc.stdout.read()) @@ -1970,7 +1977,7 @@ def boot(): @cli.command('mmu') def mmu(): """Show mmu configuration""" - cmd = "mmuconfig -l" + cmd = ['mmuconfig', '-l'] run_command(cmd) # @@ -1987,7 +1994,7 @@ def buffer(): @buffer.command() def configuration(): """show buffer configuration""" - cmd = "mmuconfig -l" + cmd = ['mmuconfig', '-l'] run_command(cmd) # @@ -1996,7 +2003,7 @@ def configuration(): @buffer.command() def information(): """show buffer information""" - cmd = "buffershow -l" + cmd = ['buffershow', '-l'] run_command(cmd) @@ -2008,7 +2015,7 @@ def information(): @click.option('--verbose', is_flag=True, help="Enable verbose output") def line(brief, verbose): """Show all console lines and their info include available ttyUSB devices unless specified brief mode""" - cmd = "consutil show" + (" -b" if brief else "") + cmd = ['consutil', 'show'] + (["-b"] if brief else []) run_command(cmd, display_cmd=verbose) return @@ -2022,11 +2029,11 @@ def line(brief, verbose): def ztp(status, verbose): """Show Zero Touch Provisioning status""" if os.path.isfile('/usr/bin/ztp') is False: - exit("ZTP feature unavailable in this image version") + sys.exit("ZTP feature unavailable in this image version") - cmd = "ztp status" + cmd = ['ztp', 'status'] if verbose: - cmd = cmd + " --verbose" + cmd += ["--verbose"] run_command(cmd, display_cmd=verbose) diff --git a/show/platform.py b/show/platform.py index 85d729df..c4f2c3a2 100644 --- a/show/platform.py +++ b/show/platform.py @@ -148,9 +148,9 @@ def temperature(): @click.argument('args', nargs=-1, type=click.UNPROCESSED) def firmware(args): """Show firmware information""" - cmd = "sudo fwutil show {}".format(" ".join(args)) + cmd = ["sudo", "fwutil", "show"] + list(args) try: - subprocess.check_call(cmd, shell=True) + subprocess.check_call(cmd) except subprocess.CalledProcessError as e: sys.exit(e.returncode) diff --git a/tests/fdbshow_test.py b/tests/fdbshow_test.py index 578b278a..0f129df2 100755 --- a/tests/fdbshow_test.py +++ b/tests/fdbshow_test.py @@ -450,7 +450,7 @@ def test_show_mac_no_address(self): def test_show_mac_no_type(self): self.set_mock_variant("6") - result = self.runner.invoke(show.cli.commands["mac"], ["-t Static"]) + result = self.runner.invoke(show.cli.commands["mac"], ["-t", "Static"]) print(result.exit_code) print(result.output) assert result.exit_code == 0 diff --git a/tests/intfstat_test.py b/tests/intfstat_test.py index 4522e083..f76e54c7 100644 --- a/tests/intfstat_test.py +++ b/tests/intfstat_test.py @@ -168,7 +168,7 @@ def test_clear_single_intfs(self): result = runner.invoke(show.cli.commands["interfaces"].commands["counters"].commands["rif"], ["Ethernet20"]) print(result.output) # remove the counters snapshot - show.run_command("intfstat -D") + show.run_command(["intfstat", "-D"]) assert 'Last cached time was' in result.output.split('\n')[0] assert show_interfaces_counters_rif_clear_single_intf in result.output @@ -180,7 +180,7 @@ def test_clear_single_interface_check_all(self): result = runner.invoke(show.cli.commands["interfaces"].commands["counters"].commands["rif"], []) print(result.stdout) # remove the counters snapshot - show.run_command("intfstat -D") + show.run_command(["intfstat", "-D"]) assert 'Last cached time was' in result.output.split('\n')[0] assert show_single_interface_check_all_clear in result.output @@ -192,7 +192,7 @@ def test_clear(self): result = runner.invoke(show.cli.commands["interfaces"].commands["counters"].commands["rif"], []) print(result.stdout) # remove the counters snapshot - show.run_command("intfstat -D") + show.run_command(["intfstat", "-D"]) assert 'Last cached time was' in result.output.split('\n')[0] assert show_interfaces_counters_rif_clear in result.output diff --git a/tests/pfcstat_test.py b/tests/pfcstat_test.py index 6ac0401b..23d184cc 100644 --- a/tests/pfcstat_test.py +++ b/tests/pfcstat_test.py @@ -215,7 +215,7 @@ def test_pfc_counters_with_clear(self): [] ) print(result.output) - show.run_command('pfcstat -d') + show.run_command(['pfcstat', '-d']) assert result.exit_code == 0 assert "Last cached time was" in result.output assert show_pfc_counters_output_with_clear[0] in result.output and \ @@ -262,7 +262,7 @@ def test_pfc_counters_all_with_clear(self): [] ) print(result.output) - show.run_command('pfcstat -d') + show.run_command(['pfcstat', '-d']) assert result.exit_code == 0 assert "Last cached time was" in result.output assert show_pfc_counters_all_with_clear[0] in result.output and \ diff --git a/tests/queue_counter_test.py b/tests/queue_counter_test.py index 165f6e6f..1a78b3ee 100644 --- a/tests/queue_counter_test.py +++ b/tests/queue_counter_test.py @@ -1280,7 +1280,7 @@ def test_queue_counters_with_clear(self): [] ) print(result.output) - show.run_command('queuestat -d') + show.run_command(['queuestat', '-d']) assert result.exit_code == 0 assert "Ethernet0 Last cached time was" in result.output and \ "Ethernet4 Last cached time was" in result.output and \ @@ -1318,7 +1318,7 @@ def test_queue_counters_port_json(self): runner = CliRunner() result = runner.invoke( show.cli.commands["queue"].commands["counters"], - ["Ethernet8 --json"] + ["Ethernet8", "--json"] ) assert result.exit_code == 0 print(result.output) @@ -1343,7 +1343,7 @@ def test_queue_port_voq_counters(self): runner = CliRunner() result = runner.invoke( show.cli.commands["queue"].commands["counters"], - ["Ethernet0 --voq"] + ["Ethernet0", "--voq"] ) print(result.output) assert result.exit_code == 0 diff --git a/tests/show_test.py b/tests/show_test.py index 7b3e492f..b7f6a9ba 100644 --- a/tests/show_test.py +++ b/tests/show_test.py @@ -2,12 +2,15 @@ import sys import click import pytest +import subprocess import show.main as show from unittest import mock from click.testing import CliRunner +from utilities_common import constants from unittest.mock import call, MagicMock, patch EXPECTED_BASE_COMMAND = 'sudo ' +EXPECTED_BASE_COMMAND_LIST = ['sudo'] test_path = os.path.dirname(os.path.abspath(__file__)) modules_path = os.path.dirname(test_path) @@ -65,73 +68,101 @@ def teardown_class(cls): @patch('show.main.run_command') @pytest.mark.parametrize( - "cli_arguments,expected", + "cli_arguments0,expected0", [ ([], 'cat /var/log/syslog'), (['xcvrd'], "cat /var/log/syslog | grep 'xcvrd'"), (['-l', '10'], 'cat /var/log/syslog | tail -10'), - (['-f'], 'tail -F /var/log/syslog'), ] ) -def test_show_logging_default(run_command, cli_arguments, expected): +@pytest.mark.parametrize( + "cli_arguments1,expected1", + [ + (['-f'], ['tail', '-F', '/var/log/syslog']), + ] +) +def test_show_logging_default(run_command, cli_arguments0, expected0, cli_arguments1, expected1): runner = CliRunner() - result = runner.invoke(show.cli.commands["logging"], cli_arguments) - run_command.assert_called_with(EXPECTED_BASE_COMMAND + expected, display_cmd=False) + runner.invoke(show.cli.commands["logging"], cli_arguments0) + run_command.assert_called_with(EXPECTED_BASE_COMMAND + expected0, display_cmd=False, shell=True) + runner.invoke(show.cli.commands["logging"], cli_arguments1) + run_command.assert_called_with(EXPECTED_BASE_COMMAND_LIST + expected1, display_cmd=False) @patch('show.main.run_command') @patch('os.path.isfile', MagicMock(return_value=True)) @pytest.mark.parametrize( - "cli_arguments,expected", + "cli_arguments0,expected0", [ ([], 'cat /var/log/syslog.1 /var/log/syslog'), (['xcvrd'], "cat /var/log/syslog.1 /var/log/syslog | grep 'xcvrd'"), (['-l', '10'], 'cat /var/log/syslog.1 /var/log/syslog | tail -10'), - (['-f'], 'tail -F /var/log/syslog'), ] ) -def test_show_logging_syslog_1(run_command, cli_arguments, expected): +@pytest.mark.parametrize( + "cli_arguments1,expected1", + [ + (['-f'], ['tail', '-F', '/var/log/syslog']), + ] +) +def test_show_logging_syslog_1(run_command, cli_arguments0, expected0, cli_arguments1, expected1): runner = CliRunner() - result = runner.invoke(show.cli.commands["logging"], cli_arguments) - run_command.assert_called_with(EXPECTED_BASE_COMMAND + expected, display_cmd=False) + runner.invoke(show.cli.commands["logging"], cli_arguments0) + run_command.assert_called_with(EXPECTED_BASE_COMMAND + expected0, display_cmd=False, shell=True) + runner.invoke(show.cli.commands["logging"], cli_arguments1) + run_command.assert_called_with(EXPECTED_BASE_COMMAND_LIST + expected1, display_cmd=False) @patch('show.main.run_command') @patch('os.path.exists', MagicMock(return_value=True)) @pytest.mark.parametrize( - "cli_arguments,expected", + "cli_arguments0,expected0", [ ([], 'cat /var/log.tmpfs/syslog'), (['xcvrd'], "cat /var/log.tmpfs/syslog | grep 'xcvrd'"), (['-l', '10'], 'cat /var/log.tmpfs/syslog | tail -10'), - (['-f'], 'tail -F /var/log.tmpfs/syslog'), ] ) -def test_show_logging_tmpfs(run_command, cli_arguments, expected): +@pytest.mark.parametrize( + "cli_arguments1,expected1", + [ + (['-f'], ['tail', '-F', '/var/log.tmpfs/syslog']), + ] +) +def test_show_logging_tmpfs(run_command, cli_arguments0, expected0, cli_arguments1, expected1): runner = CliRunner() - result = runner.invoke(show.cli.commands["logging"], cli_arguments) - run_command.assert_called_with(EXPECTED_BASE_COMMAND + expected, display_cmd=False) + runner.invoke(show.cli.commands["logging"], cli_arguments0) + run_command.assert_called_with(EXPECTED_BASE_COMMAND + expected0, display_cmd=False, shell=True) + runner.invoke(show.cli.commands["logging"], cli_arguments1) + run_command.assert_called_with(EXPECTED_BASE_COMMAND_LIST + expected1, display_cmd=False) @patch('show.main.run_command') @patch('os.path.isfile', MagicMock(return_value=True)) @patch('os.path.exists', MagicMock(return_value=True)) @pytest.mark.parametrize( - "cli_arguments,expected", + "cli_arguments0,expected0", [ ([], 'cat /var/log.tmpfs/syslog.1 /var/log.tmpfs/syslog'), (['xcvrd'], "cat /var/log.tmpfs/syslog.1 /var/log.tmpfs/syslog | grep 'xcvrd'"), (['-l', '10'], 'cat /var/log.tmpfs/syslog.1 /var/log.tmpfs/syslog | tail -10'), - (['-f'], 'tail -F /var/log.tmpfs/syslog'), ] ) -def test_show_logging_tmpfs_syslog_1(run_command, cli_arguments, expected): +@pytest.mark.parametrize( + "cli_arguments1,expected1", + [ + (['-f'], ['tail', '-F', '/var/log.tmpfs/syslog']), + ] +) +def test_show_logging_tmpfs_syslog_1(run_command, cli_arguments0, expected0, cli_arguments1, expected1): runner = CliRunner() - result = runner.invoke(show.cli.commands["logging"], cli_arguments) - run_command.assert_called_with(EXPECTED_BASE_COMMAND + expected, display_cmd=False) + runner.invoke(show.cli.commands["logging"], cli_arguments0) + run_command.assert_called_with(EXPECTED_BASE_COMMAND + expected0, display_cmd=False, shell=True) + runner.invoke(show.cli.commands["logging"], cli_arguments1) + run_command.assert_called_with(EXPECTED_BASE_COMMAND_LIST + expected1, display_cmd=False) def side_effect_subprocess_popen(*args, **kwargs): mock = MagicMock() - if args[0] == "uptime": + if ' '.join(args[0]) == "uptime": mock.stdout.read.return_value = "05:58:07 up 25 days" - elif args[0].startswith("sudo docker images"): + elif ' '.join(args[0]).startswith("sudo docker images"): mock.stdout.read.return_value = "REPOSITORY TAG" return mock @@ -158,7 +189,6 @@ def test_show_version(): result = runner.invoke(show.cli.commands["version"]) assert "SONiC OS Version: 11" in result.output - class TestShowAcl(object): def setup(self): print('SETUP') @@ -638,6 +668,314 @@ def test_temporature(self, mock_run_command): assert result.exit_code == 0 mock_run_command.assert_called_once_with(['tempershow']) + @patch('subprocess.check_call') + def test_firmware(self, mock_check_call): + runner = CliRunner() + result = runner.invoke(show.cli.commands['platform'].commands['firmware']) + assert result.exit_code == 0 + mock_check_call.assert_called_with(["sudo", "fwutil", "show"]) + + def teardown(self): + print('TEAR DOWN') + +class TestShowQuagga(object): + def setup(self): + print('SETUP') + + @patch('show.main.run_command') + @patch('show.main.get_routing_stack', MagicMock(return_value='quagga')) + def test_show_ip_bgp(self, mock_run_command): + from show.bgp_quagga_v4 import bgp + runner = CliRunner() + + result = runner.invoke(show.cli.commands["ip"].commands['bgp'].commands['summary']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['sudo', constants.RVTYSH_COMMAND, '-c', "show ip bgp summary"], return_cmd=True) + + result = runner.invoke(show.cli.commands["ip"].commands['bgp'].commands['neighbors']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['sudo', constants.RVTYSH_COMMAND, '-c', "show ip bgp neighbor"]) + + result = runner.invoke(show.cli.commands["ip"].commands['bgp'].commands['neighbors'], ['0.0.0.0', 'routes']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['sudo', constants.RVTYSH_COMMAND, '-c', "show ip bgp neighbor 0.0.0.0 routes"]) + + @patch('show.main.run_command') + @patch('show.main.get_routing_stack', MagicMock(return_value='quagga')) + def test_show_ipv6_bgp(self, mock_run_command): + from show.bgp_quagga_v6 import bgp + runner = CliRunner() + + result = runner.invoke(show.cli.commands["ipv6"].commands['bgp'].commands['summary']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['sudo', constants.RVTYSH_COMMAND, '-c', "show ipv6 bgp summary"], return_cmd=True) + + result = runner.invoke(show.cli.commands["ipv6"].commands['bgp'].commands['neighbors'], ['0.0.0.0', 'routes']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['sudo', constants.RVTYSH_COMMAND, '-c', "show ipv6 bgp neighbor 0.0.0.0 routes"]) + + def teardown(self): + print('TEAR DOWN') + + +class TestShow(object): + def setup(self): + print('SETUP') + + @patch('show.main.run_command') + def test_show_arp(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands["arp"], ['0.0.0.0', '-if', 'Ethernet0', '--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['nbrshow', '-4', '-ip', '0.0.0.0', '-if', 'Ethernet0'], display_cmd=True) + + @patch('show.main.run_command') + def test_show_ndp(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands["ndp"], ['0.0.0.0', '-if', 'Ethernet0', '--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['nbrshow', '-6', '-ip', '0.0.0.0', '-if', 'Ethernet0'], display_cmd=True) + + @patch('show.main.run_command') + @patch('show.main.is_mgmt_vrf_enabled', MagicMock(return_value=True)) + def test_show_mgmt_vrf_routes(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands["mgmt-vrf"], ['routes']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['ip', 'route', 'show', 'table', '5000']) + + @patch('show.main.run_command') + @patch('show.main.is_mgmt_vrf_enabled', MagicMock(return_value=True)) + def test_show_mgmt_vrf(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands["mgmt-vrf"]) + assert result.exit_code == 0 + assert mock_run_command.call_args_list == [ + call(['ip', '-d', 'link', 'show', 'mgmt']), + call(['ip', 'link', 'show', 'vrf', 'mgmt']) + ] + + @patch('show.main.run_command') + def test_show_pfc_priority(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands["pfc"].commands['priority'], ['Ethernet0']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['pfc', 'show', 'priority', 'Ethernet0']) + + @patch('show.main.run_command') + def test_show_pfc_asymmetric(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands["pfc"].commands['asymmetric'], ['Ethernet0']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['pfc', 'show', 'asymmetric', 'Ethernet0']) + + @patch('show.main.run_command') + def test_show_pfcwd_config(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands["pfcwd"].commands['config'], ['--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['pfcwd', 'show', 'config', '-d', 'all'], display_cmd=True) + + @patch('show.main.run_command') + def test_show_pfcwd_stats(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands["pfcwd"].commands['stats'], ['--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['pfcwd', 'show', 'stats', '-d', 'all'], display_cmd=True) + + @patch('show.main.run_command') + def test_show_watermark_telemetry_interval(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands["watermark"].commands['telemetry'].commands['interval']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['watermarkcfg', '--show-interval']) + + @patch('show.main.run_command') + def test_show_route_map(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands["route-map"], ['BGP', '--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['sudo', constants.RVTYSH_COMMAND, '-c', 'show route-map BGP'], display_cmd=True) + + @patch('show.main.run_command') + def test_show_ip_prefix_list(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['ip'].commands["prefix-list"], ['0.0.0.0', '--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['sudo', constants.RVTYSH_COMMAND, '-c', 'show ip prefix-list 0.0.0.0'], display_cmd=True) + + @patch('show.main.run_command') + def test_show_ip_protocol(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['ip'].commands["protocol"], ['--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['sudo', constants.RVTYSH_COMMAND, '-c', 'show ip protocol'], display_cmd=True) + + @patch('show.main.run_command') + def test_show_ip_fib(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['ip'].commands["fib"], ['0.0.0.0', '--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['fibshow', '-4', '-ip', '0.0.0.0'], display_cmd=True) + + @patch('show.main.run_command') + def test_show_ipv6_prefix_list(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['ipv6'].commands["prefix-list"], ['0.0.0.0', '--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['sudo', constants.RVTYSH_COMMAND, '-c', 'show ipv6 prefix-list 0.0.0.0'], display_cmd=True) + + @patch('show.main.run_command') + def test_show_ipv6_protocol(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['ipv6'].commands["protocol"], ['--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['sudo', constants.RVTYSH_COMMAND, '-c', 'show ipv6 protocol'], display_cmd=True) + + @patch('show.main.run_command') + def test_show_ipv6_fib(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['ipv6'].commands["fib"], ['0.0.0.0', '--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['fibshow', '-6', '-ip', '0.0.0.0'], display_cmd=True) + + @patch('show.main.run_command') + def test_show_lldp_neighbors(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['lldp'].commands["neighbors"], ['Ethernet0', '--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['sudo', 'lldpshow', '-d', '-p' ,'Ethernet0'], display_cmd=True) + + @patch('show.main.run_command') + def test_show_lldp_table(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['lldp'].commands["table"], ['--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['sudo', 'lldpshow'], display_cmd=True) + + @patch('show.main.run_command') + def test_show_environment(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['environment'], ['--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['sudo', 'sensors'], display_cmd=True) + + @patch('show.main.run_command') + def test_show_users(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['users'], ['--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['who'], display_cmd=True) + + @patch('show.main.run_command') + def test_show_runningconfiguration_acl(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['runningconfiguration'].commands['acl'], ['--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['sonic-cfggen', '-d', '--var-json', 'ACL_RULE'], display_cmd=True) + + @patch('show.main.run_command') + def test_show_runningconfiguration_ports(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['runningconfiguration'].commands['ports'], ['Ethernet0', '--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['sonic-cfggen', '-d', '--var-json', 'PORT', '--key', 'Ethernet0'], display_cmd=True) + + @patch('show.main.run_command') + def test_show_runningconfiguration_interfaces(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['runningconfiguration'].commands['interfaces'], ['Ethernet0', '--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['sonic-cfggen', '-d', '--var-json', 'INTERFACE', '--key', 'Ethernet0'], display_cmd=True) + + @patch('show.main.run_command') + @patch('show.main.getstatusoutput_noshell_pipe', MagicMock(return_value=(0, 'quagga'))) + def test_show_startupconfiguration_bgp_quagga(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['startupconfiguration'].commands['bgp'], ['--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['sudo', 'docker', 'exec', 'bgp', 'cat', '/etc/quagga/bgpd.conf'], display_cmd=True) + + @patch('show.main.run_command') + @patch('show.main.getstatusoutput_noshell_pipe', MagicMock(return_value=(0, 'frr'))) + def test_show_startupconfiguration_bgp_frr(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['startupconfiguration'].commands['bgp'], ['--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['sudo', 'docker', 'exec', 'bgp', 'cat', '/etc/frr/bgpd.conf'], display_cmd=True) + + @patch('show.main.run_command') + @patch('show.main.getstatusoutput_noshell_pipe', MagicMock(return_value=(0, 'gobgp'))) + def test_show_startupconfiguration_bgp_gobgp(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['startupconfiguration'].commands['bgp'], ['--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['sudo', 'docker', 'exec', 'bgp', 'cat', '/etc/gpbgp/bgpd.conf'], display_cmd=True) + + @patch('show.main.run_command') + def test_show_uptime(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['uptime'], ['--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['uptime', '-p'], display_cmd=True) + + @patch('show.main.run_command') + def test_show_clock(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['clock'], ['--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['date'], display_cmd=True) + + @patch('show.main.run_command') + def test_show_system_memory(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['system-memory'], ['--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['free', '-m'], display_cmd=True) + + @patch('show.main.run_command') + def test_show_mirror_session(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['mirror_session'], ['SPAN', '--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['acl-loader', 'show', 'session', 'SPAN'], display_cmd=True) + + @patch('show.main.run_command') + def test_show_policer(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['policer'], ['policer0', '--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['acl-loader', 'show', 'policer', 'policer0'], display_cmd=True) + + @patch('subprocess.Popen') + def test_show_boot(self, mock_subprocess_popen): + runner = CliRunner() + result = runner.invoke(show.cli.commands['boot']) + assert result.exit_code == 0 + mock_subprocess_popen.assert_called_with(["sudo", "sonic-installer", "list"], stdout=subprocess.PIPE, text=True) + + @patch('show.main.run_command') + def test_show_mmu(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['mmu']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['mmuconfig', '-l']) + + @patch('show.main.run_command') + def test_show_lines(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['line'], ['--brief', '--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['consutil', 'show', '-b'], display_cmd=True) + + @patch('show.main.run_command') + @patch('os.path.isfile', MagicMock(return_value=True)) + def test_show_ztp(self, mock_run_command): + runner = CliRunner() + result = runner.invoke(show.cli.commands['ztp'], ['status', '--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_with(['ztp', 'status', '--verbose'], display_cmd=True) + def teardown(self): print('TEAR DOWN') diff --git a/tests/techsupport_test.py b/tests/techsupport_test.py index 41664e35..c5f65895 100644 --- a/tests/techsupport_test.py +++ b/tests/techsupport_test.py @@ -3,18 +3,18 @@ from unittest.mock import patch, Mock from click.testing import CliRunner -EXPECTED_BASE_COMMAND = 'sudo ' +EXPECTED_BASE_COMMAND = ['sudo'] @patch("show.main.run_command") @pytest.mark.parametrize( "cli_arguments,expected", [ - ([], 'generate_dump -v -t 5'), - (['--since', '2 days ago'], "generate_dump -v -s '2 days ago' -t 5"), - (['-g', '50'], 'timeout --kill-after=300s -s SIGTERM --foreground 50m generate_dump -v -t 5'), - (['--allow-process-stop'], 'generate_dump -v -a -t 5'), - (['--silent'], 'generate_dump -t 5'), - (['--debug-dump', '--redirect-stderr'], 'generate_dump -v -d -t 5 -r'), + ([], ['generate_dump', '-v', '-t', '5']), + (['--since', '2 days ago'], ['generate_dump', '-v', '-s', '2 days ago', '-t', '5']), + (['-g', '50'], ['timeout', '--kill-after=300s', '-s', 'SIGTERM', '--foreground', '50m', 'generate_dump', '-v', '-t', '5']), + (['--allow-process-stop'], ['generate_dump', '-v', '-a', '-t', '5']), + (['--silent'], ['generate_dump', '-t', '5']), + (['--debug-dump', '--redirect-stderr'], ['generate_dump', '-v', '-d', '-t', '5', '-r']), ] ) def test_techsupport(run_command, cli_arguments, expected): diff --git a/tests/tunnelstat_test.py b/tests/tunnelstat_test.py index f1fe716e..19df51f2 100644 --- a/tests/tunnelstat_test.py +++ b/tests/tunnelstat_test.py @@ -83,7 +83,7 @@ def test_clear(self): expected = show_vxlan_counters_clear_output # remove the counters snapshot - show.run_command("tunnelstat -D") + show.run_command(['tunnelstat', '-D']) for line in expected: assert line in result.output @@ -97,7 +97,7 @@ def test_clear_interface(self): expected = show_vxlan_counters_clear_interface_output # remove the counters snapshot - show.run_command("tunnelstat -D") + show.run_command(['tunnelstat', '-D']) for line in expected: assert line in result.output From dc59dbd2f04be64ec053f1d680025609d8396a4f Mon Sep 17 00:00:00 2001 From: Mai Bui Date: Wed, 31 May 2023 17:19:08 -0400 Subject: [PATCH 164/312] Replace pickle by json (#2849) This reverts commit 10f31ea6fb0876f913cfcfce8c95011e675a99f6. Revert "Revert "Replace pickle by json (#2636)" (#2746)" #### What I did Revert PR 2746 Add fix `default=json_serial` in intfstat #### How I did it #### How to verify it ``` 1. dropstat a. dropstat -c clear b. dropstat -c show 2. flow_counter_stat a. sonic-clear flowcnt-trap b. show flowcnt-trap stats 3. intfstat a. intfstat -c b. intfstat -c c. intfstat -c -t test d. intfstat -c -t test e. intfstat -p 0 4. pfcstat a. pfcstat -c b. pfcstat -s frontend 5. pg-drop a. pg-drop -c clear b. pg-drop -c show 6. portstat a. portstat -s frontend b. portstat -c 7. queuestat a. queuestat -c b. queuestat c. queuestat -p Ethernet0 8. tunnelstat a. tunnelstat -c b. tunnelstat ``` --- scripts/dropstat | 14 +-- scripts/flow_counters_stat | 10 +- scripts/intfstat | 64 +++++----- scripts/pfcstat | 62 +++++----- scripts/pg-drop | 8 +- scripts/portstat | 239 ++++++++++++++++++------------------- scripts/queuestat | 34 +++--- scripts/tunnelstat | 40 +++---- tests/intfstat_test.py | 24 +++- 9 files changed, 258 insertions(+), 237 deletions(-) diff --git a/scripts/dropstat b/scripts/dropstat index f98fc291..4e9f5bb4 100755 --- a/scripts/dropstat +++ b/scripts/dropstat @@ -11,7 +11,7 @@ # - Refactor calls to COUNTERS_DB to reduce redundancy # - Cache DB queries to reduce # of expensive queries -import _pickle as pickle +import json import argparse import os import socket @@ -117,10 +117,10 @@ class DropStat(object): """ try: - pickle.dump(self.get_counts_table(self.gather_counters(std_port_rx_counters + std_port_tx_counters, DEBUG_COUNTER_PORT_STAT_MAP), COUNTERS_PORT_NAME_MAP), - open(self.port_drop_stats_file, 'wb+')) - pickle.dump(self.get_counts(self.gather_counters([], DEBUG_COUNTER_SWITCH_STAT_MAP), self.get_switch_id()), - open(self.switch_drop_stats_file, 'wb+')) + json.dump(self.get_counts_table(self.gather_counters(std_port_rx_counters + std_port_tx_counters, DEBUG_COUNTER_PORT_STAT_MAP), COUNTERS_PORT_NAME_MAP), + open(self.port_drop_stats_file, 'w+')) + json.dump(self.get_counts(self.gather_counters([], DEBUG_COUNTER_SWITCH_STAT_MAP), self.get_switch_id()), + open(self.switch_drop_stats_file, 'w+')) except IOError as e: print(e) sys.exit(e.errno) @@ -135,7 +135,7 @@ class DropStat(object): # Grab the latest clear checkpoint, if it exists if os.path.isfile(self.port_drop_stats_file): - port_drop_ckpt = pickle.load(open(self.port_drop_stats_file, 'rb')) + port_drop_ckpt = json.load(open(self.port_drop_stats_file, 'r')) counters = self.gather_counters(std_port_rx_counters + std_port_tx_counters, DEBUG_COUNTER_PORT_STAT_MAP, group, counter_type) headers = std_port_description_header + self.gather_headers(counters, DEBUG_COUNTER_PORT_STAT_MAP) @@ -162,7 +162,7 @@ class DropStat(object): # Grab the latest clear checkpoint, if it exists if os.path.isfile(self.switch_drop_stats_file): - switch_drop_ckpt = pickle.load(open(self.switch_drop_stats_file, 'rb')) + switch_drop_ckpt = json.load(open(self.switch_drop_stats_file, 'r')) counters = self.gather_counters([], DEBUG_COUNTER_SWITCH_STAT_MAP, group, counter_type) headers = std_switch_description_header + self.gather_headers(counters, DEBUG_COUNTER_SWITCH_STAT_MAP) diff --git a/scripts/flow_counters_stat b/scripts/flow_counters_stat index ac5ef94b..49b97e33 100755 --- a/scripts/flow_counters_stat +++ b/scripts/flow_counters_stat @@ -2,7 +2,7 @@ import argparse import os -import _pickle as pickle +import json import sys from natsort import natsorted @@ -185,8 +185,8 @@ class FlowCounterStats(object): if os.path.exists(self.data_file): os.remove(self.data_file) - with open(self.data_file, 'wb') as f: - pickle.dump(data, f) + with open(self.data_file, 'w') as f: + json.dump(data, f) except IOError as e: print('Failed to save statistic - {}'.format(repr(e))) @@ -200,8 +200,8 @@ class FlowCounterStats(object): return None try: - with open(self.data_file, 'rb') as f: - data = pickle.load(f) + with open(self.data_file, 'r') as f: + data = json.load(f) except IOError as e: print('Failed to load statistic - {}'.format(repr(e))) return None diff --git a/scripts/intfstat b/scripts/intfstat index 30cfbf08..91f88d9f 100755 --- a/scripts/intfstat +++ b/scripts/intfstat @@ -6,7 +6,7 @@ # ##################################################################### -import _pickle as pickle +import json import argparse import datetime import sys @@ -28,7 +28,7 @@ from collections import namedtuple, OrderedDict from natsort import natsorted from tabulate import tabulate from utilities_common.netstat import ns_diff, table_as_json, STATUS_NA, format_brate, format_prate -from utilities_common.cli import UserCache +from utilities_common.cli import json_serial, UserCache from swsscommon.swsscommon import SonicV2Connector nstat_fields = ( @@ -96,7 +96,7 @@ class Intfstat(object): counter_data = self.db.get(self.db.COUNTERS_DB, full_table_id, counter_name) if counter_data: fields[pos] = str(counter_data) - cntr = NStats._make(fields) + cntr = NStats._make(fields)._asdict() return cntr def get_rates(table_id): @@ -153,14 +153,14 @@ class Intfstat(object): rates = ratestat_dict.get(key, RateStats._make([STATUS_NA] * len(rates_key_list))) table.append((key, - data.rx_p_ok, + data['rx_p_ok'], format_brate(rates.rx_bps), format_prate(rates.rx_pps), - data.rx_p_err, - data.tx_p_ok, + data['rx_p_err'], + data['tx_p_ok'], format_brate(rates.tx_bps), format_prate(rates.tx_pps), - data.tx_p_err)) + data['tx_p_err'])) if use_json: print(table_as_json(table, header)) @@ -186,24 +186,24 @@ class Intfstat(object): if old_cntr is not None: table.append((key, - ns_diff(cntr.rx_p_ok, old_cntr.rx_p_ok), + ns_diff(cntr['rx_p_ok'], old_cntr['rx_p_ok']), format_brate(rates.rx_bps), format_prate(rates.rx_pps), - ns_diff(cntr.rx_p_err, old_cntr.rx_p_err), - ns_diff(cntr.tx_p_ok, old_cntr.tx_p_ok), + ns_diff(cntr['rx_p_err'], old_cntr['rx_p_err']), + ns_diff(cntr['tx_p_ok'], old_cntr['tx_p_ok']), format_brate(rates.tx_bps), format_prate(rates.tx_pps), - ns_diff(cntr.tx_p_err, old_cntr.tx_p_err))) + ns_diff(cntr['tx_p_err'], old_cntr['tx_p_err']))) else: table.append((key, - cntr.rx_p_ok, + cntr['rx_p_ok'], format_brate(rates.rx_bps), format_prate(rates.rx_pps), - cntr.rx_p_err, - cntr.tx_p_ok, + cntr['rx_p_err'], + cntr['tx_p_ok'], format_brate(rates.tx_bps), format_prate(rates.tx_pps), - cntr.tx_p_err)) + cntr['tx_p_err'])) if use_json: print(table_as_json(table, header)) @@ -229,17 +229,17 @@ class Intfstat(object): if cnstat_old_dict and cnstat_old_dict.get(rif): old_cntr = cnstat_old_dict.get(rif) - body = body % (ns_diff(cntr.rx_p_ok, old_cntr.rx_p_ok), - ns_diff(cntr.rx_b_ok, old_cntr.rx_b_ok), - ns_diff(cntr.rx_p_err, old_cntr.rx_p_err), - ns_diff(cntr.rx_b_err, old_cntr.rx_b_err), - ns_diff(cntr.tx_p_ok, old_cntr.tx_p_ok), - ns_diff(cntr.tx_b_ok, old_cntr.tx_b_ok), - ns_diff(cntr.tx_p_err, old_cntr.tx_p_err), - ns_diff(cntr.tx_b_err, old_cntr.tx_b_err)) + body = body % (ns_diff(cntr['rx_p_ok'], old_cntr['rx_p_ok']), + ns_diff(cntr['rx_b_ok'], old_cntr['rx_b_ok']), + ns_diff(cntr['rx_p_err'], old_cntr['rx_p_err']), + ns_diff(cntr['rx_b_err'], old_cntr['rx_b_err']), + ns_diff(cntr['tx_p_ok'], old_cntr['tx_p_ok']), + ns_diff(cntr['tx_b_ok'], old_cntr['tx_b_ok']), + ns_diff(cntr['tx_p_err'], old_cntr['tx_p_err']), + ns_diff(cntr['tx_b_err'], old_cntr['tx_b_err'])) else: - body = body % (cntr.rx_p_ok, cntr.rx_b_ok, cntr.rx_p_err,cntr.rx_b_err, - cntr.tx_p_ok, cntr.tx_b_ok, cntr.tx_p_err, cntr.tx_b_err) + body = body % (cntr['rx_p_ok'], cntr['rx_b_ok'], cntr['rx_p_err'],cntr['rx_b_err'], + cntr['tx_p_ok'], cntr['tx_b_ok'], cntr['tx_p_err'], cntr['tx_b_err']) print(header) print(body) @@ -305,20 +305,20 @@ def main(): if tag_name is not None: if os.path.isfile(cnstat_fqn_general_file): try: - general_data = pickle.load(open(cnstat_fqn_general_file, 'rb')) + general_data = json.load(open(cnstat_fqn_general_file, 'r')) for key, val in cnstat_dict.items(): general_data[key] = val - pickle.dump(general_data, open(cnstat_fqn_general_file, 'wb')) + json.dump(general_data, open(cnstat_fqn_general_file, 'w'), default=json_serial) except IOError as e: sys.exit(e.errno) # Add the information also to tag specific file if os.path.isfile(cnstat_fqn_file): - data = pickle.load(open(cnstat_fqn_file, 'rb')) + data = json.load(open(cnstat_fqn_file, 'r')) for key, val in cnstat_dict.items(): data[key] = val - pickle.dump(data, open(cnstat_fqn_file, 'wb')) + json.dump(data, open(cnstat_fqn_file, 'w'), default=json_serial) else: - pickle.dump(cnstat_dict, open(cnstat_fqn_file, 'wb')) + json.dump(cnstat_dict, open(cnstat_fqn_file, 'w'), default=json_serial) except IOError as e: sys.exit(e.errno) else: @@ -330,9 +330,9 @@ def main(): try: cnstat_cached_dict = {} if os.path.isfile(cnstat_fqn_file): - cnstat_cached_dict = pickle.load(open(cnstat_fqn_file, 'rb')) + cnstat_cached_dict = json.load(open(cnstat_fqn_file, 'r')) else: - cnstat_cached_dict = pickle.load(open(cnstat_fqn_general_file, 'rb')) + cnstat_cached_dict = json.load(open(cnstat_fqn_general_file, 'r')) print("Last cached time was " + str(cnstat_cached_dict.get('time'))) if interface_name: diff --git a/scripts/pfcstat b/scripts/pfcstat index fb7e6018..094c6e93 100755 --- a/scripts/pfcstat +++ b/scripts/pfcstat @@ -6,7 +6,7 @@ # ##################################################################### -import _pickle as pickle +import json import argparse import datetime import os.path @@ -37,7 +37,7 @@ except KeyError: from utilities_common.netstat import ns_diff, STATUS_NA, format_number_with_comma from utilities_common import multi_asic as multi_asic_util from utilities_common import constants -from utilities_common.cli import UserCache +from utilities_common.cli import json_serial, UserCache PStats = namedtuple("PStats", "pfc0, pfc1, pfc2, pfc3, pfc4, pfc5, pfc6, pfc7") @@ -101,7 +101,7 @@ class Pfcstat(object): fields[pos] = STATUS_NA else: fields[pos] = str(int(counter_data)) - cntr = PStats._make(fields) + cntr = PStats._make(fields)._asdict() return cntr # Get the info from database @@ -144,14 +144,14 @@ class Pfcstat(object): if key == 'time': continue table.append((key, - format_number_with_comma(data.pfc0), - format_number_with_comma(data.pfc1), - format_number_with_comma(data.pfc2), - format_number_with_comma(data.pfc3), - format_number_with_comma(data.pfc4), - format_number_with_comma(data.pfc5), - format_number_with_comma(data.pfc6), - format_number_with_comma(data.pfc7))) + format_number_with_comma(data['pfc0']), + format_number_with_comma(data['pfc1']), + format_number_with_comma(data['pfc2']), + format_number_with_comma(data['pfc3']), + format_number_with_comma(data['pfc4']), + format_number_with_comma(data['pfc5']), + format_number_with_comma(data['pfc6']), + format_number_with_comma(data['pfc7']))) if rx: print(tabulate(table, header_Rx, tablefmt='simple', stralign='right')) @@ -173,24 +173,24 @@ class Pfcstat(object): if old_cntr is not None: table.append((key, - ns_diff(cntr.pfc0, old_cntr.pfc0), - ns_diff(cntr.pfc1, old_cntr.pfc1), - ns_diff(cntr.pfc2, old_cntr.pfc2), - ns_diff(cntr.pfc3, old_cntr.pfc3), - ns_diff(cntr.pfc4, old_cntr.pfc4), - ns_diff(cntr.pfc5, old_cntr.pfc5), - ns_diff(cntr.pfc6, old_cntr.pfc6), - ns_diff(cntr.pfc7, old_cntr.pfc7))) + ns_diff(cntr['pfc0'], old_cntr['pfc0']), + ns_diff(cntr['pfc1'], old_cntr['pfc1']), + ns_diff(cntr['pfc2'], old_cntr['pfc2']), + ns_diff(cntr['pfc3'], old_cntr['pfc3']), + ns_diff(cntr['pfc4'], old_cntr['pfc4']), + ns_diff(cntr['pfc5'], old_cntr['pfc5']), + ns_diff(cntr['pfc6'], old_cntr['pfc6']), + ns_diff(cntr['pfc7'], old_cntr['pfc7']))) else: table.append((key, - format_number_with_comma(cntr.pfc0), - format_number_with_comma(cntr.pfc1), - format_number_with_comma(cntr.pfc2), - format_number_with_comma(cntr.pfc3), - format_number_with_comma(cntr.pfc4), - format_number_with_comma(cntr.pfc5), - format_number_with_comma(cntr.pfc6), - format_number_with_comma(cntr.pfc7))) + format_number_with_comma(cntr['pfc0']), + format_number_with_comma(cntr['pfc1']), + format_number_with_comma(cntr['pfc2']), + format_number_with_comma(cntr['pfc3']), + format_number_with_comma(cntr['pfc4']), + format_number_with_comma(cntr['pfc5']), + format_number_with_comma(cntr['pfc6']), + format_number_with_comma(cntr['pfc7']))) if rx: print(tabulate(table, header_Rx, tablefmt='simple', stralign='right')) @@ -256,8 +256,8 @@ Examples: if save_fresh_stats: try: - pickle.dump(cnstat_dict_rx, open(cnstat_fqn_file_rx, 'wb')) - pickle.dump(cnstat_dict_tx, open(cnstat_fqn_file_tx, 'wb')) + json.dump(cnstat_dict_rx, open(cnstat_fqn_file_rx, 'w'), default=json_serial) + json.dump(cnstat_dict_tx, open(cnstat_fqn_file_tx, 'w'), default=json_serial) except IOError as e: print(e.errno, e) sys.exit(e.errno) @@ -271,7 +271,7 @@ Examples: """ if os.path.isfile(cnstat_fqn_file_rx): try: - cnstat_cached_dict = pickle.load(open(cnstat_fqn_file_rx, 'rb')) + cnstat_cached_dict = json.load(open(cnstat_fqn_file_rx, 'r')) print("Last cached time was " + str(cnstat_cached_dict.get('time'))) pfcstat.cnstat_diff_print(cnstat_dict_rx, cnstat_cached_dict, True) except IOError as e: @@ -286,7 +286,7 @@ Examples: """ if os.path.isfile(cnstat_fqn_file_tx): try: - cnstat_cached_dict = pickle.load(open(cnstat_fqn_file_tx, 'rb')) + cnstat_cached_dict = json.load(open(cnstat_fqn_file_tx, 'r')) print("Last cached time was " + str(cnstat_cached_dict.get('time'))) pfcstat.cnstat_diff_print(cnstat_dict_tx, cnstat_cached_dict, False) except IOError as e: diff --git a/scripts/pg-drop b/scripts/pg-drop index 40b4e863..77415930 100755 --- a/scripts/pg-drop +++ b/scripts/pg-drop @@ -5,7 +5,7 @@ # pg-drop is a tool for show/clear ingress pg dropped packet stats. # ##################################################################### -import _pickle as pickle +import json import argparse import os import sys @@ -144,7 +144,7 @@ class PgDropStat(object): port_drop_ckpt = {} # Grab the latest clear checkpoint, if it exists if os.path.isfile(self.port_drop_stats_file): - port_drop_ckpt = pickle.load(open(self.port_drop_stats_file, 'rb')) + port_drop_ckpt = json.load(open(self.port_drop_stats_file, 'r')) # Header list contains the port name followed by the PGs. Fields is used to populate the pg values fields = ["0"]* (len(self.header_list) - 1) @@ -216,10 +216,10 @@ class PgDropStat(object): counter_pg_drop_array = [ "SAI_INGRESS_PRIORITY_GROUP_STAT_DROPPED_PACKETS"] try: - pickle.dump(self.get_counts_table( + json.dump(self.get_counts_table( counter_pg_drop_array, COUNTERS_PG_NAME_MAP), - open(self.port_drop_stats_file, 'wb+')) + open(self.port_drop_stats_file, 'w+')) except IOError as e: print(e) sys.exit(e.errno) diff --git a/scripts/portstat b/scripts/portstat index 399733f6..43746cc1 100755 --- a/scripts/portstat +++ b/scripts/portstat @@ -6,7 +6,7 @@ # ##################################################################### -import _pickle as pickle +import json import argparse import datetime import os.path @@ -40,7 +40,7 @@ from utilities_common.intf_filter import parse_interface_in_filter import utilities_common.multi_asic as multi_asic_util from utilities_common.netstat import ns_diff, table_as_json, format_brate, format_prate, format_util, format_number_with_comma -from utilities_common.cli import UserCache +from utilities_common.cli import json_serial, UserCache """ The order and count of statistics mentioned below needs to be in sync with the values in portstat script @@ -181,7 +181,7 @@ class Portstat(object): elif fields[pos] != STATUS_NA: fields[pos] = str(int(fields[pos]) + int(fvs[counter_name])) - cntr = NStats._make(fields) + cntr = NStats._make(fields)._asdict() return cntr def get_rates(table_id): @@ -278,62 +278,61 @@ class Portstat(object): if print_all: header = header_all table.append((key, self.get_port_state(key), - format_number_with_comma(data.rx_ok), + format_number_with_comma(data['rx_ok']), format_brate(rates.rx_bps), format_prate(rates.rx_pps), format_util(rates.rx_bps, port_speed), - format_number_with_comma(data.rx_err), - format_number_with_comma(data.rx_drop), - format_number_with_comma(data.rx_ovr), - format_number_with_comma(data.tx_ok), + format_number_with_comma(data['rx_err']), + format_number_with_comma(data['rx_drop']), + format_number_with_comma(data['rx_ovr']), + format_number_with_comma(data['tx_ok']), format_brate(rates.tx_bps), format_prate(rates.tx_pps), format_util(rates.tx_bps, port_speed), - format_number_with_comma(data.tx_err), - format_number_with_comma(data.tx_drop), - format_number_with_comma(data.tx_ovr))) + format_number_with_comma(data['tx_err']), + format_number_with_comma(data['tx_drop']), + format_number_with_comma(data['tx_ovr']))) elif errors_only: header = header_errors_only table.append((key, self.get_port_state(key), - format_number_with_comma(data.rx_err), - format_number_with_comma(data.rx_drop), - format_number_with_comma(data.rx_ovr), - format_number_with_comma(data.tx_err), - format_number_with_comma(data.tx_drop), - format_number_with_comma(data.tx_ovr))) + format_number_with_comma(data['rx_err']), + format_number_with_comma(data['rx_drop']), + format_number_with_comma(data['rx_ovr']), + format_number_with_comma(data['tx_err']), + format_number_with_comma(data['tx_drop']), + format_number_with_comma(data['tx_ovr']))) elif fec_stats_only: header = header_fec_only table.append((key, self.get_port_state(key), - format_number_with_comma(data.fec_corr), - format_number_with_comma(data.fec_uncorr), - format_number_with_comma(data.fec_symbol_err))) + format_number_with_comma(data['fec_corr']), + format_number_with_comma(data['fec_uncorr']), + format_number_with_comma(data['fec_symbol_err']))) elif rates_only: header = header_rates_only table.append((key, self.get_port_state(key), - format_number_with_comma(data.rx_ok), + format_number_with_comma(data['rx_ok']), format_brate(rates.rx_bps), format_prate(rates.rx_pps), format_util(rates.rx_bps, port_speed), - format_number_with_comma(data.tx_ok), + format_number_with_comma(data['tx_ok']), format_brate(rates.tx_bps), format_prate(rates.tx_pps), format_util(rates.tx_bps, port_speed))) else: header = header_std table.append((key, self.get_port_state(key), - format_number_with_comma(data.rx_ok), + format_number_with_comma(data['rx_ok']), format_brate(rates.rx_bps), format_util(rates.rx_bps, port_speed), - format_number_with_comma(data.rx_err), - format_number_with_comma(data.rx_drop), - format_number_with_comma(data.rx_ovr), - format_number_with_comma(data.tx_ok), + format_number_with_comma(data['rx_err']), + format_number_with_comma(data['rx_drop']), + format_number_with_comma(data['rx_ovr']), + format_number_with_comma(data['tx_ok']), format_brate(rates.tx_bps), format_util(rates.tx_bps, port_speed), - - format_number_with_comma(data.tx_err), - format_number_with_comma(data.tx_drop), - format_number_with_comma(data.tx_ovr))) + format_number_with_comma(data['tx_err']), + format_number_with_comma(data['tx_drop']), + format_number_with_comma(data['tx_ovr']))) if table: if use_json: print(table_as_json(table, header)) @@ -354,51 +353,51 @@ class Portstat(object): if key in cnstat_old_dict: old_cntr = cnstat_old_dict.get(key) else: - old_cntr = NStats._make([0] * BUCKET_NUM) + old_cntr = NStats._make([0] * BUCKET_NUM)._asdict() if intf_list and key not in intf_list: continue - print("Packets Received 64 Octets..................... {}".format(ns_diff(cntr.rx_64, old_cntr.rx_64))) - print("Packets Received 65-127 Octets................. {}".format(ns_diff(cntr.rx_65_127, old_cntr.rx_65_127))) - print("Packets Received 128-255 Octets................ {}".format(ns_diff(cntr.rx_128_255, old_cntr.rx_128_255))) - print("Packets Received 256-511 Octets................ {}".format(ns_diff(cntr.rx_256_511, old_cntr.rx_256_511))) - print("Packets Received 512-1023 Octets............... {}".format(ns_diff(cntr.rx_512_1023, old_cntr.rx_512_1023))) - print("Packets Received 1024-1518 Octets.............. {}".format(ns_diff(cntr.rx_1024_1518, old_cntr.rx_1024_1518))) - print("Packets Received 1519-2047 Octets.............. {}".format(ns_diff(cntr.rx_1519_2047, old_cntr.rx_1519_2047))) - print("Packets Received 2048-4095 Octets.............. {}".format(ns_diff(cntr.rx_2048_4095, old_cntr.rx_2048_4095))) - print("Packets Received 4096-9216 Octets.............. {}".format(ns_diff(cntr.rx_4096_9216, old_cntr.rx_4096_9216))) - print("Packets Received 9217-16383 Octets............. {}".format(ns_diff(cntr.rx_9217_16383, old_cntr.rx_9217_16383))) + print("Packets Received 64 Octets..................... {}".format(ns_diff(cntr['rx_64'], old_cntr['rx_64']))) + print("Packets Received 65-127 Octets................. {}".format(ns_diff(cntr['rx_65_127'], old_cntr['rx_65_127']))) + print("Packets Received 128-255 Octets................ {}".format(ns_diff(cntr['rx_128_255'], old_cntr['rx_128_255']))) + print("Packets Received 256-511 Octets................ {}".format(ns_diff(cntr['rx_256_511'], old_cntr['rx_256_511']))) + print("Packets Received 512-1023 Octets............... {}".format(ns_diff(cntr['rx_512_1023'], old_cntr['rx_512_1023']))) + print("Packets Received 1024-1518 Octets.............. {}".format(ns_diff(cntr['rx_1024_1518'], old_cntr['rx_1024_1518']))) + print("Packets Received 1519-2047 Octets.............. {}".format(ns_diff(cntr['rx_1519_2047'], old_cntr['rx_1519_2047']))) + print("Packets Received 2048-4095 Octets.............. {}".format(ns_diff(cntr['rx_2048_4095'], old_cntr['rx_2048_4095']))) + print("Packets Received 4096-9216 Octets.............. {}".format(ns_diff(cntr['rx_4096_9216'], old_cntr['rx_4096_9216']))) + print("Packets Received 9217-16383 Octets............. {}".format(ns_diff(cntr['rx_9217_16383'], old_cntr['rx_9217_16383']))) print("") - print("Total Packets Received Without Errors.......... {}".format(ns_diff(cntr.rx_all, old_cntr.rx_all))) - print("Unicast Packets Received....................... {}".format(ns_diff(cntr.rx_uca, old_cntr.rx_uca))) - print("Multicast Packets Received..................... {}".format(ns_diff(cntr.rx_mca, old_cntr.rx_mca))) - print("Broadcast Packets Received..................... {}".format(ns_diff(cntr.rx_bca, old_cntr.rx_bca))) + print("Total Packets Received Without Errors.......... {}".format(ns_diff(cntr['rx_all'], old_cntr['rx_all']))) + print("Unicast Packets Received....................... {}".format(ns_diff(cntr['rx_uca'], old_cntr['rx_uca']))) + print("Multicast Packets Received..................... {}".format(ns_diff(cntr['rx_mca'], old_cntr['rx_mca']))) + print("Broadcast Packets Received..................... {}".format(ns_diff(cntr['rx_bca'], old_cntr['rx_bca']))) print("") - print("Jabbers Received............................... {}".format(ns_diff(cntr.rx_jbr, old_cntr.rx_jbr))) - print("Fragments Received............................. {}".format(ns_diff(cntr.rx_frag, old_cntr.rx_frag))) - print("Undersize Received............................. {}".format(ns_diff(cntr.rx_usize, old_cntr.rx_usize))) - print("Overruns Received.............................. {}".format(ns_diff(cntr.rx_ovrrun, old_cntr.rx_ovrrun))) + print("Jabbers Received............................... {}".format(ns_diff(cntr['rx_jbr'], old_cntr['rx_jbr']))) + print("Fragments Received............................. {}".format(ns_diff(cntr['rx_frag'], old_cntr['rx_frag']))) + print("Undersize Received............................. {}".format(ns_diff(cntr['rx_usize'], old_cntr['rx_usize']))) + print("Overruns Received.............................. {}".format(ns_diff(cntr['rx_ovrrun'], old_cntr['rx_ovrrun']))) print("") - print("Packets Transmitted 64 Octets.................. {}".format(ns_diff(cntr.tx_64, old_cntr.tx_64))) - print("Packets Transmitted 65-127 Octets.............. {}".format(ns_diff(cntr.tx_65_127, old_cntr.tx_65_127))) - print("Packets Transmitted 128-255 Octets............. {}".format(ns_diff(cntr.tx_128_255, old_cntr.tx_128_255))) - print("Packets Transmitted 256-511 Octets............. {}".format(ns_diff(cntr.tx_256_511, old_cntr.tx_256_511))) - print("Packets Transmitted 512-1023 Octets............ {}".format(ns_diff(cntr.tx_512_1023, old_cntr.tx_512_1023))) - print("Packets Transmitted 1024-1518 Octets........... {}".format(ns_diff(cntr.tx_1024_1518, old_cntr.tx_1024_1518))) - print("Packets Transmitted 1519-2047 Octets........... {}".format(ns_diff(cntr.tx_1519_2047, old_cntr.tx_1519_2047))) - print("Packets Transmitted 2048-4095 Octets........... {}".format(ns_diff(cntr.tx_2048_4095, old_cntr.tx_2048_4095))) - print("Packets Transmitted 4096-9216 Octets........... {}".format(ns_diff(cntr.tx_4096_9216, old_cntr.tx_4096_9216))) - print("Packets Transmitted 9217-16383 Octets.......... {}".format(ns_diff(cntr.tx_9217_16383, old_cntr.tx_9217_16383))) + print("Packets Transmitted 64 Octets.................. {}".format(ns_diff(cntr['tx_64'], old_cntr['tx_64']))) + print("Packets Transmitted 65-127 Octets.............. {}".format(ns_diff(cntr['tx_65_127'], old_cntr['tx_65_127']))) + print("Packets Transmitted 128-255 Octets............. {}".format(ns_diff(cntr['tx_128_255'], old_cntr['tx_128_255']))) + print("Packets Transmitted 256-511 Octets............. {}".format(ns_diff(cntr['tx_256_511'], old_cntr['tx_256_511']))) + print("Packets Transmitted 512-1023 Octets............ {}".format(ns_diff(cntr['tx_512_1023'], old_cntr['tx_512_1023']))) + print("Packets Transmitted 1024-1518 Octets........... {}".format(ns_diff(cntr['tx_1024_1518'], old_cntr['tx_1024_1518']))) + print("Packets Transmitted 1519-2047 Octets........... {}".format(ns_diff(cntr['tx_1519_2047'], old_cntr['tx_1519_2047']))) + print("Packets Transmitted 2048-4095 Octets........... {}".format(ns_diff(cntr['tx_2048_4095'], old_cntr['tx_2048_4095']))) + print("Packets Transmitted 4096-9216 Octets........... {}".format(ns_diff(cntr['tx_4096_9216'], old_cntr['tx_4096_9216']))) + print("Packets Transmitted 9217-16383 Octets.......... {}".format(ns_diff(cntr['tx_9217_16383'], old_cntr['tx_9217_16383']))) print("") - print("Total Packets Transmitted Successfully......... {}".format(ns_diff(cntr.tx_all, old_cntr.tx_all))) - print("Unicast Packets Transmitted.................... {}".format(ns_diff(cntr.tx_uca, old_cntr.tx_uca))) - print("Multicast Packets Transmitted.................. {}".format(ns_diff(cntr.tx_mca, old_cntr.tx_mca))) - print("Broadcast Packets Transmitted.................. {}".format(ns_diff(cntr.tx_bca, old_cntr.tx_bca))) + print("Total Packets Transmitted Successfully......... {}".format(ns_diff(cntr['tx_all'], old_cntr['tx_all']))) + print("Unicast Packets Transmitted.................... {}".format(ns_diff(cntr['tx_uca'], old_cntr['tx_uca']))) + print("Multicast Packets Transmitted.................. {}".format(ns_diff(cntr['tx_mca'], old_cntr['tx_mca']))) + print("Broadcast Packets Transmitted.................. {}".format(ns_diff(cntr['tx_bca'], old_cntr['tx_bca']))) print("Time Since Counters Last Cleared............... " + str(cnstat_old_dict.get('time'))) @@ -435,88 +434,88 @@ class Portstat(object): header = header_all if old_cntr is not None: table.append((key, self.get_port_state(key), - ns_diff(cntr.rx_ok, old_cntr.rx_ok), + ns_diff(cntr['rx_ok'], old_cntr['rx_ok']), format_brate(rates.rx_bps), format_prate(rates.rx_pps), format_util(rates.rx_bps, port_speed), - ns_diff(cntr.rx_err, old_cntr.rx_err), - ns_diff(cntr.rx_drop, old_cntr.rx_drop), - ns_diff(cntr.rx_ovr, old_cntr.rx_ovr), - ns_diff(cntr.tx_ok, old_cntr.tx_ok), + ns_diff(cntr['rx_err'], old_cntr['rx_err']), + ns_diff(cntr['rx_drop'], old_cntr['rx_drop']), + ns_diff(cntr['rx_ovr'], old_cntr['rx_ovr']), + ns_diff(cntr['tx_ok'], old_cntr['tx_ok']), format_brate(rates.tx_bps), format_prate(rates.tx_pps), format_util(rates.tx_bps, port_speed), - ns_diff(cntr.tx_err, old_cntr.tx_err), - ns_diff(cntr.tx_drop, old_cntr.tx_drop), - ns_diff(cntr.tx_ovr, old_cntr.tx_ovr))) + ns_diff(cntr['tx_err'], old_cntr['tx_err']), + ns_diff(cntr['tx_drop'], old_cntr['tx_drop']), + ns_diff(cntr['tx_ovr'], old_cntr['tx_ovr']))) else: table.append((key, self.get_port_state(key), - format_number_with_comma(cntr.rx_ok), + format_number_with_comma(cntr['rx_ok']), format_brate(rates.rx_bps), format_prate(rates.rx_pps), format_util(rates.rx_bps, port_speed), - format_number_with_comma(cntr.rx_err), - format_number_with_comma(cntr.rx_drop), - format_number_with_comma(cntr.rx_ovr), - format_number_with_comma(cntr.tx_ok), + format_number_with_comma(cntr['rx_err']), + format_number_with_comma(cntr['rx_drop']), + format_number_with_comma(cntr['rx_ovr']), + format_number_with_comma(cntr['tx_ok']), format_brate(rates.tx_bps), format_prate(rates.tx_pps), format_util(rates.tx_bps, port_speed), - format_number_with_comma(cntr.tx_err), - format_number_with_comma(cntr.tx_drop), - format_number_with_comma(cntr.tx_ovr))) + format_number_with_comma(cntr['tx_err']), + format_number_with_comma(cntr['tx_drop']), + format_number_with_comma(cntr['tx_ovr']))) elif errors_only: header = header_errors_only if old_cntr is not None: table.append((key, self.get_port_state(key), - ns_diff(cntr.rx_err, old_cntr.rx_err), - ns_diff(cntr.rx_drop, old_cntr.rx_drop), - ns_diff(cntr.rx_ovr, old_cntr.rx_ovr), - ns_diff(cntr.tx_err, old_cntr.tx_err), - ns_diff(cntr.tx_drop, old_cntr.tx_drop), - ns_diff(cntr.tx_ovr, old_cntr.tx_ovr))) + ns_diff(cntr['rx_err'], old_cntr['rx_err']), + ns_diff(cntr['rx_drop'], old_cntr['rx_drop']), + ns_diff(cntr['rx_ovr'], old_cntr['rx_ovr']), + ns_diff(cntr['tx_err'], old_cntr['tx_err']), + ns_diff(cntr['tx_drop'], old_cntr['tx_drop']), + ns_diff(cntr['tx_ovr'], old_cntr['tx_ovr']))) else: table.append((key, self.get_port_state(key), - format_number_with_comma(cntr.rx_err), - format_number_with_comma(cntr.rx_drop), - format_number_with_comma(cntr.rx_ovr), - format_number_with_comma(cntr.tx_err), - format_number_with_comma(cntr.tx_drop), - format_number_with_comma(cntr.tx_ovr))) + format_number_with_comma(cntr['rx_err']), + format_number_with_comma(cntr['rx_drop']), + format_number_with_comma(cntr['rx_ovr']), + format_number_with_comma(cntr['tx_err']), + format_number_with_comma(cntr['tx_drop']), + format_number_with_comma(cntr['tx_ovr']))) elif fec_stats_only: header = header_fec_only if old_cntr is not None: table.append((key, self.get_port_state(key), - ns_diff(cntr.fec_corr, old_cntr.fec_corr), - ns_diff(cntr.fec_uncorr, old_cntr.fec_uncorr), - ns_diff(cntr.fec_symbol_err, old_cntr.fec_symbol_err))) + ns_diff(cntr['fec_corr'], old_cntr['fec_corr']), + ns_diff(cntr['fec_uncorr'], old_cntr['fec_uncorr']), + ns_diff(cntr['fec_symbol_err'], old_cntr['fec_symbol_err']))) else: table.append((key, self.get_port_state(key), - format_number_with_comma(cntr.fec_corr), - format_number_with_comma(cntr.fec_uncorr), - format_number_with_comma(cntr.fec_symbol_err))) + format_number_with_comma(cntr['fec_corr']), + format_number_with_comma(cntr['fec_uncorr']), + format_number_with_comma(cntr['fec_symbol_err']))) elif rates_only: header = header_rates_only if old_cntr is not None: table.append((key, self.get_port_state(key), - ns_diff(cntr.rx_ok, old_cntr.rx_ok), + ns_diff(cntr['rx_ok'], old_cntr['rx_ok']), format_brate(rates.rx_bps), format_prate(rates.rx_pps), format_util(rates.rx_bps, port_speed), - ns_diff(cntr.tx_ok, old_cntr.tx_ok), + ns_diff(cntr['tx_ok'], old_cntr['tx_ok']), format_brate(rates.tx_bps), format_prate(rates.tx_pps), format_util(rates.tx_bps, port_speed))) else: table.append((key, self.get_port_state(key), - format_number_with_comma(cntr.rx_ok), + format_number_with_comma(cntr['rx_ok']), format_brate(rates.rx_bps), format_prate(rates.rx_pps), format_util(rates.rx_bps, port_speed), - format_number_with_comma(cntr.tx_ok), + format_number_with_comma(cntr['tx_ok']), format_brate(rates.tx_bps), format_prate(rates.tx_pps), format_util(rates.tx_bps, port_speed))) @@ -525,33 +524,33 @@ class Portstat(object): if old_cntr is not None: table.append((key, self.get_port_state(key), - ns_diff(cntr.rx_ok, old_cntr.rx_ok), + ns_diff(cntr['rx_ok'], old_cntr['rx_ok']), format_brate(rates.rx_bps), format_util(rates.rx_bps, port_speed), - ns_diff(cntr.rx_err, old_cntr.rx_err), - ns_diff(cntr.rx_drop, old_cntr.rx_drop), - ns_diff(cntr.rx_ovr, old_cntr.rx_ovr), - ns_diff(cntr.tx_ok, old_cntr.tx_ok), + ns_diff(cntr['rx_err'], old_cntr['rx_err']), + ns_diff(cntr['rx_drop'], old_cntr['rx_drop']), + ns_diff(cntr['rx_ovr'], old_cntr['rx_ovr']), + ns_diff(cntr['tx_ok'], old_cntr['tx_ok']), format_brate(rates.tx_bps), format_util(rates.tx_bps, port_speed), - ns_diff(cntr.tx_err, old_cntr.tx_err), - ns_diff(cntr.tx_drop, old_cntr.tx_drop), - ns_diff(cntr.tx_ovr, old_cntr.tx_ovr))) + ns_diff(cntr['tx_err'], old_cntr['tx_err']), + ns_diff(cntr['tx_drop'], old_cntr['tx_drop']), + ns_diff(cntr['tx_ovr'], old_cntr['tx_ovr']))) else: table.append((key, self.get_port_state(key), - format_number_with_comma(cntr.rx_ok), + format_number_with_comma(cntr['rx_ok']), format_brate(rates.rx_bps), format_util(rates.rx_bps, port_speed), - format_number_with_comma(cntr.rx_err), - format_number_with_comma(cntr.rx_drop), - format_number_with_comma(cntr.rx_ovr), - format_number_with_comma(cntr.tx_ok), + format_number_with_comma(cntr['rx_err']), + format_number_with_comma(cntr['rx_drop']), + format_number_with_comma(cntr['rx_ovr']), + format_number_with_comma(cntr['tx_ok']), format_brate(rates.tx_bps), format_util(rates.tx_bps, port_speed), - format_number_with_comma(cntr.tx_err), - format_number_with_comma(cntr.tx_drop), - format_number_with_comma(cntr.tx_ovr))) + format_number_with_comma(cntr['tx_err']), + format_number_with_comma(cntr['tx_drop']), + format_number_with_comma(cntr['tx_ovr']))) if table: if use_json: print(table_as_json(table, header)) @@ -642,7 +641,7 @@ Examples: if save_fresh_stats: try: - pickle.dump(cnstat_dict, open(cnstat_fqn_file, 'wb')) + json.dump(cnstat_dict, open(cnstat_fqn_file, 'w'), default=json_serial) except IOError as e: sys.exit(e.errno) else: @@ -653,7 +652,7 @@ Examples: cnstat_cached_dict = OrderedDict() if os.path.isfile(cnstat_fqn_file): try: - cnstat_cached_dict = pickle.load(open(cnstat_fqn_file, 'rb')) + cnstat_cached_dict = json.load(open(cnstat_fqn_file, 'r')) if not detail: print("Last cached time was " + str(cnstat_cached_dict.get('time'))) portstat.cnstat_diff_print(cnstat_dict, cnstat_cached_dict, ratestat_dict, intf_list, use_json, print_all, errors_only, fec_stats_only, rates_only, detail) diff --git a/scripts/queuestat b/scripts/queuestat index 96a24b51..d82e7e4a 100755 --- a/scripts/queuestat +++ b/scripts/queuestat @@ -6,7 +6,7 @@ # ##################################################################### -import _pickle as pickle +import json import argparse import datetime import os.path @@ -33,7 +33,7 @@ except KeyError: pass from swsscommon.swsscommon import SonicV2Connector -from utilities_common.cli import UserCache +from utilities_common.cli import json_serial, UserCache from utilities_common import constants import utilities_common.multi_asic as multi_asic_util @@ -186,7 +186,7 @@ class Queuestat(object): fields[pos] = STATUS_NA elif fields[pos] != STATUS_NA: fields[pos] = str(int(counter_data)) - cntr = QueueStats._make(fields) + cntr = QueueStats._make(fields)._asdict() return cntr # Build a dictionary of the stats @@ -211,9 +211,9 @@ 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)) + 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)) @@ -241,15 +241,15 @@ 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))) + 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)) + 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)) @@ -273,7 +273,7 @@ class Queuestat(object): cnstat_fqn_file_name = cnstat_fqn_file + port if os.path.isfile(cnstat_fqn_file_name): try: - cnstat_cached_dict = pickle.load(open(cnstat_fqn_file_name, 'rb')) + 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)) @@ -307,7 +307,7 @@ class Queuestat(object): json_output[port] = {} if os.path.isfile(cnstat_fqn_file_name): try: - cnstat_cached_dict = pickle.load(open(cnstat_fqn_file_name, 'rb')) + 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)) @@ -330,7 +330,7 @@ class Queuestat(object): for port in natsorted(self.counter_port_name_map): cnstat_dict = self.get_cnstat(self.port_queues_map[port]) try: - pickle.dump(cnstat_dict, open(cnstat_fqn_file + port, 'wb')) + json.dump(cnstat_dict, open(cnstat_fqn_file + port, 'w'), default=json_serial) except IOError as e: print(e.errno, e) sys.exit(e.errno) diff --git a/scripts/tunnelstat b/scripts/tunnelstat index 8b045ec6..3d7423e8 100755 --- a/scripts/tunnelstat +++ b/scripts/tunnelstat @@ -6,7 +6,7 @@ # ##################################################################### -import _pickle as pickle +import json import argparse import datetime import sys @@ -29,7 +29,7 @@ from collections import namedtuple, OrderedDict from natsort import natsorted from tabulate import tabulate from utilities_common.netstat import ns_diff, table_as_json, STATUS_NA, format_prate -from utilities_common.cli import UserCache +from utilities_common.cli import json_serial, UserCache from swsscommon.swsscommon import SonicV2Connector @@ -80,7 +80,7 @@ class Tunnelstat(object): counter_data = self.db.get(self.db.COUNTERS_DB, full_table_id, counter_name) if counter_data: fields[pos] = str(counter_data) - cntr = NStats._make(fields) + cntr = NStats._make(fields)._asdict() return cntr def get_rates(table_id): @@ -149,8 +149,8 @@ class Tunnelstat(object): continue rates = ratestat_dict.get(key, RateStats._make([STATUS_NA] * len(rates_key_list))) - table.append((key, data.rx_p_ok, data.rx_b_ok, format_prate(rates.rx_pps), - data.tx_p_ok, data.tx_b_ok, format_prate(rates.tx_pps))) + table.append((key, data['rx_p_ok'], data['rx_b_ok'], format_prate(rates.rx_pps), + data['tx_p_ok'], data['tx_b_ok'], format_prate(rates.tx_pps))) if use_json: print(table_as_json(table, header)) @@ -175,19 +175,19 @@ class Tunnelstat(object): rates = ratestat_dict.get(key, RateStats._make([STATUS_NA] * len(rates_key_list))) if old_cntr is not None: table.append((key, - ns_diff(cntr.rx_p_ok, old_cntr.rx_p_ok), - ns_diff(cntr.rx_b_ok, old_cntr.rx_b_ok), + ns_diff(cntr['rx_p_ok'], old_cntr['rx_p_ok']), + ns_diff(cntr['rx_b_ok'], old_cntr['rx_b_ok']), format_prate(rates.rx_pps), - ns_diff(cntr.tx_p_ok, old_cntr.tx_p_ok), - ns_diff(cntr.tx_b_ok, old_cntr.tx_b_ok), + ns_diff(cntr['tx_p_ok'], old_cntr['tx_p_ok']), + ns_diff(cntr['tx_b_ok'], old_cntr['tx_b_ok']), format_prate(rates.tx_pps))) else: table.append((key, - cntr.rx_p_ok, - cntr.rx_b_ok, + cntr['rx_p_ok'], + cntr['rx_b_ok'], format_prate(rates.rx_pps), - cntr.tx_p_ok, - cntr.tx_b_ok, + cntr['tx_p_ok'], + cntr['tx_b_ok'], format_prate(rates.tx_pps))) if use_json: print(table_as_json(table, header)) @@ -210,12 +210,12 @@ class Tunnelstat(object): if cnstat_old_dict: old_cntr = cnstat_old_dict.get(tunnel) if old_cntr: - body = body % (ns_diff(cntr.rx_p_ok, old_cntr.rx_p_ok), - ns_diff(cntr.rx_b_ok, old_cntr.rx_b_ok), - ns_diff(cntr.tx_p_ok, old_cntr.tx_p_ok), - ns_diff(cntr.tx_b_ok, old_cntr.tx_b_ok)) + body = body % (ns_diff(cntr['rx_p_ok'], old_cntr['rx_p_ok']), + ns_diff(cntr['rx_b_ok'], old_cntr['rx_b_ok']), + ns_diff(cntr['tx_p_ok'], old_cntr['tx_p_ok']), + ns_diff(cntr['tx_b_ok'], old_cntr['tx_b_ok'])) else: - body = body % (cntr.rx_p_ok, cntr.rx_b_ok, cntr.tx_p_ok, cntr.tx_b_ok) + body = body % (cntr['rx_p_ok'], cntr['rx_b_ok'], cntr['tx_p_ok'], cntr['tx_b_ok']) print(header) print(body) @@ -273,7 +273,7 @@ def main(): if save_fresh_stats: try: - pickle.dump(cnstat_dict, open(cnstat_fqn_file, 'wb')) + json.dump(cnstat_dict, open(cnstat_fqn_file, 'w'), default=json_serial) except IOError as e: sys.exit(e.errno) else: @@ -283,7 +283,7 @@ def main(): if wait_time_in_seconds == 0: if os.path.isfile(cnstat_fqn_file): try: - cnstat_cached_dict = pickle.load(open(cnstat_fqn_file, 'rb')) + cnstat_cached_dict = json.load(open(cnstat_fqn_file, 'r')) print("Last cached time was " + str(cnstat_cached_dict.get('time'))) if tunnel_name: tunnelstat.cnstat_single_tunnel(tunnel_name, cnstat_dict, cnstat_cached_dict) diff --git a/tests/intfstat_test.py b/tests/intfstat_test.py index f76e54c7..fa3af5e2 100644 --- a/tests/intfstat_test.py +++ b/tests/intfstat_test.py @@ -1,7 +1,7 @@ import sys import os import traceback - +import subprocess import show.main as show import clear.main as clear @@ -212,6 +212,28 @@ def test_alias_mode(self): assert interface in result_lines[i+2] os.environ["SONIC_CLI_IFACE_MODE"] = "default" + def test_clear_tag(self): + cmd0 = ["intfstat", "-c"] + subprocess.Popen(cmd0, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) + + cmd1 = ["intfstat", "-c", '-t', 'test'] + subprocess.Popen(cmd1, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) + cmd2 = ["intfstat", '-t', 'test'] + p2 = subprocess.Popen(cmd2, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) + output2 = p2.communicate()[0] + print(output2) + assert show_interfaces_counters_rif_clear in output2 + + cmd3 = ["intfstat", "-c", '-t', 'test'] + subprocess.Popen(cmd3, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) + cmd4 = ["intfstat", '-t', 'test'] + p4 = subprocess.Popen(cmd4, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) + output4 = p4.communicate()[0] + print(output4) + assert show_interfaces_counters_rif_clear in output4 + + show.run_command(["intfstat", "-D"]) + @classmethod def teardown_class(cls): print("TEARDOWN") From b316fc27f5b56d7c04dc093ad55db600c4e6e2a3 Mon Sep 17 00:00:00 2001 From: longhuan-cisco <84595962+longhuan-cisco@users.noreply.github.com> Date: Wed, 31 May 2023 22:01:34 -0700 Subject: [PATCH 165/312] Add transceiver status CLI to show output from TRANSCEIVER_STATUS table (#2772) * Add transceiver status CLI to display TRANSCEIVER_STATUS table for CMIS/C-CMIS * Fix typo in command-ref * Add tx_disable * Update tx_disabled_channel's discription * Remove redundant code * addressed comments * Fix typo for tx power low warning * Separate CMIS and CCMIS status map * code cleanup * Unify display format and update display order * Fix after merge from master --- doc/Command-Reference.md | 285 ++++++++++++++++++++++++++- scripts/sfpshow | 77 +++++++- show/interfaces/__init__.py | 23 +++ tests/mock_tables/state_db.json | 296 +++++++++++++++++++++++++++- tests/sfp_test.py | 337 ++++++++++++++++++++++++++++++++ tests/sfputil_test.py | 7 +- utilities_common/sfp_helper.py | 299 ++++++++++++++++++++++++++++ 7 files changed, 1319 insertions(+), 5 deletions(-) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 03c61f1b..89ac722b 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -931,7 +931,7 @@ This command displays information for all the interfaces for the transceiver req - Usage: ``` - show interfaces transceiver (eeprom [-d|--dom] | info | lpmode | presence | error-status [-hw|--fetch-from-hardware] | pm) [] + show interfaces transceiver (eeprom [-d|--dom] | info | lpmode | presence | error-status [-hw|--fetch-from-hardware] | pm | status) [] ``` - Example (Decode and display information stored on the EEPROM of SFP transceiver connected to Ethernet0): @@ -1060,6 +1060,289 @@ This command displays information for all the interfaces for the transceiver req EVM % 100.0 100.0 100.0 N/A N/A N/A N/A N/A N/A ``` +- Example (Display status info of SFP transceiver connected to Ethernet100): + ``` + admin@sonic:~$ show interfaces transceiver status Ethernet100 + Ethernet100: + Tx fault flag on media lane 1: False + Tx fault flag on media lane 2: False + Tx fault flag on media lane 3: False + Tx fault flag on media lane 4: False + Tx fault flag on media lane 5: False + Tx fault flag on media lane 6: False + Tx fault flag on media lane 7: False + Tx fault flag on media lane 8: False + Rx loss of signal flag on media lane 1: False + Rx loss of signal flag on media lane 2: False + Rx loss of signal flag on media lane 3: False + Rx loss of signal flag on media lane 4: False + Rx loss of signal flag on media lane 5: False + Rx loss of signal flag on media lane 6: False + Rx loss of signal flag on media lane 7: False + Rx loss of signal flag on media lane 8: False + TX disable status on lane 1: False + TX disable status on lane 2: False + TX disable status on lane 3: False + TX disable status on lane 4: False + TX disable status on lane 5: False + TX disable status on lane 6: False + TX disable status on lane 7: False + TX disable status on lane 8: False + Disabled TX channels: 0 + Current module state: ModuleReady + Reason of entering the module fault state: No Fault detected + Datapath firmware fault: False + Module firmware fault: False + Module state changed: False + Data path state indicator on host lane 1: DataPathActivated + Data path state indicator on host lane 2: DataPathActivated + Data path state indicator on host lane 3: DataPathActivated + Data path state indicator on host lane 4: DataPathActivated + Data path state indicator on host lane 5: DataPathActivated + Data path state indicator on host lane 6: DataPathActivated + Data path state indicator on host lane 7: DataPathActivated + Data path state indicator on host lane 8: DataPathActivated + Tx output status on media lane 1: False + Tx output status on media lane 2: False + Tx output status on media lane 3: False + Tx output status on media lane 4: False + Tx output status on media lane 5: False + Tx output status on media lane 6: False + Tx output status on media lane 7: False + Tx output status on media lane 8: False + Rx output status on host lane 1: True + Rx output status on host lane 2: True + Rx output status on host lane 3: True + Rx output status on host lane 4: True + Rx output status on host lane 5: True + Rx output status on host lane 6: True + Rx output status on host lane 7: True + Rx output status on host lane 8: True + Tx loss of signal flag on host lane 1: False + Tx loss of signal flag on host lane 2: False + Tx loss of signal flag on host lane 3: False + Tx loss of signal flag on host lane 4: False + Tx loss of signal flag on host lane 5: False + Tx loss of signal flag on host lane 6: False + Tx loss of signal flag on host lane 7: False + Tx loss of signal flag on host lane 8: False + Tx clock and data recovery loss of lock on host lane 1: False + Tx clock and data recovery loss of lock on host lane 2: False + Tx clock and data recovery loss of lock on host lane 3: False + Tx clock and data recovery loss of lock on host lane 4: False + Tx clock and data recovery loss of lock on host lane 5: False + Tx clock and data recovery loss of lock on host lane 6: False + Tx clock and data recovery loss of lock on host lane 7: False + Tx clock and data recovery loss of lock on host lane 8: False + Rx clock and data recovery loss of lock on media lane 1: False + Rx clock and data recovery loss of lock on media lane 2: False + Rx clock and data recovery loss of lock on media lane 3: False + Rx clock and data recovery loss of lock on media lane 4: False + Rx clock and data recovery loss of lock on media lane 5: False + Rx clock and data recovery loss of lock on media lane 6: False + Rx clock and data recovery loss of lock on media lane 7: False + Rx clock and data recovery loss of lock on media lane 8: False + Configuration status for the data path of host line 1: ConfigSuccess + Configuration status for the data path of host line 2: ConfigSuccess + Configuration status for the data path of host line 3: ConfigSuccess + Configuration status for the data path of host line 4: ConfigSuccess + Configuration status for the data path of host line 5: ConfigSuccess + Configuration status for the data path of host line 6: ConfigSuccess + Configuration status for the data path of host line 7: ConfigSuccess + Configuration status for the data path of host line 8: ConfigSuccess + Data path configuration updated on host lane 1: False + Data path configuration updated on host lane 2: False + Data path configuration updated on host lane 3: False + Data path configuration updated on host lane 4: False + Data path configuration updated on host lane 5: False + Data path configuration updated on host lane 6: False + Data path configuration updated on host lane 7: False + Data path configuration updated on host lane 8: False + Temperature high alarm flag: False + Temperature high warning flag: False + Temperature low warning flag: False + Temperature low alarm flag: False + Vcc high alarm flag: False + Vcc high warning flag: False + Vcc low warning flag: False + Vcc low alarm flag: False + Tx power high alarm flag on lane 1: False + Tx power high alarm flag on lane 2: False + Tx power high alarm flag on lane 3: False + Tx power high alarm flag on lane 4: False + Tx power high alarm flag on lane 5: False + Tx power high alarm flag on lane 6: False + Tx power high alarm flag on lane 7: False + Tx power high alarm flag on lane 8: False + Tx power high warning flag on lane 1: False + Tx power high warning flag on lane 2: False + Tx power high warning flag on lane 3: False + Tx power high warning flag on lane 4: False + Tx power high warning flag on lane 5: False + Tx power high warning flag on lane 6: False + Tx power high warning flag on lane 7: False + Tx power high warning flag on lane 8: False + Tx power low warning flag on lane 1: False + Tx power low warning flag on lane 2: False + Tx power low warning flag on lane 3: False + Tx power low warning flag on lane 4: False + Tx power low warning flag on lane 5: False + Tx power low warning flag on lane 6: False + Tx power low warning flag on lane 7: False + Tx power low warning flag on lane 8: False + Tx power low alarm flag on lane 1: False + Tx power low alarm flag on lane 2: False + Tx power low alarm flag on lane 3: False + Tx power low alarm flag on lane 4: False + Tx power low alarm flag on lane 5: False + Tx power low alarm flag on lane 6: False + Tx power low alarm flag on lane 7: False + Tx power low alarm flag on lane 8: False + Rx power high alarm flag on lane 1: False + Rx power high alarm flag on lane 2: False + Rx power high alarm flag on lane 3: False + Rx power high alarm flag on lane 4: False + Rx power high alarm flag on lane 5: False + Rx power high alarm flag on lane 6: False + Rx power high alarm flag on lane 7: False + Rx power high alarm flag on lane 8: False + Rx power high warning flag on lane 1: False + Rx power high warning flag on lane 2: False + Rx power high warning flag on lane 3: False + Rx power high warning flag on lane 4: False + Rx power high warning flag on lane 5: False + Rx power high warning flag on lane 6: False + Rx power high warning flag on lane 7: False + Rx power high warning flag on lane 8: False + Rx power low warning flag on lane 1: False + Rx power low warning flag on lane 2: False + Rx power low warning flag on lane 3: False + Rx power low warning flag on lane 4: False + Rx power low warning flag on lane 5: False + Rx power low warning flag on lane 6: False + Rx power low warning flag on lane 7: False + Rx power low warning flag on lane 8: False + Rx power low alarm flag on lane 1: False + Rx power low alarm flag on lane 2: False + Rx power low alarm flag on lane 3: False + Rx power low alarm flag on lane 4: False + Rx power low alarm flag on lane 5: False + Rx power low alarm flag on lane 6: False + Rx power low alarm flag on lane 7: False + Rx power low alarm flag on lane 8: False + Tx bias high alarm flag on lane 1: False + Tx bias high alarm flag on lane 2: False + Tx bias high alarm flag on lane 3: False + Tx bias high alarm flag on lane 4: False + Tx bias high alarm flag on lane 5: False + Tx bias high alarm flag on lane 6: False + Tx bias high alarm flag on lane 7: False + Tx bias high alarm flag on lane 8: False + Tx bias high warning flag on lane 1: False + Tx bias high warning flag on lane 2: False + Tx bias high warning flag on lane 3: False + Tx bias high warning flag on lane 4: False + Tx bias high warning flag on lane 5: False + Tx bias high warning flag on lane 6: False + Tx bias high warning flag on lane 7: False + Tx bias high warning flag on lane 8: False + Tx bias low warning flag on lane 1: False + Tx bias low warning flag on lane 2: False + Tx bias low warning flag on lane 3: False + Tx bias low warning flag on lane 4: False + Tx bias low warning flag on lane 5: False + Tx bias low warning flag on lane 6: False + Tx bias low warning flag on lane 7: False + Tx bias low warning flag on lane 8: False + Tx bias low alarm flag on lane 1: False + Tx bias low alarm flag on lane 2: False + Tx bias low alarm flag on lane 3: False + Tx bias low alarm flag on lane 4: False + Tx bias low alarm flag on lane 5: False + Tx bias low alarm flag on lane 6: False + Tx bias low alarm flag on lane 7: False + Tx bias low alarm flag on lane 8: False + Laser temperature high alarm flag: False + Laser temperature high warning flag: False + Laser temperature low warning flag: False + Laser temperature low alarm flag: False + Prefec ber high alarm flag: False + Prefec ber high warning flag: False + Prefec ber low warning flag: False + Prefec ber low alarm flag: False + Postfec ber high alarm flag: False + Postfec ber high warning flag: False + Postfec ber low warning flag: False + Postfec ber low alarm flag: False + Tuning in progress status: False + Laser unlocked status: False + Target output power out of range flag: False + Fine tuning out of range flag: False + Tuning not accepted flag: False + Invalid channel number flag: False + Tuning complete flag: False + Bias xi high alarm flag: False + Bias xi high warning flag: False + Bias xi low warning flag: False + Bias xi low alarm flag: False + Bias xq high alarm flag: False + Bias xq high warning flag: False + Bias xq low warning flag: False + Bias xq low alarm flag: False + Bias xp high alarm flag: False + Bias xp high warning flag: False + Bias xp low warning flag: False + Bias xp low alarm flag: False + Bias yi high alarm flag: False + Bias yi high warning flag: False + Bias yi low warning flag: False + Bias yi low alarm flag: False + Bias yq high alarm flag: False + Bias yq high warning flag: False + Bias yq low warning flag: False + Bias yq low alarm flag: False + Bias yp high alarm flag: False + Bias yp high warning flag: False + Bias yp low warning flag: False + Bias yp low alarm flag: False + CD short high alarm flag: False + CD short high warning flag: False + CD short low warning flag: False + CD short low alarm flag: False + CD long high alarm flag: False + CD long high warning flag: False + CD long low warning flag: False + CD long low alarm flag: False + DGD high alarm flag: False + DGD high warning flag: False + DGD low warning flag: False + DGD low alarm flag: False + PDL high alarm flag: False + PDL high warning flag: False + PDL low warning flag: False + PDL low alarm flag: False + OSNR high alarm flag: False + OSNR high warning flag: False + OSNR low warning flag: False + OSNR low alarm flag: False + ESNR high alarm flag: False + ESNR high warning flag: False + ESNR low warning flag: False + ESNR low alarm flag: False + CFO high alarm flag: False + CFO high warning flag: False + CFO low warning flag: False + CFO low alarm flag: False + Txcurrpower high alarm flag: False + Txcurrpower high warning flag: False + Txcurrpower low warning flag: False + Txcurrpower low alarm flag: False + Rxtotpower high alarm flag: False + Rxtotpower high warning flag: False + Rxtotpower low warning flag: False + Rxtotpower low alarm flag: False + ``` + Go Back To [Beginning of the document](#) or [Beginning of this section](#basic-show-commands) ## AAA & TACACS+ diff --git a/scripts/sfpshow b/scripts/sfpshow index ac0adf5c..5ed13901 100755 --- a/scripts/sfpshow +++ b/scripts/sfpshow @@ -17,7 +17,13 @@ from natsort import natsorted from sonic_py_common.interface import front_panel_prefix, backplane_prefix, inband_prefix, recirc_prefix from sonic_py_common import multi_asic from utilities_common.sfp_helper import covert_application_advertisement_to_output_string -from utilities_common.sfp_helper import QSFP_DATA_MAP, CMIS_DATA_MAP +from utilities_common.sfp_helper import ( + QSFP_DATA_MAP, + CMIS_DATA_MAP, + QSFP_STATUS_MAP, + CMIS_STATUS_MAP, + CCMIS_STATUS_MAP, +) from tabulate import tabulate # Mock the redis DB for unit test purposes @@ -233,6 +239,8 @@ ZR_PM_INFO_MAP = { ZR_PM_NOT_APPLICABLE_STR = 'Transceiver performance monitoring not applicable' +QSFP_STATUS_NOT_APPLICABLE_STR = 'Transceiver status info not applicable' + def display_invalid_intf_eeprom(intf_name): output = intf_name + ': SFP EEPROM Not detected\n' click.echo(output) @@ -249,6 +257,10 @@ def display_invalid_intf_pm(intf_name): output = intf_name + ': %s\n' % ZR_PM_NOT_APPLICABLE_STR click.echo(output) +def display_invalid_intf_status(intf_name): + output = intf_name + ': %s\n' % QSFP_STATUS_NOT_APPLICABLE_STR + click.echo(output) + class SFPShow(object): def __init__(self, intf_name, namespace_option, dump_dom=False): super(SFPShow, self).__init__() @@ -258,6 +270,7 @@ class SFPShow(object): self.table = [] self.intf_eeprom: Dict[str, str] = {} self.intf_pm: Dict[str, str] = {} + self.intf_status: Dict[str, str] = {} self.multi_asic = multi_asic_util.MultiAsic(namespace_option=namespace_option) # Convert dict values to cli output string @@ -280,6 +293,17 @@ class SFPShow(object): units) return output + # Convert sfp status in DB to cli output string + def convert_sfp_status_to_output_string(self, sfp_status_dict, status_map): + indent = ' ' * 8 + output = '' + for key in status_map.keys(): + if key not in sfp_status_dict: + continue + output += '{}{}: {}\n'.format(indent, status_map[key], sfp_status_dict[key]) + + return output + # Convert sfp info in DB to cli output string def convert_sfp_info_to_output_string(self, sfp_info_dict): indent = ' ' * 8 @@ -439,6 +463,22 @@ class SFPShow(object): return output + # Convert sfp status info in DB to cli output string + def convert_interface_sfp_status_to_cli_output_string(self, state_db, interface_name): + sfp_status_dict = state_db.get_all(state_db.STATE_DB, 'TRANSCEIVER_STATUS|{}'.format(interface_name)) + if sfp_status_dict and len(sfp_status_dict) > 2: + # common section + output = '\n' + self.convert_sfp_status_to_output_string(sfp_status_dict, QSFP_STATUS_MAP) + # CMIS specific section + if 'module_state' in sfp_status_dict: + output += self.convert_sfp_status_to_output_string(sfp_status_dict, CMIS_STATUS_MAP) + # C-CMIS specific section + if 'tuning_in_progress' in sfp_status_dict: + output += self.convert_sfp_status_to_output_string(sfp_status_dict, CCMIS_STATUS_MAP) + else: + output = QSFP_STATUS_NOT_APPLICABLE_STR + '\n' + return output + def convert_pm_prefix_to_threshold_prefix(self, pm_prefix): if pm_prefix == 'uncorr_frames': return 'postfecber' @@ -551,6 +591,19 @@ class SFPShow(object): self.intf_pm[interface] = self.convert_interface_sfp_pm_to_cli_output_string( self.db, interface) + @multi_asic_util.run_on_multi_asic + def get_status(self): + if self.intf_name is not None: + self.intf_status[self.intf_name] = self.convert_interface_sfp_status_to_cli_output_string( + self.db, self.intf_name) + else: + port_table_keys = self.db.keys(self.db.APPL_DB, "PORT_TABLE:*") + for i in port_table_keys: + interface = re.split(':', i, maxsplit=1)[-1].strip() + if interface and interface.startswith(front_panel_prefix()) and not interface.startswith((backplane_prefix(), inband_prefix(), recirc_prefix())): + self.intf_status[interface] = self.convert_interface_sfp_status_to_cli_output_string( + self.db, interface) + def display_eeprom(self): click.echo("\n".join([f"{k}: {v}" for k, v in natsorted(self.intf_eeprom.items())])) @@ -562,6 +615,10 @@ class SFPShow(object): def display_pm(self): click.echo( "\n".join([f"{k}: {v}" for k, v in natsorted(self.intf_pm.items())])) + + def display_status(self): + click.echo( + "\n".join([f"{k}: {v}" for k, v in natsorted(self.intf_status.items())])) # This is our main entrypoint - the main 'sfpshow' command @@ -642,6 +699,24 @@ def pm(port, namespace): sfp.get_pm() sfp.display_pm() +# 'pm' subcommand + + +@cli.command() +@click.option('-p', '--port', metavar='', help="Display SFP status for port only") +@click.option('-n', '--namespace', default=None, help="Display interfaces for specific namespace") +def status(port, namespace): + if port and multi_asic.is_multi_asic() and namespace is None: + try: + namespace = multi_asic.get_namespace_for_port(port) + except Exception: + display_invalid_intf_status(port) + sys.exit(1) + + sfp = SFPShow(port, namespace) + sfp.get_status() + sfp.display_status() + if __name__ == "__main__": cli() diff --git a/show/interfaces/__init__.py b/show/interfaces/__init__.py index c376afe7..5aeaef6b 100644 --- a/show/interfaces/__init__.py +++ b/show/interfaces/__init__.py @@ -469,6 +469,29 @@ def pm(interfacename, namespace, verbose): clicommon.run_command(cmd, display_cmd=verbose) +@transceiver.command('status') # 'status' is the actual sub-command name under 'transceiver' command +@click.argument('interfacename', required=False) +@click.option('--namespace', '-n', 'namespace', default=None, show_default=True, + type=click.Choice(multi_asic_util.multi_asic_ns_choices()), help='Namespace name or all') +@click.option('--verbose', is_flag=True, help="Enable verbose output") +def transceiver_status(interfacename, namespace, verbose): + """Show interface transceiver status information""" + + ctx = click.get_current_context() + + cmd = ['sfpshow', 'status'] + + if interfacename is not None: + interfacename = try_convert_interfacename_from_alias( + ctx, interfacename) + + cmd += ['-p', str(interfacename)] + + if namespace is not None: + cmd += ['-n', str(namespace)] + + clicommon.run_command(cmd, display_cmd=verbose) + @transceiver.command() @click.argument('interfacename', required=False) @click.option('--namespace', '-n', 'namespace', default=None, show_default=True, diff --git a/tests/mock_tables/state_db.json b/tests/mock_tables/state_db.json index cd1a194b..883a2b36 100644 --- a/tests/mock_tables/state_db.json +++ b/tests/mock_tables/state_db.json @@ -373,6 +373,287 @@ "rx_sig_power_min": "-40", "rx_sig_power_max": "40" }, + "TRANSCEIVER_STATUS|Ethernet44":{ + "DP1State": "DataPathActivated", + "DP2State": "DataPathActivated", + "DP3State": "DataPathActivated", + "DP4State": "DataPathActivated", + "DP5State": "DataPathActivated", + "DP6State": "DataPathActivated", + "DP7State": "DataPathActivated", + "DP8State": "DataPathActivated", + "biasxihighalarm_flag": "False", + "biasxihighwarning_flag": "False", + "biasxilowalarm_flag": "False", + "biasxilowwarning_flag": "False", + "biasxphighalarm_flag": "False", + "biasxphighwarning_flag": "False", + "biasxplowalarm_flag": "False", + "biasxplowwarning_flag": "False", + "biasxqhighalarm_flag": "False", + "biasxqhighwarning_flag": "False", + "biasxqlowalarm_flag": "False", + "biasxqlowwarning_flag": "False", + "biasyihighalarm_flag": "False", + "biasyihighwarning_flag": "False", + "biasyilowalarm_flag": "False", + "biasyilowwarning_flag": "False", + "biasyphighalarm_flag": "False", + "biasyphighwarning_flag": "False", + "biasyplowalarm_flag": "False", + "biasyplowwarning_flag": "False", + "biasyqhighalarm_flag": "False", + "biasyqhighwarning_flag": "False", + "biasyqlowalarm_flag": "False", + "biasyqlowwarning_flag": "False", + "cdlonghighalarm_flag": "False", + "cdlonghighwarning_flag": "False", + "cdlonglowalarm_flag": "False", + "cdlonglowwarning_flag": "False", + "cdshorthighalarm_flag": "False", + "cdshorthighwarning_flag": "False", + "cdshortlowalarm_flag": "False", + "cdshortlowwarning_flag": "False", + "cfohighalarm_flag": "False", + "cfohighwarning_flag": "False", + "cfolowalarm_flag": "False", + "cfolowwarning_flag": "False", + "config_state_hostlane1": "ConfigSuccess", + "config_state_hostlane2": "ConfigSuccess", + "config_state_hostlane3": "ConfigSuccess", + "config_state_hostlane4": "ConfigSuccess", + "config_state_hostlane5": "ConfigSuccess", + "config_state_hostlane6": "ConfigSuccess", + "config_state_hostlane7": "ConfigSuccess", + "config_state_hostlane8": "ConfigSuccess", + "datapath_firmware_fault": "False", + "dgdhighalarm_flag": "False", + "dgdhighwarning_flag": "False", + "dgdlowalarm_flag": "False", + "dgdlowwarning_flag": "False", + "dpinit_pending_hostlane1": "False", + "dpinit_pending_hostlane2": "False", + "dpinit_pending_hostlane3": "False", + "dpinit_pending_hostlane4": "False", + "dpinit_pending_hostlane5": "False", + "dpinit_pending_hostlane6": "False", + "dpinit_pending_hostlane7": "False", + "dpinit_pending_hostlane8": "False", + "error": "N/A", + "esnrhighalarm_flag": "False", + "esnrhighwarning_flag": "False", + "esnrlowalarm_flag": "False", + "esnrlowwarning_flag": "False", + "fine_tuning_oor": "False", + "invalid_channel_num": "False", + "lasertemphighalarm_flag": "False", + "lasertemphighwarning_flag": "False", + "lasertemplowalarm_flag": "False", + "lasertemplowwarning_flag": "False", + "module_fault_cause": "No Fault detected", + "module_firmware_fault": "False", + "module_state": "ModuleReady", + "module_state_changed": "False", + "osnrhighalarm_flag": "False", + "osnrhighwarning_flag": "False", + "osnrlowalarm_flag": "False", + "osnrlowwarning_flag": "False", + "pdlhighalarm_flag": "False", + "pdlhighwarning_flag": "False", + "pdllowalarm_flag": "False", + "pdllowwarning_flag": "False", + "postfecberhighalarm_flag": "False", + "postfecberhighwarning_flag": "False", + "postfecberlowalarm_flag": "False", + "postfecberlowwarning_flag": "False", + "prefecberhighalarm_flag": "False", + "prefecberhighwarning_flag": "False", + "prefecberlowalarm_flag": "False", + "prefecberlowwarning_flag": "False", + "rxcdrlol1": "False", + "rxcdrlol2": "False", + "rxcdrlol3": "False", + "rxcdrlol4": "False", + "rxcdrlol5": "False", + "rxcdrlol6": "False", + "rxcdrlol7": "False", + "rxcdrlol8": "False", + "rxlos1": "False", + "rxlos2": "False", + "rxlos3": "False", + "rxlos4": "False", + "rxlos5": "False", + "rxlos6": "False", + "rxlos7": "False", + "rxlos8": "False", + "rxoutput_status_hostlane1": "True", + "rxoutput_status_hostlane2": "True", + "rxoutput_status_hostlane3": "True", + "rxoutput_status_hostlane4": "True", + "rxoutput_status_hostlane5": "True", + "rxoutput_status_hostlane6": "True", + "rxoutput_status_hostlane7": "True", + "rxoutput_status_hostlane8": "True", + "rxpowerhighalarm_flag1": "False", + "rxpowerhighalarm_flag2": "False", + "rxpowerhighalarm_flag3": "False", + "rxpowerhighalarm_flag4": "False", + "rxpowerhighalarm_flag5": "False", + "rxpowerhighalarm_flag6": "False", + "rxpowerhighalarm_flag7": "False", + "rxpowerhighalarm_flag8": "False", + "rxpowerhighwarning_flag1": "False", + "rxpowerhighwarning_flag2": "False", + "rxpowerhighwarning_flag3": "False", + "rxpowerhighwarning_flag4": "False", + "rxpowerhighwarning_flag5": "False", + "rxpowerhighwarning_flag6": "False", + "rxpowerhighwarning_flag7": "False", + "rxpowerhighwarning_flag8": "False", + "rxpowerlowalarm_flag1": "False", + "rxpowerlowalarm_flag2": "False", + "rxpowerlowalarm_flag3": "False", + "rxpowerlowalarm_flag4": "False", + "rxpowerlowalarm_flag5": "False", + "rxpowerlowalarm_flag6": "False", + "rxpowerlowalarm_flag7": "False", + "rxpowerlowalarm_flag8": "False", + "rxpowerlowwarning_flag1": "False", + "rxpowerlowwarning_flag2": "False", + "rxpowerlowwarning_flag3": "False", + "rxpowerlowwarning_flag4": "False", + "rxpowerlowwarning_flag5": "False", + "rxpowerlowwarning_flag6": "False", + "rxpowerlowwarning_flag7": "False", + "rxpowerlowwarning_flag8": "False", + "rxtotpowerhighalarm_flag": "False", + "rxtotpowerhighwarning_flag": "False", + "rxtotpowerlowalarm_flag": "False", + "rxtotpowerlowwarning_flag": "False", + "status": "1", + "target_output_power_oor": "False", + "temphighalarm_flag": "False", + "temphighwarning_flag": "False", + "templowalarm_flag": "False", + "templowwarning_flag": "False", + "tuning_complete": "False", + "tuning_in_progress": "False", + "tuning_not_accepted": "False", + "txbiashighalarm_flag1": "False", + "txbiashighalarm_flag2": "False", + "txbiashighalarm_flag3": "False", + "txbiashighalarm_flag4": "False", + "txbiashighalarm_flag5": "False", + "txbiashighalarm_flag6": "False", + "txbiashighalarm_flag7": "False", + "txbiashighalarm_flag8": "False", + "txbiashighwarning_flag1": "False", + "txbiashighwarning_flag2": "False", + "txbiashighwarning_flag3": "False", + "txbiashighwarning_flag4": "False", + "txbiashighwarning_flag5": "False", + "txbiashighwarning_flag6": "False", + "txbiashighwarning_flag7": "False", + "txbiashighwarning_flag8": "False", + "txbiaslowalarm_flag1": "False", + "txbiaslowalarm_flag2": "False", + "txbiaslowalarm_flag3": "False", + "txbiaslowalarm_flag4": "False", + "txbiaslowalarm_flag5": "False", + "txbiaslowalarm_flag6": "False", + "txbiaslowalarm_flag7": "False", + "txbiaslowalarm_flag8": "False", + "txbiaslowwarning_flag1": "False", + "txbiaslowwarning_flag2": "False", + "txbiaslowwarning_flag3": "False", + "txbiaslowwarning_flag4": "False", + "txbiaslowwarning_flag5": "False", + "txbiaslowwarning_flag6": "False", + "txbiaslowwarning_flag7": "False", + "txbiaslowwarning_flag8": "False", + "txcdrlol_hostlane1": "False", + "txcdrlol_hostlane2": "False", + "txcdrlol_hostlane3": "False", + "txcdrlol_hostlane4": "False", + "txcdrlol_hostlane5": "False", + "txcdrlol_hostlane6": "False", + "txcdrlol_hostlane7": "False", + "txcdrlol_hostlane8": "False", + "txcurrpowerhighalarm_flag": "False", + "txcurrpowerhighwarning_flag": "False", + "txcurrpowerlowalarm_flag": "False", + "txcurrpowerlowwarning_flag": "False", + "tx_disabled_channel": "0", + "tx1disable": "False", + "tx2disable": "False", + "tx3disable": "False", + "tx4disable": "False", + "tx5disable": "False", + "tx6disable": "False", + "tx7disable": "False", + "tx8disable": "False", + "txfault1": "False", + "txfault2": "False", + "txfault3": "False", + "txfault4": "False", + "txfault5": "False", + "txfault6": "False", + "txfault7": "False", + "txfault8": "False", + "txlos_hostlane1": "False", + "txlos_hostlane2": "False", + "txlos_hostlane3": "False", + "txlos_hostlane4": "False", + "txlos_hostlane5": "False", + "txlos_hostlane6": "False", + "txlos_hostlane7": "False", + "txlos_hostlane8": "False", + "txoutput_status1": "False", + "txoutput_status2": "False", + "txoutput_status3": "False", + "txoutput_status4": "False", + "txoutput_status5": "False", + "txoutput_status6": "False", + "txoutput_status7": "False", + "txoutput_status8": "False", + "txpowerhighalarm_flag1": "False", + "txpowerhighalarm_flag2": "False", + "txpowerhighalarm_flag3": "False", + "txpowerhighalarm_flag4": "False", + "txpowerhighalarm_flag5": "False", + "txpowerhighalarm_flag6": "False", + "txpowerhighalarm_flag7": "False", + "txpowerhighalarm_flag8": "False", + "txpowerhighwarning_flag1": "False", + "txpowerhighwarning_flag2": "False", + "txpowerhighwarning_flag3": "False", + "txpowerhighwarning_flag4": "False", + "txpowerhighwarning_flag5": "False", + "txpowerhighwarning_flag6": "False", + "txpowerhighwarning_flag7": "False", + "txpowerhighwarning_flag8": "False", + "txpowerlowalarm_flag1": "False", + "txpowerlowalarm_flag2": "False", + "txpowerlowalarm_flag3": "False", + "txpowerlowalarm_flag4": "False", + "txpowerlowalarm_flag5": "False", + "txpowerlowalarm_flag6": "False", + "txpowerlowalarm_flag7": "False", + "txpowerlowalarm_flag8": "False", + "txpowerlowwarning_flag1": "False", + "txpowerlowwarning_flag2": "False", + "txpowerlowwarning_flag3": "False", + "txpowerlowwarning_flag4": "False", + "txpowerlowwarning_flag5": "False", + "txpowerlowwarning_flag6": "False", + "txpowerlowwarning_flag7": "False", + "txpowerlowwarning_flag8": "False", + "vcchighalarm_flag": "False", + "vcchighwarning_flag": "False", + "vcclowalarm_flag": "False", + "vcclowwarning_flag": "False", + "wavelength_unlock_status": "False" + }, "TRANSCEIVER_INFO|Ethernet64": { "type" : "QSFP-DD Double Density 8X Pluggable Transceiver", "hardware_rev" : "X.X", @@ -416,7 +697,20 @@ }, "TRANSCEIVER_STATUS|Ethernet4": { "status": "1", - "error": "N/A" + "error": "N/A", + "rxlos1": "False", + "rxlos2": "False", + "rxlos3": "False", + "rxlos4": "False", + "txfault1": "False", + "txfault2": "False", + "txfault3": "False", + "txfault4": "False", + "tx1disable": "False", + "tx2disable": "False", + "tx3disable": "False", + "tx4disable": "False", + "tx_disabled_channel": "0" }, "TRANSCEIVER_STATUS|Ethernet8": { "status": "0", diff --git a/tests/sfp_test.py b/tests/sfp_test.py index 49000718..f509c047 100644 --- a/tests/sfp_test.py +++ b/tests/sfp_test.py @@ -216,6 +216,304 @@ EVM % 100.0 100.0 100.0 N/A N/A N/A N/A N/A N/A """ +test_qsfp_status_output = """\ +Ethernet4: + Tx fault flag on media lane 1: False + Tx fault flag on media lane 2: False + Tx fault flag on media lane 3: False + Tx fault flag on media lane 4: False + Rx loss of signal flag on media lane 1: False + Rx loss of signal flag on media lane 2: False + Rx loss of signal flag on media lane 3: False + Rx loss of signal flag on media lane 4: False + TX disable status on lane 1: False + TX disable status on lane 2: False + TX disable status on lane 3: False + TX disable status on lane 4: False + Disabled TX channels: 0 +""" + +test_qsfp_dd_status_output = """\ +Ethernet44: + Tx fault flag on media lane 1: False + Tx fault flag on media lane 2: False + Tx fault flag on media lane 3: False + Tx fault flag on media lane 4: False + Tx fault flag on media lane 5: False + Tx fault flag on media lane 6: False + Tx fault flag on media lane 7: False + Tx fault flag on media lane 8: False + Rx loss of signal flag on media lane 1: False + Rx loss of signal flag on media lane 2: False + Rx loss of signal flag on media lane 3: False + Rx loss of signal flag on media lane 4: False + Rx loss of signal flag on media lane 5: False + Rx loss of signal flag on media lane 6: False + Rx loss of signal flag on media lane 7: False + Rx loss of signal flag on media lane 8: False + TX disable status on lane 1: False + TX disable status on lane 2: False + TX disable status on lane 3: False + TX disable status on lane 4: False + TX disable status on lane 5: False + TX disable status on lane 6: False + TX disable status on lane 7: False + TX disable status on lane 8: False + Disabled TX channels: 0 + Current module state: ModuleReady + Reason of entering the module fault state: No Fault detected + Datapath firmware fault: False + Module firmware fault: False + Module state changed: False + Data path state indicator on host lane 1: DataPathActivated + Data path state indicator on host lane 2: DataPathActivated + Data path state indicator on host lane 3: DataPathActivated + Data path state indicator on host lane 4: DataPathActivated + Data path state indicator on host lane 5: DataPathActivated + Data path state indicator on host lane 6: DataPathActivated + Data path state indicator on host lane 7: DataPathActivated + Data path state indicator on host lane 8: DataPathActivated + Tx output status on media lane 1: False + Tx output status on media lane 2: False + Tx output status on media lane 3: False + Tx output status on media lane 4: False + Tx output status on media lane 5: False + Tx output status on media lane 6: False + Tx output status on media lane 7: False + Tx output status on media lane 8: False + Rx output status on host lane 1: True + Rx output status on host lane 2: True + Rx output status on host lane 3: True + Rx output status on host lane 4: True + Rx output status on host lane 5: True + Rx output status on host lane 6: True + Rx output status on host lane 7: True + Rx output status on host lane 8: True + Tx loss of signal flag on host lane 1: False + Tx loss of signal flag on host lane 2: False + Tx loss of signal flag on host lane 3: False + Tx loss of signal flag on host lane 4: False + Tx loss of signal flag on host lane 5: False + Tx loss of signal flag on host lane 6: False + Tx loss of signal flag on host lane 7: False + Tx loss of signal flag on host lane 8: False + Tx clock and data recovery loss of lock on host lane 1: False + Tx clock and data recovery loss of lock on host lane 2: False + Tx clock and data recovery loss of lock on host lane 3: False + Tx clock and data recovery loss of lock on host lane 4: False + Tx clock and data recovery loss of lock on host lane 5: False + Tx clock and data recovery loss of lock on host lane 6: False + Tx clock and data recovery loss of lock on host lane 7: False + Tx clock and data recovery loss of lock on host lane 8: False + Rx clock and data recovery loss of lock on media lane 1: False + Rx clock and data recovery loss of lock on media lane 2: False + Rx clock and data recovery loss of lock on media lane 3: False + Rx clock and data recovery loss of lock on media lane 4: False + Rx clock and data recovery loss of lock on media lane 5: False + Rx clock and data recovery loss of lock on media lane 6: False + Rx clock and data recovery loss of lock on media lane 7: False + Rx clock and data recovery loss of lock on media lane 8: False + Configuration status for the data path of host line 1: ConfigSuccess + Configuration status for the data path of host line 2: ConfigSuccess + Configuration status for the data path of host line 3: ConfigSuccess + Configuration status for the data path of host line 4: ConfigSuccess + Configuration status for the data path of host line 5: ConfigSuccess + Configuration status for the data path of host line 6: ConfigSuccess + Configuration status for the data path of host line 7: ConfigSuccess + Configuration status for the data path of host line 8: ConfigSuccess + Data path configuration updated on host lane 1: False + Data path configuration updated on host lane 2: False + Data path configuration updated on host lane 3: False + Data path configuration updated on host lane 4: False + Data path configuration updated on host lane 5: False + Data path configuration updated on host lane 6: False + Data path configuration updated on host lane 7: False + Data path configuration updated on host lane 8: False + Temperature high alarm flag: False + Temperature high warning flag: False + Temperature low warning flag: False + Temperature low alarm flag: False + Vcc high alarm flag: False + Vcc high warning flag: False + Vcc low warning flag: False + Vcc low alarm flag: False + Tx power high alarm flag on lane 1: False + Tx power high alarm flag on lane 2: False + Tx power high alarm flag on lane 3: False + Tx power high alarm flag on lane 4: False + Tx power high alarm flag on lane 5: False + Tx power high alarm flag on lane 6: False + Tx power high alarm flag on lane 7: False + Tx power high alarm flag on lane 8: False + Tx power high warning flag on lane 1: False + Tx power high warning flag on lane 2: False + Tx power high warning flag on lane 3: False + Tx power high warning flag on lane 4: False + Tx power high warning flag on lane 5: False + Tx power high warning flag on lane 6: False + Tx power high warning flag on lane 7: False + Tx power high warning flag on lane 8: False + Tx power low warning flag on lane 1: False + Tx power low warning flag on lane 2: False + Tx power low warning flag on lane 3: False + Tx power low warning flag on lane 4: False + Tx power low warning flag on lane 5: False + Tx power low warning flag on lane 6: False + Tx power low warning flag on lane 7: False + Tx power low warning flag on lane 8: False + Tx power low alarm flag on lane 1: False + Tx power low alarm flag on lane 2: False + Tx power low alarm flag on lane 3: False + Tx power low alarm flag on lane 4: False + Tx power low alarm flag on lane 5: False + Tx power low alarm flag on lane 6: False + Tx power low alarm flag on lane 7: False + Tx power low alarm flag on lane 8: False + Rx power high alarm flag on lane 1: False + Rx power high alarm flag on lane 2: False + Rx power high alarm flag on lane 3: False + Rx power high alarm flag on lane 4: False + Rx power high alarm flag on lane 5: False + Rx power high alarm flag on lane 6: False + Rx power high alarm flag on lane 7: False + Rx power high alarm flag on lane 8: False + Rx power high warning flag on lane 1: False + Rx power high warning flag on lane 2: False + Rx power high warning flag on lane 3: False + Rx power high warning flag on lane 4: False + Rx power high warning flag on lane 5: False + Rx power high warning flag on lane 6: False + Rx power high warning flag on lane 7: False + Rx power high warning flag on lane 8: False + Rx power low warning flag on lane 1: False + Rx power low warning flag on lane 2: False + Rx power low warning flag on lane 3: False + Rx power low warning flag on lane 4: False + Rx power low warning flag on lane 5: False + Rx power low warning flag on lane 6: False + Rx power low warning flag on lane 7: False + Rx power low warning flag on lane 8: False + Rx power low alarm flag on lane 1: False + Rx power low alarm flag on lane 2: False + Rx power low alarm flag on lane 3: False + Rx power low alarm flag on lane 4: False + Rx power low alarm flag on lane 5: False + Rx power low alarm flag on lane 6: False + Rx power low alarm flag on lane 7: False + Rx power low alarm flag on lane 8: False + Tx bias high alarm flag on lane 1: False + Tx bias high alarm flag on lane 2: False + Tx bias high alarm flag on lane 3: False + Tx bias high alarm flag on lane 4: False + Tx bias high alarm flag on lane 5: False + Tx bias high alarm flag on lane 6: False + Tx bias high alarm flag on lane 7: False + Tx bias high alarm flag on lane 8: False + Tx bias high warning flag on lane 1: False + Tx bias high warning flag on lane 2: False + Tx bias high warning flag on lane 3: False + Tx bias high warning flag on lane 4: False + Tx bias high warning flag on lane 5: False + Tx bias high warning flag on lane 6: False + Tx bias high warning flag on lane 7: False + Tx bias high warning flag on lane 8: False + Tx bias low warning flag on lane 1: False + Tx bias low warning flag on lane 2: False + Tx bias low warning flag on lane 3: False + Tx bias low warning flag on lane 4: False + Tx bias low warning flag on lane 5: False + Tx bias low warning flag on lane 6: False + Tx bias low warning flag on lane 7: False + Tx bias low warning flag on lane 8: False + Tx bias low alarm flag on lane 1: False + Tx bias low alarm flag on lane 2: False + Tx bias low alarm flag on lane 3: False + Tx bias low alarm flag on lane 4: False + Tx bias low alarm flag on lane 5: False + Tx bias low alarm flag on lane 6: False + Tx bias low alarm flag on lane 7: False + Tx bias low alarm flag on lane 8: False + Laser temperature high alarm flag: False + Laser temperature high warning flag: False + Laser temperature low warning flag: False + Laser temperature low alarm flag: False + Prefec ber high alarm flag: False + Prefec ber high warning flag: False + Prefec ber low warning flag: False + Prefec ber low alarm flag: False + Postfec ber high alarm flag: False + Postfec ber high warning flag: False + Postfec ber low warning flag: False + Postfec ber low alarm flag: False + Tuning in progress status: False + Laser unlocked status: False + Target output power out of range flag: False + Fine tuning out of range flag: False + Tuning not accepted flag: False + Invalid channel number flag: False + Tuning complete flag: False + Bias xi high alarm flag: False + Bias xi high warning flag: False + Bias xi low warning flag: False + Bias xi low alarm flag: False + Bias xq high alarm flag: False + Bias xq high warning flag: False + Bias xq low warning flag: False + Bias xq low alarm flag: False + Bias xp high alarm flag: False + Bias xp high warning flag: False + Bias xp low warning flag: False + Bias xp low alarm flag: False + Bias yi high alarm flag: False + Bias yi high warning flag: False + Bias yi low warning flag: False + Bias yi low alarm flag: False + Bias yq high alarm flag: False + Bias yq high warning flag: False + Bias yq low warning flag: False + Bias yq low alarm flag: False + Bias yp high alarm flag: False + Bias yp high warning flag: False + Bias yp low warning flag: False + Bias yp low alarm flag: False + CD short high alarm flag: False + CD short high warning flag: False + CD short low warning flag: False + CD short low alarm flag: False + CD long high alarm flag: False + CD long high warning flag: False + CD long low warning flag: False + CD long low alarm flag: False + DGD high alarm flag: False + DGD high warning flag: False + DGD low warning flag: False + DGD low alarm flag: False + PDL high alarm flag: False + PDL high warning flag: False + PDL low warning flag: False + PDL low alarm flag: False + OSNR high alarm flag: False + OSNR high warning flag: False + OSNR low warning flag: False + OSNR low alarm flag: False + ESNR high alarm flag: False + ESNR high warning flag: False + ESNR low warning flag: False + ESNR low alarm flag: False + CFO high alarm flag: False + CFO high warning flag: False + CFO low warning flag: False + CFO low alarm flag: False + Txcurrpower high alarm flag: False + Txcurrpower high warning flag: False + Txcurrpower low warning flag: False + Txcurrpower low alarm flag: False + Rxtotpower high alarm flag: False + Rxtotpower high warning flag: False + Rxtotpower low warning flag: False + Rxtotpower low alarm flag: False +""" + test_cmis_eeprom_output = """\ Ethernet64: SFP EEPROM detected Active Firmware: X.X @@ -452,6 +750,14 @@ Ethernet64: Transceiver performance monitoring not applicable """ +test_qsfp_dd_status_all_output = """\ +Ethernet0: Transceiver status info not applicable + +Ethernet4: Transceiver status info not applicable + +Ethernet64: Transceiver status info not applicable +""" + class TestSFP(object): @classmethod def setup_class(cls): @@ -569,6 +875,23 @@ def test_qsfp_dd_pm(self): expected = "Ethernet200: Transceiver performance monitoring not applicable" assert result_lines == expected + def test_qsfp_status(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["status"], ["Ethernet4"]) + assert result.exit_code == 0 + assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_qsfp_status_output + + def test_qsfp_dd_status(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["status"], ["Ethernet44"]) + assert result.exit_code == 0 + assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_qsfp_dd_status_output + + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["status"], ["Ethernet200"]) + result_lines = result.output.strip('\n') + expected = "Ethernet200: Transceiver status info not applicable" + assert result_lines == expected + @classmethod def teardown_class(cls): print("TEARDOWN") @@ -636,6 +959,14 @@ def test_qsfp_dd_pm_with_ns(self): expected = "Ethernet0: Transceiver performance monitoring not applicable" assert result_lines == expected + @patch.object(show_module.interfaces.click.Choice, 'convert', MagicMock(return_value='asic0')) + def test_qsfp_dd_status_with_ns(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["status"], ['Ethernet0', '-n', 'asic0']) + result_lines = result.output.strip('\n') + expected = "Ethernet0: Transceiver status info not applicable" + assert result_lines == expected + @patch.object(show_module.interfaces.click.Choice, 'convert', MagicMock(return_value='asic1')) def test_cmis_sfp_info_with_ns(self): runner = CliRunner() @@ -674,6 +1005,12 @@ def test_qsfp_dd_pm_all(self): assert result.exit_code == 0 assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_qsfp_dd_pm_all_output + def test_qsfp_dd_status_all(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["status"]) + assert result.exit_code == 0 + assert "\n".join([ l.rstrip() for l in result.output.split('\n')]) == test_qsfp_dd_status_all_output + @classmethod def teardown_class(cls): print("TEARDOWN") diff --git a/tests/sfputil_test.py b/tests/sfputil_test.py index bbdd1245..c57a5dc6 100644 --- a/tests/sfputil_test.py +++ b/tests/sfputil_test.py @@ -288,7 +288,8 @@ def test_error_status_from_db(self): ['Ethernet16', 'Unplugged'], ['Ethernet28', 'Unplugged'], ['Ethernet36', 'Unknown'], - ['Ethernet40', 'Unplugged']] + ['Ethernet40', 'Unplugged'], + ['Ethernet44', 'OK']] output = sfputil.fetch_error_status_from_state_db(None, db.db) assert output == expected_output @@ -306,7 +307,8 @@ def test_error_status_from_db_RJ45(self): ['Ethernet16', 'N/A'], ['Ethernet28', 'N/A'], ['Ethernet36', 'N/A'], - ['Ethernet40', 'N/A']] + ['Ethernet40', 'N/A'], + ['Ethernet44', 'N/A']] output = sfputil.fetch_error_status_from_state_db(None, db.db) assert output == expected_output @@ -393,6 +395,7 @@ def test_show_error_status(self): Ethernet28 Unplugged Ethernet36 Unknown Ethernet40 Unplugged +Ethernet44 OK """ assert result.output == expected_output diff --git a/utilities_common/sfp_helper.py b/utilities_common/sfp_helper.py index a5bf7839..09a96ca2 100644 --- a/utilities_common/sfp_helper.py +++ b/utilities_common/sfp_helper.py @@ -43,6 +43,305 @@ CMIS_DATA_MAP = {**QSFP_DATA_MAP, **QSFP_CMIS_DELTA_DATA_MAP} +# Common fileds for all types: +# For non-CMIS, only first 1 or 4 lanes are applicable. +# For CMIS, all 8 lanes are applicable. +QSFP_STATUS_MAP = { + 'txfault1': 'Tx fault flag on media lane 1', + 'txfault2': 'Tx fault flag on media lane 2', + 'txfault3': 'Tx fault flag on media lane 3', + 'txfault4': 'Tx fault flag on media lane 4', + 'txfault5': 'Tx fault flag on media lane 5', + 'txfault6': 'Tx fault flag on media lane 6', + 'txfault7': 'Tx fault flag on media lane 7', + 'txfault8': 'Tx fault flag on media lane 8', + 'rxlos1': 'Rx loss of signal flag on media lane 1', + 'rxlos2': 'Rx loss of signal flag on media lane 2', + 'rxlos3': 'Rx loss of signal flag on media lane 3', + 'rxlos4': 'Rx loss of signal flag on media lane 4', + 'rxlos5': 'Rx loss of signal flag on media lane 5', + 'rxlos6': 'Rx loss of signal flag on media lane 6', + 'rxlos7': 'Rx loss of signal flag on media lane 7', + 'rxlos8': 'Rx loss of signal flag on media lane 8', + 'tx1disable': 'TX disable status on lane 1', + 'tx2disable': 'TX disable status on lane 2', + 'tx3disable': 'TX disable status on lane 3', + 'tx4disable': 'TX disable status on lane 4', + 'tx5disable': 'TX disable status on lane 5', + 'tx6disable': 'TX disable status on lane 6', + 'tx7disable': 'TX disable status on lane 7', + 'tx8disable': 'TX disable status on lane 8', + 'tx_disabled_channel': 'Disabled TX channels' +} + +# CMIS specific fields (excluding C-CMIS specific): +CMIS_STATUS_MAP = { + 'module_state': 'Current module state', + 'module_fault_cause': 'Reason of entering the module fault state', + 'datapath_firmware_fault': 'Datapath firmware fault', + 'module_firmware_fault': 'Module firmware fault', + 'module_state_changed': 'Module state changed', + 'DP1State': 'Data path state indicator on host lane 1', + 'DP2State': 'Data path state indicator on host lane 2', + 'DP3State': 'Data path state indicator on host lane 3', + 'DP4State': 'Data path state indicator on host lane 4', + 'DP5State': 'Data path state indicator on host lane 5', + 'DP6State': 'Data path state indicator on host lane 6', + 'DP7State': 'Data path state indicator on host lane 7', + 'DP8State': 'Data path state indicator on host lane 8', + 'txoutput_status1': 'Tx output status on media lane 1', + 'txoutput_status2': 'Tx output status on media lane 2', + 'txoutput_status3': 'Tx output status on media lane 3', + 'txoutput_status4': 'Tx output status on media lane 4', + 'txoutput_status5': 'Tx output status on media lane 5', + 'txoutput_status6': 'Tx output status on media lane 6', + 'txoutput_status7': 'Tx output status on media lane 7', + 'txoutput_status8': 'Tx output status on media lane 8', + 'rxoutput_status_hostlane1': 'Rx output status on host lane 1', + 'rxoutput_status_hostlane2': 'Rx output status on host lane 2', + 'rxoutput_status_hostlane3': 'Rx output status on host lane 3', + 'rxoutput_status_hostlane4': 'Rx output status on host lane 4', + 'rxoutput_status_hostlane5': 'Rx output status on host lane 5', + 'rxoutput_status_hostlane6': 'Rx output status on host lane 6', + 'rxoutput_status_hostlane7': 'Rx output status on host lane 7', + 'rxoutput_status_hostlane8': 'Rx output status on host lane 8', + 'txlos_hostlane1': 'Tx loss of signal flag on host lane 1', + 'txlos_hostlane2': 'Tx loss of signal flag on host lane 2', + 'txlos_hostlane3': 'Tx loss of signal flag on host lane 3', + 'txlos_hostlane4': 'Tx loss of signal flag on host lane 4', + 'txlos_hostlane5': 'Tx loss of signal flag on host lane 5', + 'txlos_hostlane6': 'Tx loss of signal flag on host lane 6', + 'txlos_hostlane7': 'Tx loss of signal flag on host lane 7', + 'txlos_hostlane8': 'Tx loss of signal flag on host lane 8', + 'txcdrlol_hostlane1': 'Tx clock and data recovery loss of lock on host lane 1', + 'txcdrlol_hostlane2': 'Tx clock and data recovery loss of lock on host lane 2', + 'txcdrlol_hostlane3': 'Tx clock and data recovery loss of lock on host lane 3', + 'txcdrlol_hostlane4': 'Tx clock and data recovery loss of lock on host lane 4', + 'txcdrlol_hostlane5': 'Tx clock and data recovery loss of lock on host lane 5', + 'txcdrlol_hostlane6': 'Tx clock and data recovery loss of lock on host lane 6', + 'txcdrlol_hostlane7': 'Tx clock and data recovery loss of lock on host lane 7', + 'txcdrlol_hostlane8': 'Tx clock and data recovery loss of lock on host lane 8', + 'rxcdrlol1': 'Rx clock and data recovery loss of lock on media lane 1', + 'rxcdrlol2': 'Rx clock and data recovery loss of lock on media lane 2', + 'rxcdrlol3': 'Rx clock and data recovery loss of lock on media lane 3', + 'rxcdrlol4': 'Rx clock and data recovery loss of lock on media lane 4', + 'rxcdrlol5': 'Rx clock and data recovery loss of lock on media lane 5', + 'rxcdrlol6': 'Rx clock and data recovery loss of lock on media lane 6', + 'rxcdrlol7': 'Rx clock and data recovery loss of lock on media lane 7', + 'rxcdrlol8': 'Rx clock and data recovery loss of lock on media lane 8', + 'config_state_hostlane1': 'Configuration status for the data path of host line 1', + 'config_state_hostlane2': 'Configuration status for the data path of host line 2', + 'config_state_hostlane3': 'Configuration status for the data path of host line 3', + 'config_state_hostlane4': 'Configuration status for the data path of host line 4', + 'config_state_hostlane5': 'Configuration status for the data path of host line 5', + 'config_state_hostlane6': 'Configuration status for the data path of host line 6', + 'config_state_hostlane7': 'Configuration status for the data path of host line 7', + 'config_state_hostlane8': 'Configuration status for the data path of host line 8', + 'dpinit_pending_hostlane1': 'Data path configuration updated on host lane 1', + 'dpinit_pending_hostlane2': 'Data path configuration updated on host lane 2', + 'dpinit_pending_hostlane3': 'Data path configuration updated on host lane 3', + 'dpinit_pending_hostlane4': 'Data path configuration updated on host lane 4', + 'dpinit_pending_hostlane5': 'Data path configuration updated on host lane 5', + 'dpinit_pending_hostlane6': 'Data path configuration updated on host lane 6', + 'dpinit_pending_hostlane7': 'Data path configuration updated on host lane 7', + 'dpinit_pending_hostlane8': 'Data path configuration updated on host lane 8', + 'temphighalarm_flag': 'Temperature high alarm flag', + 'temphighwarning_flag': 'Temperature high warning flag', + 'templowwarning_flag': 'Temperature low warning flag', + 'templowalarm_flag': 'Temperature low alarm flag', + 'vcchighalarm_flag': 'Vcc high alarm flag', + 'vcchighwarning_flag': 'Vcc high warning flag', + 'vcclowwarning_flag': 'Vcc low warning flag', + 'vcclowalarm_flag': 'Vcc low alarm flag', + 'txpowerhighalarm_flag1': 'Tx power high alarm flag on lane 1', + 'txpowerhighalarm_flag2': 'Tx power high alarm flag on lane 2', + 'txpowerhighalarm_flag3': 'Tx power high alarm flag on lane 3', + 'txpowerhighalarm_flag4': 'Tx power high alarm flag on lane 4', + 'txpowerhighalarm_flag5': 'Tx power high alarm flag on lane 5', + 'txpowerhighalarm_flag6': 'Tx power high alarm flag on lane 6', + 'txpowerhighalarm_flag7': 'Tx power high alarm flag on lane 7', + 'txpowerhighalarm_flag8': 'Tx power high alarm flag on lane 8', + 'txpowerhighwarning_flag1': 'Tx power high warning flag on lane 1', + 'txpowerhighwarning_flag2': 'Tx power high warning flag on lane 2', + 'txpowerhighwarning_flag3': 'Tx power high warning flag on lane 3', + 'txpowerhighwarning_flag4': 'Tx power high warning flag on lane 4', + 'txpowerhighwarning_flag5': 'Tx power high warning flag on lane 5', + 'txpowerhighwarning_flag6': 'Tx power high warning flag on lane 6', + 'txpowerhighwarning_flag7': 'Tx power high warning flag on lane 7', + 'txpowerhighwarning_flag8': 'Tx power high warning flag on lane 8', + 'txpowerlowwarning_flag1': 'Tx power low warning flag on lane 1', + 'txpowerlowwarning_flag2': 'Tx power low warning flag on lane 2', + 'txpowerlowwarning_flag3': 'Tx power low warning flag on lane 3', + 'txpowerlowwarning_flag4': 'Tx power low warning flag on lane 4', + 'txpowerlowwarning_flag5': 'Tx power low warning flag on lane 5', + 'txpowerlowwarning_flag6': 'Tx power low warning flag on lane 6', + 'txpowerlowwarning_flag7': 'Tx power low warning flag on lane 7', + 'txpowerlowwarning_flag8': 'Tx power low warning flag on lane 8', + 'txpowerlowalarm_flag1': 'Tx power low alarm flag on lane 1', + 'txpowerlowalarm_flag2': 'Tx power low alarm flag on lane 2', + 'txpowerlowalarm_flag3': 'Tx power low alarm flag on lane 3', + 'txpowerlowalarm_flag4': 'Tx power low alarm flag on lane 4', + 'txpowerlowalarm_flag5': 'Tx power low alarm flag on lane 5', + 'txpowerlowalarm_flag6': 'Tx power low alarm flag on lane 6', + 'txpowerlowalarm_flag7': 'Tx power low alarm flag on lane 7', + 'txpowerlowalarm_flag8': 'Tx power low alarm flag on lane 8', + 'rxpowerhighalarm_flag1': 'Rx power high alarm flag on lane 1', + 'rxpowerhighalarm_flag2': 'Rx power high alarm flag on lane 2', + 'rxpowerhighalarm_flag3': 'Rx power high alarm flag on lane 3', + 'rxpowerhighalarm_flag4': 'Rx power high alarm flag on lane 4', + 'rxpowerhighalarm_flag5': 'Rx power high alarm flag on lane 5', + 'rxpowerhighalarm_flag6': 'Rx power high alarm flag on lane 6', + 'rxpowerhighalarm_flag7': 'Rx power high alarm flag on lane 7', + 'rxpowerhighalarm_flag8': 'Rx power high alarm flag on lane 8', + 'rxpowerhighwarning_flag1': 'Rx power high warning flag on lane 1', + 'rxpowerhighwarning_flag2': 'Rx power high warning flag on lane 2', + 'rxpowerhighwarning_flag3': 'Rx power high warning flag on lane 3', + 'rxpowerhighwarning_flag4': 'Rx power high warning flag on lane 4', + 'rxpowerhighwarning_flag5': 'Rx power high warning flag on lane 5', + 'rxpowerhighwarning_flag6': 'Rx power high warning flag on lane 6', + 'rxpowerhighwarning_flag7': 'Rx power high warning flag on lane 7', + 'rxpowerhighwarning_flag8': 'Rx power high warning flag on lane 8', + 'rxpowerlowwarning_flag1': 'Rx power low warning flag on lane 1', + 'rxpowerlowwarning_flag2': 'Rx power low warning flag on lane 2', + 'rxpowerlowwarning_flag3': 'Rx power low warning flag on lane 3', + 'rxpowerlowwarning_flag4': 'Rx power low warning flag on lane 4', + 'rxpowerlowwarning_flag5': 'Rx power low warning flag on lane 5', + 'rxpowerlowwarning_flag6': 'Rx power low warning flag on lane 6', + 'rxpowerlowwarning_flag7': 'Rx power low warning flag on lane 7', + 'rxpowerlowwarning_flag8': 'Rx power low warning flag on lane 8', + 'rxpowerlowalarm_flag1': 'Rx power low alarm flag on lane 1', + 'rxpowerlowalarm_flag2': 'Rx power low alarm flag on lane 2', + 'rxpowerlowalarm_flag3': 'Rx power low alarm flag on lane 3', + 'rxpowerlowalarm_flag4': 'Rx power low alarm flag on lane 4', + 'rxpowerlowalarm_flag5': 'Rx power low alarm flag on lane 5', + 'rxpowerlowalarm_flag6': 'Rx power low alarm flag on lane 6', + 'rxpowerlowalarm_flag7': 'Rx power low alarm flag on lane 7', + 'rxpowerlowalarm_flag8': 'Rx power low alarm flag on lane 8', + 'txbiashighalarm_flag1': 'Tx bias high alarm flag on lane 1', + 'txbiashighalarm_flag2': 'Tx bias high alarm flag on lane 2', + 'txbiashighalarm_flag3': 'Tx bias high alarm flag on lane 3', + 'txbiashighalarm_flag4': 'Tx bias high alarm flag on lane 4', + 'txbiashighalarm_flag5': 'Tx bias high alarm flag on lane 5', + 'txbiashighalarm_flag6': 'Tx bias high alarm flag on lane 6', + 'txbiashighalarm_flag7': 'Tx bias high alarm flag on lane 7', + 'txbiashighalarm_flag8': 'Tx bias high alarm flag on lane 8', + 'txbiashighwarning_flag1': 'Tx bias high warning flag on lane 1', + 'txbiashighwarning_flag2': 'Tx bias high warning flag on lane 2', + 'txbiashighwarning_flag3': 'Tx bias high warning flag on lane 3', + 'txbiashighwarning_flag4': 'Tx bias high warning flag on lane 4', + 'txbiashighwarning_flag5': 'Tx bias high warning flag on lane 5', + 'txbiashighwarning_flag6': 'Tx bias high warning flag on lane 6', + 'txbiashighwarning_flag7': 'Tx bias high warning flag on lane 7', + 'txbiashighwarning_flag8': 'Tx bias high warning flag on lane 8', + 'txbiaslowwarning_flag1': 'Tx bias low warning flag on lane 1', + 'txbiaslowwarning_flag2': 'Tx bias low warning flag on lane 2', + 'txbiaslowwarning_flag3': 'Tx bias low warning flag on lane 3', + 'txbiaslowwarning_flag4': 'Tx bias low warning flag on lane 4', + 'txbiaslowwarning_flag5': 'Tx bias low warning flag on lane 5', + 'txbiaslowwarning_flag6': 'Tx bias low warning flag on lane 6', + 'txbiaslowwarning_flag7': 'Tx bias low warning flag on lane 7', + 'txbiaslowwarning_flag8': 'Tx bias low warning flag on lane 8', + 'txbiaslowalarm_flag1': 'Tx bias low alarm flag on lane 1', + 'txbiaslowalarm_flag2': 'Tx bias low alarm flag on lane 2', + 'txbiaslowalarm_flag3': 'Tx bias low alarm flag on lane 3', + 'txbiaslowalarm_flag4': 'Tx bias low alarm flag on lane 4', + 'txbiaslowalarm_flag5': 'Tx bias low alarm flag on lane 5', + 'txbiaslowalarm_flag6': 'Tx bias low alarm flag on lane 6', + 'txbiaslowalarm_flag7': 'Tx bias low alarm flag on lane 7', + 'txbiaslowalarm_flag8': 'Tx bias low alarm flag on lane 8', + 'lasertemphighalarm_flag': 'Laser temperature high alarm flag', + 'lasertemphighwarning_flag': 'Laser temperature high warning flag', + 'lasertemplowwarning_flag': 'Laser temperature low warning flag', + 'lasertemplowalarm_flag': 'Laser temperature low alarm flag', + 'prefecberhighalarm_flag': 'Prefec ber high alarm flag', + 'prefecberhighwarning_flag': 'Prefec ber high warning flag', + 'prefecberlowwarning_flag': 'Prefec ber low warning flag', + 'prefecberlowalarm_flag': 'Prefec ber low alarm flag', + 'postfecberhighalarm_flag': 'Postfec ber high alarm flag', + 'postfecberhighwarning_flag': 'Postfec ber high warning flag', + 'postfecberlowwarning_flag': 'Postfec ber low warning flag', + 'postfecberlowalarm_flag': 'Postfec ber low alarm flag' +} + +# C-CMIS specific fields: +CCMIS_STATUS_MAP = { + 'tuning_in_progress': 'Tuning in progress status', + 'wavelength_unlock_status': 'Laser unlocked status', + 'target_output_power_oor': 'Target output power out of range flag', + 'fine_tuning_oor': 'Fine tuning out of range flag', + 'tuning_not_accepted': 'Tuning not accepted flag', + 'invalid_channel_num': 'Invalid channel number flag', + 'tuning_complete': 'Tuning complete flag', + 'biasxihighalarm_flag': 'Bias xi high alarm flag', + 'biasxihighwarning_flag': 'Bias xi high warning flag', + 'biasxilowwarning_flag': 'Bias xi low warning flag', + 'biasxilowalarm_flag': 'Bias xi low alarm flag', + 'biasxqhighalarm_flag': 'Bias xq high alarm flag', + 'biasxqhighwarning_flag': 'Bias xq high warning flag', + 'biasxqlowwarning_flag': 'Bias xq low warning flag', + 'biasxqlowalarm_flag': 'Bias xq low alarm flag', + 'biasxphighalarm_flag': 'Bias xp high alarm flag', + 'biasxphighwarning_flag': 'Bias xp high warning flag', + 'biasxplowwarning_flag': 'Bias xp low warning flag', + 'biasxplowalarm_flag': 'Bias xp low alarm flag', + 'biasyihighalarm_flag': 'Bias yi high alarm flag', + 'biasyihighwarning_flag': 'Bias yi high warning flag', + 'biasyilowwarning_flag': 'Bias yi low warning flag', + 'biasyilowalarm_flag': 'Bias yi low alarm flag', + 'biasyqhighalarm_flag': 'Bias yq high alarm flag', + 'biasyqhighwarning_flag': 'Bias yq high warning flag', + 'biasyqlowwarning_flag': 'Bias yq low warning flag', + 'biasyqlowalarm_flag': 'Bias yq low alarm flag', + 'biasyphighalarm_flag': 'Bias yp high alarm flag', + 'biasyphighwarning_flag': 'Bias yp high warning flag', + 'biasyplowwarning_flag': 'Bias yp low warning flag', + 'biasyplowalarm_flag': 'Bias yp low alarm flag', + 'cdshorthighalarm_flag': 'CD short high alarm flag', + 'cdshorthighwarning_flag': 'CD short high warning flag', + 'cdshortlowwarning_flag': 'CD short low warning flag', + 'cdshortlowalarm_flag': 'CD short low alarm flag', + 'cdlonghighalarm_flag': 'CD long high alarm flag', + 'cdlonghighwarning_flag': 'CD long high warning flag', + 'cdlonglowwarning_flag': 'CD long low warning flag', + 'cdlonglowalarm_flag': 'CD long low alarm flag', + 'dgdhighalarm_flag': 'DGD high alarm flag', + 'dgdhighwarning_flag': 'DGD high warning flag', + 'dgdlowwarning_flag': 'DGD low warning flag', + 'dgdlowalarm_flag': 'DGD low alarm flag', + 'sopmdhighalarm_flag': 'SOPMD high alarm flag', + 'sopmdhighwarning_flag': 'SOPMD high warning flag', + 'sopmdlowwarning_flag': 'SOPMD low warning flag', + 'sopmdlowalarm_flag': 'SOPMD low alarm flag', + 'pdlhighalarm_flag': 'PDL high alarm flag', + 'pdlhighwarning_flag': 'PDL high warning flag', + 'pdllowwarning_flag': 'PDL low warning flag', + 'pdllowalarm_flag': 'PDL low alarm flag', + 'osnrhighalarm_flag': 'OSNR high alarm flag', + 'osnrhighwarning_flag': 'OSNR high warning flag', + 'osnrlowwarning_flag': 'OSNR low warning flag', + 'osnrlowalarm_flag': 'OSNR low alarm flag', + 'esnrhighalarm_flag': 'ESNR high alarm flag', + 'esnrhighwarning_flag': 'ESNR high warning flag', + 'esnrlowwarning_flag': 'ESNR low warning flag', + 'esnrlowalarm_flag': 'ESNR low alarm flag', + 'cfohighalarm_flag': 'CFO high alarm flag', + 'cfohighwarning_flag': 'CFO high warning flag', + 'cfolowwarning_flag': 'CFO low warning flag', + 'cfolowalarm_flag': 'CFO low alarm flag', + 'txcurrpowerhighalarm_flag': 'Txcurrpower high alarm flag', + 'txcurrpowerhighwarning_flag': 'Txcurrpower high warning flag', + 'txcurrpowerlowwarning_flag': 'Txcurrpower low warning flag', + 'txcurrpowerlowalarm_flag': 'Txcurrpower low alarm flag', + 'rxtotpowerhighalarm_flag': 'Rxtotpower high alarm flag', + 'rxtotpowerhighwarning_flag': 'Rxtotpower high warning flag', + 'rxtotpowerlowwarning_flag': 'Rxtotpower low warning flag', + 'rxtotpowerlowalarm_flag': 'Rxtotpower low alarm flag', + 'rxsigpowerhighalarm_flag': 'Rxsigpower high alarm flag', + 'rxsigpowerhighwarning_flag': 'Rxsigpower high warning flag', + 'rxsigpowerlowwarning_flag': 'Rxsigpower low warning flag', + 'rxsigpowerlowalarm_flag': 'Rxsigpower low alarm flag' +} + def covert_application_advertisement_to_output_string(indent, sfp_info_dict): key = 'application_advertisement' field_name = '{}{}: '.format(indent, QSFP_DATA_MAP[key]) From 359dfc0c6edbf03c32be4be4e2893407b8d38747 Mon Sep 17 00:00:00 2001 From: Yevhen Fastiuk Date: Fri, 2 Jun 2023 23:15:34 +0300 Subject: [PATCH 166/312] [Clock] Implement clock CLI (#2793) * Implement clock CLI * Add tests for clock CLI * Update Command-Reference.md Updated relevant new CLI commands for clock mgmt config clock timezone config clock date show clock timezones --------- Signed-off-by: Yevhen Fastiuk Co-authored-by: Meir Renford --- config/main.py | 63 ++++++++++++++++++++++++++++++++++++++++ doc/Command-Reference.md | 56 +++++++++++++++++++++++++++++++++++ show/main.py | 27 ++++++++++++++--- tests/config_test.py | 62 +++++++++++++++++++++++++++++++++++++++ tests/show_test.py | 9 ++++++ 5 files changed, 213 insertions(+), 4 deletions(-) diff --git a/config/main.py b/config/main.py index aa207455..5f06f59e 100644 --- a/config/main.py +++ b/config/main.py @@ -1,6 +1,7 @@ #!/usr/sbin/env python import click +import datetime import ipaddress import json import jsonpatch @@ -7103,5 +7104,67 @@ def del_subinterface(ctx, subinterface_name): except JsonPatchConflict as e: ctx.fail("{} is invalid vlan subinterface. Error: {}".format(subinterface_name, e)) + +# +# 'clock' group ('config clock ...') +# +@config.group() +def clock(): + """Configuring system clock""" + pass + + +def get_tzs(ctx, args, incomplete): + ret = clicommon.run_command('timedatectl list-timezones', + display_cmd=False, ignore_error=False, + return_cmd=True) + if len(ret) == 0: + return [] + + lst = ret[0].split('\n') + return [k for k in lst if incomplete in k] + + +@clock.command() +@click.argument('timezone', metavar='', required=True, + autocompletion=get_tzs) +def timezone(timezone): + """Set system timezone""" + + if timezone not in get_tzs(None, None, ''): + click.echo(f'Timezone {timezone} does not conform format') + sys.exit(1) + + config_db = ConfigDBConnector() + config_db.connect() + config_db.mod_entry(swsscommon.CFG_DEVICE_METADATA_TABLE_NAME, 'localhost', + {'timezone': timezone}) + + +@clock.command() +@click.argument('date', metavar='', required=True) +@click.argument('time', metavar='', required=True) +def date(date, time): + """Set system date and time""" + valid = True + try: + datetime.datetime.strptime(date, '%Y-%m-%d') + except ValueError: + click.echo(f'Date {date} does not conform format YYYY-MM-DD') + valid = False + + try: + datetime.datetime.strptime(time, '%H:%M:%S') + except ValueError: + click.echo(f'Time {time} does not conform format HH:MM:SS') + valid = False + + if not valid: + sys.exit(1) + + date_time = f'{date} {time}' + clicommon.run_command(['timedatectl', 'set-time', date_time]) + + if __name__ == '__main__': config() diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 89ac722b..316e8cb8 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -543,6 +543,62 @@ This command displays the current date and time configured on the system Mon Mar 25 20:25:16 UTC 2019 ``` +**config clock date** + +This command will set the date-time of the systetm, given strings with date-time format + +- Usage: + ``` + config clock date + ``` + +- Parameters: + - _date_: valid date in format YYYY-MM-DD + - _time_: valid time in format HH:MM:SS + +- Example: + ``` + admin@sonic:~$ config clock date 2023-04-10 13:54:36 + ``` + +**config clock timezone** + +This command will set the timezone of the systetm, given a string of a valid timezone. + +- Usage: + ``` + config clock timezone + ``` + +- Parameters: + - _timezone_: valid timezone to be configured + + +- Example: + ``` + admin@sonic:~$ config clock timezone Africa/Accra + + +**show clock timezones** + +This command Will display list of all valid timezones to be configured. + +- Usage: + ``` + show clock timezones + ``` + +- Example: + ``` + root@host:~$ show clock timezones + Africa/Abidjan + Africa/Accra + Africa/Addis_Ababa + Africa/Algiers + Africa/Asmara + ... + ``` + **show boot** This command displays the current OS image, the image to be loaded on next reboot, and lists all the available images installed on the device diff --git a/show/main.py b/show/main.py index d79777eb..21b284b9 100755 --- a/show/main.py +++ b/show/main.py @@ -1771,13 +1771,32 @@ def uptime(verbose): cmd = ['uptime', '-p'] run_command(cmd, display_cmd=verbose) -@cli.command() + +# +# 'clock' command group ("show clock ...") +# +@cli.group('clock', invoke_without_command=True) +@click.pass_context @click.option('--verbose', is_flag=True, help="Enable verbose output") -def clock(verbose): +def clock(ctx, verbose): """Show date and time""" - cmd = ["date"] - run_command(cmd, display_cmd=verbose) + # If invoking subcomand, no need to do anything + if ctx.invoked_subcommand is not None: + return + run_command(['date'], display_cmd=verbose) + + +@clock.command() +@click.option('--verbose', is_flag=True, help="Enable verbose output") +def timezones(verbose): + """List of available timezones""" + run_command(['timedatectl', 'list-timezones'], display_cmd=verbose) + + +# +# 'system-memory' command ("show system-memory") +# @cli.command('system-memory') @click.option('--verbose', is_flag=True, help="Enable verbose output") def system_memory(verbose): diff --git a/tests/config_test.py b/tests/config_test.py index b5be1717..57180010 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -2363,3 +2363,65 @@ def test_fec(self, mock_run_command): def teardown(self): print("TEARDOWN") + +class TestConfigClock(object): + timezone_test_val = ['Europe/Kyiv', 'Asia/Israel', 'UTC'] + + @classmethod + def setup_class(cls): + print('SETUP') + import config.main + importlib.reload(config.main) + + @patch('config.main.get_tzs', mock.Mock(return_value=timezone_test_val)) + def test_timezone_good(self): + runner = CliRunner() + obj = {'db': Db().cfgdb} + + result = runner.invoke( + config.config.commands['clock'].commands['timezone'], + ['UTC'], obj=obj) + + assert result.exit_code == 0 + + @patch('config.main.get_tzs', mock.Mock(return_value=timezone_test_val)) + def test_timezone_bad(self): + runner = CliRunner() + obj = {'db': Db().cfgdb} + + result = runner.invoke( + config.config.commands['clock'].commands['timezone'], + ['Atlantis'], obj=obj) + + assert result.exit_code != 0 + assert 'Timezone Atlantis does not conform format' in result.output + + @patch('utilities_common.cli.run_command', + mock.MagicMock(side_effect=mock_run_command_side_effect)) + def test_date_good(self): + runner = CliRunner() + obj = {'db': Db().cfgdb} + + result = runner.invoke( + config.config.commands['clock'].commands['date'], + ['2020-10-10', '10:20:30'], obj=obj) + + assert result.exit_code == 0 + + @patch('utilities_common.cli.run_command', + mock.MagicMock(side_effect=mock_run_command_side_effect)) + def test_date_bad(self): + runner = CliRunner() + obj = {'db': Db().cfgdb} + + result = runner.invoke( + config.config.commands['clock'].commands['date'], + ['20-10-10', '60:70:80'], obj=obj) + + assert result.exit_code != 0 + assert 'Date 20-10-10 does not conform format' in result.output + assert 'Time 60:70:80 does not conform format' in result.output + + @classmethod + def teardown_class(cls): + print('TEARDOWN') diff --git a/tests/show_test.py b/tests/show_test.py index b7f6a9ba..21af60d8 100644 --- a/tests/show_test.py +++ b/tests/show_test.py @@ -926,6 +926,15 @@ def test_show_clock(self, mock_run_command): assert result.exit_code == 0 mock_run_command.assert_called_with(['date'], display_cmd=True) + @patch('show.main.run_command') + def test_show_timezone(self, mock_run_command): + runner = CliRunner() + result = runner.invoke( + show.cli.commands['clock'].commands['timezones'], ['--verbose']) + assert result.exit_code == 0 + mock_run_command.assert_called_once_with( + ['timedatectl', 'list-timezones'], display_cmd=True) + @patch('show.main.run_command') def test_show_system_memory(self, mock_run_command): runner = CliRunner() From 72ca48481645edc3437d7899e2fa754d16eff02e Mon Sep 17 00:00:00 2001 From: Saikrishna Arcot Date: Fri, 2 Jun 2023 13:33:58 -0700 Subject: [PATCH 167/312] Add CLI configuration options for teamd retry count feature (#2642) * Add CLI configuration options for teamd retry count feature Add a SONiC CLI to more easily configure the retry count for port channels. This effectively acts like a wrapper around the underlying teamdctl command. Also add a python script that'll be installed into /usr/local/bin/teamd_increase_retry_count.py that will detect if the peer device likely supports this teamd feature (based on LLDP neighbor info) and increases the teamd retry count to 5 in preparation for warm upgrade. This script requires sudo to run. This is tied to sonic-net/sonic-buildimage#13453. Signed-off-by: Saikrishna Arcot * Add test for error case from teamd when it's not running Signed-off-by: Saikrishna Arcot * Fix up test cases Signed-off-by: Saikrishna Arcot * Add some error handling if teamdctl doesn't exist Signed-off-by: Saikrishna Arcot * Add probe functionality and sending current LACPDU packet functionality Signed-off-by: Saikrishna Arcot * Check to see if the retry count feature is enabled before doing a get or set Signed-off-by: Saikrishna Arcot * Add option to only send probe packets or only change retry count Signed-off-by: Saikrishna Arcot * Call the teamd retry count script if doing a warm-reboot Signed-off-by: Saikrishna Arcot * Fix pycheck errors, and disable scapy's IPv6 and verbose mode Scapy's IPv6 support appears to have caused some issues with older versions of scapy, which may be present on older SONiC images. Signed-off-by: Saikrishna Arcot * Make teamd retry count support optional Don't fail warm reboot if teamd retry count support doesn't happen to be present. Also use fastfast-reboot for Mellanox devices. Signed-off-by: Saikrishna Arcot * Address review comments, and restructure code to increase code coverage Signed-off-by: Saikrishna Arcot * Address some review comments Signed-off-by: Saikrishna Arcot * Replace tabs with spaces Signed-off-by: Saikrishna Arcot * Verify that expected keys are present in the data returned from teamdctl Also update a failure message in the warm-reboot script if the retry count script fails. Signed-off-by: Saikrishna Arcot * Fix TimeoutExpired undefined error Signed-off-by: Saikrishna Arcot * Add ability to mock subprocess calls (at a limited level) Signed-off-by: Saikrishna Arcot * Return an actual subprocess object, and add a test for checking timeout Signed-off-by: Saikrishna Arcot * Change variable syntax Signed-off-by: Saikrishna Arcot * Fix set being accessed with an index Signed-off-by: Saikrishna Arcot * Add option to warm-reboot script to control if teamd retry count is required or not Signed-off-by: Saikrishna Arcot * Move the teamd retry count check to before orchagent This is so that in the case of the teamd retry count check failing, there's fewer changes that happen on the system (it'll fail faster). Signed-off-by: Saikrishna Arcot * Move retry count script start to be prior to point-of-no-return This doesn't need to be after the point-of-no-return, since this will detach and be sending LACPDUs on its own. Signed-off-by: Saikrishna Arcot * Set executable bit Signed-off-by: Saikrishna Arcot * Address PR comments Signed-off-by: Saikrishna Arcot * Change to case-insensitive string contains check Signed-off-by: Saikrishna Arcot * Make sure the global abort variable is used Signed-off-by: Saikrishna Arcot --------- Signed-off-by: Saikrishna Arcot --- config/main.py | 87 +++++++ scripts/fast-reboot | 32 ++- scripts/teamd_increase_retry_count.py | 322 ++++++++++++++++++++++++++ setup.py | 1 + tests/portchannel_test.py | 175 ++++++++++++++ 5 files changed, 616 insertions(+), 1 deletion(-) create mode 100755 scripts/teamd_increase_retry_count.py diff --git a/config/main.py b/config/main.py index 5f06f59e..aab334e7 100644 --- a/config/main.py +++ b/config/main.py @@ -2281,6 +2281,93 @@ def del_portchannel_member(ctx, portchannel_name, port_name): except JsonPatchConflict: ctx.fail("Invalid or nonexistent portchannel or interface. Please ensure existence of portchannel member.") +@portchannel.group(cls=clicommon.AbbreviationGroup, name='retry-count') +@click.pass_context +def portchannel_retry_count(ctx): + pass + +def check_if_retry_count_is_enabled(ctx, portchannel_name): + try: + proc = subprocess.Popen(["teamdctl", portchannel_name, "state", "item", "get", "runner.enable_retry_count_feature"], text=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + output, err = proc.communicate(timeout=10) + if proc.returncode != 0: + ctx.fail("Unable to determine if the retry count feature is enabled or not: {}".format(err.strip())) + return output.strip() == "true" + except subprocess.TimeoutExpired as e: + proc.kill() + proc.communicate() + ctx.fail("Unable to determine if the retry count feature is enabled or not: {}".format(e)) + +@portchannel_retry_count.command('get') +@click.argument('portchannel_name', metavar='', required=True) +@click.pass_context +def get_portchannel_retry_count(ctx, portchannel_name): + """Get the retry count for a port channel""" + db = ValidatedConfigDBConnector(ctx.obj['db']) + + # Don't proceed if the port channel name is not valid + if is_portchannel_name_valid(portchannel_name) is False: + ctx.fail("{} is invalid!, name should have prefix '{}' and suffix '{}'" + .format(portchannel_name, CFG_PORTCHANNEL_PREFIX, CFG_PORTCHANNEL_NO)) + + # Don't proceed if the port channel does not exist + if is_portchannel_present_in_db(db, portchannel_name) is False: + ctx.fail("{} is not present.".format(portchannel_name)) + + try: + is_retry_count_enabled = check_if_retry_count_is_enabled(ctx, portchannel_name) + if not is_retry_count_enabled: + ctx.fail("Retry count feature is not enabled!") + + proc = subprocess.Popen(["teamdctl", portchannel_name, "state", "item", "get", "runner.retry_count"], text=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + output, err = proc.communicate(timeout=10) + if proc.returncode != 0: + ctx.fail("Unable to get the retry count: {}".format(err.strip())) + click.echo(output.strip()) + except FileNotFoundError: + ctx.fail("Unable to get the retry count: teamdctl could not be run") + except subprocess.TimeoutExpired as e: + proc.kill() + proc.communicate() + ctx.fail("Unable to get the retry count: {}".format(e)) + except Exception as e: + ctx.fail("Unable to get the retry count: {}".format(e)) + +@portchannel_retry_count.command('set') +@click.argument('portchannel_name', metavar='', required=True) +@click.argument('retry_count', metavar='', required=True, type=click.IntRange(3,10)) +@click.pass_context +def set_portchannel_retry_count(ctx, portchannel_name, retry_count): + """Set the retry count for a port channel""" + db = ValidatedConfigDBConnector(ctx.obj['db']) + + # Don't proceed if the port channel name is not valid + if is_portchannel_name_valid(portchannel_name) is False: + ctx.fail("{} is invalid!, name should have prefix '{}' and suffix '{}'" + .format(portchannel_name, CFG_PORTCHANNEL_PREFIX, CFG_PORTCHANNEL_NO)) + + # Don't proceed if the port channel does not exist + if is_portchannel_present_in_db(db, portchannel_name) is False: + ctx.fail("{} is not present.".format(portchannel_name)) + + try: + is_retry_count_enabled = check_if_retry_count_is_enabled(ctx, portchannel_name) + if not is_retry_count_enabled: + ctx.fail("Retry count feature is not enabled!") + + proc = subprocess.Popen(["teamdctl", portchannel_name, "state", "item", "set", "runner.retry_count", str(retry_count)], text=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + output, err = proc.communicate(timeout=10) + if proc.returncode != 0: + ctx.fail("Unable to set the retry count: {}".format(err.strip())) + except FileNotFoundError: + ctx.fail("Unable to set the retry count: teamdctl could not be run") + except subprocess.TimeoutExpired as e: + proc.kill() + proc.communicate() + ctx.fail("Unable to set the retry count: {}".format(e)) + except Exception as e: + ctx.fail("Unable to set the retry count: {}".format(e)) + # # 'mirror_session' group ('config mirror_session ...') diff --git a/scripts/fast-reboot b/scripts/fast-reboot index 99a63104..917449b4 100755 --- a/scripts/fast-reboot +++ b/scripts/fast-reboot @@ -31,6 +31,7 @@ TAG_LATEST=yes DETACH=no LOG_PATH="/var/log/${REBOOT_TYPE}.txt" UIMAGE_HDR_SIZE=64 +REQUIRE_TEAMD_RETRY_COUNT=no # Require 100M available on the hard drive for warm reboot temp files, # Size is in 1K blocks: @@ -48,6 +49,7 @@ EXIT_DB_INTEGRITY_FAILURE=15 EXIT_NO_CONTROL_PLANE_ASSISTANT=20 EXIT_SONIC_INSTALLER_VERIFY_REBOOT=21 EXIT_PLATFORM_FW_AU_FAILURE=22 +EXIT_TEAMD_RETRY_COUNT_FAILURE=23 function error() { @@ -79,13 +81,15 @@ function showHelpAndExit() echo " -t : Don't tag the current kube images as latest" echo " -D : detached mode - closing terminal will not cause stopping reboot" echo " -u : include ssd-upgrader-part in boot options" + echo " -n : don't require peer devices to be running SONiC with retry count feature [default]" + echo " -N : require peer devices to be running SONiC with retry count feature" exit "${EXIT_SUCCESS}" } function parseOptions() { - while getopts "vfidh?rkxc:sDu" opt; do #TODO "t" is missing + while getopts "vfidh?rkxc:sDunN" opt; do #TODO "t" is missing case ${opt} in h|\? ) showHelpAndExit @@ -126,6 +130,12 @@ function parseOptions() u ) SSD_FW_UPDATE_BOOT_OPTION=yes ;; + n ) + REQUIRE_TEAMD_RETRY_COUNT=no + ;; + N ) + REQUIRE_TEAMD_RETRY_COUNT=yes + ;; esac done } @@ -636,6 +646,22 @@ init_warm_reboot_states setup_control_plane_assistant +TEAMD_INCREASE_RETRY_COUNT=0 +if [[ "${REBOOT_TYPE}" = "warm-reboot" || "${REBOOT_TYPE}" = "fastfast-reboot" ]]; then + TEAMD_RETRY_COUNT_PROBE_RC=0 + /usr/local/bin/teamd_increase_retry_count.py --probe-only || TEAMD_RETRY_COUNT_PROBE_RC=$? + if [[ ${TEAMD_RETRY_COUNT_PROBE_RC} -ne 0 ]]; then + if [[ "${REQUIRE_TEAMD_RETRY_COUNT}" = "yes" ]]; then + error "Could not confirm that all neighbor devices are running SONiC with the retry count feature" + exit "${EXIT_TEAMD_RETRY_COUNT_FAILURE}" + else + debug "Warning: Retry count feature support unknown for one or more neighbor devices; assuming that it's not available" + fi + else + TEAMD_INCREASE_RETRY_COUNT=1 + fi +fi + if [[ "$REBOOT_TYPE" = "warm-reboot" || "$REBOOT_TYPE" = "fastfast-reboot" || "$REBOOT_TYPE" = "fast-reboot" ]]; then # Freeze orchagent for warm restart # Ask orchagent_restart_check to try freeze 5 times with interval of 2 seconds, @@ -664,6 +690,10 @@ if [[ "$REBOOT_TYPE" = "fast-reboot" ]]; then fi fi +if [[ ( "${REBOOT_TYPE}" = "warm-reboot" || "${REBOOT_TYPE}" = "fastfast-reboot" ) && "${TEAMD_INCREASE_RETRY_COUNT}" -eq 1 ]]; then + /usr/local/bin/teamd_increase_retry_count.py +fi + # We are fully committed to reboot from this point on because critical # service will go down and we cannot recover from it. set +e diff --git a/scripts/teamd_increase_retry_count.py b/scripts/teamd_increase_retry_count.py new file mode 100755 index 00000000..34238b3f --- /dev/null +++ b/scripts/teamd_increase_retry_count.py @@ -0,0 +1,322 @@ +#!/usr/bin/python3 + +import subprocess +import json +from scapy.config import conf +conf.ipv6_enabled = False +conf.verb = False +from scapy.fields import ByteField, ShortField, MACField, XStrFixedLenField, ConditionalField +from scapy.layers.l2 import Ether +from scapy.sendrecv import sendp, sniff +from scapy.packet import Packet, split_layers, bind_layers +import scapy.contrib.lacp +import os +import re +import sys +from threading import Thread, Event +import time +import argparse +import signal + +from sonic_py_common import logger +from swsscommon.swsscommon import DBConnector, Table + +log = logger.Logger() +revertTeamdRetryCountChanges = False +DEFAULT_RETRY_COUNT = 3 +EXTENDED_RETRY_COUNT = 5 +SLOW_PROTOCOL_MAC_ADDRESS = "01:80:c2:00:00:02" +LACP_ETHERTYPE = 0x8809 + +class LACPRetryCount(Packet): + name = "LACPRetryCount" + fields_desc = [ + ByteField("version", 0xf1), + ByteField("actor_type", 1), + ByteField("actor_length", 20), + ShortField("actor_system_priority", 0), + MACField("actor_system", None), + ShortField("actor_key", 0), + ShortField("actor_port_priority", 0), + ShortField("actor_port_number", 0), + ByteField("actor_state", 0), + XStrFixedLenField("actor_reserved", "", 3), + ByteField("partner_type", 2), + ByteField("partner_length", 20), + ShortField("partner_system_priority", 0), + MACField("partner_system", None), + ShortField("partner_key", 0), + ShortField("partner_port_priority", 0), + ShortField("partner_port_number", 0), + ByteField("partner_state", 0), + XStrFixedLenField("partner_reserved", "", 3), + ByteField("collector_type", 3), + ByteField("collector_length", 16), + ShortField("collector_max_delay", 0), + XStrFixedLenField("collector_reserved", "", 12), + ConditionalField(ByteField("actor_retry_count_type", 0x80), lambda pkt:pkt.version == 0xf1), + ConditionalField(ByteField("actor_retry_count_length", 4), lambda pkt:pkt.version == 0xf1), + ConditionalField(ByteField("actor_retry_count", 0), lambda pkt:pkt.version == 0xf1), + ConditionalField(XStrFixedLenField("actor_retry_count_reserved", "", 1), lambda pkt:pkt.version == 0xf1), + ConditionalField(ByteField("partner_retry_count_type", 0x81), lambda pkt:pkt.version == 0xf1), + ConditionalField(ByteField("partner_retry_count_length", 4), lambda pkt:pkt.version == 0xf1), + ConditionalField(ByteField("partner_retry_count", 0), lambda pkt:pkt.version == 0xf1), + ConditionalField(XStrFixedLenField("partner_retry_count_reserved", "", 1), lambda pkt:pkt.version == 0xf1), + ByteField("terminator_type", 0), + ByteField("terminator_length", 0), + ConditionalField(XStrFixedLenField("reserved", "", 42), lambda pkt:pkt.version == 0xf1), + ConditionalField(XStrFixedLenField("reserved", "", 50), lambda pkt:pkt.version != 0xf1), + ] + +split_layers(scapy.contrib.lacp.SlowProtocol, scapy.contrib.lacp.LACP, subtype=1) +bind_layers(scapy.contrib.lacp.SlowProtocol, LACPRetryCount, subtype=1) + +class LacpPacketListenThread(Thread): + def __init__(self, port, targetMacAddress, sendReadyEvent): + Thread.__init__(self) + self.port = port + self.targetMacAddress = targetMacAddress + self.sendReadyEvent = sendReadyEvent + self.detectedNewVersion = False + + def lacpPacketCallback(self, pkt): + if pkt["LACPRetryCount"].version == 0xf1: + self.detectedNewVersion = True + return self.detectedNewVersion + + def run(self): + sniff(stop_filter=self.lacpPacketCallback, iface=self.port, filter="ether proto {} and ether src {}".format(LACP_ETHERTYPE, self.targetMacAddress), + store=0, timeout=30, started_callback=self.sendReadyEvent.set) + +def getPortChannels(): + applDb = DBConnector("APPL_DB", 0) + configDb = DBConnector("CONFIG_DB", 0) + portChannelTable = Table(applDb, "LAG_TABLE") + portChannels = portChannelTable.getKeys() + activePortChannels = [] + for portChannel in portChannels: + state = portChannelTable.get(portChannel) + if not state or not state[0]: + continue + isAdminUp = False + isOperUp = False + for key, value in state[1]: + if key == "admin_status": + isAdminUp = value == "up" + elif key == "oper_status": + isOperUp = value == "up" + if isAdminUp and isOperUp: + activePortChannels.append(portChannel) + + # Now find out which BGP sessions on these port channels are admin up. This needs to go + # through a circuitious sequence of steps. + # + # 1. Get the local IPv4/IPv6 address assigned to each port channel. + # 2. Find out which BGP session (in CONFIG_DB) has a local_addr attribute of the local + # IPv4/IPv6 address. + # 3. Check the admin_status field of that table in CONFIG_DB. + portChannelData = {} + portChannelInterfaceTable = Table(configDb, "PORTCHANNEL_INTERFACE") + portChannelInterfaces = portChannelInterfaceTable.getKeys() + for portChannelInterface in portChannelInterfaces: + if "|" not in portChannelInterface: + continue + portChannel = portChannelInterface.split("|")[0] + ipAddress = portChannelInterface.split("|")[1].split("/")[0].lower() + if portChannel not in activePortChannels: + continue + portChannelData[ipAddress] = { + "portChannel": portChannel, + "adminUp": False + } + + bgpTable = Table(configDb, "BGP_NEIGHBOR") + bgpNeighbors = bgpTable.getKeys() + for bgpNeighbor in bgpNeighbors: + neighborData = bgpTable.get(bgpNeighbor) + if not neighborData[0]: + continue + localAddr = None + isAdminUp = False + for key, value in neighborData[1]: + if key == "local_addr": + if value not in portChannelData: + break + localAddr = value.lower() + elif key == "admin_status": + isAdminUp = value == "up" + if not localAddr: + continue + portChannelData[localAddr]["adminUp"] = isAdminUp + + return set([portChannelData[x]["portChannel"] for x in portChannelData.keys() if portChannelData[x]["adminUp"]]) + +def getPortChannelConfig(portChannelName): + (processStdout, _) = getCmdOutput(["teamdctl", portChannelName, "state", "dump"]) + return json.loads(processStdout) + +def getLldpNeighbors(): + (processStdout, _) = getCmdOutput(["lldpctl", "-f", "json"]) + return json.loads(processStdout) + +def craftLacpPacket(portChannelConfig, portName, isResetPacket=False, newVersion=True): + portConfig = portChannelConfig["ports"][portName] + actorConfig = portConfig["runner"]["actor_lacpdu_info"] + partnerConfig = portConfig["runner"]["partner_lacpdu_info"] + l2 = Ether(dst=SLOW_PROTOCOL_MAC_ADDRESS, src=portConfig["ifinfo"]["dev_addr"], type=LACP_ETHERTYPE) + l3 = scapy.contrib.lacp.SlowProtocol(subtype=0x01) + l4 = LACPRetryCount() + if newVersion: + l4.version = 0xf1 + else: + l4.version = 0x1 + l4.actor_system_priority = actorConfig["system_priority"] + l4.actor_system = actorConfig["system"] + l4.actor_key = actorConfig["key"] + l4.actor_port_priority = actorConfig["port_priority"] + l4.actor_port_number = actorConfig["port"] + l4.actor_state = actorConfig["state"] + l4.partner_system_priority = partnerConfig["system_priority"] + l4.partner_system = partnerConfig["system"] + l4.partner_key = partnerConfig["key"] + l4.partner_port_priority = partnerConfig["port_priority"] + l4.partner_port_number = partnerConfig["port"] + l4.partner_state = partnerConfig["state"] + if newVersion: + l4.actor_retry_count = EXTENDED_RETRY_COUNT if not isResetPacket else DEFAULT_RETRY_COUNT + l4.partner_retry_count = DEFAULT_RETRY_COUNT + packet = l2 / l3 / l4 + return packet + +def sendLacpPackets(packets, revertPackets): + global revertTeamdRetryCountChanges + while not revertTeamdRetryCountChanges: + for port, packet in packets: + sendp(packet, iface=port) + time.sleep(15) + if revertTeamdRetryCountChanges: + for port, packet in revertPackets: + sendp(packet, iface=port) + +def abortTeamdChanges(signum, frame): + global revertTeamdRetryCountChanges + log.log_info("Got signal {}, reverting teamd retry count change".format(signum)) + revertTeamdRetryCountChanges = True + +def getCmdOutput(cmd): + proc = subprocess.Popen(cmd, stdout=subprocess.PIPE) + return proc.communicate()[0], proc.returncode + +def main(probeOnly=False): + if os.geteuid() != 0: + log.log_error("Root privileges required for this operation", also_print_to_console=True) + sys.exit(1) + portChannels = getPortChannels() + if not portChannels: + log.log_info("No port channels retrieved; exiting") + return + failedPortChannels = [] + if probeOnly: + for portChannel in portChannels: + config = getPortChannelConfig(portChannel) + lldpInfo = getLldpNeighbors() + portChannelChecked = False + for portName in config["ports"].keys(): + if not "runner" in config["ports"][portName] or \ + not "partner_lacpdu_info" in config["ports"][portName]["runner"] or \ + not "actor_lacpdu_info" in config["ports"][portName]["runner"]: + log.log_error("ERROR: Missing information from teamd about {}; skipping".format(portName)) + failedPortChannels.append(portChannel) + break + + interfaceLldpInfo = [k for k in lldpInfo["lldp"]["interface"] if portName in k] + if not interfaceLldpInfo: + log.log_warning("WARNING: No LLDP info available for {}; skipping".format(portName)) + continue + interfaceLldpInfo = interfaceLldpInfo[0][portName] + peerName = list(interfaceLldpInfo["chassis"].keys())[0] + peerInfo = interfaceLldpInfo["chassis"][peerName] + if "descr" not in peerInfo: + log.log_warning("WARNING: No peer description available via LLDP for {}; skipping".format(portName)) + continue + portChannelChecked = True + if "sonic" not in peerInfo["descr"].lower(): + log.log_warning("WARNING: Peer device is not a SONiC device; skipping") + failedPortChannels.append(portChannel) + break + + sendReadyEvent = Event() + + # Start sniffing thread + lacpThread = LacpPacketListenThread(portName, config["ports"][portName]["runner"]["partner_lacpdu_info"]["system"], sendReadyEvent) + lacpThread.start() + + # Generate and send probe packet after sniffing has started + probePacket = craftLacpPacket(config, portName) + sendReadyEvent.wait() + sendp(probePacket, iface=portName) + + lacpThread.join() + + resetProbePacket = craftLacpPacket(config, portName, newVersion=False) + # 2-second sleep for making sure all processing is done on the peer device + time.sleep(2) + sendp(resetProbePacket, iface=portName, count=2, inter=0.5) + + if lacpThread.detectedNewVersion: + log.log_notice("SUCCESS: Peer device {} is running version of SONiC with teamd retry count feature".format(peerName), also_print_to_console=True) + break + else: + log.log_warning("WARNING: Peer device {} is running version of SONiC without teamd retry count feature".format(peerName), also_print_to_console=True) + failedPortChannels.append(portChannel) + break + if not portChannelChecked: + log.log_warning("WARNING: No information available about peer device on port channel {}".format(portChannel), also_print_to_console=True) + failedPortChannels.append(portChannel) + if failedPortChannels: + log.log_error("ERROR: There are port channels/peer devices that failed the probe: {}".format(failedPortChannels), also_print_to_console=True) + sys.exit(2) + else: + global revertTeamdRetryCountChanges + signal.signal(signal.SIGUSR1, abortTeamdChanges) + signal.signal(signal.SIGTERM, abortTeamdChanges) + (_, rc) = getCmdOutput(["config", "portchannel", "retry-count", "get", list(portChannels)[0]]) + if rc == 0: + # Currently running on SONiC version with teamd retry count feature + for portChannel in portChannels: + getCmdOutput(["config", "portchannel", "retry-count", "set", portChannel, str(EXTENDED_RETRY_COUNT)]) + pid = os.fork() + if pid == 0: + # Running in a new process, detached from parent process + while not revertTeamdRetryCountChanges: + time.sleep(15) + if revertTeamdRetryCountChanges: + for portChannel in portChannels: + getCmdOutput(["config", "portchannel", "retry-count", "set", portChannel, str(DEFAULT_RETRY_COUNT)]) + else: + lacpPackets = [] + revertLacpPackets = [] + for portChannel in portChannels: + config = getPortChannelConfig(portChannel) + for portName in config["ports"].keys(): + if not "runner" in config["ports"][portName] or \ + not "partner_lacpdu_info" in config["ports"][portName]["runner"] or \ + not "actor_lacpdu_info" in config["ports"][portName]["runner"]: + log.log_error("ERROR: Missing information from teamd about {}; skipping".format(portName)) + break + + packet = craftLacpPacket(config, portName) + lacpPackets.append((portName, packet)) + packet = craftLacpPacket(config, portName, isResetPacket=True) + revertLacpPackets.append((portName, packet)) + pid = os.fork() + if pid == 0: + # Running in a new process, detached from parent process + sendLacpPackets(lacpPackets, revertLacpPackets) + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description='Teamd retry count changer.') + parser.add_argument('--probe-only', action='store_true', + help='Probe the peer devices only, to verify that they support the teamd retry count feature') + args = parser.parse_args() + main(args.probe_only) diff --git a/setup.py b/setup.py index ea0e949a..bc69337b 100644 --- a/setup.py +++ b/setup.py @@ -165,6 +165,7 @@ 'scripts/soft-reboot', 'scripts/storyteller', 'scripts/syseeprom-to-json', + 'scripts/teamd_increase_retry_count.py', 'scripts/tempershow', 'scripts/tunnelstat', 'scripts/update_json.py', diff --git a/tests/portchannel_test.py b/tests/portchannel_test.py index 4d6eb33e..9b8bf568 100644 --- a/tests/portchannel_test.py +++ b/tests/portchannel_test.py @@ -1,5 +1,6 @@ import os import pytest +import subprocess import traceback import mock @@ -13,6 +14,7 @@ from mock import patch class TestPortChannel(object): + @classmethod def setup_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "1" @@ -268,6 +270,179 @@ def test_delete_portchannel_which_is_member_of_a_vlan(self): assert result.exit_code != 0 assert "PortChannel1001 has vlan Vlan4000 configured, remove vlan membership to proceed" in result.output + def test_get_invalid_portchannel_retry_count(self): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + # get the retry count of a portchannel with an invalid portchannel name + result = runner.invoke(config.config.commands["portchannel"].commands["retry-count"].commands["get"], ["Ethernet48"], obj=obj) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Error: Ethernet48 is invalid!" in result.output + + def test_set_invalid_portchannel_retry_count(self): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + # set the retry count of a portchannel with an invalid portchannel name + result = runner.invoke(config.config.commands["portchannel"].commands["retry-count"].commands["set"], ["Ethernet48", "5"], obj=obj) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Error: Ethernet48 is invalid!" in result.output + + def test_get_non_existing_portchannel_retry_count(self): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + # get the retry count of a portchannel with portchannel not yet created + result = runner.invoke(config.config.commands["portchannel"].commands["retry-count"].commands["get"], ["PortChannel0005"], obj=obj) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Error: PortChannel0005 is not present." in result.output + + def test_set_non_existing_portchannel_retry_count(self): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + # set the retry count of a portchannel with portchannel not yet created + result = runner.invoke(config.config.commands["portchannel"].commands["retry-count"].commands["set"], ["PortChannel0005", "5"], obj=obj) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Error: PortChannel0005 is not present." in result.output + + originalSubprocessPopen = subprocess.Popen + + class SubprocessMock: + def __init__(self, *args, **kwargs): + self.retryCountEnabled = True + self.timeout = False + + def __call__(self, *args, **kwargs): + stdoutResult = "" + stderrResult = "" + rc = 0 + + commandArgs = args[0] + if commandArgs[0] != "teamdctl": + return TestPortChannel.originalSubprocessPopen(*args, **kwargs) + if self.timeout: + return TestPortChannel.originalSubprocessPopen(["sleep", "90"], **kwargs) + if commandArgs[5] == "runner.enable_retry_count_feature": + return TestPortChannel.originalSubprocessPopen(["echo", "true" if self.retryCountEnabled else "false"], **kwargs) + elif commandArgs[5] == "runner.retry_count": + if commandArgs[4] == "get": + return TestPortChannel.originalSubprocessPopen(["echo", "3"], **kwargs) + elif commandArgs[4] == "set": + return TestPortChannel.originalSubprocessPopen(["echo", ""], **kwargs) + else: + return TestPortChannel.originalSubprocessPopen(["false"], **kwargs) + else: + return TestPortChannel.originalSubprocessPopen(["false"], **kwargs) + + @patch("subprocess.Popen", new_callable=SubprocessMock) + def test_get_portchannel_retry_count_disabled(self, subprocessMock): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + subprocessMock.retryCountEnabled = False + + # get the retry count of a portchannel, but when the retry count feature is disabled + result = runner.invoke(config.config.commands["portchannel"].commands["retry-count"].commands["get"], ["PortChannel1001"], obj=obj) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Retry count feature is not enabled!" in result.output + + @patch("subprocess.Popen", new_callable=SubprocessMock) + def test_set_portchannel_retry_count_disabled(self, subprocessMock): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + subprocessMock.retryCountEnabled = False + + # set the retry count of a portchannel, but when the retry count feature is disabled + result = runner.invoke(config.config.commands["portchannel"].commands["retry-count"].commands["set"], ["PortChannel1001", "5"], obj=obj) + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Retry count feature is not enabled!" in result.output + + @patch("subprocess.Popen", new_callable=SubprocessMock) + def test_get_portchannel_retry_count_timeout(self, subprocessMock): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + subprocessMock.retryCountEnabled = True + subprocessMock.timeout = True + + # get the retry count of a portchannel + result = runner.invoke(config.config.commands["portchannel"].commands["retry-count"].commands["get"], ["PortChannel1001"], obj=obj) + # expect a timeout failure + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Unable to get the retry count" in result.output + + @patch("subprocess.Popen", new_callable=SubprocessMock) + def test_set_portchannel_retry_count_timeout(self, subprocessMock): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + subprocessMock.retryCountEnabled = True + subprocessMock.timeout = True + + # set the retry count of a portchannel + result = runner.invoke(config.config.commands["portchannel"].commands["retry-count"].commands["set"], ["PortChannel1001", "5"], obj=obj) + # expect a timeout failure + print(result.exit_code) + print(result.output) + assert result.exit_code != 0 + assert "Unable to set the retry count" in result.output + + @patch("subprocess.Popen", new_callable=SubprocessMock) + def test_get_portchannel_retry_count(self, subprocessMock): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + subprocessMock.retryCountEnabled = True + + # get the retry count of a portchannel + result = runner.invoke(config.config.commands["portchannel"].commands["retry-count"].commands["get"], ["PortChannel1001"], obj=obj) + # output has been mocked + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output.strip() == "3" + + @patch("subprocess.Popen", new_callable=SubprocessMock) + def test_set_portchannel_retry_count(self, subprocessMock): + runner = CliRunner() + db = Db() + obj = {'db':db.cfgdb} + + subprocessMock.retryCountEnabled = True + + # set the retry count of a portchannel + result = runner.invoke(config.config.commands["portchannel"].commands["retry-count"].commands["set"], ["PortChannel1001", "5"], obj=obj) + # output has been mocked + print(result.exit_code) + print(result.output) + assert result.exit_code == 0 + assert result.output == "" + @classmethod def teardown_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "0" From 5c9b21771a733944ff1dc8058250185fef62f2f7 Mon Sep 17 00:00:00 2001 From: Junchao-Mellanox <57339448+Junchao-Mellanox@users.noreply.github.com> Date: Mon, 5 Jun 2023 15:20:49 +0800 Subject: [PATCH 168/312] Fix issue: out of range sflow polling interval is accepted and stored in config_db (#2847) #### What I did Fixed issue: out of range sflow polling interval is accepted and stored in config_db. Reproduce step: ``` 1. Enable sflow feature: config feature state sflow enabled 2. Enable sflow itself: config sflow enable 3. Configure out of range polling interval: config sflow polling-interval 1. Error message is shown as expected 4. Save config: config save -y 5. Check "SFLOW" section inside config_db ``` As the interval is invalid, the expected behavior is that the interval is not saved to redis. But we see the invalid value was written to redis. #### How I did it Change `click.echo` to `ctx.fail` #### How to verify it 1. Manual test 2. Add a check in existing unit test case to cover the change --- config/main.py | 2 +- tests/sflow_test.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/config/main.py b/config/main.py index aab334e7..450b9fc5 100644 --- a/config/main.py +++ b/config/main.py @@ -6631,7 +6631,7 @@ def polling_int(ctx, interval): """Set polling-interval for counter-sampling (0 to disable)""" if ADHOC_VALIDATION: if interval not in range(5, 301) and interval != 0: - click.echo("Polling interval must be between 5-300 (0 to disable)") + ctx.fail("Polling interval must be between 5-300 (0 to disable)") config_db = ValidatedConfigDBConnector(ctx.obj['db']) sflow_tbl = config_db.get_table('SFLOW') diff --git a/tests/sflow_test.py b/tests/sflow_test.py index da03ff39..ecd62265 100644 --- a/tests/sflow_test.py +++ b/tests/sflow_test.py @@ -237,6 +237,7 @@ def test_config_sflow_polling_interval(self): result = runner.invoke(config.config.commands["sflow"]. commands["polling-interval"], ["500"], obj=obj) print(result.exit_code, result.output) + assert result.exit_code != 0 assert "Polling interval must be between 5-300" in result.output # set to 20 From 7d803aedf68f8deb7dc989c90cbf3bae235910b2 Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Mon, 5 Jun 2023 17:51:27 +0800 Subject: [PATCH 169/312] Revert "[config]config reload should generate sysinfo if missing (#2778)" (#2865) This reverts commit 88ffb16721d6f867f71100bb14564120a456e07b. --- config/main.py | 13 ---------- tests/config_test.py | 61 +------------------------------------------- 2 files changed, 1 insertion(+), 73 deletions(-) diff --git a/config/main.py b/config/main.py index 450b9fc5..d49d8345 100644 --- a/config/main.py +++ b/config/main.py @@ -1536,19 +1536,6 @@ 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"] diff --git a/tests/config_test.py b/tests/config_test.py index 57180010..332bfe14 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -464,66 +464,9 @@ def setup_class(cls): print("SETUP") import config.main importlib.reload(config.main) - - 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 + open(cls.dummy_cfg_file, 'w').close() 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) @@ -543,7 +486,6 @@ 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) @@ -563,7 +505,6 @@ 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 1c1e22d3b6123f5635f3ea5f525ed7f1c1d97926 Mon Sep 17 00:00:00 2001 From: "Ravi [Marvell]" Date: Tue, 6 Jun 2023 02:33:45 +0530 Subject: [PATCH 170/312] [acl-loader] Support for ACL table type L3V4V6 (#2794) Support a new ACL table type called L3V4V6. This table supports both v4 and v6 Match types. Add unit tests for this new ACL table type. HLD: sonic-net/SONiC#1267 --- acl_loader/main.py | 57 +++++++-- doc/Command-Reference.md | 2 +- tests/acl_input/acl1.json | 84 ++++++++++++++ .../illegal_v4v6_rule_no_ethertype.json | 109 ++++++++++++++++++ tests/acl_loader_test.py | 44 ++++++- tests/aclshow_test.py | 2 +- tests/mock_tables/config_db.json | 11 ++ 7 files changed, 299 insertions(+), 10 deletions(-) create mode 100644 tests/acl_input/illegal_v4v6_rule_no_ethertype.json diff --git a/acl_loader/main.py b/acl_loader/main.py index ff5d22f0..72618674 100644 --- a/acl_loader/main.py +++ b/acl_loader/main.py @@ -94,7 +94,7 @@ class AclLoader(object): "ETHERTYPE_LLDP": 0x88CC, "ETHERTYPE_VLAN": 0x8100, "ETHERTYPE_ROCE": 0x8915, - "ETHERTYPE_ARP": 0x0806, + "ETHERTYPE_ARP": 0x0806, "ETHERTYPE_IPV4": 0x0800, "ETHERTYPE_IPV6": 0x86DD, "ETHERTYPE_MPLS": 0x8847 @@ -261,7 +261,7 @@ def read_acl_object_status_info(self, cfg_db_table_name, state_db_table_name): else: state_db_info = self.statedb.get_all(self.statedb.STATE_DB, "{}|{}".format(state_db_table_name, state_db_key)) status[key]['status'] = state_db_info.get("status", "N/A") if state_db_info else "N/A" - + return status def get_sessions_db_info(self): @@ -346,6 +346,14 @@ def is_table_l3v6(self, tname): """ return self.tables_db_info[tname]["type"].upper() == "L3V6" + def is_table_l3v4v6(self, tname): + """ + Check if ACL table type is L3V4V6 + :param tname: ACL table name + :return: True if table type is L3V4V6 else False + """ + return self.tables_db_info[tname]["type"].upper() == "L3V4V6" + def is_table_l3(self, tname): """ Check if ACL table type is L3 @@ -509,6 +517,17 @@ def convert_ip(self, table_name, rule_idx, rule): # "IP_ICMP" we need to pick the correct protocol number for the IP version if rule.ip.config.protocol == "IP_ICMP" and self.is_table_ipv6(table_name): rule_props["IP_PROTOCOL"] = self.ip_protocol_map["IP_ICMPV6"] + elif rule.ip.config.protocol == "IP_ICMP" and self.is_table_l3v4v6(table_name): + # For L3V4V6 tables, both ICMP and ICMPv6 are supported, + # so find the IP_PROTOCOL using the ether_type. + try: + ether_type = rule.l2.config.ethertype + except Exception as e: + ether_type = None + if rule.l2.config.ethertype == "ETHERTYPE_IPV6": + rule_props["IP_PROTOCOL"] = self.ip_protocol_map["IP_ICMPV6"] + else: + rule_props["IP_PROTOCOL"] = self.ip_protocol_map[rule.ip.config.protocol] else: rule_props["IP_PROTOCOL"] = self.ip_protocol_map[rule.ip.config.protocol] else: @@ -544,9 +563,20 @@ def convert_ip(self, table_name, rule_idx, rule): def convert_icmp(self, table_name, rule_idx, rule): rule_props = {} - is_table_v6 = self.is_table_ipv6(table_name) - type_key = "ICMPV6_TYPE" if is_table_v6 else "ICMP_TYPE" - code_key = "ICMPV6_CODE" if is_table_v6 else "ICMP_CODE" + is_rule_v6 = False + if self.is_table_ipv6(table_name): + is_rule_v6 = True + elif self.is_table_l3v4v6(table_name): + # get the IP version type using Ether-Type. + try: + ether_type = rule.l2.config.ethertype + if ether_type == "ETHERTYPE_IPV6": + is_rule_v6 = True + except Exception as e: + pass + + type_key = "ICMPV6_TYPE" if is_rule_v6 else "ICMP_TYPE" + code_key = "ICMPV6_CODE" if is_rule_v6 else "ICMP_CODE" if rule.icmp.config.type != "" and rule.icmp.config.type != "null": icmp_type = rule.icmp.config.type @@ -651,7 +681,18 @@ def convert_rule_to_db_schema(self, table_name, rule): rule_props["PRIORITY"] = str(self.max_priority - rule_idx) # setup default ip type match to dataplane acl (could be overriden by rule later) - if self.is_table_l3v6(table_name): + if self.is_table_l3v4v6(table_name): + # ETHERTYPE must be passed and it should be one of IPv4 or IPv6 + try: + ether_type = rule.l2.config.ethertype + except Exception as e: + raise AclLoaderException("l2:ethertype must be provided for rule #{} in table:{} of type L3V4V6".format(rule_idx, table_name)) + if ether_type not in ["ETHERTYPE_IPV4", "ETHERTYPE_IPV6"]: + # Ether type must be v4 or v6 to match IP fields, L4 (TCP/UDP) fields or ICMP fields + if rule.ip or rule.transport: + raise AclLoaderException("ethertype={} is neither ETHERTYPE_IPV4 nor ETHERTYPE_IPV6 for IP rule #{} in table:{} type L3V4V6".format(rule.l2.config.ethertype, rule_idx, table_name)) + rule_props["ETHER_TYPE"] = str(self.ethertype_map[ether_type]) + elif self.is_table_l3v6(table_name): rule_props["IP_TYPE"] = "IPV6ANY" # ETHERTYPE is not supported for DATAACLV6 elif self.is_table_l3(table_name): rule_props["ETHER_TYPE"] = str(self.ethertype_map["ETHERTYPE_IPV4"]) @@ -682,6 +723,8 @@ def deny_rule(self, table_name): rule_props["IP_TYPE"] = "IPV6ANY" # ETHERTYPE is not supported for DATAACLV6 elif self.is_table_l3(table_name): rule_props["ETHER_TYPE"] = str(self.ethertype_map["ETHERTYPE_IPV4"]) + elif self.is_table_l3v4v6(table_name): + rule_props["IP_TYPE"] = "IP" # Drop both v4 and v6 packets else: return {} # Don't add default deny rule if table is not [L3, L3V6] return rule_data @@ -835,7 +878,7 @@ def show_table(self, table_name): for key, val in self.get_tables_db_info().items(): if table_name and key != table_name: continue - + stage = val.get("stage", Stage.INGRESS).lower() # Get ACL table status from STATE_DB if key in self.acl_table_status: diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 316e8cb8..3d6f4bad 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -1861,7 +1861,7 @@ This command is used to create new ACL tables. - Parameters: - table_name: The name of the ACL table to create. - - table_type: The type of ACL table to create (e.g. "L3", "L3V6", "MIRROR") + - table_type: The type of ACL table to create (e.g. "L3", "L3V6", "L3V4V6", "MIRROR") - description: A description of the table for the user. (default is the table_name) - ports: A comma-separated list of ports/interfaces to add to the table. The behavior is as follows: - Physical ports will be bound as physical ports diff --git a/tests/acl_input/acl1.json b/tests/acl_input/acl1.json index 177d7cb2..4bcd8049 100644 --- a/tests/acl_input/acl1.json +++ b/tests/acl_input/acl1.json @@ -316,6 +316,90 @@ "config": { "name": "bmc_acl_northbound_v6" } + }, + "DATAACLV4V6": { + "acl-entries": { + "acl-entry": { + "1": { + "config": { + "sequence-id": 1 + }, + "actions": { + "config": { + "forwarding-action": "ACCEPT" + } + }, + "l2": { + "config": { + "vlan-id": "369", + "ethertype": "ETHERTYPE_IPV4" + } + }, + "ip": { + "config": { + "protocol": "IP_TCP", + "source-ip-address": "20.0.0.2/32", + "destination-ip-address": "30.0.0.3/32" + } + } + }, + "2": { + "config": { + "sequence-id": 2 + }, + "actions": { + "config": { + "forwarding-action": "ACCEPT" + } + }, + "l2": { + "config": { + "ethertype": "ETHERTYPE_IPV6" + } + }, + "ip": { + "config": { + "protocol": "IP_ICMP", + "source-ip-address": "::1/128", + "destination-ip-address": "::1/128" + } + }, + "icmp": { + "config": { + "type": "1", + "code": "0" + } + } + }, + "3": { + "config": { + "sequence-id": 3 + }, + "actions": { + "config": { + "forwarding-action": "ACCEPT" + } + }, + "l2": { + "config": { + "ethertype": "ETHERTYPE_IPV6" + } + }, + "ip": { + "config": { + "protocol": "IP_ICMP", + "source-ip-address": "::1/128", + "destination-ip-address": "::1/128" + } + }, + "icmp": { + "config": { + "type": "128" + } + } + } + } + } } } } diff --git a/tests/acl_input/illegal_v4v6_rule_no_ethertype.json b/tests/acl_input/illegal_v4v6_rule_no_ethertype.json new file mode 100644 index 00000000..acf30773 --- /dev/null +++ b/tests/acl_input/illegal_v4v6_rule_no_ethertype.json @@ -0,0 +1,109 @@ +{ + "acl": { + "acl-sets": { + "acl-set": { + "DATAACLV4V6": { + "acl-entries": { + "acl-entry": { + "1": { + "config": { + "sequence-id": 1 + }, + "actions": { + "config": { + "forwarding-action": "ACCEPT" + } + }, + "ip": { + "config": { + "protocol": "IP_TCP", + "source-ip-address": "20.0.0.2/32", + "destination-ip-address": "30.0.0.3/32" + } + } + }, + "2": { + "config": { + "sequence-id": 2 + }, + "actions": { + "config": { + "forwarding-action": "ACCEPT" + } + }, + "l2": { + "config": { + "ethertype": "ETHERTYPE_IPV6" + } + }, + "ip": { + "config": { + "protocol": "IP_ICMP", + "source-ip-address": "::1/128", + "destination-ip-address": "::1/128" + } + }, + "icmp": { + "config": { + "type": "1", + "code": "0" + } + } + }, + "3": { + "config": { + "sequence-id": 3 + }, + "actions": { + "config": { + "forwarding-action": "ACCEPT" + } + }, + "ip": { + "config": { + "protocol": "IP_ICMP", + "source-ip-address": "::1/128", + "destination-ip-address": "::1/128" + } + }, + "icmp": { + "config": { + "type": "1" + } + } + }, + "4": { + "config": { + "sequence-id": 2 + }, + "actions": { + "config": { + "forwarding-action": "ACCEPT" + } + }, + "l2": { + "config": { + "ethertype": "ETHERTYPE_IPV4" + } + }, + "ip": { + "config": { + "protocol": "IP_ICMP", + "source-ip-address": "20.0.0.2/32", + "destination-ip-address": "30.0.0.3/32" + } + }, + "icmp": { + "config": { + "type": "1", + "code": "0" + } + } + } + } + } + } + } + } + } +} diff --git a/tests/acl_loader_test.py b/tests/acl_loader_test.py index 37f64307..adcf38fe 100644 --- a/tests/acl_loader_test.py +++ b/tests/acl_loader_test.py @@ -21,7 +21,7 @@ def test_acl_empty(self): def test_valid(self): yang_acl = AclLoader.parse_acl_json(os.path.join(test_path, 'acl_input/acl1.json')) - assert len(yang_acl.acl.acl_sets.acl_set) == 8 + assert len(yang_acl.acl.acl_sets.acl_set) == 9 def test_invalid(self): with pytest.raises(AclLoaderException): @@ -95,6 +95,42 @@ def test_ethertype_translation(self, acl_loader): "PRIORITY": "9997" } + def test_v4_rule_inv4v6_table(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[("DATAACLV4V6", "RULE_1")] + assert acl_loader.rules_info[("DATAACLV4V6", "RULE_1")] == { + "VLAN_ID": 369, + "ETHER_TYPE": 2048, + "IP_PROTOCOL": 6, + "SRC_IP": "20.0.0.2/32", + "DST_IP": "30.0.0.3/32", + "PACKET_ACTION": "FORWARD", + "PRIORITY": "9999" + } + + def test_v6_rule_inv4v6_table(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[("DATAACLV4V6", "RULE_2")] + assert acl_loader.rules_info[("DATAACLV4V6", "RULE_2")] == { + "ETHER_TYPE": 34525, + "IP_PROTOCOL": 58, + "SRC_IPV6": "::1/128", + "DST_IPV6": "::1/128", + "PACKET_ACTION": "FORWARD", + "PRIORITY": "9998", + 'ICMPV6_CODE': 0, + 'ICMPV6_TYPE': 1 + } + + def test_rule_without_ethertype_inv4v6(self, acl_loader): + acl_loader.rules_info = {} + acl_loader.load_rules_from_file(os.path.join(test_path, 'acl_input/illegal_v4v6_rule_no_ethertype.json')) + assert not acl_loader.rules_info.get(("DATAACLV4V6", "RULE_1")) + assert acl_loader.rules_info[("DATAACLV4V6", "RULE_2")] + assert not acl_loader.rules_info.get(("DATAACLV4V6", "RULE_3")) + def test_icmp_translation(self, acl_loader): acl_loader.rules_info = {} acl_loader.load_rules_from_file(os.path.join(test_path, 'acl_input/acl1.json')) @@ -151,6 +187,12 @@ def test_ingress_default_deny_rule(self, acl_loader): 'PACKET_ACTION': 'DROP', 'IP_TYPE': 'IPV6ANY' } + assert acl_loader.rules_info[('DATAACLV4V6', 'DEFAULT_RULE')] == { + 'PRIORITY': '1', + 'PACKET_ACTION': 'DROP', + 'IP_TYPE': 'IP' + } + # Verify acl-loader doesn't add default deny rule to MIRROR assert ('EVERFLOW', 'DEFAULT_RULE') not in acl_loader.rules_info # Verify acl-loader doesn't add default deny rule to MIRRORV6 diff --git a/tests/aclshow_test.py b/tests/aclshow_test.py index 8e2d20cb..94615e54 100644 --- a/tests/aclshow_test.py +++ b/tests/aclshow_test.py @@ -90,7 +90,7 @@ # Expected output for aclshow -r RULE_4,RULE_6 -vv rule4_rule6_verbose_output = '' + \ """Reading ACL info... -Total number of ACL Tables: 15 +Total number of ACL Tables: 16 Total number of ACL Rules: 21 RULE NAME TABLE NAME PRIO PACKETS COUNT BYTES COUNT diff --git a/tests/mock_tables/config_db.json b/tests/mock_tables/config_db.json index 5cf11f9f..538f81d6 100644 --- a/tests/mock_tables/config_db.json +++ b/tests/mock_tables/config_db.json @@ -556,6 +556,17 @@ "type": "L3", "stage": "ingress" }, + "ACL_TABLE|DATAACLV4V6": { + "expireat": 1602451533.237415, + "ttl": -0.001, + "type": "hash", + "value": { + "policy_desc": "DATAACLV4V6", + "ports@": "PortChannel0002,PortChannel0005,PortChannel0008,PortChannel0011,PortChannel0014,PortChannel0017,PortChannel0020,PortChannel0023,Ethernet64,Ethernet68,Ethernet72,Ethernet76,Ethernet80,Ethernet84,Ethernet88,Ethernet92,Ethernet96,Ethernet100,Ethernet104,Ethernet108,Ethernet112,Ethernet116,Ethernet120,Ethernet124", + "stage": "ingress", + "type": "L3V4V6" + } + }, "ACL_TABLE|EVERFLOW": { "policy_desc": "EVERFLOW", "ports@": "PortChannel0002,PortChannel0005,PortChannel0008,PortChannel0011,PortChannel0014,PortChannel0017,PortChannel0020,PortChannel0023,Ethernet100,Ethernet104,Ethernet92,Ethernet96,Ethernet84,Ethernet88,Ethernet76,Ethernet80,Ethernet108,Ethernet112,Ethernet64,Ethernet120,Ethernet116,Ethernet124,Ethernet72,Ethernet68", From 0fc9e71b149670225b11d11917ff62accfca8920 Mon Sep 17 00:00:00 2001 From: Arvindsrinivasan Lakshmi Narasimhan <55814491+arlakshm@users.noreply.github.com> Date: Tue, 6 Jun 2023 16:54:07 -0700 Subject: [PATCH 171/312] [chassis]: remote cli commands infra for sonic chassis (#2850) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit What I did Microsoft ADO 17792956 Since each Linecard is running an independent SONiC Instance, the user needs to login to a linecard to run any CLI command The user can login to each Linecard 2 ways Ssh directly to the linecard using the management IP address Ssh to supervisor and from supervisor ssh to the Linecard using the Linecard’s internal IP address To simplify the user experience and allow scripting agents to execute commands on all linecards. Two new commands are being added rexec -c This command will execute the command on specified linecards or all linecards. rshell connects to the linecard for interactive shell This PR is adding the changes of PR #2701 How to verify it UT and tested chassis Signed-off-by: Arvindsrinivasan Lakshmi Narasimhan --- rcli/__init__.py | 0 rcli/linecard.py | 151 ++++++++++ rcli/rexec.py | 44 +++ rcli/rshell.py | 38 +++ rcli/utils.py | 149 ++++++++++ setup.py | 6 + sonic-utilities-data/bash_completion.d/rexec | 21 ++ sonic-utilities-data/bash_completion.d/rshell | 21 ++ tests/chassis_modules_test.py | 12 +- tests/mock_tables/asic0/state_db.json | 12 + tests/mock_tables/chassis_state_db.json | 9 + tests/mock_tables/database_config.json | 5 + tests/mock_tables/state_db.json | 4 +- tests/remote_cli_test.py | 260 ++++++++++++++++++ 14 files changed, 724 insertions(+), 8 deletions(-) create mode 100644 rcli/__init__.py create mode 100644 rcli/linecard.py create mode 100644 rcli/rexec.py create mode 100644 rcli/rshell.py create mode 100644 rcli/utils.py create mode 100644 sonic-utilities-data/bash_completion.d/rexec create mode 100644 sonic-utilities-data/bash_completion.d/rshell create mode 100644 tests/mock_tables/chassis_state_db.json create mode 100644 tests/remote_cli_test.py diff --git a/rcli/__init__.py b/rcli/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/rcli/linecard.py b/rcli/linecard.py new file mode 100644 index 00000000..fdc6882e --- /dev/null +++ b/rcli/linecard.py @@ -0,0 +1,151 @@ +import click +import os +import paramiko +import sys +import select +import socket +import sys +import termios +import tty + +from .utils import get_linecard_ip +from paramiko.py3compat import u +from paramiko import Channel + +EMPTY_OUTPUTS = ['', '\x1b[?2004l\r'] + +class Linecard: + + def __init__(self, linecard_name, username, password): + """ + Initialize Linecard object and store credentials, connection, and channel + + :param linecard_name: The name of the linecard you want to connect to + :param username: The username to use to connect to the linecard + :param password: The linecard password. If password not provided, it + will prompt the user for it + :param use_ssh_keys: Whether or not to use SSH keys to authenticate. + """ + self.ip = get_linecard_ip(linecard_name) + + if not self.ip: + sys.exit(1) + + self.linecard_name = linecard_name + self.username = username + self.password = password + + self.connection = self._connect() + + + def _connect(self): + connection = paramiko.SSHClient() + # if ip address not in known_hosts, ignore known_hosts error + connection.set_missing_host_key_policy(paramiko.AutoAddPolicy()) + try: + connection.connect(self.ip, username=self.username, password=self.password) + except paramiko.ssh_exception.NoValidConnectionsError as e: + connection = None + click.echo(e) + return connection + + def _get_password(self): + """ + Prompts the user for a password, and returns the password + + :param username: The username that we want to get the password for + :type username: str + :return: The password for the username. + """ + + return getpass( + "Password for username '{}': ".format(self.username), + # Pass in click stdout stream - this is similar to using click.echo + stream=click.get_text_stream('stdout') + ) + + def _set_tty_params(self): + tty.setraw(sys.stdin.fileno()) + tty.setcbreak(sys.stdin.fileno()) + + def _is_data_to_read(self, read): + if self.channel in read: + return True + return False + + def _is_data_to_write(self, read): + if sys.stdin in read: + return True + return False + + def _write_to_terminal(self, data): + # Write channel output to terminal + sys.stdout.write(data) + sys.stdout.flush() + + def _start_interactive_shell(self): + oldtty = termios.tcgetattr(sys.stdin) + try: + self._set_tty_params() + self.channel.settimeout(0.0) + + while True: + #Continuously wait for commands and execute them + read, write, ex = select.select([self.channel, sys.stdin], [], []) + if self._is_data_to_read(read): + try: + # Get output from channel + x = u(self.channel.recv(1024)) + if len(x) == 0: + # logout message will be displayed + break + self._write_to_terminal(x) + except socket.timeout as e: + click.echo("Connection timed out") + break + if self._is_data_to_write(read): + # If we are able to send input, get the input from stdin + x = sys.stdin.read(1) + if len(x) == 0: + break + # Send the input to the channel + self.channel.send(x) + finally: + # Now that the channel has been exited, return to the previously-saved old tty + termios.tcsetattr(sys.stdin, termios.TCSADRAIN, oldtty) + pass + + + def start_shell(self) -> None: + """ + Opens a session, gets a pseudo-terminal, invokes a shell, and then + attaches the host shell to the remote shell. + """ + # Create shell session + self.channel = self.connection.get_transport().open_session() + self.channel.get_pty() + self.channel.invoke_shell() + # Use Paramiko Interactive script to connect to the shell + self._start_interactive_shell() + # After user exits interactive shell, close the connection + self.connection.close() + + + def execute_cmd(self, command) -> str: + """ + Takes a command as an argument, executes it on the remote shell, and returns the output + + :param command: The command to execute on the remote shell + :return: The output of the command. + """ + # Execute the command and gather errors and output + _, stdout, stderr = self.connection.exec_command(command + "\n") + output = stdout.read().decode('utf-8') + + if stderr: + # Error was present, add message to output + output += stderr.read().decode('utf-8') + + # Close connection and return output + self.connection.close() + return output diff --git a/rcli/rexec.py b/rcli/rexec.py new file mode 100644 index 00000000..fb56df83 --- /dev/null +++ b/rcli/rexec.py @@ -0,0 +1,44 @@ +import os +import click +import paramiko +import sys + +from .linecard import Linecard +from rcli import utils as rcli_utils +from sonic_py_common import device_info + +@click.command() +@click.argument('linecard_names', nargs=-1, type=str, required=True) +@click.option('-c', '--command', type=str, required=True) +def cli(linecard_names, command): + """ + Executes a command on one or many linecards + + :param linecard_names: A list of linecard names to execute the command on, + use `all` to execute on all linecards. + :param command: The command to execute on the linecard(s) + """ + if not device_info.is_chassis(): + click.echo("This commmand is only supported Chassis") + sys.exit(1) + + username = os.getlogin() + password = rcli_utils.get_password(username) + + if list(linecard_names) == ["all"]: + # Get all linecard names using autocompletion helper + linecard_names = rcli_utils.get_all_linecards(None, None, "") + + # Iterate through each linecard, execute command, and gather output + for linecard_name in linecard_names: + try: + lc = Linecard(linecard_name, username, password) + if lc.connection: + # If connection was created, connection exists. Otherwise, user will see an error message. + click.echo("======== {} output: ========".format(lc.linecard_name)) + click.echo(lc.execute_cmd(command)) + except paramiko.ssh_exception.AuthenticationException: + click.echo("Login failed on '{}' with username '{}'".format(linecard_name, lc.username)) + +if __name__=="__main__": + cli(prog_name='rexec') diff --git a/rcli/rshell.py b/rcli/rshell.py new file mode 100644 index 00000000..decda6cd --- /dev/null +++ b/rcli/rshell.py @@ -0,0 +1,38 @@ +import os +import click +import paramiko +import sys + +from .linecard import Linecard +from sonic_py_common import device_info +from rcli import utils as rcli_utils + + +@click.command() +@click.argument('linecard_name', type=str, autocompletion=rcli_utils.get_all_linecards) +def cli(linecard_name): + """ + Open interactive shell for one linecard + + :param linecard_name: The name of the linecard to connect to + """ + if not device_info.is_chassis(): + click.echo("This commmand is only supported Chassis") + sys.exit(1) + + username = os.getlogin() + password = rcli_utils.get_password(username) + + try: + lc =Linecard(linecard_name, username, password) + if lc.connection: + click.echo("Connecting to {}".format(lc.linecard_name)) + # If connection was created, connection exists. Otherwise, user will see an error message. + lc.start_shell() + click.echo("Connection Closed") + except paramiko.ssh_exception.AuthenticationException: + click.echo("Login failed on '{}' with username '{}'".format(linecard_name, lc.username)) + + +if __name__=="__main__": + cli(prog_name='rshell') diff --git a/rcli/utils.py b/rcli/utils.py new file mode 100644 index 00000000..933043d0 --- /dev/null +++ b/rcli/utils.py @@ -0,0 +1,149 @@ +import click +from getpass import getpass +import os +import sys + +from swsscommon.swsscommon import SonicV2Connector + +CHASSIS_MODULE_INFO_TABLE = 'CHASSIS_MODULE_TABLE' +CHASSIS_MODULE_INFO_KEY_TEMPLATE = 'CHASSIS_MODULE {}' +CHASSIS_MODULE_INFO_DESC_FIELD = 'desc' +CHASSIS_MODULE_INFO_SLOT_FIELD = 'slot' +CHASSIS_MODULE_INFO_OPERSTATUS_FIELD = 'oper_status' +CHASSIS_MODULE_INFO_ADMINSTATUS_FIELD = 'admin_status' + +CHASSIS_MIDPLANE_INFO_TABLE = 'CHASSIS_MIDPLANE_TABLE' +CHASSIS_MIDPLANE_INFO_IP_FIELD = 'ip_address' +CHASSIS_MIDPLANE_INFO_ACCESS_FIELD = 'access' + +CHASSIS_MODULE_HOSTNAME_TABLE = 'CHASSIS_MODULE_HOSTNAME_TABLE' +CHASSIS_MODULE_HOSTNAME = 'module_hostname' + +def connect_to_chassis_state_db(): + chassis_state_db = SonicV2Connector(host="127.0.0.1") + chassis_state_db.connect(chassis_state_db.CHASSIS_STATE_DB) + return chassis_state_db + + +def connect_state_db(): + state_db = SonicV2Connector(host="127.0.0.1") + state_db.connect(state_db.STATE_DB) + return state_db + + + +def get_linecard_module_name_from_hostname(linecard_name: str): + + chassis_state_db = connect_to_chassis_state_db() + + keys = chassis_state_db.keys(chassis_state_db.CHASSIS_STATE_DB , '{}|{}'.format(CHASSIS_MODULE_HOSTNAME_TABLE, '*')) + for key in keys: + module_name = key.split('|')[1] + hostname = chassis_state_db.get(chassis_state_db.CHASSIS_STATE_DB, key, CHASSIS_MODULE_HOSTNAME) + if hostname.replace('-', '').lower() == linecard_name.replace('-', '').lower(): + return module_name + + return None + +def get_linecard_ip(linecard_name: str): + """ + Given a linecard name, lookup its IP address in the midplane table + + :param linecard_name: The name of the linecard you want to connect to + :type linecard_name: str + :return: IP address of the linecard + """ + # Adapted from `show chassis modules midplane-status` command logic: + # https://github.com/sonic-net/sonic-utilities/blob/master/show/chassis_modules.py + + # if the user passes linecard hostname, then try to get the module name for that linecard + module_name = get_linecard_module_name_from_hostname(linecard_name) + # if the module name cannot be found from host, assume the user has passed module name + if module_name is None: + module_name = linecard_name + module_ip, module_access = get_module_ip_and_access_from_state_db(module_name) + + if not module_ip: + click.echo('Linecard {} not found'.format(linecard_name)) + return None + + if module_access != 'True': + click.echo('Linecard {} not accessible'.format(linecard_name)) + return None + + + return module_ip + +def get_module_ip_and_access_from_state_db(module_name): + state_db = connect_state_db() + data_dict = state_db.get_all( + state_db.STATE_DB, '{}|{}'.format(CHASSIS_MIDPLANE_INFO_TABLE,module_name )) + if data_dict is None: + return None, None + + linecard_ip = data_dict.get(CHASSIS_MIDPLANE_INFO_IP_FIELD, None) + access = data_dict.get(CHASSIS_MIDPLANE_INFO_ACCESS_FIELD, None) + + return linecard_ip, access + + +def get_all_linecards(ctx, args, incomplete) -> list: + """ + Return a list of all accessible linecard names. This function is used to + autocomplete linecard names in the CLI. + + :param ctx: The Click context object that is passed to the command function + :param args: The arguments passed to the Click command + :param incomplete: The string that the user has typed so far + :return: A list of all accessible linecard names. + """ + # Adapted from `show chassis modules midplane-status` command logic: + # https://github.com/sonic-net/sonic-utilities/blob/master/show/chassis_modules.py + + + chassis_state_db = connect_to_chassis_state_db() + state_db = connect_state_db() + + linecards = [] + keys = state_db.keys(state_db.STATE_DB,'{}|*'.format(CHASSIS_MIDPLANE_INFO_TABLE)) + for key in keys: + key_list = key.split('|') + if len(key_list) != 2: # error data in DB, log it and ignore + click.echo('Warn: Invalid Key {} in {} table'.format(key, CHASSIS_MIDPLANE_INFO_TABLE )) + continue + module_name = key_list[1] + linecard_ip, access = get_module_ip_and_access_from_state_db(module_name) + if linecard_ip is None: + continue + + if access != "True" : + continue + + # get the hostname for this module + hostname = chassis_state_db.get(chassis_state_db.CHASSIS_STATE_DB, '{}|{}'.format(CHASSIS_MODULE_HOSTNAME_TABLE, module_name), CHASSIS_MODULE_HOSTNAME) + if hostname: + linecards.append(hostname) + else: + linecards.append(module_name) + + # Return a list of all matched linecards + return [lc for lc in linecards if incomplete in lc] + + +def get_password(username=None): + """ + Prompts the user for a password, and returns the password + + :param username: The username that we want to get the password for + :type username: str + :return: The password for the username. + """ + + if username is None: + username =os.getlogin() + + return getpass( + "Password for username '{}': ".format(username), + # Pass in click stdout stream - this is similar to using click.echo + stream=click.get_text_stream('stdout') + ) \ No newline at end of file diff --git a/setup.py b/setup.py index bc69337b..547b0fac 100644 --- a/setup.py +++ b/setup.py @@ -74,6 +74,7 @@ 'pddf_thermalutil', 'pddf_ledutil', 'syslog_util', + 'rcli', 'show', 'show.interfaces', 'show.plugins', @@ -207,6 +208,8 @@ 'pddf_psuutil = pddf_psuutil.main:cli', 'pddf_thermalutil = pddf_thermalutil.main:cli', 'pddf_ledutil = pddf_ledutil.main:cli', + 'rexec = rcli.rexec:cli', + 'rshell = rcli.rshell:cli', 'show = show.main:cli', 'sonic-clear = clear.main:cli', 'sonic-installer = sonic_installer.main:sonic_installer', @@ -219,7 +222,9 @@ ] }, install_requires=[ + 'bcrypt==3.2.2', 'click==7.0', + 'cryptography==3.3.2', 'urllib3<2', 'click-log>=0.3.2', 'docker>=4.4.4', @@ -235,6 +240,7 @@ 'natsort>=6.2.1', # 6.2.1 is the last version which supports Python 2. Can update once we no longer support Python 2 'netaddr>=0.8.0', 'netifaces>=0.10.7', + 'paramiko==2.11.0', 'pexpect>=4.8.0', 'semantic-version>=2.8.5', 'prettyprinter>=0.18.0', diff --git a/sonic-utilities-data/bash_completion.d/rexec b/sonic-utilities-data/bash_completion.d/rexec new file mode 100644 index 00000000..1199fd06 --- /dev/null +++ b/sonic-utilities-data/bash_completion.d/rexec @@ -0,0 +1,21 @@ +_rexec_completion() { + local IFS=$' +' + COMPREPLY=( $( env COMP_WORDS="${COMP_WORDS[*]}" \ + COMP_CWORD=$COMP_CWORD \ + _REXEC_COMPLETE=complete $1 ) ) + return 0 +} + +_rexec_completionetup() { + local COMPLETION_OPTIONS="" + local BASH_VERSION_ARR=(${BASH_VERSION//./ }) + # Only BASH version 4.4 and later have the nosort option. + if [ ${BASH_VERSION_ARR[0]} -gt 4 ] || ([ ${BASH_VERSION_ARR[0]} -eq 4 ] && [ ${BASH_VERSION_ARR[1]} -ge 4 ]); then + COMPLETION_OPTIONS="-o nosort" + fi + + complete $COMPLETION_OPTIONS -F _rexec_completion rexec +} + +_rexec_completionetup; \ No newline at end of file diff --git a/sonic-utilities-data/bash_completion.d/rshell b/sonic-utilities-data/bash_completion.d/rshell new file mode 100644 index 00000000..012f754d --- /dev/null +++ b/sonic-utilities-data/bash_completion.d/rshell @@ -0,0 +1,21 @@ +_rshell_completion() { + local IFS=$' +' + COMPREPLY=( $( env COMP_WORDS="${COMP_WORDS[*]}" \ + COMP_CWORD=$COMP_CWORD \ + _RSHELL_COMPLETE=complete $1 ) ) + return 0 +} + +_rshell_completionetup() { + local COMPLETION_OPTIONS="" + local BASH_VERSION_ARR=(${BASH_VERSION//./ }) + # Only BASH version 4.4 and later have the nosort option. + if [ ${BASH_VERSION_ARR[0]} -gt 4 ] || ([ ${BASH_VERSION_ARR[0]} -eq 4 ] && [ ${BASH_VERSION_ARR[1]} -ge 4 ]); then + COMPLETION_OPTIONS="-o nosort" + fi + + complete $COMPLETION_OPTIONS -F _rshell_completion rshell +} + +_rshell_completionetup; \ No newline at end of file diff --git a/tests/chassis_modules_test.py b/tests/chassis_modules_test.py index 6b9e0f3e..a9ba0f82 100644 --- a/tests/chassis_modules_test.py +++ b/tests/chassis_modules_test.py @@ -33,11 +33,11 @@ """ show_chassis_midplane_output="""\ - Name IP-Address Reachability ------------ ------------- -------------- - LINE-CARD0 192.168.1.1 True - LINE-CARD1 192.168.1.2 False -SUPERVISOR0 192.168.1.100 True + Name IP-Address Reachability +---------- ------------- -------------- +LINE-CARD0 192.168.1.100 True +LINE-CARD1 192.168.1.2 False +LINE-CARD2 192.168.1.1 True """ show_chassis_system_ports_output_asic0="""\ @@ -225,7 +225,7 @@ def test_midplane_show_all_count_lines(self): result = runner.invoke(show.cli.commands["chassis"].commands["modules"].commands["midplane-status"], []) print(result.output) result_lines = result.output.strip('\n').split('\n') - modules = ["LINE-CARD0", "LINE-CARD1", "SUPERVISOR0"] + modules = ["LINE-CARD0", "LINE-CARD1", "LINE-CARD2"] for i, module in enumerate(modules): assert module in result_lines[i + warning_lines + header_lines] assert len(result_lines) == warning_lines + header_lines + len(modules) diff --git a/tests/mock_tables/asic0/state_db.json b/tests/mock_tables/asic0/state_db.json index 559af048..6ae0258b 100644 --- a/tests/mock_tables/asic0/state_db.json +++ b/tests/mock_tables/asic0/state_db.json @@ -287,6 +287,18 @@ "REMOTE_MOD": "0", "REMOTE_PORT": "93" }, + "CHASSIS_MIDPLANE_TABLE|LINE-CARD0": { + "ip_address": "127.0.0.1", + "access": "True" + }, + "CHASSIS_MIDPLANE_TABLE|LINE-CARD1": { + "ip_address": "127.0.0.1", + "access": "True" + }, + "CHASSIS_MIDPLANE_TABLE|LINE-CARD2": { + "ip_address": "127.0.0.1", + "access": "False" + }, "ACL_TABLE_TABLE|DATAACL_5" : { "status": "Active" }, diff --git a/tests/mock_tables/chassis_state_db.json b/tests/mock_tables/chassis_state_db.json new file mode 100644 index 00000000..5178c49c --- /dev/null +++ b/tests/mock_tables/chassis_state_db.json @@ -0,0 +1,9 @@ +{ + "CHASSIS_MODULE_HOSTNAME_TABLE|LINE-CARD0": { + "module_hostname": "sonic-lc1" + }, + "CHASSIS_MODULE_HOSTNAME_TABLE|LINE-CARD1": { + "module_hostname": "sonic-lc2" + } + +} \ No newline at end of file diff --git a/tests/mock_tables/database_config.json b/tests/mock_tables/database_config.json index d12ba054..f55c0734 100644 --- a/tests/mock_tables/database_config.json +++ b/tests/mock_tables/database_config.json @@ -56,6 +56,11 @@ "id" : 12, "separator": "|", "instance" : "redis" + }, + "CHASSIS_STATE_DB" : { + "id" : 13, + "separator": "|", + "instance" : "redis" } }, "VERSION" : "1.1" diff --git a/tests/mock_tables/state_db.json b/tests/mock_tables/state_db.json index 883a2b36..289bf3ce 100644 --- a/tests/mock_tables/state_db.json +++ b/tests/mock_tables/state_db.json @@ -1229,11 +1229,11 @@ "max_queues": "20", "max_priority_groups": "8" }, - "CHASSIS_MIDPLANE_TABLE|SUPERVISOR0": { + "CHASSIS_MIDPLANE_TABLE|LINE-CARD0": { "ip_address": "192.168.1.100", "access": "True" }, - "CHASSIS_MIDPLANE_TABLE|LINE-CARD0": { + "CHASSIS_MIDPLANE_TABLE|LINE-CARD2": { "ip_address": "192.168.1.1", "access": "True" }, diff --git a/tests/remote_cli_test.py b/tests/remote_cli_test.py new file mode 100644 index 00000000..67545dd1 --- /dev/null +++ b/tests/remote_cli_test.py @@ -0,0 +1,260 @@ +import os +from click.testing import CliRunner +import paramiko +from rcli import rexec +from rcli import rshell +from rcli import linecard +from rcli import utils as rcli_utils +import sys +from io import BytesIO, StringIO +from unittest import mock +import select +import socket +import termios + +MULTI_LC_REXEC_OUTPUT = '''======== sonic-lc1 output: ======== +hello world +======== LINE-CARD2 output: ======== +hello world +''' +REXEC_HELP = '''Usage: cli [OPTIONS] LINECARD_NAMES... + + Executes a command on one or many linecards + + :param linecard_names: A list of linecard names to execute the command on, + use `all` to execute on all linecards. :param command: The command to + execute on the linecard(s) + +Options: + -c, --command TEXT [required] + --help Show this message and exit. +''' + +def mock_exec_command(): + + mock_stdout = BytesIO(b"""hello world""") + mock_stderr = BytesIO() + return '', mock_stdout, None + +def mock_exec_error_cmd(): + mock_stdout = BytesIO() + mock_stderr = BytesIO(b"""Command not found""") + return '', mock_stdout, mock_stderr + +def mock_connection_channel(): + c = mock.MagicMock(return_value="channel") + c.get_pty = mock.MagicMock(return_value='') + c.invoke_shell = mock.MagicMock() + c.recv = mock.MagicMock(side_effect=['abcd', '']) + return c + +def mock_connection_channel_with_timeout(): + c = mock.MagicMock(return_value="channel") + c.get_pty = mock.MagicMock(return_value='') + c.invoke_shell = mock.MagicMock() + c.recv = mock.MagicMock(side_effect=['abcd', socket.timeout(10, 'timeout')]) + return c + +def mock_paramiko_connection(channel): + # Create a mock to return for connection. + conn = mock.MagicMock() + #create a mock return for transport + t = mock.MagicMock() + t.open_session = mock.MagicMock(return_value=channel) + conn.get_transport = mock.MagicMock(return_value=t) + conn.connect = mock.MagicMock() + conn.close = mock.MagicMock() + return conn + +class TestRemoteExec(object): + @classmethod + def setup_class(cls): + print("SETUP") + from .mock_tables import dbconnector + dbconnector.load_database_config() + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + #@mock.patch.object(linecard.Linecard, '_get_password', mock.MagicMock(return_value='dummmy')) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) + @mock.patch.object(paramiko.SSHClient, 'exec_command', mock.MagicMock(return_value = mock_exec_command())) + def test_rexec_with_module_name(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD0" + result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "pwd"]) + print(result.output) + assert result.exit_code == 0, result.output + assert "hello world" in result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) + @mock.patch.object(paramiko.SSHClient, 'exec_command', mock.MagicMock(return_value = mock_exec_command())) + def test_rexec_with_hostname(self): + runner = CliRunner() + LINECARD_NAME = "sonic-lc1" + result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "pwd"]) + print(result.output) + assert result.exit_code == 0, result.output + assert "hello world" in result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) + @mock.patch.object(paramiko.SSHClient, 'exec_command', mock.MagicMock(return_value = mock_exec_error_cmd())) + def test_rexec_error_with_module_name(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD0" + result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "pwd"]) + print(result.output) + assert result.exit_code == 0, result.output + assert "Command not found" in result.output + + def test_rexec_error(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD0" + result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "show version"]) + print(result.output) + assert result.exit_code == 1, result.output + assert "This commmand is only supported Chassis" in result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) + @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value = "hello world")) + def test_rexec_all(self): + runner = CliRunner() + LINECARD_NAME = "all" + result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "show version"]) + print(result.output) + assert result.exit_code == 0, result.output + assert MULTI_LC_REXEC_OUTPUT == result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) + @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value = "hello world")) + def test_rexec_invalid_lc(self): + runner = CliRunner() + LINECARD_NAME = "sonic-lc-3" + result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "show version"]) + print(result.output) + assert result.exit_code == 1, result.output + assert "Linecard sonic-lc-3 not found\n" == result.output + + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) + @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value = "hello world")) + def test_rexec_unreachable_lc(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD1" + result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "show version"]) + print(result.output) + assert result.exit_code == 1, result.output + assert "Linecard LINE-CARD1 not accessible\n" == result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) + @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value = "hello world")) + def test_rexec_help(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD1" + result = runner.invoke(rexec.cli, ["--help"]) + print(result.output) + assert result.exit_code == 0, result.output + assert REXEC_HELP == result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock(side_effect=paramiko.ssh_exception.NoValidConnectionsError({('192.168.0.1', + 22): "None" }))) + @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value = "hello world")) + def test_rexec_exception(self): + runner = CliRunner() + LINECARD_NAME = "sonic-lc1" + result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "show version"]) + print(result.output) + assert result.exit_code == 0, result.output + assert "[Errno None] Unable to connect to port 22 on 192.168.0.1\n" == result.output + + +class TestRemoteCLI(object): + @classmethod + def setup_class(cls): + print("SETUP") + from .mock_tables import dbconnector + dbconnector.load_database_config() + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(linecard.Linecard, '_set_tty_params', mock.MagicMock()) + @mock.patch.object(termios, 'tcsetattr', mock.MagicMock()) + @mock.patch.object(termios, 'tcgetattr', mock.MagicMock(return_value=[])) + def test_rcli_with_module_name(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD0" + channel = mock_connection_channel() + + with mock.patch('paramiko.SSHClient', mock.MagicMock(return_value=mock_paramiko_connection(channel))), \ + mock.patch('select.select', mock.MagicMock(return_value=([channel], [], []))): + result = runner.invoke(rshell.cli, [LINECARD_NAME]) + print(result.output) + assert result.exit_code == 0, result.output + assert "abcd" in result.output + + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(linecard.Linecard, '_set_tty_params', mock.MagicMock()) + @mock.patch.object(termios, 'tcsetattr', mock.MagicMock()) + @mock.patch.object(termios, 'tcgetattr', mock.MagicMock(return_value=[])) + def test_rcli_with_module_name_2(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD0" + channel = mock_connection_channel() + + with mock.patch('paramiko.SSHClient', mock.MagicMock(return_value=mock_paramiko_connection(channel))), \ + mock.patch('select.select', mock.MagicMock(side_effect=[([], [], []), ([channel], [], []),([channel], [], [])])): + result = runner.invoke(rshell.cli, [LINECARD_NAME]) + print(result.output) + assert result.exit_code == 0, result.output + assert "Connecting to LINE-CARD0" in result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(linecard.Linecard, '_set_tty_params', mock.MagicMock()) + @mock.patch.object(termios, 'tcsetattr', mock.MagicMock()) + @mock.patch.object(termios, 'tcgetattr', mock.MagicMock(return_value=[])) + def test_rcli_with_module_name_3(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD0" + channel = mock_connection_channel_with_timeout() + + with mock.patch('paramiko.SSHClient', mock.MagicMock(return_value=mock_paramiko_connection(channel))), \ + mock.patch('select.select', mock.MagicMock(return_value=([channel], [], []))): + result = runner.invoke(rshell.cli, [LINECARD_NAME]) + print(result.output) + assert result.exit_code == 0, result.output + assert "Connecting to LINE-CARD0" in result.output + + def test_rcli_error(self): + runner = CliRunner() + LINECARD_NAME = "LINE-CARD0" + result = runner.invoke(rshell.cli, [LINECARD_NAME]) + print(result.output) + assert result.exit_code == 1, result.output + assert "This commmand is only supported Chassis" in result.output \ No newline at end of file From 51c46b5668ce0e0380ddb5b0a58c060189807e3c Mon Sep 17 00:00:00 2001 From: Mai Bui Date: Wed, 7 Jun 2023 09:19:44 -0400 Subject: [PATCH 172/312] [sonic_installer] remove subprocess with shell=True (#2643) #### What I did `subprocess()` - when using with `shell=True` is dangerous. Using subprocess function without a static string can lead to command injection. #### How I did it `subprocess()` - use `shell=False` instead, use list of strings Ref: [https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation](https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation) #### How to verify it Pass UT Signed-off-by: Mai Bui --- sonic_installer/bootloader/aboot.py | 10 ++- sonic_installer/bootloader/grub.py | 10 +-- sonic_installer/bootloader/uboot.py | 33 +++++----- sonic_installer/common.py | 19 ++++-- sonic_installer/main.py | 72 ++++++++++---------- tests/installer_bootloader_aboot_test.py | 21 +++++- tests/installer_bootloader_grub_test.py | 37 ++++++++++- tests/installer_bootloader_uboot_test.py | 83 +++++++++++++++++++----- tests/installer_docker_test.py | 34 +++++++++- tests/swap_allocator_test.py | 2 +- tests/test_sonic_installer.py | 9 +++ 11 files changed, 242 insertions(+), 88 deletions(-) diff --git a/sonic_installer/bootloader/aboot.py b/sonic_installer/bootloader/aboot.py index ff8be789..ac327feb 100644 --- a/sonic_installer/bootloader/aboot.py +++ b/sonic_installer/bootloader/aboot.py @@ -126,8 +126,14 @@ def set_next_image(self, image): return True def install_image(self, image_path): - run_command("/usr/bin/unzip -od /tmp %s boot0" % image_path) - run_command("swipath=%s target_path=/host sonic_upgrade=1 . /tmp/boot0" % image_path) + run_command(["/usr/bin/unzip", "-od", "/tmp", image_path, "boot0"]) + env = os.environ.copy() + env.update({ + 'swipath': image_path, + 'target_path': '/host', + 'sonic_upgrade': '1' + }) + run_command(["/bin/sh", "/tmp/boot0"], env=env) def remove_image(self, image): nextimage = self.get_next_image() diff --git a/sonic_installer/bootloader/grub.py b/sonic_installer/bootloader/grub.py index 7ab5c6c0..73d23adf 100644 --- a/sonic_installer/bootloader/grub.py +++ b/sonic_installer/bootloader/grub.py @@ -51,19 +51,19 @@ def get_next_image(self): def set_default_image(self, image): images = self.get_installed_images() - command = 'grub-set-default --boot-directory=' + HOST_PATH + ' ' + str(images.index(image)) + command = ['grub-set-default', '--boot-directory=' + HOST_PATH, str(images.index(image))] run_command(command) return True def set_next_image(self, image): images = self.get_installed_images() - command = 'grub-reboot --boot-directory=' + HOST_PATH + ' ' + str(images.index(image)) + command = ['grub-reboot', '--boot-directory=' + HOST_PATH, str(images.index(image))] run_command(command) return True def install_image(self, image_path): - run_command("bash " + image_path) - run_command('grub-set-default --boot-directory=' + HOST_PATH + ' 0') + run_command(["bash", image_path]) + run_command(['grub-set-default', '--boot-directory=' + HOST_PATH, '0']) def remove_image(self, image): click.echo('Updating GRUB...') @@ -82,7 +82,7 @@ def remove_image(self, image): subprocess.call(['rm','-rf', HOST_PATH + '/' + image_dir]) click.echo('Done') - run_command('grub-set-default --boot-directory=' + HOST_PATH + ' 0') + run_command(['grub-set-default', '--boot-directory=' + HOST_PATH, '0']) click.echo('Image removed') def get_linux_cmdline(self, image): diff --git a/sonic_installer/bootloader/uboot.py b/sonic_installer/bootloader/uboot.py index 9420d356..0490a482 100644 --- a/sonic_installer/bootloader/uboot.py +++ b/sonic_installer/bootloader/uboot.py @@ -6,7 +6,7 @@ import subprocess import os import re - +from shlex import split import click from ..common import ( @@ -23,12 +23,12 @@ class UbootBootloader(OnieInstallerBootloader): def get_installed_images(self): images = [] - proc = subprocess.Popen("/usr/bin/fw_printenv -n sonic_version_1", shell=True, text=True, stdout=subprocess.PIPE) + proc = subprocess.Popen(["/usr/bin/fw_printenv", "-n", "sonic_version_1"], text=True, stdout=subprocess.PIPE) (out, _) = proc.communicate() image = out.rstrip() if IMAGE_PREFIX in image: images.append(image) - proc = subprocess.Popen("/usr/bin/fw_printenv -n sonic_version_2", shell=True, text=True, stdout=subprocess.PIPE) + proc = subprocess.Popen(["/usr/bin/fw_printenv", "-n", "sonic_version_2"], text=True, stdout=subprocess.PIPE) (out, _) = proc.communicate() image = out.rstrip() if IMAGE_PREFIX in image: @@ -37,7 +37,7 @@ def get_installed_images(self): def get_next_image(self): images = self.get_installed_images() - proc = subprocess.Popen("/usr/bin/fw_printenv -n boot_next", shell=True, text=True, stdout=subprocess.PIPE) + proc = subprocess.Popen(["/usr/bin/fw_printenv", "-n", "boot_next"], text=True, stdout=subprocess.PIPE) (out, _) = proc.communicate() image = out.rstrip() if "sonic_image_2" in image and len(images) == 2: @@ -49,31 +49,31 @@ def get_next_image(self): def set_default_image(self, image): images = self.get_installed_images() if image in images[0]: - run_command('/usr/bin/fw_setenv boot_next "run sonic_image_1"') + run_command(['/usr/bin/fw_setenv', 'boot_next', "run sonic_image_1"]) elif image in images[1]: - run_command('/usr/bin/fw_setenv boot_next "run sonic_image_2"') + run_command(['/usr/bin/fw_setenv', 'boot_next', "run sonic_image_2"]) return True def set_next_image(self, image): images = self.get_installed_images() if image in images[0]: - run_command('/usr/bin/fw_setenv boot_once "run sonic_image_1"') + run_command(['/usr/bin/fw_setenv', 'boot_once', "run sonic_image_1"]) elif image in images[1]: - run_command('/usr/bin/fw_setenv boot_once "run sonic_image_2"') + run_command(['/usr/bin/fw_setenv', 'boot_once', "run sonic_image_2"]) return True def install_image(self, image_path): - run_command("bash " + image_path) + run_command(["bash", image_path]) def remove_image(self, image): click.echo('Updating next boot ...') images = self.get_installed_images() if image in images[0]: - run_command('/usr/bin/fw_setenv boot_next "run sonic_image_2"') - run_command('/usr/bin/fw_setenv sonic_version_1 "NONE"') + run_command(['/usr/bin/fw_setenv', 'boot_next', "run sonic_image_2"]) + run_command(['/usr/bin/fw_setenv', 'sonic_version_1', "NONE"]) elif image in images[1]: - run_command('/usr/bin/fw_setenv boot_next "run sonic_image_1"') - run_command('/usr/bin/fw_setenv sonic_version_2 "NONE"') + run_command(['/usr/bin/fw_setenv', 'boot_next', "run sonic_image_1"]) + run_command(['/usr/bin/fw_setenv', 'sonic_version_2', "NONE"]) image_dir = image.replace(IMAGE_PREFIX, IMAGE_DIR_PREFIX, 1) click.echo('Removing image root filesystem...') subprocess.call(['rm','-rf', HOST_PATH + '/' + image_dir]) @@ -84,17 +84,16 @@ def verify_image_platform(self, image_path): def set_fips(self, image, enable): fips = "1" if enable else "0" - proc = subprocess.Popen("/usr/bin/fw_printenv linuxargs", shell=True, text=True, stdout=subprocess.PIPE) + proc = subprocess.Popen(["/usr/bin/fw_printenv", "linuxargs"], text=True, stdout=subprocess.PIPE) (out, _) = proc.communicate() cmdline = out.strip() cmdline = re.sub('^linuxargs=', '', cmdline) cmdline = re.sub(r' sonic_fips=[^\s]', '', cmdline) + " sonic_fips=" + fips - cmdline = '"' + cmdline + '"' - run_command('/usr/bin/fw_setenv linuxargs ' + cmdline ) + run_command(['/usr/bin/fw_setenv', 'linuxargs'] + split(cmdline)) click.echo('Done') def get_fips(self, image): - proc = subprocess.Popen("/usr/bin/fw_printenv linuxargs", shell=True, text=True, stdout=subprocess.PIPE) + proc = subprocess.Popen(["/usr/bin/fw_printenv", "linuxargs"], text=True, stdout=subprocess.PIPE) (out, _) = proc.communicate() return 'sonic_fips=1' in out diff --git a/sonic_installer/common.py b/sonic_installer/common.py index 68506358..f220a4b5 100644 --- a/sonic_installer/common.py +++ b/sonic_installer/common.py @@ -8,7 +8,7 @@ import signal import click - +from shlex import join from .exception import SonicRuntimeException HOST_PATH = '/host' @@ -19,11 +19,20 @@ WORKDIR_NAME = 'work' DOCKERDIR_NAME = 'docker' -# Run bash command and print output to stdout -def run_command(command): - click.echo(click.style("Command: ", fg='cyan') + click.style(command, fg='green')) +def is_list_of_strings(command): + return isinstance(command, list) and all(isinstance(item, str) for item in command) - proc = subprocess.Popen(command, shell=True, text=True, stdout=subprocess.PIPE) +# Run bash command and print output to stdout +def run_command(command, stdout=subprocess.PIPE, env=None, shell=False): + if not is_list_of_strings(command): + sys.exit("Input command should be a list of strings") + if not shell: + command_str = join(command) + else: + command_str = command + click.echo(click.style("Command: ", fg='cyan') + click.style(command_str, fg='green')) + + proc = subprocess.Popen(command, text=True, stdout=stdout, env=env, shell=shell) (out, _) = proc.communicate() click.echo(out) diff --git a/sonic_installer/main.py b/sonic_installer/main.py index ce1c1586..a5c901b6 100644 --- a/sonic_installer/main.py +++ b/sonic_installer/main.py @@ -10,7 +10,7 @@ import click from sonic_py_common import logger from swsscommon.swsscommon import SonicV2Connector - +from sonic_py_common.general import getstatusoutput_noshell_pipe from .bootloader import get_bootloader from .common import ( run_command, run_command_or_raise, @@ -122,8 +122,8 @@ def reporthook(count, block_size, total_size): # and extract tag name from docker image file. def get_docker_tag_name(image): # Try to get tag name from label metadata - cmd = "docker inspect --format '{{.ContainerConfig.Labels.Tag}}' " + image - proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True, text=True) + cmd = ["docker", "inspect", "--format", '{{.ContainerConfig.Labels.Tag}}', image] + proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, text=True) (out, _) = proc.communicate() if proc.returncode != 0: return "unknown" @@ -171,33 +171,32 @@ def abort_if_false(ctx, param, value): def get_container_image_name(container_name): # example image: docker-lldp-sv2:latest - cmd = "docker inspect --format '{{.Config.Image}}' " + container_name - proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True, text=True) + cmd = ["docker", "inspect", "--format", '{{.Config.Image}}', container_name] + proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, text=True) (out, _) = proc.communicate() if proc.returncode != 0: sys.exit(proc.returncode) image_latest = out.rstrip() # example image_name: docker-lldp-sv2 - cmd = "echo " + image_latest + " | cut -d ':' -f 1" - proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True, text=True) - image_name = proc.stdout.read().rstrip() + _, stdout = getstatusoutput_noshell_pipe(["echo", image_latest], ["cut", "-d", ':', "-f", "1"]) + image_name = stdout.rstrip() return image_name def get_container_image_id(image_tag): # TODO: extract commond docker info fetching functions # this is image_id for image with tag, like 'docker-teamd:latest' - cmd = "docker images --format '{{.ID}}' " + image_tag - proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True, text=True) + cmd = ["docker", "images", "--format", '{{.ID}}', image_tag] + proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, text=True) image_id = proc.stdout.read().rstrip() return image_id def get_container_image_id_all(image_name): # All images id under the image name like 'docker-teamd' - cmd = "docker images --format '{{.ID}}' " + image_name - proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True, text=True) + cmd = ["docker", "images", "--format", '{{.ID}}', image_name] + proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, text=True) image_id_all = proc.stdout.read() image_id_all = image_id_all.splitlines() image_id_all = set(image_id_all) @@ -449,7 +448,8 @@ def setup_swapmem(self): with open(swapfile, 'wb') as fd: os.posix_fallocate(fd.fileno(), 0, self.swap_mem_size * SWAPAllocator.MiB_TO_BYTES_FACTOR) os.chmod(swapfile, 0o600) - run_command(f'mkswap {swapfile}; swapon {swapfile}') + run_command(['mkswap', swapfile]) + run_command(['swapon', swapfile]) def remove_swapmem(self): swapfile = SWAPAllocator.SWAP_FILE_PATH @@ -499,7 +499,7 @@ def validate_positive_int(ctx, param, value): def sonic_installer(): """ SONiC image installation manager """ if os.geteuid() != 0: - exit("Root privileges required for this operation") + sys.exit("Root privileges required for this operation") # Warn the user if they are calling the deprecated version of the command (with an underscore instead of a hyphen) if os.path.basename(sys.argv[0]) == "sonic_installer": @@ -583,7 +583,7 @@ def install(url, force, skip_platform_check=False, skip_migration=False, skip_pa if skip_migration: echo_and_log("Skipping configuration migration as requested in the command option.") else: - run_command('config-setup backup') + run_command(['config-setup', 'backup']) update_sonic_environment(bootloader, binary_image_version) @@ -595,8 +595,10 @@ def install(url, force, skip_platform_check=False, skip_migration=False, skip_pa migrate_sonic_packages(bootloader, binary_image_version) # Finally, sync filesystem - run_command("sync;sync;sync") - run_command("sleep 3") # wait 3 seconds after sync + run_command(["sync"]) + run_command(["sync"]) + run_command(["sync"]) + run_command(["sleep", "3"]) # wait 3 seconds after sync echo_and_log('Done') @@ -801,12 +803,12 @@ def upgrade_docker(container_name, url, cleanup_image, skip_check, tag, warm): if container_name == "swss" or container_name == "bgp" or container_name == "teamd": if warm_configured is False and warm: - run_command("config warm_restart enable %s" % container_name) + run_command(["config", "warm_restart", "enable", "%s" % container_name]) # Fetch tag of current running image tag_previous = get_docker_tag_name(image_latest) # Load the new image beforehand to shorten disruption time - run_command("docker load < %s" % image_path) + run_command(["docker", "load", "-i", "%s" % image_path]) warm_app_names = [] # warm restart specific procssing for swss, bgp and teamd dockers. if warm_configured is True or warm: @@ -816,21 +818,21 @@ def upgrade_docker(container_name, url, cleanup_image, skip_check, tag, warm): if skip_check: skipPendingTaskCheck = " -s" - cmd = "docker exec -i swss orchagent_restart_check -w 2000 -r 5 " + skipPendingTaskCheck + cmd = ["docker", "exec", "-i", "swss", "orchagent_restart_check", "-w", "2000", "-r", "5", skipPendingTaskCheck] - proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True, text=True) + proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, text=True) (out, err) = proc.communicate() if proc.returncode != 0: if not skip_check: echo_and_log("Orchagent is not in clean state, RESTARTCHECK failed", LOG_ERR) # Restore orignal config before exit if warm_configured is False and warm: - run_command("config warm_restart disable %s" % container_name) + run_command(["config", "warm_restart", "disable", "%s" % container_name]) # Clean the image loaded earlier image_id_latest = get_container_image_id(image_latest) - run_command("docker rmi -f %s" % image_id_latest) + run_command(["docker", "rmi", "-f", "%s" % image_id_latest]) # Re-point latest tag to previous tag - run_command("docker tag %s:%s %s" % (image_name, tag_previous, image_latest)) + run_command(["docker", "tag", "%s:%s" % (image_name, tag_previous), "%s" % image_latest]) sys.exit(proc.returncode) else: @@ -843,8 +845,8 @@ def upgrade_docker(container_name, url, cleanup_image, skip_check, tag, warm): elif container_name == "bgp": # Kill bgpd to restart the bgp graceful restart procedure echo_and_log("Stopping bgp ...") - run_command("docker exec -i bgp pkill -9 zebra") - run_command("docker exec -i bgp pkill -9 bgpd") + run_command(["docker", "exec", "-i", "bgp", "pkill", "-9", "zebra"]) + run_command(["docker", "exec", "-i", "bgp", "pkill", "-9", "bgpd"]) warm_app_names = ["bgp"] echo_and_log("Stopped bgp ...") @@ -852,7 +854,7 @@ def upgrade_docker(container_name, url, cleanup_image, skip_check, tag, warm): echo_and_log("Stopping teamd ...") # Send USR1 signal to all teamd instances to stop them # It will prepare teamd for warm-reboot - run_command("docker exec -i teamd pkill -USR1 teamd > /dev/null") + run_command(["docker", "exec", "-i", "teamd", "pkill", "-USR1", "teamd"], stdout=subprocess.DEVNULL) warm_app_names = ["teamsyncd"] echo_and_log("Stopped teamd ...") @@ -860,13 +862,13 @@ def upgrade_docker(container_name, url, cleanup_image, skip_check, tag, warm): for warm_app_name in warm_app_names: hdel_warm_restart_table("STATE_DB", "WARM_RESTART_TABLE", warm_app_name, "state") - run_command("docker kill %s > /dev/null" % container_name) - run_command("docker rm %s " % container_name) + run_command(["docker", "kill", "%s" % container_name], stdout=subprocess.DEVNULL) + run_command(["docker", "rm", "%s" % container_name]) if tag is None: # example image: docker-lldp-sv2:latest tag = get_docker_tag_name(image_latest) - run_command("docker tag %s:latest %s:%s" % (image_name, image_name, tag)) - run_command("systemctl restart %s" % container_name) + run_command(["docker", "tag", "%s:latest" % image_name, "%s:%s" % (image_name, tag)]) + run_command(["systemctl", "restart", "%s" % container_name]) if cleanup_image: # All images id under the image name @@ -874,7 +876,7 @@ def upgrade_docker(container_name, url, cleanup_image, skip_check, tag, warm): # Unless requested, the previoud docker image will be preserved for id in image_id_all: if id == image_id_previous: - run_command("docker rmi -f %s" % id) + run_command(["docker", "rmi", "-f", "%s" % id]) break exp_state = "reconciled" @@ -902,7 +904,7 @@ def upgrade_docker(container_name, url, cleanup_image, skip_check, tag, warm): # Restore to previous cold restart setting if warm_configured is False and warm: if container_name == "swss" or container_name == "bgp" or container_name == "teamd": - run_command("config warm_restart disable %s" % container_name) + run_command(["config", "warm_restart", "disable", container_name]) if state == exp_state: echo_and_log('Done') @@ -940,11 +942,11 @@ def rollback_docker(container_name): break # make previous image as latest - run_command("docker tag %s:%s %s:latest" % (image_name, version_tag, image_name)) + run_command(["docker", "tag", "%s:%s" % (image_name, version_tag), "%s:latest" % (image_name)]) if container_name == "swss" or container_name == "bgp" or container_name == "teamd": echo_and_log("Cold reboot is required to restore system state after '{}' rollback !!".format(container_name), LOG_ERR) else: - run_command("systemctl restart %s" % container_name) + run_command(["systemctl", "restart", container_name]) echo_and_log('Done') diff --git a/tests/installer_bootloader_aboot_test.py b/tests/installer_bootloader_aboot_test.py index 56eee487..9f988843 100644 --- a/tests/installer_bootloader_aboot_test.py +++ b/tests/installer_bootloader_aboot_test.py @@ -1,4 +1,5 @@ -from unittest.mock import Mock, patch +import os +from unittest.mock import Mock, patch, call # Import test module import sonic_installer.bootloader.aboot as aboot @@ -53,6 +54,24 @@ def test_get_next_image(re_search_patch): re_search_patch().group = Mock(return_value=image_dir) assert bootloader.get_next_image() == exp_image +def test_install_image(): + image_path = 'sonic' + env = os.environ.copy() + env.update({ + 'swipath': image_path, + 'target_path': '/host', + 'sonic_upgrade': '1' + }) + + expected_calls = [ + call(["/usr/bin/unzip", "-od", "/tmp", "%s" % image_path, "boot0"]), + call(["/bin/sh", "/tmp/boot0"], env=env) + ] + with patch('sonic_installer.bootloader.aboot.run_command') as mock_cmd: + bootloader = aboot.AbootBootloader() + bootloader.install_image(image_path) + mock_cmd.assert_has_calls(expected_calls) + def test_set_fips_aboot(): image = 'test-image' dirpath = tempfile.mkdtemp() diff --git a/tests/installer_bootloader_grub_test.py b/tests/installer_bootloader_grub_test.py index ff35e13b..9b6a76ff 100644 --- a/tests/installer_bootloader_grub_test.py +++ b/tests/installer_bootloader_grub_test.py @@ -1,10 +1,45 @@ import os import shutil -from unittest.mock import Mock, patch +from unittest.mock import Mock, patch, call # Import test module import sonic_installer.bootloader.grub as grub +installed_images = [ + f'{grub.IMAGE_PREFIX}expeliarmus-{grub.IMAGE_PREFIX}abcde', + f'{grub.IMAGE_PREFIX}expeliarmus-abcde', +] + +def test_set_default_image(): + image = installed_images[0] + expected_call = [call(['grub-set-default', '--boot-directory=' + grub.HOST_PATH, str(installed_images.index(image))])] + + with patch("sonic_installer.bootloader.grub.run_command") as mock_cmd: + bootloader = grub.GrubBootloader() + bootloader.get_installed_images = Mock(return_value=installed_images) + bootloader.set_default_image(image) + mock_cmd.assert_has_calls(expected_call) + +def test_set_next_image(): + image = installed_images[0] + expected_call = [call(['grub-reboot', '--boot-directory=' + grub.HOST_PATH, str(installed_images.index(image))])] + + with patch("sonic_installer.bootloader.grub.run_command") as mock_cmd: + bootloader = grub.GrubBootloader() + bootloader.get_installed_images = Mock(return_value=installed_images) + bootloader.set_next_image(image) + mock_cmd.assert_has_calls(expected_call) + +def test_install_image(): + image_path = 'sonic' + expected_calls = [ + call(["bash", image_path]), + call(['grub-set-default', '--boot-directory=' + grub.HOST_PATH, '0']) + ] + with patch('sonic_installer.bootloader.grub.run_command') as mock_cmd: + bootloader = grub.GrubBootloader() + bootloader.install_image(image_path) + mock_cmd.assert_has_calls(expected_calls) @patch("sonic_installer.bootloader.grub.subprocess.call", Mock()) @patch("sonic_installer.bootloader.grub.open") diff --git a/tests/installer_bootloader_uboot_test.py b/tests/installer_bootloader_uboot_test.py index 49973558..b896e097 100644 --- a/tests/installer_bootloader_uboot_test.py +++ b/tests/installer_bootloader_uboot_test.py @@ -1,9 +1,15 @@ import os -from unittest.mock import Mock, patch +from unittest.mock import Mock, patch, call # Import test module import sonic_installer.bootloader.uboot as uboot +# Constants +installed_images = [ + f'{uboot.IMAGE_PREFIX}expeliarmus-{uboot.IMAGE_PREFIX}abcde', + f'{uboot.IMAGE_PREFIX}expeliarmus-abcde', +] + class MockProc(): commandline = "linuxargs=" def communicate(): @@ -12,28 +18,73 @@ def communicate(): def mock_run_command(cmd): MockProc.commandline = cmd +@patch('sonic_installer.bootloader.uboot.run_command') +def test_set_default_image(mock_run_cmd): + subcmd = ['/usr/bin/fw_setenv', 'boot_next'] + image0, image1 = ['run sonic_image_1'], ['run sonic_image_2'] + expected_call0, expected_call1 = [call(subcmd + image0)], [call(subcmd + image1)] + + bootloader = uboot.UbootBootloader() + bootloader.get_installed_images = Mock(return_value=installed_images) + bootloader.set_default_image(installed_images[0]) + assert mock_run_cmd.call_args_list == expected_call0 + + mock_run_cmd.call_args_list = [] + bootloader.set_default_image(installed_images[1]) + assert mock_run_cmd.call_args_list == expected_call1 + +@patch('sonic_installer.bootloader.uboot.run_command') +def test_set_next_image(mock_run_cmd): + subcmd = ['/usr/bin/fw_setenv', 'boot_once'] + image0, image1 = ['run sonic_image_1'], ['run sonic_image_2'] + expected_call0, expected_call1 = [call(subcmd + image0)], [call(subcmd + image1)] + + bootloader = uboot.UbootBootloader() + bootloader.get_installed_images = Mock(return_value=installed_images) + bootloader.set_next_image(installed_images[0]) + assert mock_run_cmd.call_args_list == expected_call0 + + mock_run_cmd.call_args_list = [] + bootloader.set_next_image(installed_images[1]) + assert mock_run_cmd.call_args_list == expected_call1 + +@patch("sonic_installer.bootloader.uboot.run_command") +def test_install_image(mock_run_cmd): + image_path = ['sonic_image'] + expected_call = [call(['bash', image_path])] + + bootloader = uboot.UbootBootloader() + bootloader.install_image(image_path) + assert mock_run_cmd.call_args_list == expected_call + @patch("sonic_installer.bootloader.uboot.subprocess.call", Mock()) @patch("sonic_installer.bootloader.uboot.run_command") def test_remove_image(run_command_patch): # Constants image_path_prefix = os.path.join(uboot.HOST_PATH, uboot.IMAGE_DIR_PREFIX) - exp_image_path = f'{image_path_prefix}expeliarmus-{uboot.IMAGE_PREFIX}abcde' - - intstalled_images = [ - f'{uboot.IMAGE_PREFIX}expeliarmus-{uboot.IMAGE_PREFIX}abcde', - f'{uboot.IMAGE_PREFIX}expeliarmus-abcde', + exp_image_path = [ + f'{image_path_prefix}expeliarmus-{uboot.IMAGE_PREFIX}abcde', + f'{image_path_prefix}expeliarmus-abcde' ] bootloader = uboot.UbootBootloader() - bootloader.get_installed_images = Mock(return_value=intstalled_images) + bootloader.get_installed_images = Mock(return_value=installed_images) # Verify rm command was executed with image path - bootloader.remove_image(intstalled_images[0]) + bootloader.remove_image(installed_images[0]) args_list = uboot.subprocess.call.call_args_list assert len(args_list) > 0 args, _ = args_list[0] - assert exp_image_path in args[0] + assert exp_image_path[0] in args[0] + + uboot.subprocess.call.call_args_list = [] + bootloader.remove_image(installed_images[1]) + args_list = uboot.subprocess.call.call_args_list + assert len(args_list) > 0 + + args, _ = args_list[0] + assert exp_image_path[1] in args[0] @patch("sonic_installer.bootloader.uboot.subprocess.Popen") @patch("sonic_installer.bootloader.uboot.run_command") @@ -45,26 +96,21 @@ def communicate(self): def mock_run_command(cmd): # Remove leading string "/usr/bin/fw_setenv boot_next " -- the 29 characters + cmd = ' '.join(cmd) MockProc.commandline = cmd[29:] - # Constants - intstalled_images = [ - f'{uboot.IMAGE_PREFIX}expeliarmus-{uboot.IMAGE_PREFIX}abcde', - f'{uboot.IMAGE_PREFIX}expeliarmus-abcde', - ] - run_command_patch.side_effect = mock_run_command popen_patch.return_value = MockProc() bootloader = uboot.UbootBootloader() - bootloader.get_installed_images = Mock(return_value=intstalled_images) + bootloader.get_installed_images = Mock(return_value=installed_images) - bootloader.set_default_image(intstalled_images[1]) + bootloader.set_default_image(installed_images[1]) # Verify get_next_image was executed with image path next_image=bootloader.get_next_image() - assert next_image == intstalled_images[1] + assert next_image == installed_images[1] @patch("sonic_installer.bootloader.uboot.subprocess.Popen") @patch("sonic_installer.bootloader.uboot.run_command") @@ -76,6 +122,7 @@ def communicate(self): def mock_run_command(cmd): # Remove leading string "/usr/bin/fw_setenv linuxargs " -- the 29 characters + cmd = ' '.join(cmd) MockProc.commandline = 'linuxargs=' + cmd[29:] run_command_patch.side_effect = mock_run_command diff --git a/tests/installer_docker_test.py b/tests/installer_docker_test.py index 8897b841..d80379ba 100644 --- a/tests/installer_docker_test.py +++ b/tests/installer_docker_test.py @@ -1,11 +1,39 @@ +import sys import pytest +import subprocess import sonic_installer.main as sonic_installer +import sonic_installer.common as sonic_installer_common from click.testing import CliRunner -from unittest.mock import patch, MagicMock +from unittest.mock import patch, MagicMock, Mock SUCCESS = 0 +@patch("sonic_installer.main.subprocess.Popen") +def test_get_container_image_id(mock_popen): + image_tag = 'abcde' + + mock_proc = MagicMock() + attrs = {"communicate.return_value": ("output", "error")} + mock_proc.configure_mock(**attrs) + mock_popen.return_value = mock_proc + + expected_call = ["docker", "images", "--format", '{{.ID}}', image_tag] + sonic_installer.get_container_image_id(image_tag) + mock_popen.assert_called_with(expected_call, stdout=subprocess.PIPE, text=True) + +@patch("sonic_installer.main.subprocess.Popen") +def test_get_container_image_id_all(mock_popen): + image_name = 'abcde' + + mock_proc = MagicMock() + attrs = {"communicate.return_value": ("output", "error")} + mock_proc.configure_mock(**attrs) + mock_popen.return_value = mock_proc + + expected_call = ["docker", "images", "--format", '{{.ID}}', image_name] + sonic_installer.get_container_image_id_all(image_name) + mock_popen.assert_called_with(expected_call, stdout=subprocess.PIPE, text=True) @patch('sonic_installer.main.get_container_image_name', MagicMock(return_value='docker-fpm-frr')) @patch('sonic_installer.main.get_container_image_id_all', MagicMock(return_value=['1', '2'])) @@ -20,7 +48,7 @@ def test_rollback_docker_basic(mock_run_cmd): ) assert result.exit_code == SUCCESS - expect_docker_tag_command = 'docker tag docker-fpm-frr:some_tag docker-fpm-frr:latest' + expect_docker_tag_command = ['docker', 'tag', 'docker-fpm-frr:some_tag', 'docker-fpm-frr:latest'] mock_run_cmd.assert_called_with(expect_docker_tag_command) mock_run_cmd.reset() @@ -29,7 +57,7 @@ def test_rollback_docker_basic(mock_run_cmd): ) assert result.exit_code == SUCCESS - mock_run_cmd.assert_any_call('systemctl restart snmp') + mock_run_cmd.assert_any_call(['systemctl', 'restart', 'snmp']) @patch('sonic_installer.main.get_container_image_name', MagicMock(return_value='docker-fpm-frr')) diff --git a/tests/swap_allocator_test.py b/tests/swap_allocator_test.py index 960d4e8c..b77d7cad 100644 --- a/tests/swap_allocator_test.py +++ b/tests/swap_allocator_test.py @@ -58,7 +58,7 @@ def test_setup_swapmem(self): mock_fallocate.assert_called_once_with(pseudo_fd_fileno, 0, expected_swap_mem_size_in_bytes) mock_chmod.assert_called_once_with(expected_swapfile_location, expected_swapfile_permission) - mock_run.assert_called_once_with(f'mkswap {expected_swapfile_location}; swapon {expected_swapfile_location}') + mock_run.assert_has_calls([mock.call(['mkswap', expected_swapfile_location]), mock.call(['swapon', expected_swapfile_location])]) def test_remove_swapmem(self): with mock.patch("subprocess.Popen") as mock_popen, \ diff --git a/tests/test_sonic_installer.py b/tests/test_sonic_installer.py index c445dfb6..f44dcdf2 100644 --- a/tests/test_sonic_installer.py +++ b/tests/test_sonic_installer.py @@ -1,8 +1,17 @@ import os +import sys +import pytest from contextlib import contextmanager from sonic_installer.main import sonic_installer from click.testing import CliRunner from unittest.mock import patch, Mock, call +import sonic_installer.common as sonic_installer_common + + +def test_run_command(): + with pytest.raises(SystemExit) as e: + output = sonic_installer_common.run_command([sys.executable, "-c", "import sys; sys.exit(6)"]) + assert e.value.code == 6 @patch("sonic_installer.main.SWAPAllocator") @patch("sonic_installer.main.get_bootloader") From 56b6ac29f8363fcb8142a0192b16a5746b5a6411 Mon Sep 17 00:00:00 2001 From: Mai Bui Date: Wed, 7 Jun 2023 09:49:47 -0400 Subject: [PATCH 173/312] [consutil] replace shell=True (#2725) #### What I did `subprocess()` - when using with `shell=True` is dangerous. Using subprocess function without a static string can lead to command injection. #### How I did it `subprocess()` - use `shell=False` instead, use list of strings Ref: [https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation](https://semgrep.dev/docs/cheat-sheets/python-command-injection/#mitigation) #### How to verify it Pass UT Signed-off-by: maipbui --- consutil/lib.py | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/consutil/lib.py b/consutil/lib.py index e2ebf1da..1d7f967b 100644 --- a/consutil/lib.py +++ b/consutil/lib.py @@ -12,6 +12,7 @@ import click from sonic_py_common import device_info +from sonic_py_common.general import getstatusoutput_noshell_pipe ERR_DISABLE = 1 ERR_CMD = 2 @@ -199,7 +200,7 @@ def clear_session(self): try: if not self._session: pid = self.session_pid - cmd = "sudo kill -SIGTERM " + pid + cmd = ['sudo', 'kill', '-SIGTERM', str(pid)] SysInfoProvider.run_command(cmd) else: self._session.close() @@ -276,7 +277,7 @@ def init_device_prefix(): @staticmethod def list_console_ttys(): """Lists all console tty devices""" - cmd = "ls " + SysInfoProvider.DEVICE_PREFIX + "*" + cmd = ["ls", SysInfoProvider.DEVICE_PREFIX + "*"] output, _ = SysInfoProvider.run_command(cmd, abort=False) ttys = output.split('\n') ttys = list([dev for dev in ttys if re.match(SysInfoProvider.DEVICE_PREFIX + r"\d+", dev) != None]) @@ -285,15 +286,17 @@ def list_console_ttys(): @staticmethod def list_active_console_processes(): """Lists all active console session processes""" - cmd = 'ps -eo pid,lstart,cmd | grep -E "(mini|pico)com"' - output = SysInfoProvider.run_command(cmd) + cmd0 = ['ps', '-eo', 'pid,lstart,cmd'] + cmd1 = ['grep', '-E', "(mini|pico)com"] + output = SysInfoProvider.run_command(cmd0, cmd1) return SysInfoProvider._parse_processes_info(output) @staticmethod def get_active_console_process_info(pid): """Gets active console process information by PID""" - cmd = 'ps -p {} -o pid,lstart,cmd | grep -E "(mini|pico)com"'.format(pid) - output = SysInfoProvider.run_command(cmd) + cmd0 = ['ps', '-p', str(pid), '-o', 'pid,lstart,cmd'] + cmd1 = ['grep', '-E', "(mini|pico)com"] + output = SysInfoProvider.run_command(cmd0, cmd1) processes = SysInfoProvider._parse_processes_info(output) if len(list(processes.keys())) == 1: return (list(processes.keys())[0],) + list(processes.values())[0] @@ -325,15 +328,12 @@ def _parse_processes_info(output): return console_processes @staticmethod - def run_command(cmd, abort=True): - """runs command, exit if stderr is written to and abort argument is ture, returns stdout, stderr otherwise""" - proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True, text=True) - output = proc.stdout.read() - error = proc.stderr.read() - if abort and error != "": - click.echo("Command resulted in error: {}".format(error)) + def run_command(*args, abort=True): + exitcodes, output = getstatusoutput_noshell_pipe(*args) + if abort and any(exitcodes) and output != '': + click.echo("Command resulted in error: {}".format(output)) sys.exit(ERR_CMD) - return output if abort else (output, error) + return output if abort else (output, output) class DbUtils(object): def __init__(self, db): From 252c08351ce25bf8327b9a90b1145a68e5259891 Mon Sep 17 00:00:00 2001 From: amulyan7 <98349131+amulyan7@users.noreply.github.com> Date: Wed, 7 Jun 2023 12:46:39 -0700 Subject: [PATCH 174/312] Add display support for serial field in show chassis modules status CLI (#2858) Add display support for serial field in show chassis modules status CLI --- show/chassis_modules.py | 6 ++++-- tests/chassis_modules_test.py | 18 +++++++++--------- tests/mock_tables/state_db.json | 15 ++++++++++----- 3 files changed, 23 insertions(+), 16 deletions(-) diff --git a/show/chassis_modules.py b/show/chassis_modules.py index 73ea92d1..b94d8d62 100644 --- a/show/chassis_modules.py +++ b/show/chassis_modules.py @@ -12,6 +12,7 @@ CHASSIS_MODULE_INFO_SLOT_FIELD = 'slot' CHASSIS_MODULE_INFO_OPERSTATUS_FIELD = 'oper_status' CHASSIS_MODULE_INFO_ADMINSTATUS_FIELD = 'admin_status' +CHASSIS_MODULE_INFO_SERIAL_FIELD = 'serial' CHASSIS_MIDPLANE_INFO_TABLE = 'CHASSIS_MIDPLANE_TABLE' CHASSIS_MIDPLANE_INFO_IP_FIELD = 'ip_address' @@ -33,7 +34,7 @@ def modules(): def status(db, chassis_module_name): """Show chassis-modules status""" - header = ['Name', 'Description', 'Physical-Slot', 'Oper-Status', 'Admin-Status'] + header = ['Name', 'Description', 'Physical-Slot', 'Oper-Status', 'Admin-Status', 'Serial'] chassis_cfg_table = db.cfgdb.get_table('CHASSIS_MODULE') state_db = SonicV2Connector(host="127.0.0.1") @@ -59,13 +60,14 @@ def status(db, chassis_module_name): desc = data_dict[CHASSIS_MODULE_INFO_DESC_FIELD] slot = data_dict[CHASSIS_MODULE_INFO_SLOT_FIELD] oper_status = data_dict[CHASSIS_MODULE_INFO_OPERSTATUS_FIELD] + serial = data_dict[CHASSIS_MODULE_INFO_SERIAL_FIELD] admin_status = 'up' config_data = chassis_cfg_table.get(key_list[1]) if config_data is not None: admin_status = config_data.get(CHASSIS_MODULE_INFO_ADMINSTATUS_FIELD) - table.append((key_list[1], desc, slot, oper_status, admin_status)) + table.append((key_list[1], desc, slot, oper_status, admin_status, serial)) if table: click.echo(tabulate(table, header, tablefmt='simple', stralign='right')) diff --git a/tests/chassis_modules_test.py b/tests/chassis_modules_test.py index a9ba0f82..8196b12f 100644 --- a/tests/chassis_modules_test.py +++ b/tests/chassis_modules_test.py @@ -13,23 +13,23 @@ from .utils import get_result_and_return_code show_linecard0_shutdown_output="""\ -LINE-CARD0 line-card 1 Empty down +LINE-CARD0 line-card 1 Empty down LC1000101 """ show_linecard0_startup_output="""\ -LINE-CARD0 line-card 1 Empty up +LINE-CARD0 line-card 1 Empty up LC1000101 """ header_lines = 2 warning_lines = 0 show_chassis_modules_output="""\ - Name Description Physical-Slot Oper-Status Admin-Status ------------- --------------- --------------- ------------- -------------- -FABRIC-CARD0 fabric-card 17 Online up -FABRIC-CARD1 fabric-card 18 Offline up - LINE-CARD0 line-card 1 Empty up - LINE-CARD1 line-card 2 Online down - SUPERVISOR0 supervisor-card 16 Online up + Name Description Physical-Slot Oper-Status Admin-Status Serial +------------ --------------- --------------- ------------- -------------- --------- +FABRIC-CARD0 fabric-card 17 Online up FC1000101 +FABRIC-CARD1 fabric-card 18 Offline up FC1000102 + LINE-CARD0 line-card 1 Empty up LC1000101 + LINE-CARD1 line-card 2 Online down LC1000102 + SUPERVISOR0 supervisor-card 16 Online up RP1000101 """ show_chassis_midplane_output="""\ diff --git a/tests/mock_tables/state_db.json b/tests/mock_tables/state_db.json index 289bf3ce..1e7b506c 100644 --- a/tests/mock_tables/state_db.json +++ b/tests/mock_tables/state_db.json @@ -1114,27 +1114,32 @@ "CHASSIS_MODULE_TABLE|SUPERVISOR0": { "desc": "supervisor-card", "oper_status": "Online", - "slot": "16" + "slot": "16", + "serial": "RP1000101" }, "CHASSIS_MODULE_TABLE|LINE-CARD0": { "desc": "line-card", "oper_status": "Empty", - "slot": "1" + "slot": "1", + "serial": "LC1000101" }, "CHASSIS_MODULE_TABLE|LINE-CARD1": { "desc": "line-card", "oper_status": "Online", - "slot": "2" + "slot": "2", + "serial": "LC1000102" }, "CHASSIS_MODULE_TABLE|FABRIC-CARD0": { "desc": "fabric-card", "oper_status": "Online", - "slot": "17" + "slot": "17", + "serial": "FC1000101" }, "CHASSIS_MODULE_TABLE|FABRIC-CARD1": { "desc": "fabric-card", "oper_status": "Offline", - "slot": "18" + "slot": "18", + "serial": "FC1000102" }, "MUX_CABLE_TABLE|Ethernet32": { "state": "active" From 788db8c3b9ce3b4b624e27e1cdd2e2105d0e88e6 Mon Sep 17 00:00:00 2001 From: isabelmsft <67024108+isabelmsft@users.noreply.github.com> Date: Wed, 7 Jun 2023 17:18:11 -0700 Subject: [PATCH 175/312] [GCU] Complete RDMA Platform Validator PR (#2857) --- .../field_operation_validators.py | 117 ++++++++++++++- .../gcu_field_operation_validators.conf.json | 119 ++++++++++++++- generic_config_updater/gu_common.py | 6 +- .../field_operation_validator_test.py | 142 ++++++++++++++++++ .../gcu_feature_patch_application_test.py | 5 +- .../generic_config_updater/gu_common_test.py | 56 ------- 6 files changed, 379 insertions(+), 66 deletions(-) create mode 100644 tests/generic_config_updater/field_operation_validator_test.py diff --git a/generic_config_updater/field_operation_validators.py b/generic_config_updater/field_operation_validators.py index 84cc4854..72af9c8b 100644 --- a/generic_config_updater/field_operation_validators.py +++ b/generic_config_updater/field_operation_validators.py @@ -1,10 +1,117 @@ -from sonic_py_common import device_info +import os import re +import json +import jsonpointer +import subprocess +from sonic_py_common import device_info +from .gu_common import GenericConfigUpdaterError + + +SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__)) +GCU_TABLE_MOD_CONF_FILE = f"{SCRIPT_DIR}/gcu_field_operation_validators.conf.json" +GET_HWSKU_CMD = "sonic-cfggen -d -v DEVICE_METADATA.localhost.hwsku" + +def get_asic_name(): + asic = "unknown" + + if os.path.exists(GCU_TABLE_MOD_CONF_FILE): + with open(GCU_TABLE_MOD_CONF_FILE, "r") as s: + gcu_field_operation_conf = json.load(s) + else: + raise GenericConfigUpdaterError("GCU table modification validators config file not found") + + asic_mapping = gcu_field_operation_conf["helper_data"]["rdma_config_update_validator"] + asic_type = device_info.get_sonic_version_info()['asic_type'] + + if asic_type == 'cisco-8000': + asic = "cisco-8000" + elif asic_type == 'mellanox' or asic_type == 'vs' or asic_type == 'broadcom': + proc = subprocess.Popen(GET_HWSKU_CMD, shell=True, universal_newlines=True, stdout=subprocess.PIPE) + output, err = proc.communicate() + hwsku = output.rstrip('\n') + if asic_type == 'mellanox' or asic_type == 'vs': + spc1_hwskus = asic_mapping["mellanox_asics"]["spc1"] + if hwsku.lower() in [spc1_hwsku.lower() for spc1_hwsku in spc1_hwskus]: + asic = "spc1" + return asic + if asic_type == 'broadcom' or asic_type == 'vs': + broadcom_asics = asic_mapping["broadcom_asics"] + for asic_shorthand, hwskus in broadcom_asics.items(): + if asic != "unknown": + break + for hwsku_cur in hwskus: + if hwsku_cur.lower() in hwsku.lower(): + asic = asic_shorthand + break + + return asic -def rdma_config_update_validator(): - version_info = device_info.get_sonic_version_info() - asic_type = version_info.get('asic_type') - if (asic_type != 'mellanox' and asic_type != 'broadcom' and asic_type != 'cisco-8000'): +def rdma_config_update_validator(patch_element): + asic = get_asic_name() + if asic == "unknown": return False + version_info = device_info.get_sonic_version_info() + build_version = version_info.get('build_version') + version_substrings = build_version.split('.') + branch_version = None + + for substring in version_substrings: + if substring.isdigit() and re.match(r'^\d{8}$', substring): + branch_version = substring + + path = patch_element["path"] + table = jsonpointer.JsonPointer(path).parts[0] + + # Helper function to return relevant cleaned paths, consdiers case where the jsonpatch value is a dict + # For paths like /PFC_WD/Ethernet112/action, remove Ethernet112 from the path so that we can clearly determine the relevant field (i.e. action, not Ethernet112) + def _get_fields_in_patch(): + cleaned_fields = [] + + field_elements = jsonpointer.JsonPointer(path).parts[1:] + cleaned_field_elements = [elem for elem in field_elements if not any(char.isdigit() for char in elem)] + cleaned_field = '/'.join(cleaned_field_elements).lower() + + + if 'value' in patch_element.keys() and isinstance(patch_element['value'], dict): + for key in patch_element['value']: + cleaned_fields.append(cleaned_field+ '/' + key) + else: + cleaned_fields.append(cleaned_field) + + return cleaned_fields + + if os.path.exists(GCU_TABLE_MOD_CONF_FILE): + with open(GCU_TABLE_MOD_CONF_FILE, "r") as s: + gcu_field_operation_conf = json.load(s) + else: + raise GenericConfigUpdaterError("GCU table modification validators config file not found") + + tables = gcu_field_operation_conf["tables"] + scenarios = tables[table]["validator_data"]["rdma_config_update_validator"] + + cleaned_fields = _get_fields_in_patch() + for cleaned_field in cleaned_fields: + scenario = None + for key in scenarios.keys(): + if cleaned_field in scenarios[key]["fields"]: + scenario = scenarios[key] + break + + if scenario is None: + return False + + if scenario["platforms"][asic] == "": + return False + + if patch_element['op'] not in scenario["operations"]: + return False + + if branch_version is not None: + if asic in scenario["platforms"]: + if branch_version < scenario["platforms"][asic]: + return False + else: + return False + return True diff --git a/generic_config_updater/gcu_field_operation_validators.conf.json b/generic_config_updater/gcu_field_operation_validators.conf.json index f12a14d8..2dcf1649 100644 --- a/generic_config_updater/gcu_field_operation_validators.conf.json +++ b/generic_config_updater/gcu_field_operation_validators.conf.json @@ -10,11 +10,128 @@ "e.g. 'show.acl.test_acl'", "", "field_operation_validators for a given table defines a list of validators that all must pass for modification to the specified field and table to be allowed", + "", + "validator_data provides data relevant to each validator", "" ], + "helper_data": { + "rdma_config_update_validator": { + "mellanox_asics": { + "spc1": [ "ACS-MSN2700", "ACS-MSN2740", "ACS-MSN2100", "ACS-MSN2410", "ACS-MSN2010", "Mellanox-SN2700", "Mellanox-SN2700-D48C8" ] + }, + "broadcom_asics": { + "th": [ "Force10-S6100", "Arista-7060CX-32S-C32", "Arista-7060CX-32S-C32-T1", "Arista-7060CX-32S-D48C8", "Celestica-DX010-C32", "Seastone-DX010" ], + "th2": [ "Arista-7260CX3-D108C8", "Arista-7260CX3-C64", "Arista-7260CX3-Q64" ], + "td2": [ "Force10-S6000", "Force10-S6000-Q24S32", "Arista-7050-QX32", "Arista-7050-QX-32S", "Nexus-3164", "Arista-7050QX32S-Q32" ], + "td3": [ "Arista-7050CX3-32S-C32", "Arista-7050CX3-32S-D48C8" ] + } + } + }, "tables": { "PFC_WD": { - "field_operation_validators": [ "generic_config_updater.field_operation_validators.rdma_config_update_validator" ] + "field_operation_validators": [ "generic_config_updater.field_operation_validators.rdma_config_update_validator" ], + "validator_data": { + "rdma_config_update_validator": { + "PFCWD enable/disable": { + "fields": [ + "restoration_time", + "detection_time", + "action", + "global/poll_interval" + ], + "operations": ["remove", "add", "replace"], + "platforms": { + "spc1": "20181100", + "td2": "20181100", + "th": "20181100", + "th2": "20181100", + "td3": "20201200", + "cisco-8000": "20201200" + } + } + } + } + }, + "BUFFER_POOL": { + "field_operation_validators": [ "generic_config_updater.field_operation_validators.rdma_config_update_validator" ], + "validator_data": { + "rdma_config_update_validator": { + "Shared/headroom pool size changes": { + "fields": [ + "ingress_lossless_pool/xoff", + "ingress_lossless_pool/size", + "egress_lossy_pool/size" + ], + "operations": ["replace"], + "platforms": { + "spc1": "20191100", + "td2": "", + "th": "20221100", + "th2": "20221100", + "td3": "20221100", + "cisco-8000": "" + } + } + } + } + }, + "BUFFER_PROFILE": { + "field_operation_validators": [ "generic_config_updater.field_operation_validators.rdma_config_update_validator" ], + "validator_data": { + "rdma_config_update_validator": { + "Dynamic threshold tuning": { + "fields": [ + "dynamic_th" + ], + "operations": ["replace"], + "platforms": { + "spc1": "20181100", + "td2": "20181100", + "th": "20181100", + "th2": "20181100", + "td3": "20201200", + "cisco-8000": "" + } + }, + "PG headroom modification": { + "fields": [ + "xoff" + ], + "operations": ["replace"], + "platforms": { + "spc1": "20191100", + "td2": "", + "th": "20221100", + "th2": "20221100", + "td3": "20221100", + "cisco-8000": "" + } + } + } + } + }, + "WRED_PROFILE": { + "field_operation_validators": [ "generic_config_updater.field_operation_validators.rdma_config_update_validator" ], + "validator_data": { + "rdma_config_update_validator": { + "ECN tuning": { + "fields": [ + "azure_lossless/green_min_threshold", + "azure_lossless/green_max_threshold", + "azure_lossless/green_drop_probability" + ], + "operations": ["replace"], + "platforms": { + "spc1": "20181100", + "td2": "20181100", + "th": "20181100", + "th2": "20181100", + "td3": "20201200", + "cisco-8000": "" + } + } + } + } } } } diff --git a/generic_config_updater/gu_common.py b/generic_config_updater/gu_common.py index e8c66fcb..a6cb8de0 100644 --- a/generic_config_updater/gu_common.py +++ b/generic_config_updater/gu_common.py @@ -166,7 +166,7 @@ def validate_field_operation(self, old_config, target_config): if any(op['op'] == operation and field == op['path'] for op in patch): raise IllegalPatchOperationError("Given patch operation is invalid. Operation: {} is illegal on field: {}".format(operation, field)) - def _invoke_validating_function(cmd): + def _invoke_validating_function(cmd, jsonpatch_element): # cmd is in the format as . method_name = cmd.split(".")[-1] module_name = ".".join(cmd.split(".")[0:-1]) @@ -174,7 +174,7 @@ def _invoke_validating_function(cmd): raise GenericConfigUpdaterError("Attempting to call invalid method {} in module {}. Module must be generic_config_updater.field_operation_validators, and method must be a defined validator".format(method_name, module_name)) module = importlib.import_module(module_name, package=None) method_to_call = getattr(module, method_name) - return method_to_call() + return method_to_call(jsonpatch_element) if os.path.exists(GCU_FIELD_OP_CONF_FILE): with open(GCU_FIELD_OP_CONF_FILE, "r") as s: @@ -194,7 +194,7 @@ def _invoke_validating_function(cmd): validating_functions.update(tables.get(table, {}).get("field_operation_validators", [])) for function in validating_functions: - if not _invoke_validating_function(function): + if not _invoke_validating_function(function, element): raise IllegalPatchOperationError("Modification of {} table is illegal- validating function {} returned False".format(table, function)) diff --git a/tests/generic_config_updater/field_operation_validator_test.py b/tests/generic_config_updater/field_operation_validator_test.py new file mode 100644 index 00000000..4ffe11d5 --- /dev/null +++ b/tests/generic_config_updater/field_operation_validator_test.py @@ -0,0 +1,142 @@ +import io +import unittest +import mock +import json +import subprocess +import generic_config_updater +import generic_config_updater.field_operation_validators as fov +import generic_config_updater.gu_common as gu_common + +from unittest.mock import MagicMock, Mock, mock_open +from mock import patch +from sonic_py_common.device_info import get_hwsku, get_sonic_version_info + + +class TestValidateFieldOperation(unittest.TestCase): + + @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="unknown")) + def test_rdma_config_update_validator_unknown_asic(self): + patch_element = {"path": "/PFC_WD/Ethernet4/restoration_time", "op": "replace", "value": "234234"} + assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == False + + @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"build_version": "SONiC.20220530"})) + @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="td3")) + @patch("os.path.exists", mock.Mock(return_value=True)) + @patch("builtins.open", mock_open(read_data='{"tables": {"BUFFER_POOL": {"validator_data": {"rdma_config_update_validator": {"Shared/headroom pool size changes": {"fields": ["ingress_lossless_pool/xoff", "ingress_lossless_pool/size", "egress_lossy_pool/size"], "operations": ["replace"], "platforms": {"td3": "20221100"}}}}}}}')) + def test_rdma_config_update_validator_td3_asic_invalid_version(self): + patch_element = {"path": "/BUFFER_POOL/ingress_lossless_pool/xoff", "op": "replace", "value": "234234"} + assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == False + + @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"build_version": "SONiC.20220530"})) + @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="spc1")) + @patch("os.path.exists", mock.Mock(return_value=True)) + @patch("builtins.open", mock_open(read_data='{"tables": {"PFC_WD": {"validator_data": {"rdma_config_update_validator": {"PFCWD enable/disable": {"fields": ["detection_time", "action"], "operations": ["remove", "replace", "add"], "platforms": {"spc1": "20181100"}}}}}}}')) + def test_rdma_config_update_validator_spc_asic_valid_version(self): + patch_element = {"path": "/PFC_WD/Ethernet8/detection_time", "op": "remove"} + assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == True + + @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"build_version": "SONiC.20220530"})) + @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="spc1")) + @patch("os.path.exists", mock.Mock(return_value=True)) + @patch("builtins.open", mock_open(read_data='{"tables": {"BUFFER_POOL": {"validator_data": {"rdma_config_update_validator": {"Shared/headroom pool size changes": {"fields": ["ingress_lossless_pool/xoff", "egress_lossy_pool/size"], "operations": ["replace"], "platforms": {"spc1": "20181100"}}}}}}}')) + def test_rdma_config_update_validator_spc_asic_invalid_op(self): + patch_element = {"path": "/BUFFER_POOL/ingress_lossless_pool/xoff", "op": "remove"} + assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == False + + @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"build_version": "SONiC.20220530"})) + @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="spc1")) + @patch("os.path.exists", mock.Mock(return_value=True)) + @patch("builtins.open", mock_open(read_data='{"tables": {"PFC_WD": {"validator_data": {"rdma_config_update_validator": {"PFCWD enable/disable": {"fields": ["detection_time", "action"], "operations": ["remove", "replace", "add"], "platforms": {"spc1": "20181100"}}}}}}}')) + def test_rdma_config_update_validator_spc_asic_other_field(self): + patch_element = {"path": "/PFC_WD/Ethernet8/other_field", "op": "add", "value": "sample_value"} + assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == False + + def test_validate_field_operation_illegal__pfcwd(self): + old_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "60"}}} + target_config = {"PFC_WD": {"GLOBAL": {}}} + config_wrapper = gu_common.ConfigWrapper() + self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) + + def test_validate_field_operation_legal__rm_loopback1(self): + old_config = { + "LOOPBACK_INTERFACE": { + "Loopback0": {}, + "Loopback0|10.1.0.32/32": {}, + "Loopback1": {}, + "Loopback1|10.1.0.33/32": {} + } + } + target_config = { + "LOOPBACK_INTERFACE": { + "Loopback0": {}, + "Loopback0|10.1.0.32/32": {} + } + } + config_wrapper = gu_common.ConfigWrapper() + config_wrapper.validate_field_operation(old_config, target_config) + + def test_validate_field_operation_illegal__rm_loopback0(self): + old_config = { + "LOOPBACK_INTERFACE": { + "Loopback0": {}, + "Loopback0|10.1.0.32/32": {}, + "Loopback1": {}, + "Loopback1|10.1.0.33/32": {} + } + } + target_config = { + "LOOPBACK_INTERFACE": { + "Loopback1": {}, + "Loopback1|10.1.0.33/32": {} + } + } + config_wrapper = gu_common.ConfigWrapper() + self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) + +class TestGetAsicName(unittest.TestCase): + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_spc1(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'mellanox'} + mock_popen.return_value = mock.Mock() + mock_popen.return_value.communicate.return_value = ["Mellanox-SN2700-D48C8", 0] + self.assertEqual(fov.get_asic_name(), "spc1") + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_th(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'broadcom'} + mock_popen.return_value = mock.Mock() + mock_popen.return_value.communicate.return_value = ["Force10-S6100", 0] + self.assertEqual(fov.get_asic_name(), "th") + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_th2(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'broadcom'} + mock_popen.return_value = mock.Mock() + mock_popen.return_value.communicate.return_value = ["Arista-7260CX3-D108C8", 0] + self.assertEqual(fov.get_asic_name(), "th2") + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_td2(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'broadcom'} + mock_popen.return_value = mock.Mock() + mock_popen.return_value.communicate.return_value = ["Force10-S6000", 0] + self.assertEqual(fov.get_asic_name(), "td2") + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_td3(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'broadcom'} + mock_popen.return_value = mock.Mock() + mock_popen.return_value.communicate.return_value = ["Arista-7050CX3-32S-C32", 0] + self.assertEqual(fov.get_asic_name(), "td3") + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_cisco(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'cisco-8000'} + self.assertEqual(fov.get_asic_name(), "cisco-8000") diff --git a/tests/generic_config_updater/gcu_feature_patch_application_test.py b/tests/generic_config_updater/gcu_feature_patch_application_test.py index 3f744e20..db625e8c 100644 --- a/tests/generic_config_updater/gcu_feature_patch_application_test.py +++ b/tests/generic_config_updater/gcu_feature_patch_application_test.py @@ -1,6 +1,7 @@ import jsonpatch import unittest import copy +import mock from unittest.mock import MagicMock, Mock from mock import patch @@ -31,7 +32,8 @@ def get_running_config(): class TestFeaturePatchApplication(unittest.TestCase): def setUp(self): self.config_wrapper = ConfigWrapper() - + + @patch("generic_config_updater.field_operation_validators.rdma_config_update_validator", mock.Mock(return_value=True)) def test_feature_patch_application_success(self): # Format of the JSON file containing the test-cases: # @@ -52,6 +54,7 @@ def test_feature_patch_application_success(self): with self.subTest(name=test_case_name): self.run_single_success_case_applier(data[test_case_name]) + @patch("generic_config_updater.field_operation_validators.rdma_config_update_validator", mock.Mock(return_value=True)) def test_feature_patch_application_failure(self): # Fromat of the JSON file containing the test-cases: # diff --git a/tests/generic_config_updater/gu_common_test.py b/tests/generic_config_updater/gu_common_test.py index a319a25e..a2a776c0 100644 --- a/tests/generic_config_updater/gu_common_test.py +++ b/tests/generic_config_updater/gu_common_test.py @@ -71,62 +71,6 @@ def setUp(self): self.config_wrapper_mock = gu_common.ConfigWrapper() self.config_wrapper_mock.get_config_db_as_json=MagicMock(return_value=Files.CONFIG_DB_AS_JSON) - @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"asic_type": "mellanox", "build_version": "SONiC.20181131"})) - def test_validate_field_operation_legal__pfcwd(self): - old_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "60"}}} - target_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "40"}}} - config_wrapper = gu_common.ConfigWrapper() - config_wrapper.validate_field_operation(old_config, target_config) - - def test_validate_field_operation_illegal__pfcwd(self): - old_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "60"}}} - target_config = {"PFC_WD": {"GLOBAL": {}}} - config_wrapper = gu_common.ConfigWrapper() - self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) - - @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"asic_type": "invalid-asic", "build_version": "SONiC.20181131"})) - def test_validate_field_modification_illegal__pfcwd(self): - old_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "60"}}} - target_config = {"PFC_WD": {"GLOBAL": {"POLL_INTERVAL": "80"}}} - config_wrapper = gu_common.ConfigWrapper() - self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) - - def test_validate_field_operation_legal__rm_loopback1(self): - old_config = { - "LOOPBACK_INTERFACE": { - "Loopback0": {}, - "Loopback0|10.1.0.32/32": {}, - "Loopback1": {}, - "Loopback1|10.1.0.33/32": {} - } - } - target_config = { - "LOOPBACK_INTERFACE": { - "Loopback0": {}, - "Loopback0|10.1.0.32/32": {} - } - } - config_wrapper = gu_common.ConfigWrapper() - config_wrapper.validate_field_operation(old_config, target_config) - - def test_validate_field_operation_illegal__rm_loopback0(self): - old_config = { - "LOOPBACK_INTERFACE": { - "Loopback0": {}, - "Loopback0|10.1.0.32/32": {}, - "Loopback1": {}, - "Loopback1|10.1.0.33/32": {} - } - } - target_config = { - "LOOPBACK_INTERFACE": { - "Loopback1": {}, - "Loopback1|10.1.0.33/32": {} - } - } - config_wrapper = gu_common.ConfigWrapper() - self.assertRaises(gu_common.IllegalPatchOperationError, config_wrapper.validate_field_operation, old_config, target_config) - def test_ctor__default_values_set(self): config_wrapper = gu_common.ConfigWrapper() From 0f67ab799d46b8e9449dd093bfde713e49641a02 Mon Sep 17 00:00:00 2001 From: Mai Bui Date: Fri, 9 Jun 2023 09:33:40 -0400 Subject: [PATCH 176/312] remove docker-sonic-vs directory (#2868) #### Why I did it docker-sonic-vs/Dockerfile is not used, remove it. ##### Work item tracking - Microsoft ADO **(number only)**: 17418730 #### How I did it remove docker-sonic-vs/Dockerfile Signed-off-by: Mai Bui --- .azure-pipelines/docker-sonic-vs/Dockerfile | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 .azure-pipelines/docker-sonic-vs/Dockerfile diff --git a/.azure-pipelines/docker-sonic-vs/Dockerfile b/.azure-pipelines/docker-sonic-vs/Dockerfile deleted file mode 100644 index 2b3e6342..00000000 --- a/.azure-pipelines/docker-sonic-vs/Dockerfile +++ /dev/null @@ -1,11 +0,0 @@ -FROM docker-sonic-vs - -ARG docker_container_name - -ADD ["wheels", "/wheels"] - -# Uninstalls only sonic-utilities and does not impact its dependencies -RUN pip3 uninstall -y sonic-utilities - -# Installs sonic-utilities, adds missing dependencies, upgrades out-dated depndencies -RUN pip3 install /wheels/sonic_utilities-1.2-py3-none-any.whl From dbcaaf8aa27b37dfba1b088e2fa59fd94b8dc683 Mon Sep 17 00:00:00 2001 From: Yaqiang Zhu Date: Mon, 12 Jun 2023 09:49:41 +0800 Subject: [PATCH 177/312] [dhcp-relay] Fix dhcp6relay counter issue (#2866) Why I did While deleting a Vlan, clear dhcpv6_relay counter info state_db before dhcp_relay container restart would cause that counter info still exist in state_db, which is incorrect. Microsoft ADO number: 24211173 How I did it Clear counter info in state_db after container restart. How to verify it Previous ut and build image to verify. Signed-off-by: Yaqiang Zhu --- config/vlan.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/config/vlan.py b/config/vlan.py index ec4b269c..03660ab0 100644 --- a/config/vlan.py +++ b/config/vlan.py @@ -118,15 +118,14 @@ def del_vlan(db, vid, no_restart_dhcp_relay): # set dhcpv4_relay table set_dhcp_relay_table('VLAN', config_db, vlan, None) - delete_state_db_entry(vlan) - 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 {}" From de4917981230d8961c7fea3c5fdc44f6766a0351 Mon Sep 17 00:00:00 2001 From: wenyiz2021 <91497961+wenyiz2021@users.noreply.github.com> Date: Tue, 13 Jun 2023 15:36:47 -0700 Subject: [PATCH 178/312] fix precedence in portstat CLI (#2874) fix sonic-net/sonic-buildimage#15439 --- scripts/portstat | 4 ++-- tests/portstat_test.py | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/portstat b/scripts/portstat index 43746cc1..6294ba57 100755 --- a/scripts/portstat +++ b/scripts/portstat @@ -338,7 +338,7 @@ class Portstat(object): print(table_as_json(table, header)) else: print(tabulate(table, header, tablefmt='simple', stralign='right')) - if multi_asic.is_multi_asic() or device_info.is_chassis() and not use_json: + if (multi_asic.is_multi_asic() or device_info.is_chassis()) and not use_json: print("\nReminder: Please execute 'show interface counters -d all' to include internal links\n") def cnstat_intf_diff_print(self, cnstat_new_dict, cnstat_old_dict, intf_list): @@ -556,7 +556,7 @@ class Portstat(object): print(table_as_json(table, header)) else: print(tabulate(table, header, tablefmt='simple', stralign='right')) - if multi_asic.is_multi_asic() or device_info.is_chassis() and not use_json: + if (multi_asic.is_multi_asic() or device_info.is_chassis()) and not use_json: print("\nReminder: Please execute 'show interface counters -d all' to include internal links\n") def main(): diff --git a/tests/portstat_test.py b/tests/portstat_test.py index bf7a2db1..885c0666 100644 --- a/tests/portstat_test.py +++ b/tests/portstat_test.py @@ -192,7 +192,6 @@ Reminder: Please execute 'show interface counters -d all' to include internal links """ - intf_invalid_asic_error = """ValueError: Unknown Namespace asic99""" intf_counters_detailed = """\ From f186376ed379803d684cade9ffc801ac7033b861 Mon Sep 17 00:00:00 2001 From: Junchao-Mellanox <57339448+Junchao-Mellanox@users.noreply.github.com> Date: Wed, 14 Jun 2023 14:06:56 +0800 Subject: [PATCH 179/312] Fix issue: show interfaces transceiver eeprom -d should display same entry for CMIS cable (#2864) * Fix issue: show interfaces transceiver eeprom -d should display same entry for CMIS cable * Fix unit test issue --- scripts/sfpshow | 6 +- sfputil/main.py | 6 +- tests/mock_tables/state_db.json | 105 +++++++++++++++++++++ tests/sfp_test.py | 75 +++++++++++++++ tests/sfputil_test.py | 156 +++++++++++++++++++++++++++----- 5 files changed, 318 insertions(+), 30 deletions(-) diff --git a/scripts/sfpshow b/scripts/sfpshow index 5ed13901..81add132 100755 --- a/scripts/sfpshow +++ b/scripts/sfpshow @@ -345,9 +345,9 @@ class SFPShow(object): channel_threshold_align = 18 module_threshold_align = 15 - if sfp_type.startswith('QSFP'): + if sfp_type.startswith('QSFP') or sfp_type.startswith('OSFP'): # Channel Monitor - if sfp_type.startswith('QSFP-DD'): + if sfp_type.startswith('QSFP-DD') or sfp_type.startswith('OSFP'): output_dom += (indent + 'ChannelMonitorValues:\n') sorted_key_table = natsorted(QSFP_DD_DOM_CHANNEL_MONITOR_MAP) output_channel = self.format_dict_value_to_string( @@ -365,7 +365,7 @@ class SFPShow(object): output_dom += output_channel # Channel Threshold - if sfp_type.startswith('QSFP-DD'): + if sfp_type.startswith('QSFP-DD') or sfp_type.startswith('OSFP'): dom_map = SFP_DOM_CHANNEL_THRESHOLD_MAP else: dom_map = QSFP_DOM_CHANNEL_THRESHOLD_MAP diff --git a/sfputil/main.py b/sfputil/main.py index 3af370d5..c19f8bdf 100644 --- a/sfputil/main.py +++ b/sfputil/main.py @@ -372,9 +372,9 @@ def convert_dom_to_output_string(sfp_type, dom_info_dict): channel_threshold_align = 18 module_threshold_align = 15 - if sfp_type.startswith('QSFP'): + if sfp_type.startswith('QSFP') or sfp_type.startswith('OSFP'): # Channel Monitor - if sfp_type.startswith('QSFP-DD'): + if sfp_type.startswith('QSFP-DD') or sfp_type.startswith('OSFP'): output_dom += (indent + 'ChannelMonitorValues:\n') sorted_key_table = natsorted(QSFP_DD_DOM_CHANNEL_MONITOR_MAP) output_channel = format_dict_value_to_string( @@ -392,7 +392,7 @@ def convert_dom_to_output_string(sfp_type, dom_info_dict): output_dom += output_channel # Channel Threshold - if sfp_type.startswith('QSFP-DD'): + if sfp_type.startswith('QSFP-DD') or sfp_type.startswith('OSFP'): dom_map = SFP_DOM_CHANNEL_THRESHOLD_MAP else: dom_map = QSFP_DOM_CHANNEL_THRESHOLD_MAP diff --git a/tests/mock_tables/state_db.json b/tests/mock_tables/state_db.json index 1e7b506c..f98de518 100644 --- a/tests/mock_tables/state_db.json +++ b/tests/mock_tables/state_db.json @@ -691,6 +691,111 @@ "supported_max_laser_freq" : "196100", "supported_min_laser_freq" : "191300" }, + "TRANSCEIVER_INFO|Ethernet72": { + "active_apsel_hostlane4": "N/A", + "active_firmware": "0.0", + "is_replaceable": "True", + "application_advertisement": "{1: {'host_electrical_interface_id': 'IB NDR', 'module_media_interface_id': 'Copper cable', 'media_lane_count': 4, 'host_lane_count': 4, 'host_lane_assignment_options': 17}, 2: {'host_electrical_interface_id': 'IB SDR (Arch.Spec.Vol.2)', 'module_media_interface_id': 'Copper cable', 'media_lane_count': 4, 'host_lane_count': 4, 'host_lane_assignment_options': 17}}", + "host_electrical_interface": "N/A", + "active_apsel_hostlane2": "N/A", + "supported_min_tx_power": "N/A", + "supported_max_tx_power": "N/A", + "host_lane_assignment_option": "17", + "specification_compliance": "passive_copper_media_interface", + "ext_identifier": "Power Class 1 (0.25W Max)", + "active_apsel_hostlane8": "N/A", + "manufacturer": "vendor1 ", + "cmis_rev": "5.0", + "cable_type": "Length Cable Assembly(m)", + "supported_min_laser_freq": "N/A", + "serial": "serial1 ", + "active_apsel_hostlane7": "N/A", + "inactive_firmware": "N/A", + "active_apsel_hostlane1": "N/A", + "type": "OSFP 8X Pluggable Transceiver", + "cable_length": "1.0", + "active_apsel_hostlane5": "N/A", + "media_lane_assignment_option": "N/A", + "vendor_rev": "A3", + "active_apsel_hostlane6": "N/A", + "encoding": "N/A", + "dom_capability": "N/A", + "media_interface_technology": "Copper cable unequalized", + "nominal_bit_rate": "0", + "hardware_rev": "0.0", + "media_lane_count": "0", + "host_lane_count": "4", + "vendor_oui": "some-oui", + "connector": "No separable connector", + "supported_max_laser_freq": "N/A", + "media_interface_code": "Copper cable", + "active_apsel_hostlane3": "N/A", + "ext_rateselect_compliance": "N/A", + "model": "some-model ", + "vendor_date": "2022-05-28 " + }, + "TRANSCEIVER_DOM_SENSOR|Ethernet72": { + "rx_los": "N/A", + "tx_fault": "N/A", + "tx_disabled_channel": "N/A", + "temperature": "40.5", + "voltage": "3.331", + "tx1disable": "N/A", + "tx1bias": "6.5", + "rx1power": "0.5", + "tx1power": "0.6", + "tx2disable": "N/A", + "tx2bias": "6.5", + "rx2power": "0.3", + "tx2power": "0.4", + "tx3disable": "N/A", + "tx3bias": "6.6", + "rx3power": "0.1", + "tx3power": "0.2", + "tx4disable": "N/A", + "tx4bias": "6.7", + "rx4power": "0.7", + "tx4power": "0.8", + "tx5disable": "N/A", + "tx5bias": "6.4", + "rx5power": "0.8", + "tx5power": "0.9", + "tx6disable": "N/A", + "tx6bias": "6.3", + "rx6power": "0.2", + "tx6power": "0.1", + "tx7disable": "N/A", + "tx7bias": "6.2", + "rx7power": "0.2", + "tx7power": "0.5", + "tx8disable": "N/A", + "tx8bias": "6.1", + "rx8power": "0.3", + "tx8power": "0.4", + "laser_temperature": "N/A" + }, + "TRANSCEIVER_DOM_THRESHOLD|Ethernet72": { + "temphighalarm": "N/A", + "temphighwarning": "N/A", + "templowalarm": "N/A", + "templowwarning": "N/A", + "vcchighalarm": "N/A", + "vcchighwarning": "N/A", + "vcclowalarm": "N/A", + "vcclowwarning": "N/A", + "rxpowerhighalarm": "N/A", + "rxpowerhighwarning": "N/A", + "rxpowerlowalarm": "N/A", + "rxpowerlowwarning": "N/A", + "txpowerhighalarm": "N/A", + "txpowerhighwarning": "N/A", + "txpowerlowalarm": "N/A", + "txpowerlowwarning": "N/A", + "txbiashighalarm": "N/A", + "txbiashighwarning": "N/A", + "txbiaslowalarm": "N/A", + "txbiaslowwarning": "N/A" + }, "TRANSCEIVER_STATUS|Ethernet0": { "status": "67", "error": "Blocking Error|High temperature" diff --git a/tests/sfp_test.py b/tests/sfp_test.py index f509c047..37a025a3 100644 --- a/tests/sfp_test.py +++ b/tests/sfp_test.py @@ -133,6 +133,75 @@ VccLowWarning : 3.1304Volts """ +test_osfp_eeprom_with_dom_output = """\ +Ethernet72: SFP EEPROM detected + Active Firmware: 0.0 + Active application selected code assigned to host lane 1: N/A + Active application selected code assigned to host lane 2: N/A + Active application selected code assigned to host lane 3: N/A + Active application selected code assigned to host lane 4: N/A + Active application selected code assigned to host lane 5: N/A + Active application selected code assigned to host lane 6: N/A + Active application selected code assigned to host lane 7: N/A + Active application selected code assigned to host lane 8: N/A + Application Advertisement: IB NDR - Host Assign (0x11) - Copper cable - Media Assign (Unknown) + IB SDR (Arch.Spec.Vol.2) - Host Assign (0x11) - Copper cable - Media Assign (Unknown) + CMIS Rev: 5.0 + Connector: No separable connector + Encoding: N/A + Extended Identifier: Power Class 1 (0.25W Max) + Extended RateSelect Compliance: N/A + Host Lane Count: 4 + Identifier: OSFP 8X Pluggable Transceiver + Inactive Firmware: N/A + Length Cable Assembly(m): 1.0 + Media Interface Technology: Copper cable unequalized + Media Lane Count: 0 + Module Hardware Rev: 0.0 + Nominal Bit Rate(100Mbs): 0 + Specification compliance: passive_copper_media_interface + Supported Max Laser Frequency: N/A + Supported Max TX Power: N/A + Supported Min Laser Frequency: N/A + Supported Min TX Power: N/A + Vendor Date Code(YYYY-MM-DD Lot): 2022-05-28 + Vendor Name: vendor1 + Vendor OUI: some-oui + Vendor PN: some-model + Vendor Rev: A3 + Vendor SN: serial1 + ChannelMonitorValues: + RX1Power: 0.5dBm + RX2Power: 0.3dBm + RX3Power: 0.1dBm + RX4Power: 0.7dBm + RX5Power: 0.8dBm + RX6Power: 0.2dBm + RX7Power: 0.2dBm + RX8Power: 0.3dBm + TX1Bias: 6.5mA + TX1Power: 0.6dBm + TX2Bias: 6.5mA + TX2Power: 0.4dBm + TX3Bias: 6.6mA + TX3Power: 0.2dBm + TX4Bias: 6.7mA + TX4Power: 0.8dBm + TX5Bias: 6.4mA + TX5Power: 0.9dBm + TX6Bias: 6.3mA + TX6Power: 0.1dBm + TX7Bias: 6.2mA + TX7Power: 0.5dBm + TX8Bias: 6.1mA + TX8Power: 0.4dBm + ChannelThresholdValues: + ModuleMonitorValues: + Temperature: 40.5C + Vcc: 3.331Volts + ModuleThresholdValues: +""" + test_sfp_eeprom_output = """\ Ethernet0: SFP EEPROM detected Application Advertisement: N/A @@ -826,6 +895,12 @@ def test_qsfp_dd_eeprom_with_dom(self): result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ["Ethernet8", "-d"]) assert result.exit_code == 0 assert result.output == test_qsfp_dd_eeprom_with_dom_output + + def test_osfp_eeprom_with_dom(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["interfaces"].commands["transceiver"].commands["eeprom"], ["Ethernet72", "-d"]) + assert result.exit_code == 0 + assert result.output == test_osfp_eeprom_with_dom_output def test_sfp_eeprom(self): runner = CliRunner() diff --git a/tests/sfputil_test.py b/tests/sfputil_test.py index c57a5dc6..f50acdc4 100644 --- a/tests/sfputil_test.py +++ b/tests/sfputil_test.py @@ -221,27 +221,26 @@ def test_convert_sfp_info_to_output_string(self, sfp_info_dict, expected_output) output = sfputil.convert_sfp_info_to_output_string(sfp_info_dict) assert output == expected_output - def test_convert_dom_to_output_string(self): - sfp_type = 'QSFP28 or later' - - dom_info_dict = { - 'temperature': '41.7539C', - 'voltage': '3.2577Volts', - 'rx1power': '-1.6622dBm', - 'rx2power': '-1.7901dBm', - 'rx3power': '-1.6973dBm', - 'rx4power': '-2.0915dBm', - 'tx1bias': '35.8400mA', - 'tx2bias': '37.5780mA', - 'tx3bias': '35.8400mA', - 'tx4bias': '35.8400mA', - 'tx1power': 'N/A', - 'tx2power': 'N/A', - 'tx3power': 'N/A', - 'tx4power': 'N/A' - } - - expected_output = '''\ + @pytest.mark.parametrize("sfp_type, dom_info_dict, expected_output", [ + ( + 'QSFP28 or later', + { + 'temperature': '41.7539C', + 'voltage': '3.2577Volts', + 'rx1power': '-1.6622dBm', + 'rx2power': '-1.7901dBm', + 'rx3power': '-1.6973dBm', + 'rx4power': '-2.0915dBm', + 'tx1bias': '35.8400mA', + 'tx2bias': '37.5780mA', + 'tx3bias': '35.8400mA', + 'tx4bias': '35.8400mA', + 'tx1power': 'N/A', + 'tx2power': 'N/A', + 'tx3power': 'N/A', + 'tx4power': 'N/A' + }, + '''\ ChannelMonitorValues: RX1Power: -1.6622dBm RX2Power: -1.7901dBm @@ -257,12 +256,121 @@ def test_convert_dom_to_output_string(self): Vcc: 3.2577Volts ModuleThresholdValues: ''' - + ), + ( + 'QSFP-DD Double Density 8X Pluggable Transceiver', + { + 'temperature': '41.7539C', + 'voltage': '3.2577Volts', + 'rx1power': '-1.6622dBm', + 'rx2power': '-1.7901dBm', + 'rx3power': '-1.6973dBm', + 'rx4power': '-2.0915dBm', + 'rx5power': '-1.6622dBm', + 'rx6power': '-1.7901dBm', + 'rx7power': '-1.6973dBm', + 'rx8power': '-2.0915dBm', + 'tx1bias': '35.8400mA', + 'tx2bias': '37.5780mA', + 'tx3bias': '35.8400mA', + 'tx4bias': '35.8400mA', + 'tx5bias': '35.8400mA', + 'tx6bias': '37.5780mA', + 'tx7bias': '35.8400mA', + 'tx8bias': '35.8400mA', + 'tx1power': 'N/A', + 'tx2power': 'N/A', + 'tx3power': 'N/A', + 'tx4power': 'N/A', + 'tx5power': 'N/A', + 'tx6power': 'N/A', + 'tx7power': 'N/A', + 'tx8power': 'N/A' + }, + '''\ + ChannelMonitorValues: + RX1Power: -1.6622dBm + RX2Power: -1.7901dBm + RX3Power: -1.6973dBm + RX4Power: -2.0915dBm + RX5Power: -1.6622dBm + RX6Power: -1.7901dBm + RX7Power: -1.6973dBm + RX8Power: -2.0915dBm + TX1Bias: 35.8400mA + TX2Bias: 37.5780mA + TX3Bias: 35.8400mA + TX4Bias: 35.8400mA + TX5Bias: 35.8400mA + TX6Bias: 37.5780mA + TX7Bias: 35.8400mA + TX8Bias: 35.8400mA + ChannelThresholdValues: + ModuleMonitorValues: + Temperature: 41.7539C + Vcc: 3.2577Volts + ModuleThresholdValues: +''' + ), + ( + 'OSFP 8X Pluggable Transceiver', + { + 'temperature': '41.7539C', + 'voltage': '3.2577Volts', + 'rx1power': '-1.6622dBm', + 'rx2power': '-1.7901dBm', + 'rx3power': '-1.6973dBm', + 'rx4power': '-2.0915dBm', + 'rx5power': '-1.6622dBm', + 'rx6power': '-1.7901dBm', + 'rx7power': '-1.6973dBm', + 'rx8power': '-2.0915dBm', + 'tx1bias': '35.8400mA', + 'tx2bias': '37.5780mA', + 'tx3bias': '35.8400mA', + 'tx4bias': '35.8400mA', + 'tx5bias': '35.8400mA', + 'tx6bias': '37.5780mA', + 'tx7bias': '35.8400mA', + 'tx8bias': '35.8400mA', + 'tx1power': 'N/A', + 'tx2power': 'N/A', + 'tx3power': 'N/A', + 'tx4power': 'N/A', + 'tx5power': 'N/A', + 'tx6power': 'N/A', + 'tx7power': 'N/A', + 'tx8power': 'N/A' + }, + '''\ + ChannelMonitorValues: + RX1Power: -1.6622dBm + RX2Power: -1.7901dBm + RX3Power: -1.6973dBm + RX4Power: -2.0915dBm + RX5Power: -1.6622dBm + RX6Power: -1.7901dBm + RX7Power: -1.6973dBm + RX8Power: -2.0915dBm + TX1Bias: 35.8400mA + TX2Bias: 37.5780mA + TX3Bias: 35.8400mA + TX4Bias: 35.8400mA + TX5Bias: 35.8400mA + TX6Bias: 37.5780mA + TX7Bias: 35.8400mA + TX8Bias: 35.8400mA + ChannelThresholdValues: + ModuleMonitorValues: + Temperature: 41.7539C + Vcc: 3.2577Volts + ModuleThresholdValues: +''' + )]) + def test_convert_dom_to_output_string(self, sfp_type, dom_info_dict, expected_output): output = sfputil.convert_dom_to_output_string(sfp_type, dom_info_dict) assert output == expected_output - # TODO: Add tests for other SFP types - def test_get_physical_port_name(self): output = sfputil.get_physical_port_name(0, 0, False) assert output == '0' From 46fba26f7190140da2cedde18fcba398f541fdf3 Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak <38952541+stepanblyschak@users.noreply.github.com> Date: Wed, 14 Jun 2023 10:29:47 +0300 Subject: [PATCH 180/312] [db_migrator] add required "protocol" field in ROUTE_TABLE (#2766) - What I did I added requires "protocol" field due to fpmsyncd reconcile logic (WarmRestartHelper class) requires old fvs keys to match new fvs. - How I did it Add "protocol" field in db migration. - How to verify it Upgrade from older branch to new image with supported FIB pending. The field was added by sonic-net/sonic-swss#2551. Signed-off-by: Stepan Blyschak --- scripts/db_migrator.py | 18 ++++++++++++------ .../appl_db/routes_migrate_expected.json | 10 ++++++---- .../appl_db/routes_migrate_input.json | 4 ++-- tests/db_migrator_test.py | 4 ++-- 4 files changed, 22 insertions(+), 14 deletions(-) diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index cc9506f6..085c2c28 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -594,18 +594,24 @@ 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: - if type(route_prefix) == tuple: - # IPv6 route_prefix is returned from db as tuple - route_key = "ROUTE_TABLE:" + ":".join(route_prefix) - else: - # IPv4 route_prefix is returned from db as str - route_key = "ROUTE_TABLE:{}".format(route_prefix) self.appDB.set(self.appDB.APPL_DB, route_key, 'weight','') + if 'protocol' not in route_attr: + self.appDB.set(self.appDB.APPL_DB, route_key, 'protocol', '') + def update_edgezone_aggregator_config(self): """ Update cable length configuration in ConfigDB for T0 neighbor interfaces diff --git a/tests/db_migrator_input/appl_db/routes_migrate_expected.json b/tests/db_migrator_input/appl_db/routes_migrate_expected.json index 5cad371c..7f48e64e 100644 --- a/tests/db_migrator_input/appl_db/routes_migrate_expected.json +++ b/tests/db_migrator_input/appl_db/routes_migrate_expected.json @@ -2,11 +2,13 @@ "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": "" + "weight": "", + "protocol": "" }, "ROUTE_TABLE:20c0:fe28:0:80::/64": { - "nexthop": "fc00::72,fc00::76,fc00::7a,fc00::7e", - "ifname" : "PortChannel101,PortChannel102,PortChannel103,PortChannel104", - "weight": "" + "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 index 7249488c..3b93a36c 100644 --- a/tests/db_migrator_input/appl_db/routes_migrate_input.json +++ b/tests/db_migrator_input/appl_db/routes_migrate_input.json @@ -4,7 +4,7 @@ "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" + "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 c06bb11d..d06034a2 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -551,7 +551,7 @@ def test_migrate_loopback_int(self): diff = DeepDiff(resulting_keys, expected_keys, ignore_order=True) assert not diff -class TestWarmUpgrade_without_route_weights(object): +class TestWarmUpgrade_without_required_attributes(object): @classmethod def setup_class(cls): os.environ['UTILITIES_UNIT_TESTING'] = "2" @@ -562,7 +562,7 @@ def teardown_class(cls): dbconnector.dedicated_dbs['CONFIG_DB'] = None dbconnector.dedicated_dbs['APPL_DB'] = None - def test_migrate_weights_for_nexthops(self): + 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') From 659ba24b44ee50da364a2c4e7aba43c607448e43 Mon Sep 17 00:00:00 2001 From: Yevhen Fastiuk Date: Thu, 15 Jun 2023 01:00:31 +0300 Subject: [PATCH 181/312] [syslog] Adjust runningconfiguration syslog command (#2843) #### What I did Adjust `show runningconfiguration syslog` command according to the new syslog configuration file #### How I did it Fix regex to match the target syslog server #### How to verify it Run the next command in sonic shell: ``` show runningconfiguration syslog ``` --- show/main.py | 2 +- tests/show_test.py | 26 ++++++++++- tests/syslog_input/rsyslog.conf | 77 +++++++++++++++++++++++++++++++++ 3 files changed, 103 insertions(+), 2 deletions(-) create mode 100644 tests/syslog_input/rsyslog.conf diff --git a/show/main.py b/show/main.py index 21b284b9..b4a7e405 100755 --- a/show/main.py +++ b/show/main.py @@ -1686,7 +1686,7 @@ def syslog(verbose): header = ["Syslog Servers"] body = [] - re_syslog = re.compile(r'^\*\.\* action\(.*target=\"{1}(.+?)\"{1}.*\)') + re_syslog = re.compile(r'^action\(type=\"omfwd\" Target=\"{1}(.+?)\"{1}.*\)') try: with open("/etc/rsyslog.conf") as syslog_file: diff --git a/tests/show_test.py b/tests/show_test.py index 21af60d8..5b55c158 100644 --- a/tests/show_test.py +++ b/tests/show_test.py @@ -7,7 +7,7 @@ from unittest import mock from click.testing import CliRunner from utilities_common import constants -from unittest.mock import call, MagicMock, patch +from unittest.mock import call, MagicMock, patch, mock_open EXPECTED_BASE_COMMAND = 'sudo ' EXPECTED_BASE_COMMAND_LIST = ['sudo'] @@ -988,3 +988,27 @@ def test_show_ztp(self, mock_run_command): def teardown(self): print('TEAR DOWN') + +class TestShowRunningconfiguration(object): + @classmethod + def setup_class(cls): + print('SETUP') + os.environ['UTILITIES_UNIT_TESTING'] = '1' + + @patch('show.main.run_command') + @patch('builtins.open', mock_open( + read_data=open('tests/syslog_input/rsyslog.conf').read())) + def test_rc_syslog(self, mock_rc): + runner = CliRunner() + + result = runner.invoke( + show.cli.commands['runningconfiguration'].commands['syslog']) + print(result.exit_code) + print(result.output) + + assert result.exit_code == 0 + assert '[1.1.1.1]' in result.output + + @classmethod + def teardown_class(cls): + print('TEARDOWN') diff --git a/tests/syslog_input/rsyslog.conf b/tests/syslog_input/rsyslog.conf new file mode 100644 index 00000000..b2a269a8 --- /dev/null +++ b/tests/syslog_input/rsyslog.conf @@ -0,0 +1,77 @@ +############################################################################### +# Managed by Ansible +# file: ansible/roles/acs/templates/rsyslog.conf.j2 +############################################################################### +# +# /etc/rsyslog.conf Configuration file for rsyslog. +# +# For more information see +# /usr/share/doc/rsyslog-doc/html/rsyslog_conf.html + + +################# +#### MODULES #### +################# + +$ModLoad imuxsock # provides support for local system logging +$ModLoad imklog # provides kernel logging support +#$ModLoad immark # provides --MARK-- message capability + +# provides UDP syslog reception +$ModLoad imudp +$UDPServerAddress 127.0.0.1 #bind to localhost before udp server run +$UDPServerRun 514 + +# provides TCP syslog reception +#$ModLoad imtcp +#$InputTCPServerRun 514 + + +########################### +#### GLOBAL DIRECTIVES #### +########################### +# +# Use traditional timestamp format. +# To enable high precision timestamps, comment out the following line. +# +#$ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat + +# Define a custom template +$template SONiCFileFormat,"%timegenerated%.%timegenerated:::date-subseconds% %HOSTNAME% %syslogseverity-text:::uppercase% %syslogtag%%msg:::sp-if-no-1st-sp%%msg:::drop-last-lf%\n" +$ActionFileDefaultTemplate SONiCFileFormat + +template(name="WelfRemoteFormat" type="string" string="%TIMESTAMP% id=firewall time=\"%timereported\ +:::date-year%-%timereported:::date-month%-%timereported:::date-day% %timereported:::date-hour%:%timereported:::date-minute%:%timereported\ +:::date-second%\" fw=\"sonic\" pri=%syslogpriority% msg=\"%syslogtag%%msg:::sp-if-no-1st-sp%%msg:::drop-last-lf%\"\n") + +#Set remote syslog server +*.notice +action(type="omfwd" Target="1.1.1.1" Port="514" Protocol="udp" Device="eth0" Template="SONiCFileFormat") + +# +# Set the default permissions for all log files. +# +$FileOwner root +$FileGroup adm +$FileCreateMode 0640 +$DirCreateMode 0755 +$Umask 0022 + +# +# Where to place spool and state files +# +$WorkDirectory /var/spool/rsyslog + +# +# Include all config files in /etc/rsyslog.d/ +# +$IncludeConfig /etc/rsyslog.d/*.conf + +# +# Suppress duplicate messages and report "message repeated n times" +# +$RepeatedMsgReduction on + +############### +#### RULES #### +############### \ No newline at end of file From fceef2edda86e6b2f69ff5531ef0dd82c34a52ed Mon Sep 17 00:00:00 2001 From: jfeng-arista <98421150+jfeng-arista@users.noreply.github.com> Date: Thu, 15 Jun 2023 15:47:39 -0700 Subject: [PATCH 182/312] [chassis][voq] Clear fabric counters queue/port (#2789) Added two clear commands for fabric counters queue and fabric counters port. sonic-clear fabriccountersport sonic-clear fabriccountersqueue By issuing the command, the fabric counters are clear and saved. An example is as follow. # 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 Signed-off-by: Jie Feng --- clear/main.py | 12 +++ scripts/fabricstat | 134 +++++++++++++++++++++++++++++-- tests/fabricstat_test.py | 166 ++++++++++++++++++++++++++++++--------- 3 files changed, 268 insertions(+), 44 deletions(-) diff --git a/clear/main.py b/clear/main.py index 21c87d55..eda542fe 100755 --- a/clear/main.py +++ b/clear/main.py @@ -181,6 +181,18 @@ def queuecounters(): command = ["queuestat", "-c"] 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 fcc0983a..d858c4cd 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,24 @@ 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: + 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 +158,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 +222,24 @@ 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: + 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 +251,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 +306,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 +319,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 +336,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 +363,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 7e37e993..f5a4066d 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 3ba8241a9449f3bac186fd2634f7645029eff426 Mon Sep 17 00:00:00 2001 From: Vadym Hlushko <62022266+vadymhlushko-mlnx@users.noreply.github.com> Date: Fri, 16 Jun 2023 02:10:20 +0300 Subject: [PATCH 183/312] [db_migtrator] Add migration of FLEX_COUNTER_DELAY_STATUS during 1911->master upgrade + fast-reboot. Add UT. (#2839) Add migration of FLEX_COUNTER_DELAY_STATUS attribute of config_db FLEX_COUNTER_TABLE during the SONiC to SONiC upgrade + fast-reboot from older versions 201911 -> master. This change is required for the fast-reboot procedure because without it the counters will be created during the init flow which will waste a lot of resources and cause data plane degradation of more than 30 seconds. How I did it Modify the db_migrator.py. How to verify it Add UT. Signed-off-by: vadymhlushko-mlnx --- scripts/db_migrator.py | 28 ++++++++++++++- ...ross_branch_upgrade_to_4_0_3_expected.json | 19 ++++++++++ .../cross_branch_upgrade_to_4_0_3_input.json | 18 ++++++++++ .../state_db/fast_reboot_upgrade.json | 5 +++ tests/db_migrator_test.py | 35 +++++++++++++++++++ 5 files changed, 104 insertions(+), 1 deletion(-) create mode 100644 tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_expected.json create mode 100644 tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_input.json create mode 100644 tests/db_migrator_input/state_db/fast_reboot_upgrade.json diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index 085c2c28..761f858f 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -656,6 +656,20 @@ def update_edgezone_aggregator_config(self): # Set new cable length values self.configDB.set(self.configDB.CONFIG_DB, "CABLE_LENGTH|AZURE", intf, EDGEZONE_AGG_CABLE_LENGTH) + def migrate_config_db_flex_counter_delay_status(self): + """ + Migrate "FLEX_COUNTER_TABLE|*": { "value": { "FLEX_COUNTER_DELAY_STATUS": "false" } } + Set FLEX_COUNTER_DELAY_STATUS true in case of fast-reboot + """ + + flex_counter_objects = self.configDB.get_keys('FLEX_COUNTER_TABLE') + for obj in flex_counter_objects: + flex_counter = self.configDB.get_entry('FLEX_COUNTER_TABLE', obj) + delay_status = flex_counter.get('FLEX_COUNTER_DELAY_STATUS') + if delay_status is None or delay_status == 'false': + flex_counter['FLEX_COUNTER_DELAY_STATUS'] = 'true' + self.configDB.mod_entry('FLEX_COUNTER_TABLE', obj, flex_counter) + def version_unknown(self): """ version_unknown tracks all SONiC versions that doesn't have a version @@ -954,9 +968,21 @@ def version_4_0_1(self): def version_4_0_2(self): """ Version 4_0_2. - This is the latest version for master branch """ 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() + + self.set_version('version_4_0_3') + return 'version_4_0_3' + + def version_4_0_3(self): + """ + Version 4_0_3. + This is the latest version for master branch + """ + log.log_info('Handling version_4_0_3') return None def get_version(self): 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 new file mode 100644 index 00000000..1ebfbc6a --- /dev/null +++ b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_expected.json @@ -0,0 +1,19 @@ +{ + "VERSIONS|DATABASE": { + "VERSION": "version_4_0_3" + }, + "FLEX_COUNTER_TABLE|ACL": { + "FLEX_COUNTER_STATUS": "true", + "FLEX_COUNTER_DELAY_STATUS": "true", + "POLL_INTERVAL": "10000" + }, + "FLEX_COUNTER_TABLE|QUEUE": { + "FLEX_COUNTER_STATUS": "true", + "FLEX_COUNTER_DELAY_STATUS": "true", + "POLL_INTERVAL": "10000" + }, + "FLEX_COUNTER_TABLE|PG_WATERMARK": { + "FLEX_COUNTER_STATUS": "false", + "FLEX_COUNTER_DELAY_STATUS": "true" + } +} diff --git a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_input.json b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_input.json new file mode 100644 index 00000000..07ce7636 --- /dev/null +++ b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_4_0_3_input.json @@ -0,0 +1,18 @@ +{ + "VERSIONS|DATABASE": { + "VERSION": "version_1_0_1" + }, + "FLEX_COUNTER_TABLE|ACL": { + "FLEX_COUNTER_STATUS": "true", + "FLEX_COUNTER_DELAY_STATUS": "true", + "POLL_INTERVAL": "10000" + }, + "FLEX_COUNTER_TABLE|QUEUE": { + "FLEX_COUNTER_STATUS": "true", + "FLEX_COUNTER_DELAY_STATUS": "false", + "POLL_INTERVAL": "10000" + }, + "FLEX_COUNTER_TABLE|PG_WATERMARK": { + "FLEX_COUNTER_STATUS": "false" + } +} diff --git a/tests/db_migrator_input/state_db/fast_reboot_upgrade.json b/tests/db_migrator_input/state_db/fast_reboot_upgrade.json new file mode 100644 index 00000000..c4539271 --- /dev/null +++ b/tests/db_migrator_input/state_db/fast_reboot_upgrade.json @@ -0,0 +1,5 @@ +{ + "FAST_REBOOT|system": { + "enable": "true" + } +} diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index d06034a2..f063e43e 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -623,3 +623,38 @@ def test_warm_upgrade_t0_edgezone_aggregator_same_cable_length(self): diff = DeepDiff(resulting_table, expected_table, ignore_order=True) assert not diff + + +class TestFastUpgrade_to_4_0_3(object): + @classmethod + def setup_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "2" + cls.config_db_tables_to_verify = ['FLEX_COUNTER_TABLE'] + dbconnector.dedicated_dbs['STATE_DB'] = os.path.join(mock_db_path, 'state_db', 'fast_reboot_upgrade') + + @classmethod + def teardown_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "0" + dbconnector.dedicated_dbs['CONFIG_DB'] = None + dbconnector.dedicated_dbs['STATE_DB'] = None + + def mock_dedicated_config_db(self, filename): + jsonfile = os.path.join(mock_db_path, 'config_db', filename) + dbconnector.dedicated_dbs['CONFIG_DB'] = jsonfile + db = Db() + return db + + def check_config_db(self, result, expected): + for table in self.config_db_tables_to_verify: + assert result.get_table(table) == expected.get_table(table) + + def test_fast_reboot_upgrade_to_4_0_3(self): + db_before_migrate = 'cross_branch_upgrade_to_4_0_3_input' + db_after_migrate = 'cross_branch_upgrade_to_4_0_3_expected' + device_info.get_sonic_version_info = get_sonic_version_info_mlnx + db = self.mock_dedicated_config_db(db_before_migrate) + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + dbmgtr.migrate() + expected_db = self.mock_dedicated_config_db(db_after_migrate) + assert not self.check_config_db(dbmgtr.configDB, expected_db.cfgdb) \ No newline at end of file From 0b629ba115094b242c66827b8cd303bcc7380f69 Mon Sep 17 00:00:00 2001 From: RoRonoa Date: Fri, 16 Jun 2023 23:21:28 +0500 Subject: [PATCH 184/312] Revert "[chassis][voq] Clear fabric counters queue/port (#2789)" (#2882) This reverts commit fceef2edda86e6b2f69ff5531ef0dd82c34a52ed. --- clear/main.py | 12 --- scripts/fabricstat | 134 ++----------------------------- tests/fabricstat_test.py | 166 +++++++++------------------------------ 3 files changed, 44 insertions(+), 268 deletions(-) diff --git a/clear/main.py b/clear/main.py index eda542fe..21c87d55 100755 --- a/clear/main.py +++ b/clear/main.py @@ -181,18 +181,6 @@ def queuecounters(): command = ["queuestat", "-c"] 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 d858c4cd..fcc0983a 100755 --- a/scripts/fabricstat +++ b/scripts/fabricstat @@ -2,13 +2,10 @@ 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 @@ -35,10 +32,6 @@ 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 @@ -85,12 +78,6 @@ 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. @@ -128,24 +115,6 @@ 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: - 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) @@ -158,44 +127,19 @@ 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), - 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]))) + data.crc, data.fec_correctable, data.fec_uncorrectable, + data.symbol_err)) else: header = portstat_header_all table.append((asic_name, port_id, self.get_port_state(key), - ns_diff(data.in_cell, diff_cached[0]), - ns_diff(data.in_octet, diff_cached[1]), - ns_diff(data.out_cell, diff_cached[2]), - ns_diff(data.out_octet, diff_cached[3]), - ns_diff(data.crc, diff_cached[4]), - ns_diff(data.fec_correctable, diff_cached[5]), - ns_diff(data.fec_uncorrectable, diff_cached[6]), - ns_diff(data.symbol_err, diff_cached[7]))) + data.in_cell, data.in_octet, data.out_cell, data.out_octet, + data.crc, data.fec_correctable, data.fec_uncorrectable, + data.symbol_err)) print(tabulate(table, header, tablefmt='simple', stralign='right')) print() @@ -222,24 +166,6 @@ 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: - 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) @@ -251,29 +177,11 @@ 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, - ns_diff(data.curbyte, diff_cached[2]), - ns_diff(data.curlevel, diff_cached[0]), - ns_diff(data.watermarklevel, diff_cached[1]))) + data.curbyte, data.curlevel, data.watermarklevel)) print(tabulate(table, queuestat_header, tablefmt='simple', stralign='right')) print() @@ -306,10 +214,6 @@ 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=""" @@ -319,16 +223,12 @@ 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 @@ -336,23 +236,6 @@ 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) @@ -363,10 +246,7 @@ Examples: else: stat = FabricPortStat(ns) cnstat_dict = stat.get_cnstat_dict() - if save_fresh_stats: - stat.save_fresh_stats() - else: - stat.cnstat_print(cnstat_dict, errors_only) + 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 f5a4066d..7e37e993 100644 --- a/tests/fabricstat_test.py +++ b/tests/fabricstat_test.py @@ -14,55 +14,38 @@ multi_asic_fabric_counters = """\ ASIC PORT STATE IN_CELL IN_OCTET OUT_CELL OUT_OCTET CRC FEC_CORRECTABLE FEC_UNCORRECTABLE SYMBOL_ERR ------ ------ ------- --------- ---------- ---------- ----------- ----- ----------------- ------------------- ------------ - 0 0 up 6 1,113 0 0 0 5 1,759,692,040 5 - 0 1 down 0 0 0 0 0 0 58,977,677,898 0 - 0 2 up 2 371 0 0 0 0 1,769,448,760 0 - 0 3 down 0 0 0 0 0 0 58,976,477,608 0 - 0 4 up 10 1,855 0 0 0 73 1,763,293,100 73 - 0 5 down 0 0 0 0 0 44,196 58,975,150,569 0 - 0 6 up 4 742 0 0 0 10 1,763,174,090 0 - 0 7 up 10 1,855 0 0 0 187 1,768,439,529 1,331 - - ASIC PORT STATE IN_CELL IN_OCTET OUT_CELL OUT_OCTET CRC FEC_CORRECTABLE FEC_UNCORRECTABLE SYMBOL_ERR ------- ------ ------- --------- ---------- ---------- ----------- ----- ----------------- ------------------- -------------- - 1 0 up 16 2,968 0 0 0 0 1,763,890,500 0 - 1 1 down 0 0 0 0 0 0 105,269,481,425 0 - 1 2 down 0 0 0 0 0 0 105,268,895,944 0 - 1 3 down 0 0 0 0 0 0 105,268,290,607 0 - 1 4 up 14 2,597 0 0 0 0 1,762,188,940 0 - 1 5 down 0 0 0 0 0 968 105,267,020,477 0 - 1 6 down 0 0 0 0 0 53,192,703,023 1,422,986 41,913,682,074 - 1 7 down 0 0 0 0 0 0 105,264,567,398 0 + 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 -""" -multi_asic_fabric_counters_asic0 = """\ ASIC PORT STATE IN_CELL IN_OCTET OUT_CELL OUT_OCTET CRC FEC_CORRECTABLE FEC_UNCORRECTABLE SYMBOL_ERR ------ ------ ------- --------- ---------- ---------- ----------- ----- ----------------- ------------------- ------------ - 0 0 up 6 1,113 0 0 0 5 1,759,692,040 5 - 0 1 down 0 0 0 0 0 0 58,977,677,898 0 - 0 2 up 2 371 0 0 0 0 1,769,448,760 0 - 0 3 down 0 0 0 0 0 0 58,976,477,608 0 - 0 4 up 10 1,855 0 0 0 73 1,763,293,100 73 - 0 5 down 0 0 0 0 0 44,196 58,975,150,569 0 - 0 6 up 4 742 0 0 0 10 1,763,174,090 0 - 0 7 up 10 1,855 0 0 0 187 1,768,439,529 1,331 + 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 """ - -clear_counter = """\ -Clear and update saved counters port""" - -multi_asic_fabric_counters_asic0_clear = """\ +multi_asic_fabric_counters_asic0 = """\ ASIC PORT STATE IN_CELL IN_OCTET OUT_CELL OUT_OCTET CRC FEC_CORRECTABLE FEC_UNCORRECTABLE SYMBOL_ERR ------ ------ ------- --------- ---------- ---------- ----------- ----- ----------------- ------------------- ------------ - 0 0 up 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 + 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 """ @@ -75,18 +58,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 1,147 14 22 + 0 4 up 0 1147 14 22 0 5 down 0 0 0 0 0 6 up 0 527 8 10 - 0 7 up 0 1,147 14 17 + 0 7 up 0 1147 14 17 ASIC PORT STATE QUEUE_ID CURRENT_BYTE CURRENT_LEVEL WATERMARK_LEVEL ------ ------ ------- ---------- -------------- --------------- ----------------- - 1 0 up 0 1,942 18 24 + 1 0 up 0 1942 18 24 1 1 down 0 0 0 0 1 2 down 0 0 0 0 1 3 down 0 0 0 0 - 1 4 up 0 1,362 15 24 + 1 4 up 0 1362 15 24 1 5 down 0 0 0 0 1 6 down 0 0 0 0 1 7 down 0 0 0 0 @@ -100,24 +83,10 @@ 0 1 down 0 0 0 0 0 2 up 0 104 8 8 0 3 down 0 0 0 0 - 0 4 up 0 1,147 14 22 + 0 4 up 0 1147 14 22 0 5 down 0 0 0 0 0 6 up 0 527 8 10 - 0 7 up 0 1,147 14 17 - -""" - -multi_asic_fabric_counters_queue_asic0_clear = """\ - ASIC PORT STATE QUEUE_ID CURRENT_BYTE CURRENT_LEVEL WATERMARK_LEVEL ------- ------ ------- ---------- -------------- --------------- ----------------- - 0 0 up 0 0 0 0 - 0 1 down 0 0 0 0 - 0 2 up 0 0 0 0 - 0 3 down 0 0 0 0 - 0 4 up 0 0 0 0 - 0 5 down 0 0 0 0 - 0 6 up 0 0 0 0 - 0 7 up 0 0 0 0 + 0 7 up 0 1147 14 17 """ @@ -159,8 +128,12 @@ def setup_class(cls): os.environ["UTILITIES_UNIT_TESTING"] = "1" def test_single_show_fabric_counters(self): - return_code, result = get_result_and_return_code('fabricstat -D') - assert return_code == 0 + 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']) print("return_code: {}".format(return_code)) @@ -168,22 +141,6 @@ 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") @@ -236,27 +193,6 @@ 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)) @@ -278,31 +214,3 @@ 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 8414a709f4f1366159590b914a6833e5a4bec65f Mon Sep 17 00:00:00 2001 From: Arvindsrinivasan Lakshmi Narasimhan <55814491+arlakshm@users.noreply.github.com> Date: Fri, 23 Jun 2023 15:20:23 -0700 Subject: [PATCH 185/312] [chassis][multi asic] change acl_loader to use tcp socket for db communication (#2525) Signed-off-by: Arvindsrinivasan Lakshmi Narasimhan arlakshm@microsoft.com Microsoft ADO 24363637 What I did Currently on multi asic platform the acl-loader script connects to all the db in the namespaces using unix sockets. This cause permission errors when executing show acl commands for user with RO privileges. To avoid this change the acl-loader to use tcp socket to connect to db in namespaces How I did it update acl-loader How to verify it UT Signed-off-by: Arvindsrinivasan Lakshmi Narasimhan --- acl_loader/main.py | 4 ++-- tests/acl_loader_test.py | 41 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+), 2 deletions(-) diff --git a/acl_loader/main.py b/acl_loader/main.py index 72618674..31c181de 100644 --- a/acl_loader/main.py +++ b/acl_loader/main.py @@ -156,9 +156,9 @@ def __init__(self): namespaces = multi_asic.get_all_namespaces() for front_asic_namespaces in namespaces['front_ns']: - self.per_npu_configdb[front_asic_namespaces] = ConfigDBConnector(use_unix_socket_path=True, namespace=front_asic_namespaces) + self.per_npu_configdb[front_asic_namespaces] = ConfigDBConnector(namespace=front_asic_namespaces) self.per_npu_configdb[front_asic_namespaces].connect() - self.per_npu_statedb[front_asic_namespaces] = SonicV2Connector(use_unix_socket_path=True, namespace=front_asic_namespaces) + self.per_npu_statedb[front_asic_namespaces] = SonicV2Connector(namespace=front_asic_namespaces) self.per_npu_statedb[front_asic_namespaces].connect(self.per_npu_statedb[front_asic_namespaces].STATE_DB) self.read_tables_info() diff --git a/tests/acl_loader_test.py b/tests/acl_loader_test.py index adcf38fe..c4d2e0b9 100644 --- a/tests/acl_loader_test.py +++ b/tests/acl_loader_test.py @@ -1,3 +1,4 @@ +import importlib import sys import os import pytest @@ -269,3 +270,43 @@ def test_incremental_update(self, acl_loader): acl_loader.load_rules_from_file(os.path.join(test_path, 'acl_input/incremental_2.json')) acl_loader.incremental_update() assert acl_loader.rules_info[(('NTP_ACL', 'RULE_1'))]["PACKET_ACTION"] == "DROP" + + + +class TestMasicAclLoader(object): + + + @pytest.fixture(scope="class") + def acl_loader(self): + from .mock_tables import mock_multi_asic + importlib.reload(mock_multi_asic) + from .mock_tables import dbconnector + dbconnector.load_namespace_config() + + with mock.patch("sonic_py_common.multi_asic.get_all_namespaces", + mock.MagicMock(return_value={'front_ns': ['asic0', 'asic1'], 'back_ns': '', 'fabric_ns': ''})): + yield AclLoader() + + # mock single asic to avoid affecting other tests + from .mock_tables import mock_single_asic + importlib.reload(mock_single_asic) + + def test_check_npu_db(self, acl_loader): + assert len(acl_loader.per_npu_configdb) == 2 + assert len(acl_loader.per_npu_statedb) == 2 + + def test_incremental_update(self, acl_loader): + acl_loader.rules_info = {} + acl_loader.tables_db_info['NTP_ACL'] = { + "stage": "INGRESS", + "type": "CTRLPLANE" + } + acl_loader.load_rules_from_file(os.path.join(test_path, 'acl_input/incremental_1.json')) + acl_loader.rules_db_info = acl_loader.rules_info + assert acl_loader.rules_info[(('NTP_ACL', 'RULE_1'))]["PACKET_ACTION"] == "ACCEPT" + for configdb in acl_loader.per_npu_configdb.values(): + configdb.mod_entry = mock.MagicMock(return_value=True) + configdb.set_entry = mock.MagicMock(return_value=True) + acl_loader.load_rules_from_file(os.path.join(test_path, 'acl_input/incremental_2.json')) + acl_loader.incremental_update() + assert acl_loader.rules_info[(('NTP_ACL', 'RULE_1'))]["PACKET_ACTION"] == "DROP" From dc2945bcd8a9175cb1050536102b8d2b5b2c5637 Mon Sep 17 00:00:00 2001 From: Oleksandr Ivantsiv Date: Sun, 25 Jun 2023 14:20:33 +0200 Subject: [PATCH 186/312] [dns] Implement config and show commands for static DNS. (#2737) - What I did Implement config and show commands for static DNS feature. According to sonic-net/SONiC#1262 HLD. - How I did it Static DNS config commands are implemented in the new config/dns.py file. DNS config commands are available under config dns ... sub-command. Show commands are implemented in the new show/dns.py file. DNS show commands are available under show dns ... sub-command. - How to verify it Compile sonic-utilities package. The unit tests will run automatically during the compilation. Coverage for config/dns.py : 94% Coverage for show/dns.py : 86% - 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) # config dns nameserver add 1.1.1.1 # config dns nameserver add 8.8.8.8 # show dns nameserver Nameserver ------------ 1.1.1.1 8.8.8.8 --- config/dns.py | 96 +++++++++++++++++++ config/main.py | 4 + doc/Command-Reference.md | 57 +++++++++++- show/dns.py | 30 ++++++ show/main.py | 2 + tests/dns_test.py | 193 +++++++++++++++++++++++++++++++++++++++ 6 files changed, 381 insertions(+), 1 deletion(-) create mode 100644 config/dns.py create mode 100644 show/dns.py create mode 100644 tests/dns_test.py diff --git a/config/dns.py b/config/dns.py new file mode 100644 index 00000000..1b0ba6cb --- /dev/null +++ b/config/dns.py @@ -0,0 +1,96 @@ + +import click +from swsscommon.swsscommon import ConfigDBConnector +from .validated_config_db_connector import ValidatedConfigDBConnector +import ipaddress + + +ADHOC_VALIDATION = True +NAMESERVERS_MAX_NUM = 3 + + +def to_ip_address(address): + """Check if the given IP address is valid""" + try: + ip = ipaddress.ip_address(address) + + if ADHOC_VALIDATION: + if ip.is_reserved or ip.is_multicast or ip.is_loopback: + return + + invalid_ips = [ + ipaddress.IPv4Address('0.0.0.0'), + ipaddress.IPv4Address('255.255.255.255'), + ipaddress.IPv6Address("0::0"), + ipaddress.IPv6Address("0::1") + ] + if ip in invalid_ips: + return + + return ip + except Exception: + return + + +def get_nameservers(db): + nameservers = db.get_table('DNS_NAMESERVER') + return [ipaddress.ip_address(ip) for ip in nameservers] + + +# 'dns' group ('config dns ...') +@click.group() +@click.pass_context +def dns(ctx): + """Static DNS configuration""" + config_db = ValidatedConfigDBConnector(ConfigDBConnector()) + config_db.connect() + ctx.obj = {'db': config_db} + + +# dns nameserver config +@dns.group('nameserver') +@click.pass_context +def nameserver(ctx): + """Static DNS nameservers configuration""" + pass + + +# dns nameserver add +@nameserver.command('add') +@click.argument('ip_address_str', metavar='', required=True) +@click.pass_context +def add_dns_nameserver(ctx, ip_address_str): + """Add static DNS nameserver entry""" + ip_address = to_ip_address(ip_address_str) + if not ip_address: + ctx.fail(f"{ip_address_str} invalid nameserver ip address") + + db = ctx.obj['db'] + + nameservers = get_nameservers(db) + if ip_address in nameservers: + ctx.fail(f"{ip_address} nameserver is already configured") + + if len(nameservers) >= NAMESERVERS_MAX_NUM: + ctx.fail(f"The maximum number ({NAMESERVERS_MAX_NUM}) of nameservers exceeded.") + + db.set_entry('DNS_NAMESERVER', ip_address, {}) + +# dns nameserver delete +@nameserver.command('del') +@click.argument('ip_address_str', metavar='', required=True) +@click.pass_context +def del_dns_nameserver(ctx, ip_address_str): + """Delete static DNS nameserver entry""" + + ip_address = to_ip_address(ip_address_str) + if not ip_address: + ctx.fail(f"{ip_address_str} invalid nameserver ip address") + + db = ctx.obj['db'] + + nameservers = get_nameservers(db) + if ip_address not in nameservers: + ctx.fail(f"DNS nameserver {ip_address} is not configured") + + db.set_entry('DNS_NAMESERVER', ip_address, None) diff --git a/config/main.py b/config/main.py index d49d8345..c8ec8bc8 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 dns # mock masic APIs for unit test try: @@ -1198,6 +1199,9 @@ def config(ctx): # syslog module config.add_command(syslog.syslog) +# DNS module +config.add_command(dns.dns) + @config.command() @click.option('-y', '--yes', is_flag=True, callback=_abort_if_false, expose_value=False, prompt='Existing files will be overwritten, continue?') diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 3d6f4bad..dc35ea69 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -194,12 +194,15 @@ * [MACsec config command](#macsec-config-command) * [MACsec show command](#macsec-show-command) * [MACsec clear command](#macsec-clear-command) - +* [Static DNS Commands](#static-dns-commands) + * [Static DNS config command](#static-dns-config-command) + * [Static DNS show command](#static-dns-show-command) ## Document History | Version | Modification Date | Details | | --- | --- | --- | +| 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 | | v4 | Oct-17-2019 | Unify usage statements and other formatting; Replace tabs with spaces; Modify heading sizes; Fix spelling, grammar and other errors; Fix organization of new commands | @@ -12442,3 +12445,55 @@ 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) + +# Static DNS Commands + +This sub-section explains the list of the configuration options available for static DNS feature. + +## Static DNS config command + +- Add static DNS nameserver entry + +``` +admin@sonic:~$ config dns nameserver add -h +Usage: config dns nameserver add [OPTIONS] + + Add static DNS nameserver entry + +Options: + -?, -h, --help Show this message and exit. +``` + +- Delete static DNS nameserver entry + +``` +admin@sonic:~$ config dns nameserver del -h +Usage: config dns nameserver del [OPTIONS] + + Delete static DNS nameserver entry + +Options: + -h, -?, --help Show this message and exit. +``` + +## Static DNS show command + +- Show static DNS configuration + +``` +admin@sonic:~$ show dns nameserver -h +Usage: show dns nameserver [OPTIONS] + + Show static DNS configuration + +Options: + -h, -?, --help Show this message and exit. +``` +``` +admin@sonic:~$ show dns nameserver + Nameserver +------------ + 1.1.1.1 + 8.8.8.8 + +``` diff --git a/show/dns.py b/show/dns.py new file mode 100644 index 00000000..3aea4824 --- /dev/null +++ b/show/dns.py @@ -0,0 +1,30 @@ +import click +import utilities_common.cli as clicommon +from natsort import natsorted +from tabulate import tabulate + +from swsscommon.swsscommon import ConfigDBConnector +from utilities_common.cli import pass_db + + +# 'dns' group ("show dns ...") +@click.group(cls=clicommon.AliasedGroup) +@click.pass_context +def dns(ctx): + """Show details of the static DNS configuration """ + config_db = ConfigDBConnector() + config_db.connect() + ctx.obj = {'db': config_db} + + +# 'nameserver' subcommand ("show dns nameserver") +@dns.command() +@click.pass_context +def nameserver(ctx): + """ Show static DNS configuration """ + header = ["Nameserver"] + db = ctx.obj['db'] + + nameservers = db.get_table('DNS_NAMESERVER') + + click.echo(tabulate([(ns,) for ns in nameservers.keys()], header, tablefmt='simple', stralign='right')) diff --git a/show/main.py b/show/main.py index b4a7e405..aa1b5257 100755 --- a/show/main.py +++ b/show/main.py @@ -64,6 +64,7 @@ from . import warm_restart from . import plugins from . import syslog +from . import dns # Global Variables PLATFORM_JSON = 'platform.json' @@ -295,6 +296,7 @@ def cli(ctx): cli.add_command(vxlan.vxlan) cli.add_command(system_health.system_health) cli.add_command(warm_restart.warm_restart) +cli.add_command(dns.dns) # syslog module cli.add_command(syslog.syslog) diff --git a/tests/dns_test.py b/tests/dns_test.py new file mode 100644 index 00000000..00b04ca9 --- /dev/null +++ b/tests/dns_test.py @@ -0,0 +1,193 @@ +import os +import pytest + +from click.testing import CliRunner + +import config.main as config +import show.main as show +from utilities_common.db import Db + +test_path = os.path.dirname(os.path.abspath(__file__)) + +dns_show_nameservers_header = """\ + Nameserver +------------ +""" + +dns_show_nameservers = """\ + Nameserver +-------------------- + 1.1.1.1 +2001:4860:4860::8888 +""" + +class TestDns(object): + + valid_nameservers = ( + ("1.1.1.1",), + ("1.1.1.1", "8.8.8.8", "10.10.10.10",), + ("1.1.1.1", "2001:4860:4860::8888"), + ("2001:4860:4860::8888", "2001:4860:4860::8844", "2001:4860:4860::8800") + ) + + invalid_nameservers = ( + "0.0.0.0", + "255.255.255.255", + "224.0.0.0", + "0::0", + "0::1", + "1.1.1.x", + "2001:4860:4860.8888", + "ff02::1" + ) + + config_dns_ns_add = config.config.commands["dns"].commands["nameserver"].commands["add"] + config_dns_ns_del = config.config.commands["dns"].commands["nameserver"].commands["del"] + show_dns_ns = show.cli.commands["dns"].commands["nameserver"] + + @classmethod + def setup_class(cls): + print("SETUP") + os.environ["UTILITIES_UNIT_TESTING"] = "1" + + @classmethod + def teardown_class(cls): + os.environ['UTILITIES_UNIT_TESTING'] = "0" + print("TEARDOWN") + + @pytest.mark.parametrize('nameservers', valid_nameservers) + def test_dns_config_nameserver_add_del_with_valid_ip_addresses(self, nameservers): + db = Db() + runner = CliRunner() + obj = {'db': db.cfgdb} + + for ip in nameservers: + # config dns nameserver add + result = runner.invoke(self.config_dns_ns_add, [ip], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ip in db.cfgdb.get_table('DNS_NAMESERVER') + + for ip in nameservers: + # config dns nameserver del + result = runner.invoke(self.config_dns_ns_del, [ip], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ip not in db.cfgdb.get_table('DNS_NAMESERVER') + + @pytest.mark.parametrize('nameserver', invalid_nameservers) + def test_dns_config_nameserver_add_del_with_invalid_ip_addresses(self, nameserver): + db = Db() + runner = CliRunner() + obj = {'db': db.cfgdb} + + # config dns nameserver add + result = runner.invoke(self.config_dns_ns_add, [nameserver], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + assert "invalid nameserver ip address" in result.output + + # config dns nameserver del + result = runner.invoke(self.config_dns_ns_del, [nameserver], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + assert "invalid nameserver ip address" in result.output + + @pytest.mark.parametrize('nameservers', valid_nameservers) + def test_dns_config_nameserver_add_existing_ip(self, nameservers): + db = Db() + runner = CliRunner() + obj = {'db': db.cfgdb} + + for ip in nameservers: + # config dns nameserver add + result = runner.invoke(self.config_dns_ns_add, [ip], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ip in db.cfgdb.get_table('DNS_NAMESERVER') + + # Execute command once more + result = runner.invoke(self.config_dns_ns_add, [ip], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + assert "nameserver is already configured" in result.output + + # config dns nameserver del + result = runner.invoke(self.config_dns_ns_del, [ip], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + + @pytest.mark.parametrize('nameservers', valid_nameservers) + def test_dns_config_nameserver_del_unexisting_ip(self, nameservers): + db = Db() + runner = CliRunner() + obj = {'db': db.cfgdb} + + for ip in nameservers: + # config dns nameserver del + result = runner.invoke(self.config_dns_ns_del, [ip], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + assert "is not configured" in result.output + + def test_dns_config_nameserver_add_max_number(self): + db = Db() + runner = CliRunner() + obj = {'db': db.cfgdb} + + nameservers = ("1.1.1.1", "2.2.2.2", "3.3.3.3") + for ip in nameservers: + # config dns nameserver add + result = runner.invoke(self.config_dns_ns_add, [ip], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + + # config dns nameserver add + result = runner.invoke(self.config_dns_ns_add, ["4.4.4.4"], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code != 0 + assert "nameservers exceeded" in result.output + + for ip in nameservers: + # config dns nameserver del + result = runner.invoke(self.config_dns_ns_del, [ip], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + + def test_dns_show_nameserver_empty_table(self): + db = Db() + runner = CliRunner() + obj = {'db': db.cfgdb} + + # show dns nameserver + result = runner.invoke(self.show_dns_ns, [], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert result.output == dns_show_nameservers_header + + def test_dns_show_nameserver(self): + db = Db() + runner = CliRunner() + obj = {'db': db.cfgdb} + + nameservers = ("1.1.1.1", "2001:4860:4860::8888") + + for ip in nameservers: + # config dns nameserver add + result = runner.invoke(self.config_dns_ns_add, [ip], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ip in db.cfgdb.get_table('DNS_NAMESERVER') + + # show dns nameserver + result = runner.invoke(self.show_dns_ns, [], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert result.output == dns_show_nameservers + + for ip in nameservers: + # config dns nameserver del + result = runner.invoke(self.config_dns_ns_del, [ip], obj=obj) + print(result.exit_code, result.output) + assert result.exit_code == 0 + assert ip not in db.cfgdb.get_table('DNS_NAMESERVER') From 316b14c075e9ae59570d4910a2f157997c82c237 Mon Sep 17 00:00:00 2001 From: ycoheNvidia <99744138+ycoheNvidia@users.noreply.github.com> Date: Mon, 26 Jun 2023 12:03:39 +0300 Subject: [PATCH 187/312] Add support for secure upgrade (#2698) - What I did Added support for secure upgrade - How I did it It includes image signing during build (in sonic buildimage repo) and verification during image install (in sonic-utilities). HLD can be found in the following PR: sonic-net/SONiC#1024 - How to verify it Feature is used to allow image was not modified since built from vendor. During installation, image can be verified with a signature attached to it. In order for image verification - image must be signed - need to provide signing key and certificate (paths in SECURE_UPGRADE_DEV_SIGNING_KEY and SECURE_UPGRADE_DEV_SIGNING_CERT in rules/config) during build , and during image install, need to enable secure boot flag in bios, and signing_certificate should be available in bios. - Feature dependencies In order for this feature to work smoothly, need to have secure boot feature implemented as well. The Secure boot feature will be merged in the near future. --- scripts/verify_image_sign.sh | 60 ++++++++++++ scripts/verify_image_sign_common.sh | 34 +++++++ setup.py | 2 + sonic_installer/bootloader/bootloader.py | 7 ++ sonic_installer/bootloader/grub.py | 35 +++++++ sonic_installer/main.py | 11 ++- tests/installer_bootloader_aboot_test.py | 11 +++ tests/installer_bootloader_grub_test.py | 8 ++ tests/installer_bootloader_onie_test.py | 11 +++ tests/installer_bootloader_uboot_test.py | 12 +++ tests/scripts/create_mock_image.sh | 40 ++++++++ .../create_sign_and_verify_test_files.sh | 91 +++++++++++++++++++ tests/scripts/verify_image_sign_test.sh | 29 ++++++ tests/sign_and_verify_test.py | 70 ++++++++++++++ tests/test_sonic_installer.py | 8 +- tests/verify_image_sign_test.sh | 29 ++++++ 16 files changed, 456 insertions(+), 2 deletions(-) create mode 100644 scripts/verify_image_sign.sh create mode 100755 scripts/verify_image_sign_common.sh create mode 100755 tests/scripts/create_mock_image.sh create mode 100755 tests/scripts/create_sign_and_verify_test_files.sh create mode 100755 tests/scripts/verify_image_sign_test.sh create mode 100644 tests/sign_and_verify_test.py create mode 100755 tests/verify_image_sign_test.sh diff --git a/scripts/verify_image_sign.sh b/scripts/verify_image_sign.sh new file mode 100644 index 00000000..c23d4b71 --- /dev/null +++ b/scripts/verify_image_sign.sh @@ -0,0 +1,60 @@ +#!/bin/sh +image_file="${1}" +cms_sig_file="sig.cms" +lines_for_lookup=50 +DIR="$(dirname "$0")" + +. /usr/local/bin/verify_image_sign_common.sh + +clean_up () +{ + if [ -d ${EFI_CERTS_DIR} ]; then rm -rf ${EFI_CERTS_DIR}; fi + if [ -d "${TMP_DIR}" ]; then rm -rf ${TMP_DIR}; fi + exit $1 +} + +TMP_DIR=$(mktemp -d) +DATA_FILE="${TMP_DIR}/data.bin" +CMS_SIG_FILE="${TMP_DIR}/${cms_sig_file}" +TAR_SIZE=$(head -n $lines_for_lookup $image_file | grep "payload_image_size=" | cut -d"=" -f2- ) +SHARCH_SIZE=$(sed '/^exit_marker$/q' $image_file | wc -c) +SIG_PAYLOAD_SIZE=$(($TAR_SIZE + $SHARCH_SIZE )) +# Extract cms signature from signed file +# Add extra byte for payload +sed -e '1,/^exit_marker$/d' $image_file | tail -c +$(( $TAR_SIZE + 1 )) > $CMS_SIG_FILE +# Extract image from signed file +head -c $SIG_PAYLOAD_SIZE $image_file > $DATA_FILE +# verify signature with certificate fetched with efi tools +EFI_CERTS_DIR=/tmp/efi_certs +[ -d $EFI_CERTS_DIR ] && rm -rf $EFI_CERTS_DIR +mkdir $EFI_CERTS_DIR +efi-readvar -v db -o $EFI_CERTS_DIR/db_efi >/dev/null || +{ + echo "Error: unable to read certs from efi db: $?" + clean_up 1 +} +# Convert one file to der certificates +sig-list-to-certs $EFI_CERTS_DIR/db_efi $EFI_CERTS_DIR/db >/dev/null|| +{ + echo "Error: convert sig list to certs: $?" + clean_up 1 +} +for file in $(ls $EFI_CERTS_DIR | grep "db-"); do + LOG=$(openssl x509 -in $EFI_CERTS_DIR/$file -inform der -out $EFI_CERTS_DIR/cert.pem 2>&1) + if [ $? -ne 0 ]; then + logger "cms_validation: $LOG" + fi + # Verify detached signature + LOG=$(verify_image_sign_common $image_file $DATA_FILE $CMS_SIG_FILE) + VALIDATION_RES=$? + if [ $VALIDATION_RES -eq 0 ]; then + RESULT="CMS Verified OK using efi keys" + echo "verification ok:$RESULT" + # No need to continue. + # Exit without error if any success signature verification. + clean_up 0 + fi +done +echo "Failure: CMS signature Verification Failed: $LOG" + +clean_up 1 \ No newline at end of file diff --git a/scripts/verify_image_sign_common.sh b/scripts/verify_image_sign_common.sh new file mode 100755 index 00000000..ec6511bc --- /dev/null +++ b/scripts/verify_image_sign_common.sh @@ -0,0 +1,34 @@ +#!/bin/bash +verify_image_sign_common() { + image_file="${1}" + cms_sig_file="sig.cms" + TMP_DIR=$(mktemp -d) + DATA_FILE="${2}" + CMS_SIG_FILE="${3}" + + openssl version | awk '$2 ~ /(^0\.)|(^1\.(0\.|1\.0))/ { exit 1 }' + if [ $? -eq 0 ]; then + # for version 1.1.1 and later + no_check_time="-no_check_time" + else + # for version older than 1.1.1 use noattr + no_check_time="-noattr" + fi + + # making sure image verification is supported + EFI_CERTS_DIR=/tmp/efi_certs + RESULT="CMS Verification Failure" + LOG=$(openssl cms -verify $no_check_time -noout -CAfile $EFI_CERTS_DIR/cert.pem -binary -in ${CMS_SIG_FILE} -content ${DATA_FILE} -inform pem 2>&1 > /dev/null ) + VALIDATION_RES=$? + if [ $VALIDATION_RES -eq 0 ]; then + RESULT="CMS Verified OK" + if [ -d "${TMP_DIR}" ]; then rm -rf ${TMP_DIR}; fi + echo "verification ok:$RESULT" + # No need to continue. + # Exit without error if any success signature verification. + return 0 + fi + + if [ -d "${TMP_DIR}" ]; then rm -rf ${TMP_DIR}; fi + return 1 +} diff --git a/setup.py b/setup.py index 547b0fac..70b7aa66 100644 --- a/setup.py +++ b/setup.py @@ -183,6 +183,8 @@ 'scripts/memory_threshold_check_handler.py', 'scripts/techsupport_cleanup.py', 'scripts/storm_control.py', + 'scripts/verify_image_sign.sh', + 'scripts/verify_image_sign_common.sh', 'scripts/check_db_integrity.py', 'scripts/sysreadyshow' ], diff --git a/sonic_installer/bootloader/bootloader.py b/sonic_installer/bootloader/bootloader.py index 91dcaf46..3b9e5483 100644 --- a/sonic_installer/bootloader/bootloader.py +++ b/sonic_installer/bootloader/bootloader.py @@ -75,6 +75,13 @@ def supports_package_migration(self, image): """tells if the image supports package migration""" return True + def verify_image_sign(self, image_path): + """verify image signature is valid""" + raise NotImplementedError + + def is_secure_upgrade_image_verification_supported(self): + return False + @classmethod def detect(cls): """returns True if the bootloader is in use""" diff --git a/sonic_installer/bootloader/grub.py b/sonic_installer/bootloader/grub.py index 73d23adf..c2bfe8d5 100644 --- a/sonic_installer/bootloader/grub.py +++ b/sonic_installer/bootloader/grub.py @@ -153,6 +153,41 @@ def verify_image_platform(self, image_path): # Check if platform is inside image's target platforms return self.platform_in_platforms_asic(platform, image_path) + 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 + if ! [ -n "$(ls -A /sys/firmware/efi/efivars 2>/dev/null)" ]; then + mount -t efivarfs none /sys/firmware/efi/efivars 2>/dev/null + fi + SECURE_UPGRADE_ENABLED=$(bootctl status 2>/dev/null | grep -c "Secure Boot: enabled") + else + echo "efi not supported - exiting without verification" + exit 1 + fi + + if [ ${SECURE_UPGRADE_ENABLED} -eq 0 ]; then + echo "secure boot not enabled - exiting without image verification" + exit 1 + fi + exit 0 + ''' + verification_result = subprocess.run(['bash', '-c', check_if_verification_is_enabled_and_supported_code], capture_output=True) + click.echo(verification_result.stdout.decode()) + return verification_result.returncode == 0 + + def verify_image_sign(self, image_path): + click.echo('Verifying image signature') + verification_script_name = 'verify_image_sign.sh' + script_path = os.path.join('/usr', 'local', 'bin', verification_script_name) + if not os.path.exists(script_path): + click.echo("Unable to find verification script in path " + script_path) + return False + verification_result = subprocess.run([script_path, image_path], capture_output=True) + click.echo(verification_result.stdout.decode()) + return verification_result.returncode == 0 + @classmethod def detect(cls): return os.path.isfile(os.path.join(HOST_PATH, 'grub/grub.cfg')) diff --git a/sonic_installer/main.py b/sonic_installer/main.py index a5c901b6..9737e57d 100644 --- a/sonic_installer/main.py +++ b/sonic_installer/main.py @@ -511,7 +511,8 @@ def sonic_installer(): @click.option('-y', '--yes', is_flag=True, callback=abort_if_false, expose_value=False, prompt='New image will be installed, continue?') @click.option('-f', '--force', '--skip-secure-check', is_flag=True, - help="Force installation of an image of a non-secure type than secure running image") + help="Force installation of an image of a non-secure type than secure running " + + " image, this flag does not affect secure upgrade image verification") @click.option('--skip-platform-check', is_flag=True, help="Force installation of an image of a type which is not of the same platform") @click.option('--skip_migration', is_flag=True, @@ -576,6 +577,14 @@ def install(url, force, skip_platform_check=False, skip_migration=False, skip_pa "Aborting...", LOG_ERR) raise click.Abort() + if bootloader.is_secure_upgrade_image_verification_supported(): + echo_and_log("Verifing image {} signature...".format(binary_image_version)) + if not bootloader.verify_image_sign(image_path): + echo_and_log('Error: Failed verify image signature', LOG_ERR) + raise click.Abort() + else: + echo_and_log('Verification successful') + echo_and_log("Installing image {} and setting it as default...".format(binary_image_version)) with SWAPAllocator(not skip_setup_swap, swap_mem_size, total_mem_threshold, available_mem_threshold): bootloader.install_image(image_path) diff --git a/tests/installer_bootloader_aboot_test.py b/tests/installer_bootloader_aboot_test.py index 9f988843..fbe580a6 100644 --- a/tests/installer_bootloader_aboot_test.py +++ b/tests/installer_bootloader_aboot_test.py @@ -92,3 +92,14 @@ def test_set_fips_aboot(): # Cleanup shutil.rmtree(dirpath) + +def test_verify_image_sign(): + bootloader = aboot.AbootBootloader() + return_value = None + is_supported = bootloader.is_secure_upgrade_image_verification_supported() + try: + return_value = bootloader.verify_image_sign(exp_image) + except NotImplementedError: + assert not is_supported + else: + assert False, "Wrong return value from verify_image_sign, returned" + str(return_value) diff --git a/tests/installer_bootloader_grub_test.py b/tests/installer_bootloader_grub_test.py index 9b6a76ff..d418b76e 100644 --- a/tests/installer_bootloader_grub_test.py +++ b/tests/installer_bootloader_grub_test.py @@ -88,3 +88,11 @@ def test_set_fips_grub(): # Cleanup the _tmp_host folder shutil.rmtree(tmp_host_path) + +def test_verify_image(): + + bootloader = grub.GrubBootloader() + image = f'{grub.IMAGE_PREFIX}expeliarmus-{grub.IMAGE_PREFIX}abcde' + assert not bootloader.is_secure_upgrade_image_verification_supported() + # command should fail + assert not bootloader.verify_image_sign(image) diff --git a/tests/installer_bootloader_onie_test.py b/tests/installer_bootloader_onie_test.py index f5c2d96f..5e63cc86 100644 --- a/tests/installer_bootloader_onie_test.py +++ b/tests/installer_bootloader_onie_test.py @@ -15,3 +15,14 @@ def test_get_current_image(re_search): # Test image dir conversion onie.re.search().group = Mock(return_value=image) assert bootloader.get_current_image() == exp_image + +def test_verify_image_sign(): + bootloader = onie.OnieInstallerBootloader() + return_value = None + is_supported = bootloader.is_secure_upgrade_image_verification_supported() + try: + return_value = bootloader.verify_image_sign('some_path.path') + except NotImplementedError: + assert not is_supported + else: + assert False, "Wrong return value from verify_image_sign, returned" + str(return_value) \ No newline at end of file diff --git a/tests/installer_bootloader_uboot_test.py b/tests/installer_bootloader_uboot_test.py index b896e097..0097df1b 100644 --- a/tests/installer_bootloader_uboot_test.py +++ b/tests/installer_bootloader_uboot_test.py @@ -141,3 +141,15 @@ def mock_run_command(cmd): # Test fips disabled bootloader.set_fips(image, False) assert not bootloader.get_fips(image) + +def test_verify_image_sign(): + bootloader = uboot.UbootBootloader() + image = 'test-image' + return_value = None + is_supported = bootloader.is_secure_upgrade_image_verification_supported() + try: + return_value = bootloader.verify_image_sign(image) + except NotImplementedError: + assert not is_supported + else: + assert False, "Wrong return value from verify_image_sign, returned" + str(return_value) diff --git a/tests/scripts/create_mock_image.sh b/tests/scripts/create_mock_image.sh new file mode 100755 index 00000000..f23032af --- /dev/null +++ b/tests/scripts/create_mock_image.sh @@ -0,0 +1,40 @@ +repo_dir=$1 +input_image=$2 +output_file=$3 +cert_file=$4 +key_file=$5 +tmp_dir= +clean_up() +{ + sudo rm -rf $tmp_dir + sudo rm -rf $output_file + exit $1 +} + +DIR="$(dirname "$0")" + +tmp_dir=$(mktemp -d) +sha1=$(cat $input_image | sha1sum | awk '{print $1}') +echo -n "." +cp $repo_dir/installer/sharch_body.sh $output_file || { + echo "Error: Problems copying sharch_body.sh" + clean_up 1 +} +# Replace variables in the sharch template +sed -i -e "s/%%IMAGE_SHA1%%/$sha1/" $output_file +echo -n "." +tar_size="$(wc -c < "${input_image}")" +cat $input_image >> $output_file +sed -i -e "s|%%PAYLOAD_IMAGE_SIZE%%|${tar_size}|" ${output_file} +CMS_SIG="${tmp_dir}/signature.sig" + +echo "$0 CMS signing ${input_image} with ${key_file}. Output file ${output_file}" +. $repo_dir/scripts/sign_image_dev.sh +sign_image_dev ${cert_file} ${key_file} $output_file ${CMS_SIG} || clean_up 1 + +cat ${CMS_SIG} >> ${output_file} +echo "Signature done." +# append signature to binary +sudo rm -rf ${CMS_SIG} +sudo rm -rf $tmp_dir +exit 0 diff --git a/tests/scripts/create_sign_and_verify_test_files.sh b/tests/scripts/create_sign_and_verify_test_files.sh new file mode 100755 index 00000000..0040c04a --- /dev/null +++ b/tests/scripts/create_sign_and_verify_test_files.sh @@ -0,0 +1,91 @@ +repo_dir=$1 +out_dir=$2 +mock_image="mock_img.bin" +output_file=$out_dir/output_file.bin +cert_file=$3 +other_cert_file=$4 +tmp_dir= +clean_up() +{ + sudo rm -rf $tmp_dir + sudo rm -rf $mock_image + exit $1 +} +DIR="$(dirname "$0")" +[ -d $out_dir ] || rm -rf $out_dir +mkdir $out_dir +tmp_dir=$(mktemp -d) +#generate self signed keys and certificate +key_file=$tmp_dir/private-key.pem +pub_key_file=$tmp_dir/public-key.pem +openssl ecparam -name secp256r1 -genkey -noout -out $key_file +openssl ec -in $key_file -pubout -out $pub_key_file +openssl req -new -x509 -key $key_file -out $cert_file -days 360 -subj "/C=US/ST=Test/L=Test/O=Test/CN=Test" +alt_key_file=$tmp_dir/alt-private-key.pem +alt_pub_key_file=$tmp_dir/alt-public-key.pem +openssl ecparam -name secp256r1 -genkey -noout -out $alt_key_file +openssl ec -in $alt_key_file -pubout -out $alt_pub_key_file +openssl req -new -x509 -key $alt_key_file -out $other_cert_file -days 360 -subj "/C=US/ST=Test/L=Test/O=Test/CN=Test" + +echo "this is a mock image\nThis is another line !2#4%6\n" > $mock_image +echo "Created a mock image with following text:" +cat $mock_image +# create signed mock image + +sh $DIR/create_mock_image.sh $repo_dir $mock_image $output_file $cert_file $key_file || { + echo "Error: unable to create mock image" + clean_up 1 +} + +[ -f "$output_file" ] || { + echo "signed mock image not created - exiting without testing" + clean_up 1 +} + +test_image_1=$out_dir/test_image_1.bin +cp -v $output_file $test_image_1 || { + echo "Error: Problems copying image" + clean_up 1 +} + +# test_image_1 = modified image size to something else - should fail on signature verification +image_size=$(sed -n 's/^payload_image_size=\(.*\)/\1/p' < $test_image_1) +sed -i "/payload_image_size=/c\payload_image_size=$(($image_size - 5))" $test_image_1 + +test_image_2=$out_dir/test_image_2.bin +cp -v $output_file $test_image_2 || { + echo "Error: Problems copying image" + clean_up 1 +} + +# test_image_2 = modified image sha1 to other sha1 value - should fail on signature verification +im_sha=$(sed -n 's/^payload_sha1=\(.*\)/\1/p' < $test_image_2) +sed -i "/payload_sha1=/c\payload_sha1=2f1bbd5a0d411253103e688e4e66c00c94bedd40" $test_image_2 + +tmp_image=$tmp_dir/"tmp_image.bin" +echo "this is a different image now" >> $mock_image +sh $DIR/create_mock_image.sh $repo_dir $mock_image $tmp_image $cert_file $key_file || { + echo "Error: unable to create mock image" + clean_up 1 +} +# test_image_3 = original mock image with wrong signature +# Extract cms signature from signed file +test_image_3=$out_dir/"test_image_3.bin" +tmp_sig="${tmp_dir}/tmp_sig.sig" +TMP_TAR_SIZE=$(head -n 50 $tmp_image | grep "payload_image_size=" | cut -d"=" -f2- ) +sed -e '1,/^exit_marker$/d' $tmp_image | tail -c +$(( $TMP_TAR_SIZE + 1 )) > $tmp_sig + +TAR_SIZE=$(head -n 50 $output_file | grep "payload_image_size=" | cut -d"=" -f2- ) +SHARCH_SIZE=$(sed '/^exit_marker$/q' $output_file | wc -c) +SIG_PAYLOAD_SIZE=$(($TAR_SIZE + $SHARCH_SIZE )) +head -c $SIG_PAYLOAD_SIZE $output_file > $test_image_3 +sudo rm -rf $tmp_image + +cat ${tmp_sig} >> ${test_image_3} + +# test_image_4 = modified image with original mock image signature +test_image_4=$out_dir/"test_image_4.bin" +head -c $SIG_PAYLOAD_SIZE $output_file > $test_image_4 +echo "this is additional line" >> $test_image_4 +cat ${tmp_sig} >> ${test_image_4} +clean_up 0 \ No newline at end of file diff --git a/tests/scripts/verify_image_sign_test.sh b/tests/scripts/verify_image_sign_test.sh new file mode 100755 index 00000000..f4abd258 --- /dev/null +++ b/tests/scripts/verify_image_sign_test.sh @@ -0,0 +1,29 @@ +#!/bin/bash +image_file="${1}" +cert_path="${2}" +cms_sig_file="sig.cms" +TMP_DIR=$(mktemp -d) +DATA_FILE="${TMP_DIR}/data.bin" +CMS_SIG_FILE="${TMP_DIR}/${cms_sig_file}" +lines_for_lookup=50 + +TAR_SIZE=$(head -n $lines_for_lookup $image_file | grep "payload_image_size=" | cut -d"=" -f2- ) +SHARCH_SIZE=$(sed '/^exit_marker$/q' $image_file | wc -c) +SIG_PAYLOAD_SIZE=$(($TAR_SIZE + $SHARCH_SIZE )) +# Extract cms signature from signed file - exit marker marks last sharch prefix + number of image lines + 1 for next linel +# Add extra byte for payload - extracting image signature from line after data file +sed -e '1,/^exit_marker$/d' $image_file | tail -c +$(( $TAR_SIZE + 1 )) > $CMS_SIG_FILE +# Extract image from signed file +head -c $SIG_PAYLOAD_SIZE $image_file > $DATA_FILE +EFI_CERTS_DIR=/tmp/efi_certs +[ -d $EFI_CERTS_DIR ] && rm -rf $EFI_CERTS_DIR +mkdir $EFI_CERTS_DIR +cp $cert_path $EFI_CERTS_DIR/cert.pem + +DIR="$(dirname "$0")" +. $DIR/verify_image_sign_common.sh +verify_image_sign_common $image_file $DATA_FILE $CMS_SIG_FILE +VERIFICATION_RES=$? +if [ -d "${TMP_DIR}" ]; then rm -rf ${TMP_DIR}; fi +[ -d $EFI_CERTS_DIR ] && rm -rf $EFI_CERTS_DIR +exit $VERIFICATION_RES \ No newline at end of file diff --git a/tests/sign_and_verify_test.py b/tests/sign_and_verify_test.py new file mode 100644 index 00000000..77d58a4a --- /dev/null +++ b/tests/sign_and_verify_test.py @@ -0,0 +1,70 @@ + +import subprocess +import os +import sys +import shutil + + +class TestSignVerify(object): + def _run_verification_script_and_check(self, image, cert_file_path, success_str, expected_value=0): + res = subprocess.run(['sh', self._verification_script, image, cert_file_path]) + assert res.returncode == expected_value + print(success_str) + + def test_basic_signature_verification(self): + self._run_verification_script_and_check(os.path.join(self._out_dir_path, 'output_file.bin'), + self._cert_file_path, "test case 1 - basic verify signature - SUCCESS") + + # change image size to something else - should fail on signature verification + def test_modified_image_size(self): + self._run_verification_script_and_check(os.path.join(self._out_dir_path, 'test_image_1.bin'), + self._cert_file_path, "test case 2 - modified image size - SUCCESS", 1) + + def test_modified_image_sha1(self): + self._run_verification_script_and_check(os.path.join(self._out_dir_path, 'test_image_2.bin'), + self._cert_file_path, "test case 3 - modified image sha1 - SUCCESS", 1) + + def test_modified_image_data(self): + self._run_verification_script_and_check(os.path.join(self._out_dir_path, 'test_image_3.bin'), + self._cert_file_path, "test case 4 - modified image data - SUCCESS", 1) + + def test_modified_image_signature(self): + self._run_verification_script_and_check(os.path.join(self._out_dir_path, 'test_image_4.bin'), + self._cert_file_path, "test case 5 - modified image data - SUCCESS", 1) + + def test_verify_image_with_wrong_certificate(self): + self._run_verification_script_and_check(os.path.join(self._out_dir_path, 'output_file.bin'), + self._alt_cert_path, "test case 6 - verify with wrong signature - SUCCESS", 1) + + def __init__(self): + self._test_path = os.path.dirname(os.path.abspath(__file__)) + self._modules_path = os.path.dirname(self._test_path) + self._repo_path = os.path.join(self._modules_path, '../..') + self._test_scripts_path = os.path.join(self._test_path, "scripts") + sys.path.insert(0, self._test_path) + sys.path.insert(0, self._modules_path) + sys.path.insert(0, self._test_scripts_path) + script_path = os.path.join(self._test_scripts_path, 'create_sign_and_verify_test_files.sh') + self._verification_script = os.path.join(self._test_scripts_path, 'verify_image_sign_test.sh') + self._out_dir_path = '/tmp/sign_verify_test' + self._cert_file_path = os.path.join(self._out_dir_path, 'self_certificate.pem') + self._alt_cert_path = os.path.join(self._out_dir_path, 'alt_self_certificate.pem') + create_files_result = subprocess.run(['sh', script_path, self._repo_path, self._out_dir_path, + self._cert_file_path, + self._alt_cert_path]) + print(create_files_result) + assert create_files_result.returncode == 0 + + def __del__(self): + shutil.rmtree(self._out_dir_path) + + +if __name__ == '__main__': + t = TestSignVerify() + t.test_basic_signature_verification() + subprocess.run(['ls', '/tmp/sign_verify_test']) + t.test_modified_image_data() + t.test_modified_image_sha1() + t.test_modified_image_signature() + t.test_modified_image_size() + t.test_verify_image_with_wrong_certificate() diff --git a/tests/test_sonic_installer.py b/tests/test_sonic_installer.py index f44dcdf2..3e257ae3 100644 --- a/tests/test_sonic_installer.py +++ b/tests/test_sonic_installer.py @@ -40,7 +40,7 @@ def test_install(run_command, run_command_or_raise, get_bootloader, swap, fs): mock_bootloader.get_binary_image_version = Mock(return_value=new_image_version) mock_bootloader.get_installed_images = Mock(return_value=[current_image_version]) mock_bootloader.get_image_path = Mock(return_value=new_image_folder) - + mock_bootloader.verify_image_sign = Mock(return_value=True) @contextmanager def rootfs_path_mock(path): yield mounted_image_folder @@ -54,7 +54,13 @@ def rootfs_path_mock(path): print(result.output) assert result.exit_code == 0 + mock_bootloader_verify_image_sign_fail = mock_bootloader + mock_bootloader_verify_image_sign_fail.verify_image_sign = Mock(return_value=False) + get_bootloader.return_value=mock_bootloader_verify_image_sign_fail + result = runner.invoke(sonic_installer.commands["install"], [sonic_image_filename, "-y"]) + print(result.output) + assert result.exit_code != 0 # Assert bootloader install API was called mock_bootloader.install_image.assert_called_with(f"./{sonic_image_filename}") # Assert all below commands were called, so we ensure that diff --git a/tests/verify_image_sign_test.sh b/tests/verify_image_sign_test.sh new file mode 100755 index 00000000..f4abd258 --- /dev/null +++ b/tests/verify_image_sign_test.sh @@ -0,0 +1,29 @@ +#!/bin/bash +image_file="${1}" +cert_path="${2}" +cms_sig_file="sig.cms" +TMP_DIR=$(mktemp -d) +DATA_FILE="${TMP_DIR}/data.bin" +CMS_SIG_FILE="${TMP_DIR}/${cms_sig_file}" +lines_for_lookup=50 + +TAR_SIZE=$(head -n $lines_for_lookup $image_file | grep "payload_image_size=" | cut -d"=" -f2- ) +SHARCH_SIZE=$(sed '/^exit_marker$/q' $image_file | wc -c) +SIG_PAYLOAD_SIZE=$(($TAR_SIZE + $SHARCH_SIZE )) +# Extract cms signature from signed file - exit marker marks last sharch prefix + number of image lines + 1 for next linel +# Add extra byte for payload - extracting image signature from line after data file +sed -e '1,/^exit_marker$/d' $image_file | tail -c +$(( $TAR_SIZE + 1 )) > $CMS_SIG_FILE +# Extract image from signed file +head -c $SIG_PAYLOAD_SIZE $image_file > $DATA_FILE +EFI_CERTS_DIR=/tmp/efi_certs +[ -d $EFI_CERTS_DIR ] && rm -rf $EFI_CERTS_DIR +mkdir $EFI_CERTS_DIR +cp $cert_path $EFI_CERTS_DIR/cert.pem + +DIR="$(dirname "$0")" +. $DIR/verify_image_sign_common.sh +verify_image_sign_common $image_file $DATA_FILE $CMS_SIG_FILE +VERIFICATION_RES=$? +if [ -d "${TMP_DIR}" ]; then rm -rf ${TMP_DIR}; fi +[ -d $EFI_CERTS_DIR ] && rm -rf $EFI_CERTS_DIR +exit $VERIFICATION_RES \ No newline at end of file From b1aa942641bc4f77e8589a8e564ea99ddc2f077e Mon Sep 17 00:00:00 2001 From: pavannaregundi <92989231+pavannaregundi@users.noreply.github.com> Date: Fri, 30 Jun 2023 00:28:01 +0530 Subject: [PATCH 188/312] [generate_dump]: Enhance show techsupport for Marvell platform (#2676) #### What I did Added support for marvell sdk commands in "show techsupport". #### How I did it Modified the generate_dump script, to add marvell sdk commands under a proper platform check. #### How to verify it Verified the change by running "show techsupport" command and check all the newly added marvel sdk commands are collecting the correct information. --- scripts/generate_dump | 66 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) diff --git a/scripts/generate_dump b/scripts/generate_dump index 74ceede0..e9f26398 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -1157,6 +1157,67 @@ collect_mellanox_dfw_dumps() { done } +############################################################################### +# Runs a given marvellcmd command in all namesapces in case of multi ASIC platform +# Globals: +# NUM_ASICS +# Arguments: +# cmd: The command to run. Make sure that arguments with spaces have quotes +# filename: the filename to save the output as in $BASE/dump +# do_gzip: (OPTIONAL) true or false. Should the output be gzipped +# Returns: +# None +############################################################################### +save_marvellcmd() { + trap 'handle_error $? $LINENO' ERR + + mkdir -p $LOGDIR/sdkdump + local cmd="docker exec syncd mrvlcmd -c \"$1\"" + save_cmd "$cmd" "sdkdump/$2" +} + +############################################################################### +# Collect Marvell specific information +# Globals: +# None +# Arguments: +# None +# Returns: +# None +############################################################################### +collect_marvell() { + trap 'handle_error $? $LINENO' ERR + + save_marvellcmd "show version" "CPSS_version" + save_marvellcmd "debug-mode;xps-api call xpsDataIntegrityDumpSerInfo all" "SER_table" + save_marvellcmd "show traffic cpu rx statistic device 0" "CPU_stat" + save_marvellcmd "show interfaces status all" "INTERFACE_config" + save_marvellcmd "show port monitor" "PORT_mirror" + save_marvellcmd "show vlan device 0" "VLAN_table" + save_marvellcmd "show ip route device 0" "IP_route" + save_marvellcmd "show ipv6 route device 0" "IPV6_route" + save_marvellcmd "show ip route_fdb device 0" "IP_forward_route" + save_marvellcmd "show ipv6 route_fdb device 0" "IPV6_forward_route" + save_marvellcmd "show ip next-hop device 0" "NH_table" + save_marvellcmd "show mac address-table device 0" "MAC_forward" + save_marvellcmd "show mac address-table count device 0" "MAC_count" + save_marvellcmd "show tail-drop-allocated buffers all" "Tail_drop" + save_marvellcmd "show policy device 0" "POLICER_table" + save_marvellcmd "show system policy-tcam utilization device 0" "Policy_count" + save_marvellcmd "show access-list device 0 pcl-id 0 format ingress_udb_30" "UDB30_acl" + save_marvellcmd "show access-list device 0 pcl-id 0 format ingress_udb_60" "UDB60_acl" + save_marvellcmd "debug-mode;show drop counters 0" "Drop_count" + save_marvellcmd "debug-mode;dump all registers" "REGISTER_table" + save_marvellcmd "debug-mode;dump all tables0" "HW_table_0" + save_marvellcmd "debug-mode;dump all tables1" "HW_table_1" + save_marvellcmd "debug-mode;dump all tables2" "HW_table_2" + save_marvellcmd "debug-mode;dump all tables3" "HW_table_3" + save_marvellcmd "debug-mode;dump all tables4" "HW_table_4" + save_marvellcmd "debug-mode;dump all tables5" "HW_table_5" + save_marvellcmd "debug-mode;dump all tables6" "HW_table_6" + save_marvellcmd "debug-mode;dump all tables7" "HW_table_7" +} + ############################################################################### # Collect Broadcom specific information # Globals: @@ -1734,6 +1795,11 @@ main() { collect_cisco_8000 fi + if [ "$asic" = "marvell" ]; then + collect_marvell + fi + + # 2nd counter snapshot late. Need 2 snapshots to make sense of counters trend. save_counter_snapshot $asic 2 From 7bc08c2866faebcacfb1cea16fc01423c690077f Mon Sep 17 00:00:00 2001 From: Vaibhav Hemant Dixit Date: Thu, 29 Jun 2023 14:11:22 -0700 Subject: [PATCH 189/312] [db_migrator] Remove hardcoded config and migrate config from minigraph (#2887) Microsoft ADO: 18217044 This PR is follow up to an old PR: #2515 This PR addresses two issues: Not migrating RESTAPI, TELEMETRY, DEVICE_METADATA entries if they are not supported in target image's minigraph.py. Not migrating these entries if minigraph.xml file is missing. Not maintaining the config for these tables in two different places. Currently db migrator has its own constants, and minigraph.py maintains its own. How I did it This change removes hardcoding config in migrator code, and migrating the config for RESTAPI, TELEMETRY, DEVICE_METADATA from minigraph generator. How to verify it Tested on a physical device. --- scripts/db_migrator.py | 40 +++++++++++++++---- scripts/db_migrator_constants.py | 32 --------------- setup.py | 1 - ...nch_upgrade_to_version_2_0_2_expected.json | 6 +-- tests/db_migrator_input/minigraph.xml | 29 ++++++++++++++ tests/db_migrator_test.py | 19 ++++++++- 6 files changed, 82 insertions(+), 45 deletions(-) delete mode 100644 scripts/db_migrator_constants.py create mode 100644 tests/db_migrator_input/minigraph.xml diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index 761f858f..0f009985 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -9,9 +9,10 @@ from sonic_py_common import device_info, logger from swsscommon.swsscommon import SonicV2Connector, ConfigDBConnector, SonicDBConfig -from db_migrator_constants import RESTAPI, TELEMETRY, CONSOLE_SWITCH +from minigraph import parse_xml INIT_CFG_FILE = '/etc/sonic/init_cfg.json' +MINIGRAPH_FILE = '/etc/sonic/minigraph.xml' # mock the redis for unit test purposes # try: @@ -22,6 +23,7 @@ sys.path.insert(0, modules_path) sys.path.insert(0, tests_path) INIT_CFG_FILE = os.path.join(mocked_db_path, "init_cfg.json") + MINIGRAPH_FILE = os.path.join(mocked_db_path, "minigraph.xml") except KeyError: pass @@ -51,6 +53,16 @@ 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 + db_kwargs = {} if socket: db_kwargs['unix_socket_path'] = socket @@ -527,38 +539,50 @@ 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: + return + restapi_data = self.minigraph_data['RESTAPI'] log.log_notice('Migrate RESTAPI configuration') config = self.configDB.get_entry('RESTAPI', 'config') if not config: - self.configDB.set_entry("RESTAPI", "config", RESTAPI.get("config")) + self.configDB.set_entry("RESTAPI", "config", restapi_data.get("config")) certs = self.configDB.get_entry('RESTAPI', 'certs') if not certs: - self.configDB.set_entry("RESTAPI", "certs", RESTAPI.get("certs")) + self.configDB.set_entry("RESTAPI", "certs", restapi_data.get("certs")) def migrate_telemetry(self): # TELEMETRY - add missing key + if not self.minigraph_data or 'TELEMETRY' not in self.minigraph_data: + return + telemetry_data = self.minigraph_data['TELEMETRY'] log.log_notice('Migrate TELEMETRY configuration') gnmi = self.configDB.get_entry('TELEMETRY', 'gnmi') if not gnmi: - self.configDB.set_entry("TELEMETRY", "gnmi", TELEMETRY.get("gnmi")) + self.configDB.set_entry("TELEMETRY", "gnmi", telemetry_data.get("gnmi")) certs = self.configDB.get_entry('TELEMETRY', 'certs') if not certs: - self.configDB.set_entry("TELEMETRY", "certs", TELEMETRY.get("certs")) + self.configDB.set_entry("TELEMETRY", "certs", telemetry_data.get("certs")) def migrate_console_switch(self): # CONSOLE_SWITCH - add missing key + if not self.minigraph_data or 'CONSOLE_SWITCH' not in self.minigraph_data: + return + console_switch_data = self.minigraph_data['CONSOLE_SWITCH'] log.log_notice('Migrate CONSOLE_SWITCH configuration') console_mgmt = self.configDB.get_entry('CONSOLE_SWITCH', 'console_mgmt') if not console_mgmt: self.configDB.set_entry("CONSOLE_SWITCH", "console_mgmt", - CONSOLE_SWITCH.get("console_mgmt")) + console_switch_data.get("console_mgmt")) def migrate_device_metadata(self): # DEVICE_METADATA - synchronous_mode entry - log.log_notice('Migrate DEVICE_METADATA missing configuration (synchronous_mode=enable)') + if not self.minigraph_data or 'DEVICE_METADATA' not in self.minigraph_data: + return + log.log_notice('Migrate DEVICE_METADATA missing configuration') metadata = self.configDB.get_entry('DEVICE_METADATA', 'localhost') + device_metadata_data = self.minigraph_data["DEVICE_METADATA"]["localhost"] if 'synchronous_mode' not in metadata: - metadata['synchronous_mode'] = 'enable' + metadata['synchronous_mode'] = device_metadata_data.get("synchronous_mode") self.configDB.set_entry('DEVICE_METADATA', 'localhost', metadata) def migrate_port_qos_map_global(self): diff --git a/scripts/db_migrator_constants.py b/scripts/db_migrator_constants.py deleted file mode 100644 index 71237a56..00000000 --- a/scripts/db_migrator_constants.py +++ /dev/null @@ -1,32 +0,0 @@ -RESTAPI = { - "config": { - "client_auth": "true", - "log_level": "info", - "allow_insecure": "false" - }, - "certs": { - "server_key": "/etc/sonic/credentials/restapiserver.key", - "ca_crt": "/etc/sonic/credentials/AME_ROOT_CERTIFICATE.pem", - "server_crt": "/etc/sonic/credentials/restapiserver.crt", - "client_crt_cname": "client.restapi.sonic.gbl" - } - } - -TELEMETRY = { - "gnmi": { - "client_auth": "true", - "log_level": "2", - "port": "50051" - }, - "certs": { - "server_key": "/etc/sonic/telemetry/streamingtelemetryserver.key", - "ca_crt": "/etc/sonic/telemetry/dsmsroot.cer", - "server_crt": "/etc/sonic/telemetry/streamingtelemetryserver.cer" - } -} - -CONSOLE_SWITCH = { - "console_mgmt": { - "enabled": "no" - } -} diff --git a/setup.py b/setup.py index 70b7aa66..45eefb2a 100644 --- a/setup.py +++ b/setup.py @@ -117,7 +117,6 @@ 'scripts/coredump-compress', 'scripts/configlet', 'scripts/db_migrator.py', - 'scripts/db_migrator_constants.py', 'scripts/decode-syseeprom', 'scripts/dropcheck', 'scripts/disk_check.py', diff --git a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_expected.json b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_expected.json index c9752292..946a9812 100644 --- a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_expected.json +++ b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_expected.json @@ -6,9 +6,9 @@ }, "RESTAPI|certs": { "server_key": "/etc/sonic/credentials/restapiserver.key", - "ca_crt": "/etc/sonic/credentials/AME_ROOT_CERTIFICATE.pem", - "server_crt": "/etc/sonic/credentials/restapiserver.crt", - "client_crt_cname": "client.restapi.sonic.gbl" + "ca_crt": "/etc/sonic/credentials/restapica.crt", + "server_crt": "/etc/sonic/credentials/restapiserver.crt", + "client_crt_cname": "client.restapi.sonic" }, "TELEMETRY|gnmi": { "client_auth": "true", diff --git a/tests/db_migrator_input/minigraph.xml b/tests/db_migrator_input/minigraph.xml new file mode 100644 index 00000000..dcadac30 --- /dev/null +++ b/tests/db_migrator_input/minigraph.xml @@ -0,0 +1,29 @@ + + + + + + + SONiC-Dummy + + + + + + + + + + SONiC-Dummy + + + + + + + + + + + SONiC-Dummy + \ No newline at end of file diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index f063e43e..e038db93 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -501,7 +501,6 @@ def test_warm_upgrade_to_2_0_2(self): dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'cross_branch_upgrade_to_version_2_0_2_expected') expected_db = Db() - expected_db new_tables = ["RESTAPI", "TELEMETRY", "CONSOLE_SWITCH"] for table in new_tables: resulting_table = dbmgtr.configDB.get_table(table) @@ -509,6 +508,24 @@ def test_warm_upgrade_to_2_0_2(self): diff = DeepDiff(resulting_table, expected_table, ignore_order=True) assert not diff + def test_warm_upgrade__without_mg_to_2_0_2(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'cross_branch_upgrade_to_version_2_0_2_input') + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + # set minigraph_data to None to mimic the missing minigraph.xml scenario + dbmgtr.minigraph_data = None + dbmgtr.migrate() + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'cross_branch_upgrade_without_mg_2_0_2_expected.json') + expected_db = Db() + + new_tables = ["RESTAPI", "TELEMETRY", "CONSOLE_SWITCH"] + for table in new_tables: + resulting_table = dbmgtr.configDB.get_table(table) + expected_table = expected_db.cfgdb.get_table(table) + print(resulting_table) + diff = DeepDiff(resulting_table, expected_table, ignore_order=True) + assert not diff + class Test_Migrate_Loopback(object): @classmethod def setup_class(cls): From 73d8d6331a8921c2526f76e19f82d27bd065b9fc Mon Sep 17 00:00:00 2001 From: PinghaoQu Date: Fri, 30 Jun 2023 08:25:59 +0800 Subject: [PATCH 190/312] [doc] Update Command-Reference.md, change "show bgp peer" command to "show bfd peer" (#2750) Signed-off-by: PinghaoQu qu.pinghao@h3c.com What I did In the show bfd peer section, "show bgp peer" command should be "show bfd peer" How I did it Changed "show bgp peer" to "show bfd peer" How to verify it Check Command-Reference.md --- doc/Command-Reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index dc35ea69..2316441f 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -2049,7 +2049,7 @@ This command displays the state and key parameters of all BFD sessions that matc - Usage: ``` - show bgp peer + show bfd peer ``` - Example: ``` From 6b8ee47cb32969fe7ab9af188a6ebcadfcbbd5dd Mon Sep 17 00:00:00 2001 From: Dev Ojha <47282568+developfast@users.noreply.github.com> Date: Tue, 4 Jul 2023 13:37:30 -0700 Subject: [PATCH 191/312] [CLI][Show][BGP] Show BGP Change for no neighbor scenario (#2885) --- tests/bgp_commands_test.py | 135 +++++++++++++++++-- tests/conftest.py | 52 ++++--- tests/mock_tables/asic0/device_bgp_info.json | 30 +++++ tests/mock_tables/asic0/no_bgp_neigh.json | 1 + tests/mock_tables/asic1/device_bgp_info.json | 30 +++++ tests/mock_tables/asic1/no_bgp_neigh.json | 1 + tests/mock_tables/device_bgp_info.json | 30 +++++ tests/mock_tables/no_bgp_neigh.json | 1 + utilities_common/bgp_util.py | 122 ++++++++++------- 9 files changed, 329 insertions(+), 73 deletions(-) create mode 100644 tests/mock_tables/asic0/device_bgp_info.json create mode 100644 tests/mock_tables/asic0/no_bgp_neigh.json create mode 100644 tests/mock_tables/asic1/device_bgp_info.json create mode 100644 tests/mock_tables/asic1/no_bgp_neigh.json create mode 100644 tests/mock_tables/device_bgp_info.json create mode 100644 tests/mock_tables/no_bgp_neigh.json diff --git a/tests/bgp_commands_test.py b/tests/bgp_commands_test.py index 67c05a2f..837ced3b 100644 --- a/tests/bgp_commands_test.py +++ b/tests/bgp_commands_test.py @@ -1,6 +1,7 @@ import os import pytest +import importlib from click.testing import CliRunner @@ -97,12 +98,72 @@ Error: bgp summary from bgp container not in json format """ -show_error_no_v6_neighbor = """\ -No IPv6 neighbor is configured +show_error_no_v6_neighbor_single_asic = """\ + +IPv6 Unicast Summary: +BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 +BGP table version 8972 +RIB entries 0, using 0 bytes of memory +Peers 0, using 0 KiB of memory +Peer groups 0, using 0 bytes of memory + + +Neighbhor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd NeighborName +----------- --- ---- --------- --------- -------- ----- ------ --------- -------------- -------------- + +Total number of neighbors 0 +""" + +show_error_no_v4_neighbor_single_asic = """\ + +IPv4 Unicast Summary: +BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 +BGP table version 8972 +RIB entries 0, using 0 bytes of memory +Peers 0, using 0 KiB of memory +Peer groups 0, using 0 bytes of memory + + +Neighbhor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd NeighborName +----------- --- ---- --------- --------- -------- ----- ------ --------- -------------- -------------- + +Total number of neighbors 0 """ -show_error_no_v4_neighbor = """\ -No IPv4 neighbor is configured +show_error_no_v6_neighbor_multi_asic = """\ + +IPv6 Unicast Summary: +asic0: BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 +BGP table version 8972 +asic1: BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 +BGP table version 8972 +RIB entries 0, using 0 bytes of memory +Peers 0, using 0 KiB of memory +Peer groups 0, using 0 bytes of memory + + +Neighbhor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd NeighborName +----------- --- ---- --------- --------- -------- ----- ------ --------- -------------- -------------- + +Total number of neighbors 0 +""" + +show_error_no_v4_neighbor_multi_asic = """\ + +IPv4 Unicast Summary: +asic0: BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 +BGP table version 8972 +asic1: BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 +BGP table version 8972 +RIB entries 0, using 0 bytes of memory +Peers 0, using 0 KiB of memory +Peer groups 0, using 0 bytes of memory + + +Neighbhor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd NeighborName +----------- --- ---- --------- --------- -------- ----- ------ --------- -------------- -------------- + +Total number of neighbors 0 """ show_bgp_summary_v4_chassis = """\ @@ -217,11 +278,14 @@ """ -class TestBgpCommands(object): +class TestBgpCommandsSingleAsic(object): @classmethod def setup_class(cls): print("SETUP") + from .mock_tables import mock_single_asic + importlib.reload(mock_single_asic) from .mock_tables import dbconnector + dbconnector.load_namespace_config() @pytest.mark.parametrize('setup_single_bgp_instance', ['v4'], indirect=['setup_single_bgp_instance']) @@ -337,10 +401,10 @@ def test_bgp_summary_no_v4_neigh( show = setup_bgp_commands runner = CliRunner() result = runner.invoke( - show.cli.commands["ipv6"].commands["bgp"].commands["summary"], []) + show.cli.commands["ip"].commands["bgp"].commands["summary"], []) print("{}".format(result.output)) assert result.exit_code == 0 - assert result.output == show_error_no_v6_neighbor + assert result.output == show_error_no_v4_neighbor_single_asic @pytest.mark.parametrize('setup_single_bgp_instance', ['show_bgp_summary_no_neigh'], indirect=['setup_single_bgp_instance']) @@ -350,8 +414,63 @@ def test_bgp_summary_no_v6_neigh( setup_single_bgp_instance): show = setup_bgp_commands runner = CliRunner() + result = runner.invoke( + show.cli.commands["ipv6"].commands["bgp"].commands["summary"], []) + print("{}".format(result.output)) + assert result.exit_code == 0 + assert result.output == show_error_no_v6_neighbor_single_asic + + @classmethod + def teardown_class(cls): + print("TEARDOWN") + os.environ['UTILITIES_UNIT_TESTING'] = "0" + from .mock_tables import mock_single_asic + importlib.reload(mock_single_asic) + from .mock_tables import dbconnector + dbconnector.load_database_config() + + +class TestBgpCommandsMultiAsic(object): + @classmethod + def setup_class(cls): + print("SETUP") + from .mock_tables import mock_multi_asic + importlib.reload(mock_multi_asic) + from .mock_tables import dbconnector + dbconnector.load_namespace_config() + + @pytest.mark.parametrize('setup_multi_asic_bgp_instance', + ['show_bgp_summary_no_neigh'], indirect=['setup_multi_asic_bgp_instance']) + def test_bgp_summary_multi_asic_no_v4_neigh( + self, + setup_bgp_commands, + setup_multi_asic_bgp_instance): + show = setup_bgp_commands + runner = CliRunner() result = runner.invoke( show.cli.commands["ip"].commands["bgp"].commands["summary"], []) print("{}".format(result.output)) assert result.exit_code == 0 - assert result.output == show_error_no_v4_neighbor + assert result.output == show_error_no_v4_neighbor_multi_asic + + @pytest.mark.parametrize('setup_multi_asic_bgp_instance', + ['show_bgp_summary_no_neigh'], indirect=['setup_multi_asic_bgp_instance']) + def test_bgp_summary_multi_asic_no_v6_neigh( + self, + setup_bgp_commands, + setup_multi_asic_bgp_instance): + show = setup_bgp_commands + runner = CliRunner() + result = runner.invoke( + show.cli.commands["ipv6"].commands["bgp"].commands["summary"], []) + print("{}".format(result.output)) + assert result.exit_code == 0 + assert result.output == show_error_no_v6_neighbor_multi_asic + + @classmethod + def teardown_class(cls): + print("TEARDOWN") + from .mock_tables import mock_single_asic + importlib.reload(mock_single_asic) + from .mock_tables import dbconnector + dbconnector.load_database_config diff --git a/tests/conftest.py b/tests/conftest.py index fe99ef47..bfcae471 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -170,6 +170,11 @@ def setup_single_bgp_instance(request): elif request.param == 'v6': bgp_mocked_json = os.path.join( test_path, 'mock_tables', 'ipv6_bgp_summary.json') + elif request.param == 'show_bgp_summary_no_neigh': + bgp_neigh_mocked_json = os.path.join( + test_path, 'mock_tables', 'no_bgp_neigh.json') + bgp_mocked_json = os.path.join( + test_path, 'mock_tables', 'device_bgp_info.json') elif request.param == 'show_run_bgp': bgp_mocked_json = os.path.join( test_path, 'mock_tables', 'show_run_bgp.txt') @@ -187,12 +192,9 @@ def setup_single_bgp_instance(request): bgp_mocked_json = os.path.join( test_path, 'mock_tables', 'dummy.json') - def mock_show_bgp_summary_no_neigh(vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.RVTYSH_COMMAND): - return "{}" - - def mock_show_bgp_summary(vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.RVTYSH_COMMAND): - if os.path.isfile(bgp_mocked_json): - with open(bgp_mocked_json) as json_data: + def mock_run_bgp_command(mock_bgp_file): + if os.path.isfile(mock_bgp_file): + with open(mock_bgp_file) as json_data: mock_frr_data = json_data.read() return mock_frr_data return "" @@ -218,7 +220,7 @@ def mock_run_show_ip_route_commands(request): else: return "" - def mock_run_bgp_command(vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.RVTYSH_COMMAND): + def mock_run_bgp_route_command(vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.RVTYSH_COMMAND): bgp_mocked_json_file = os.path.join( test_path, 'mock_tables', bgp_mocked_json) if os.path.isfile(bgp_mocked_json_file): @@ -229,11 +231,11 @@ def mock_run_bgp_command(vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.RVT return "" _old_run_bgp_command = bgp_util.run_bgp_command - if any ([request.param == 'ip_route',\ - request.param == 'ip_specific_route', request.param == 'ip_special_route',\ - request.param == 'ipv6_route', request.param == 'ipv6_specific_route']): + if any([request.param == 'ip_route', + request.param == 'ip_specific_route', request.param == 'ip_special_route', + request.param == 'ipv6_route', request.param == 'ipv6_specific_route']): bgp_util.run_bgp_command = mock.MagicMock( - return_value=mock_run_bgp_command("","")) + return_value=mock_run_bgp_route_command("", "")) elif request.param.startswith('ipv6_route_err'): bgp_util.run_bgp_command = mock.MagicMock( return_value=mock_run_show_ip_route_commands(request)) @@ -242,20 +244,21 @@ def mock_run_bgp_command(vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.RVT bgp_util.run_bgp_command = mock.MagicMock( return_value=mock_show_bgp_neighbor_single_asic(request)) elif request.param.startswith('bgp_v4_network') or \ - request.param.startswith('bgp_v6_network'): + request.param.startswith('bgp_v6_network'): bgp_util.run_bgp_command = mock.MagicMock( return_value=mock_show_bgp_network_single_asic(request)) elif request.param == 'ip_route_for_int_ip': 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.MagicMock( - return_value=mock_show_bgp_summary_no_neigh("", "")) elif request.param.startswith('show_run_bgp'): bgp_util.run_bgp_command = mock.MagicMock( return_value=mock_show_run_bgp(request)) + elif request.param == 'show_bgp_summary_no_neigh': + functions_to_call = [mock_run_bgp_command(bgp_neigh_mocked_json), mock_run_bgp_command(bgp_mocked_json)] + bgp_util.run_bgp_command = mock.MagicMock( + side_effect=functions_to_call) else: bgp_util.run_bgp_command = mock.MagicMock( - return_value=mock_show_bgp_summary("", "")) + return_value=mock_run_bgp_command(bgp_mocked_json)) yield @@ -325,9 +328,26 @@ def mock_run_bgp_command(vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.RVT else: return "" + def mock_run_show_sum_bgp_command(vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.VTYSH_COMMAND): + if vtysh_cmd == "show ip bgp summary json": + m_asic_json_file = 'no_bgp_neigh.json' + else: + m_asic_json_file = 'device_bgp_info.json' + + bgp_mocked_json = os.path.join( + test_path, 'mock_tables', bgp_namespace, m_asic_json_file) + if os.path.isfile(bgp_mocked_json): + with open(bgp_mocked_json) as json_data: + mock_frr_data = json_data.read() + return mock_frr_data + else: + return "" + _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 else: bgp_util.run_bgp_command = mock_run_bgp_command diff --git a/tests/mock_tables/asic0/device_bgp_info.json b/tests/mock_tables/asic0/device_bgp_info.json new file mode 100644 index 00000000..5bc28cf8 --- /dev/null +++ b/tests/mock_tables/asic0/device_bgp_info.json @@ -0,0 +1,30 @@ +{ +"vrfId": 0, +"vrfName": "default", +"tableVersion": 8972, +"routerId": "10.1.0.32", +"defaultLocPrf": 100, +"localAS": 65100, +"routes": { "10.1.0.32/32": [ + { + "valid":true, + "bestpath":true, + "pathFrom":"external", + "prefix":"10.1.0.32", + "prefixLen":32, + "network":"10.1.0.32\/32", + "metric":0, + "weight":32768, + "peerId":"(unspec)", + "path":"", + "origin":"IGP", + "nexthops":[ + { + "ip":"0.0.0.0", + "hostname":"STR-8102-C19-U24", + "afi":"ipv4", + "used":true + } + ] + } +] } } \ No newline at end of file diff --git a/tests/mock_tables/asic0/no_bgp_neigh.json b/tests/mock_tables/asic0/no_bgp_neigh.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/tests/mock_tables/asic0/no_bgp_neigh.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/tests/mock_tables/asic1/device_bgp_info.json b/tests/mock_tables/asic1/device_bgp_info.json new file mode 100644 index 00000000..5bc28cf8 --- /dev/null +++ b/tests/mock_tables/asic1/device_bgp_info.json @@ -0,0 +1,30 @@ +{ +"vrfId": 0, +"vrfName": "default", +"tableVersion": 8972, +"routerId": "10.1.0.32", +"defaultLocPrf": 100, +"localAS": 65100, +"routes": { "10.1.0.32/32": [ + { + "valid":true, + "bestpath":true, + "pathFrom":"external", + "prefix":"10.1.0.32", + "prefixLen":32, + "network":"10.1.0.32\/32", + "metric":0, + "weight":32768, + "peerId":"(unspec)", + "path":"", + "origin":"IGP", + "nexthops":[ + { + "ip":"0.0.0.0", + "hostname":"STR-8102-C19-U24", + "afi":"ipv4", + "used":true + } + ] + } +] } } \ No newline at end of file diff --git a/tests/mock_tables/asic1/no_bgp_neigh.json b/tests/mock_tables/asic1/no_bgp_neigh.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/tests/mock_tables/asic1/no_bgp_neigh.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/tests/mock_tables/device_bgp_info.json b/tests/mock_tables/device_bgp_info.json new file mode 100644 index 00000000..5bc28cf8 --- /dev/null +++ b/tests/mock_tables/device_bgp_info.json @@ -0,0 +1,30 @@ +{ +"vrfId": 0, +"vrfName": "default", +"tableVersion": 8972, +"routerId": "10.1.0.32", +"defaultLocPrf": 100, +"localAS": 65100, +"routes": { "10.1.0.32/32": [ + { + "valid":true, + "bestpath":true, + "pathFrom":"external", + "prefix":"10.1.0.32", + "prefixLen":32, + "network":"10.1.0.32\/32", + "metric":0, + "weight":32768, + "peerId":"(unspec)", + "path":"", + "origin":"IGP", + "nexthops":[ + { + "ip":"0.0.0.0", + "hostname":"STR-8102-C19-U24", + "afi":"ipv4", + "used":true + } + ] + } +] } } \ No newline at end of file diff --git a/tests/mock_tables/no_bgp_neigh.json b/tests/mock_tables/no_bgp_neigh.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/tests/mock_tables/no_bgp_neigh.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/utilities_common/bgp_util.py b/utilities_common/bgp_util.py index fd306fdc..58e8d910 100644 --- a/utilities_common/bgp_util.py +++ b/utilities_common/bgp_util.py @@ -194,6 +194,7 @@ def run_bgp_command(vtysh_cmd, bgp_namespace=multi_asic.DEFAULT_NAMESPACE, vtysh return output + def run_bgp_show_command(vtysh_cmd, bgp_namespace=multi_asic.DEFAULT_NAMESPACE): output = run_bgp_command(vtysh_cmd, bgp_namespace, constants.RVTYSH_COMMAND) # handle the the alias mode in the following code @@ -214,6 +215,7 @@ def run_bgp_show_command(vtysh_cmd, bgp_namespace=multi_asic.DEFAULT_NAMESPACE): output= json.dumps(route_info) return output + def get_bgp_summary_from_all_bgp_instances(af, namespace, display): device = multi_asic_util.MultiAsic(display, namespace) @@ -227,21 +229,29 @@ def get_bgp_summary_from_all_bgp_instances(af, namespace, display): bgp_summary = {} cmd_output_json = {} + for ns in device.get_ns_list_based_on_options(): + has_bgp_neighbors = True cmd_output = run_bgp_show_command(vtysh_cmd, ns) + device.current_namespace = ns try: cmd_output_json = json.loads(cmd_output) except ValueError: ctx.fail("bgp summary from bgp container not in json format") - # exit cli command without printing the error message + # no bgp neighbors found so print basic device bgp info if key not in cmd_output_json: - click.echo("No IP{} neighbor is configured".format(af)) - exit() + has_bgp_neighbors = False + vtysh_cmd = "show ip bgp json" + no_neigh_cmd_output = run_bgp_show_command(vtysh_cmd, ns) + try: + no_neigh_cmd_output_json = json.loads(no_neigh_cmd_output) + except ValueError: + ctx.fail("bgp summary from bgp container not in json format") - device.current_namespace = ns + out_cmd = cmd_output_json[key] if has_bgp_neighbors else no_neigh_cmd_output_json + process_bgp_summary_json(bgp_summary, out_cmd, device, has_bgp_neighbors=has_bgp_neighbors) - process_bgp_summary_json(bgp_summary, cmd_output_json[key], device) return bgp_summary @@ -263,7 +273,7 @@ def display_bgp_summary(bgp_summary, af): for router_info in bgp_summary['router_info']: for k in router_info: v = router_info[k] - instance = "{}: ".format(k) if k is not "" else "" + instance = "{}: ".format(k) if k != "" else "" click.echo( "{}BGP router identifier {}, local AS number {} vrf-id {}" .format( instance, v['router_id'], v['as'], v['vrf'])) @@ -287,66 +297,80 @@ def display_bgp_summary(bgp_summary, af): ctx.fail("{} missing in the bgp_summary".format(e.args[0])) -def process_bgp_summary_json(bgp_summary, cmd_output, device): +def process_bgp_summary_json(bgp_summary, cmd_output, device, has_bgp_neighbors=True): ''' This function process the frr output in json format from a bgp instance and stores the need values in the a bgp_summary ''' - static_neighbors, dynamic_neighbors = get_bgp_neighbors_dict( - device.current_namespace) + if has_bgp_neighbors: + static_neighbors, dynamic_neighbors = get_bgp_neighbors_dict( + device.current_namespace) try: # add all the router level fields - bgp_summary['peerCount'] = bgp_summary.get( - 'peerCount', 0) + cmd_output['peerCount'] - bgp_summary['peerMemory'] = bgp_summary.get( - 'peerMemory', 0) + cmd_output['peerMemory'] - bgp_summary['ribCount'] = bgp_summary.get( - 'ribCount', 0) + cmd_output['ribCount'] - bgp_summary['ribMemory'] = bgp_summary.get( - 'ribMemory', 0) + cmd_output['ribMemory'] - bgp_summary['peerGroupCount'] = bgp_summary.get( - 'peerGroupCount', 0) + cmd_output['peerGroupCount'] - bgp_summary['peerGroupMemory'] = bgp_summary.get( - 'peerGroupMemory', 0) + cmd_output['peerGroupMemory'] + if has_bgp_neighbors: + # when there are bgp neighbors, fill information from the dict + bgp_summary['peerCount'] = bgp_summary.get( + 'peerCount', 0) + cmd_output['peerCount'] + bgp_summary['peerMemory'] = bgp_summary.get( + 'peerMemory', 0) + cmd_output['peerMemory'] + bgp_summary['ribCount'] = bgp_summary.get( + 'ribCount', 0) + cmd_output['ribCount'] + bgp_summary['ribMemory'] = bgp_summary.get( + 'ribMemory', 0) + cmd_output['ribMemory'] + bgp_summary['peerGroupCount'] = bgp_summary.get( + 'peerGroupCount', 0) + cmd_output['peerGroupCount'] + bgp_summary['peerGroupMemory'] = bgp_summary.get( + 'peerGroupMemory', 0) + cmd_output['peerGroupMemory'] + else: + # when there are no bgp neighbors, all values are zero + bgp_summary['peerCount'] = 0 + bgp_summary['peerMemory'] = 0 + bgp_summary['ribCount'] = 0 + bgp_summary['ribMemory'] = 0 + bgp_summary['peerGroupCount'] = 0 + bgp_summary['peerGroupMemory'] = 0 # store instance level field is seperate dict router_info = {} router_info['router_id'] = cmd_output['routerId'] router_info['vrf'] = cmd_output['vrfId'] - router_info['as'] = cmd_output['as'] + router_info['as'] = cmd_output['as'] if has_bgp_neighbors else cmd_output['localAS'] router_info['tbl_ver'] = cmd_output['tableVersion'] bgp_summary.setdefault('router_info', []).append( {device.current_namespace: router_info}) # store all the peers in the list - for peer_ip, value in cmd_output['peers'].items(): - peers = [] - # if display option is 'frontend', internal bgp neighbors will not - # be displayed - if device.skip_display(constants.BGP_NEIGH_OBJ, peer_ip): - continue - - peers.append(peer_ip) - peers.append(value['version']) - peers.append(value['remoteAs']) - peers.append(value['msgRcvd']) - peers.append(value['msgSent']) - peers.append(value['tableVersion']) - peers.append(value['inq']) - peers.append(value['outq']) - peers.append(value['peerUptime']) - if value['state'] == 'Established': - peers.append(value['pfxRcd']) - else: - peers.append(value['state']) - - # Get the bgp neighbour name ans store it - neigh_name = get_bgp_neighbor_ip_to_name( - peer_ip, static_neighbors, dynamic_neighbors) - peers.append(neigh_name) - - bgp_summary.setdefault('peers', []).append(peers) + if has_bgp_neighbors: + for peer_ip, value in cmd_output['peers'].items(): + peers = [] + # if display option is 'frontend', internal bgp neighbors will not + # be displayed + if device.skip_display(constants.BGP_NEIGH_OBJ, peer_ip): + continue + + peers.append(peer_ip) + peers.append(value['version']) + peers.append(value['remoteAs']) + peers.append(value['msgRcvd']) + peers.append(value['msgSent']) + peers.append(value['tableVersion']) + peers.append(value['inq']) + peers.append(value['outq']) + peers.append(value['peerUptime']) + if value['state'] == 'Established': + peers.append(value['pfxRcd']) + else: + peers.append(value['state']) + + # Get the bgp neighbour name ans store it + neigh_name = get_bgp_neighbor_ip_to_name( + peer_ip, static_neighbors, dynamic_neighbors) + peers.append(neigh_name) + + bgp_summary.setdefault('peers', []).append(peers) + else: + bgp_summary['peers'] = [] except KeyError as e: ctx = click.get_current_context() ctx.fail("{} missing in the bgp_summary".format(e.args[0])) From 61bad064e8630f7ee25c0ce5fae9642b94b33eb0 Mon Sep 17 00:00:00 2001 From: Vadym Hlushko <62022266+vadymhlushko-mlnx@users.noreply.github.com> Date: Thu, 6 Jul 2023 22:20:54 +0300 Subject: [PATCH 192/312] [db_migrator] Set correct CURRENT_VERSION, extend UT (#2895) Signed-off-by: vadymhlushko-mlnx What I did Set the correct value for the db_migrator class variable CURRENT_VERSION, because if the new DB version was introduced the CURRENT_VERSION variable should have the newest version value. How I did it Edit the db_migrator.py. How to verify it Extend existing UT. --- scripts/db_migrator.py | 2 +- tests/db_migrator_test.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index 0f009985..9c11ab20 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -47,7 +47,7 @@ def __init__(self, namespace, socket=None): none-zero values. build: sequentially increase within a minor version domain. """ - self.CURRENT_VERSION = 'version_4_0_2' + self.CURRENT_VERSION = 'version_4_0_3' self.TABLE_NAME = 'VERSIONS' self.TABLE_KEY = 'DATABASE' diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index e038db93..02c56f91 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -674,4 +674,5 @@ def test_fast_reboot_upgrade_to_4_0_3(self): dbmgtr = db_migrator.DBMigrator(None) dbmgtr.migrate() expected_db = self.mock_dedicated_config_db(db_after_migrate) - assert not self.check_config_db(dbmgtr.configDB, expected_db.cfgdb) \ No newline at end of file + 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 From ff380e04b69d9412a93f33ffb36e05fc2d6def03 Mon Sep 17 00:00:00 2001 From: Nazarii Hnydyn Date: Mon, 10 Jul 2023 16:46:33 +0300 Subject: [PATCH 193/312] [hash]: Implement GH frontend (#2580) HLD https://github.com/sonic-net/SONiC/pull/1101 - 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 Signed-off-by: Nazarii Hnydyn --- config/plugins/sonic-hash.py | 273 ++++++++++++++++++ doc/Command-Reference.md | 98 +++++++ show/plugins/sonic-hash.py | 155 ++++++++++ tests/hash_input/assert_show_output.py | 158 ++++++++++ tests/hash_input/mock_config/ecmp.json | 5 + .../hash_input/mock_config/ecmp_and_lag.json | 6 + tests/hash_input/mock_config/empty.json | 5 + tests/hash_input/mock_config/lag.json | 5 + tests/hash_input/mock_state/ecmp.json | 7 + tests/hash_input/mock_state/ecmp_and_lag.json | 7 + tests/hash_input/mock_state/empty.json | 7 + tests/hash_input/mock_state/lag.json | 7 + .../mock_state/no_capabilities.json | 7 + .../hash_input/mock_state/not_applicable.json | 7 + tests/hash_test.py | 244 ++++++++++++++++ utilities_common/switch_hash.py | 64 ++++ 16 files changed, 1055 insertions(+) create mode 100644 config/plugins/sonic-hash.py create mode 100644 show/plugins/sonic-hash.py create mode 100644 tests/hash_input/assert_show_output.py create mode 100644 tests/hash_input/mock_config/ecmp.json create mode 100644 tests/hash_input/mock_config/ecmp_and_lag.json create mode 100644 tests/hash_input/mock_config/empty.json create mode 100644 tests/hash_input/mock_config/lag.json create mode 100644 tests/hash_input/mock_state/ecmp.json create mode 100644 tests/hash_input/mock_state/ecmp_and_lag.json create mode 100644 tests/hash_input/mock_state/empty.json create mode 100644 tests/hash_input/mock_state/lag.json create mode 100644 tests/hash_input/mock_state/no_capabilities.json create mode 100644 tests/hash_input/mock_state/not_applicable.json create mode 100644 tests/hash_test.py create mode 100644 utilities_common/switch_hash.py diff --git a/config/plugins/sonic-hash.py b/config/plugins/sonic-hash.py new file mode 100644 index 00000000..1d3c65c5 --- /dev/null +++ b/config/plugins/sonic-hash.py @@ -0,0 +1,273 @@ +""" +This CLI plugin was auto-generated by using 'sonic-cli-gen' utility +""" + +import click +import utilities_common.cli as clicommon + +from sonic_py_common import logger +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_HASH_KEY, + SW_CAP_KEY, + HASH_FIELD_LIST, + SYSLOG_IDENTIFIER, + get_param, + get_param_hint, + get_dupes, + to_str, +) + + +log = logger.Logger(SYSLOG_IDENTIFIER) +log.set_min_log_priority_info() + +# +# Hash validators ----------------------------------------------------------------------------------------------------- +# + +def hash_field_validator(ctx, param, value): + """ + Check if hash field list argument is valid + Args: + ctx: click context + param: click parameter context + value: value of parameter + Returns: + str: validated parameter + """ + + for hash_field in value: + click.Choice(HASH_FIELD_LIST).convert(hash_field, param, ctx) + + return list(value) + + +def ecmp_hash_validator(ctx, db, ecmp_hash): + """ + Check if ECMP hash argument is valid + + Args: + ctx: click context + db: State DB connector object + ecmp_hash: ECMP hash field list + """ + + dup_list = get_dupes(ecmp_hash) + if dup_list: + raise click.UsageError("Invalid value for {}: {} has a duplicate hash field(s) {}".format( + get_param_hint(ctx, "ecmp_hash"), to_str(ecmp_hash), to_str(dup_list)), ctx + ) + + 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') + + if entry[SW_CAP_ECMP_HASH_KEY] == 'false': + raise click.UsageError("Failed to configure {}: operation is not supported".format( + get_param_hint(ctx, "ecmp_hash")), ctx + ) + + if not entry[SW_CAP_HASH_FIELD_LIST_KEY]: + raise click.UsageError("Failed to configure {}: no hash field capabilities".format( + get_param_hint(ctx, "ecmp_hash")), ctx + ) + + if entry[SW_CAP_HASH_FIELD_LIST_KEY] == 'N/A': + return + + cap_list = entry[SW_CAP_HASH_FIELD_LIST_KEY].split(',') + + for hash_field in ecmp_hash: + click.Choice(cap_list).convert(hash_field, get_param(ctx, "ecmp_hash"), ctx) + + +def lag_hash_validator(ctx, db, lag_hash): + """ + Check if LAG hash argument is valid + + Args: + ctx: click context + db: State DB connector object + lag_hash: LAG hash field list + """ + + dup_list = get_dupes(lag_hash) + if dup_list: + raise click.UsageError("Invalid value for {}: {} has a duplicate hash field(s) {}".format( + get_param_hint(ctx, "lag_hash"), to_str(lag_hash), to_str(dup_list)), ctx + ) + + 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') + + if entry[SW_CAP_LAG_HASH_KEY] == 'false': + raise click.UsageError("Failed to configure {}: operation is not supported".format( + get_param_hint(ctx, "lag_hash")), ctx + ) + + if not entry[SW_CAP_HASH_FIELD_LIST_KEY]: + raise click.UsageError("Failed to configure {}: no hash field capabilities".format( + get_param_hint(ctx, "lag_hash")), ctx + ) + + if entry[SW_CAP_HASH_FIELD_LIST_KEY] == 'N/A': + return + + cap_list = entry[SW_CAP_HASH_FIELD_LIST_KEY].split(',') + + for hash_field in lag_hash: + click.Choice(cap_list).convert(hash_field, get_param(ctx, "lag_hash"), ctx) + +# +# Hash DB interface --------------------------------------------------------------------------------------------------- +# + +def update_entry_validated(db, table, key, data, create_if_not_exists=False): + """ Update entry in table and validate configuration. + If attribute value in data is None, the attribute is deleted. + + Args: + db (swsscommon.ConfigDBConnector): Config DB connector object. + table (str): Table name to add new entry to. + key (Union[str, Tuple]): Key name in the table. + data (Dict): Entry data. + create_if_not_exists (bool): + In case entry does not exists already a new entry + is not created if this flag is set to False and + creates a new entry if flag is set to True. + Raises: + Exception: when cfg does not satisfy YANG schema. + """ + + cfg = db.get_config() + cfg.setdefault(table, {}) + + if not data: + raise click.ClickException(f"No field/values to update {key}") + + if create_if_not_exists: + cfg[table].setdefault(key, {}) + + if key not in cfg[table]: + raise click.ClickException(f"{key} does not exist") + + entry_changed = False + for attr, value in data.items(): + if value == cfg[table][key].get(attr): + continue + entry_changed = True + if value is None: + cfg[table][key].pop(attr, None) + else: + cfg[table][key][attr] = value + + if not entry_changed: + return + + db.set_entry(table, key, cfg[table][key]) + +# +# Hash CLI ------------------------------------------------------------------------------------------------------------ +# + +@click.group( + name="switch-hash", + cls=clicommon.AliasedGroup +) +def SWITCH_HASH(): + """ Configure switch hash feature """ + + pass + + +@SWITCH_HASH.group( + name="global", + cls=clicommon.AliasedGroup +) +def SWITCH_HASH_GLOBAL(): + """ Configure switch hash global """ + + pass + + +@SWITCH_HASH_GLOBAL.command( + name="ecmp-hash" +) +@click.argument( + "ecmp-hash", + nargs=-1, + required=True, + callback=hash_field_validator, +) +@clicommon.pass_db +@click.pass_context +def SWITCH_HASH_GLOBAL_ecmp_hash(ctx, db, ecmp_hash): + """ Hash fields for hashing packets going through ECMP """ + + ecmp_hash_validator(ctx, db.db, ecmp_hash) + + table = CFG_SWITCH_HASH + key = SW_HASH_KEY + data = { + "ecmp_hash": ecmp_hash, + } + + try: + update_entry_validated(db.cfgdb, table, key, data, create_if_not_exists=True) + log.log_notice("Configured switch global ECMP hash: {}".format(to_str(ecmp_hash))) + except Exception as e: + log.log_error("Failed to configure switch global ECMP hash: {}".format(str(e))) + ctx.fail(str(e)) + + +@SWITCH_HASH_GLOBAL.command( + name="lag-hash" +) +@click.argument( + "lag-hash", + nargs=-1, + required=True, + callback=hash_field_validator, +) +@clicommon.pass_db +@click.pass_context +def SWITCH_HASH_GLOBAL_lag_hash(ctx, db, lag_hash): + """ Hash fields for hashing packets going through LAG """ + + lag_hash_validator(ctx, db.db, lag_hash) + + table = CFG_SWITCH_HASH + key = SW_HASH_KEY + data = { + "lag_hash": lag_hash, + } + + try: + update_entry_validated(db.cfgdb, table, key, data, create_if_not_exists=True) + log.log_notice("Configured switch global LAG hash: {}".format(to_str(lag_hash))) + except Exception as err: + log.log_error("Failed to configure switch global LAG hash: {}".format(str(err))) + ctx.fail(str(err)) + + +def register(cli): + """ Register new CLI nodes in root CLI. + + Args: + cli: Root CLI node. + Raises: + Exception: when root CLI already has a command + we are trying to register. + """ + cli_node = SWITCH_HASH + if cli_node.name in cli.commands: + raise Exception(f"{cli_node.name} already exists in CLI") + cli.add_command(SWITCH_HASH) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 2316441f..211074bc 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -64,6 +64,9 @@ * [Flow Counters config commands](#flow-counters-config-commands) * [Gearbox](#gearbox) * [Gearbox show commands](#gearbox-show-commands) +* [Hash](#hash) + * [Hash show commands](#hash-show-commands) + * [Hash config commands](#hash-config-commands) * [Interfaces](#interfaces) * [Interface Show Commands](#interface-show-commands) * [Interface Config Commands](#interface-config-commands) @@ -4087,6 +4090,101 @@ This command is used to change device hostname without traffic being impacted. Please note loaded setting will be lost after system reboot. To preserve setting, run `config save`. ``` +## Hash + +This section explains the various show and configuration commands available for user. + +### Hash Show Commands + +This subsection explains how to display switch hash configuration. + +**show switch-hash global** + +This command displays switch hash global configuration. + +- Usage: + ```bash + show switch-hash global + ``` + +- 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 Config Commands + +This subsection explains how to configure switch hash. + +**config switch-hash global** + +This command is used to manage switch hash global configuration. + +- Usage: + ```bash + config switch-hash global ecmp-hash + config switch-hash global lag-hash + ``` + +- Parameters: + - _hash_field_list_: hash fields for hashing packets going through ECMP/LAG + +- Examples: + ```bash + admin@sonic:~$ config 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' + admin@sonic:~$ config 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' + ``` + ## Interfaces ### Interface Show Commands diff --git a/show/plugins/sonic-hash.py b/show/plugins/sonic-hash.py new file mode 100644 index 00000000..467b124c --- /dev/null +++ b/show/plugins/sonic-hash.py @@ -0,0 +1,155 @@ +""" +This CLI plugin was auto-generated by using 'sonic-cli-gen' utility +""" + +import click +import tabulate +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_HASH_KEY, + SW_CAP_KEY, +) + +# +# Hash helpers -------------------------------------------------------------------------------------------------------- +# + +def format_attr_value(entry, attr): + """ Helper that formats attribute to be presented in the table output. + + Args: + entry (Dict[str, str]): CONFIG DB entry configuration. + attr (Dict): Attribute metadata. + + Returns: + str: formatted attribute value. + """ + + if attr["is-leaf-list"]: + value = entry.get(attr["name"], []) + return "\n".join(value) if value else "N/A" + return entry.get(attr["name"], "N/A") + +# +# Hash CLI ------------------------------------------------------------------------------------------------------------ +# + +@click.group( + name="switch-hash", + cls=clicommon.AliasedGroup +) +def SWITCH_HASH(): + """ Show switch hash feature configuration """ + + pass + + +@SWITCH_HASH.command( + name="global" +) +@clicommon.pass_db +def SWITCH_HASH_GLOBAL(db): + """ Show switch hash global configuration """ + + header = [ + "ECMP HASH", + "LAG HASH", + ] + 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 + + row = [ + format_attr_value( + entry, + { + 'name': 'ecmp_hash', + 'is-leaf-list': True + } + ), + format_attr_value( + entry, + { + 'name': 'lag_hash', + 'is-leaf-list': True + } + ), + ] + body.append(row) + + click.echo(tabulate.tabulate(body, header)) + + +@SWITCH_HASH.command( + name="capabilities" +) +@clicommon.pass_db +def SWITCH_HASH_CAPABILITIES(db): + """ Show switch hash capabilities """ + + header = [ + "ECMP HASH", + "LAG HASH", + ] + 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 + + 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') + + if not entry[SW_CAP_HASH_FIELD_LIST_KEY]: + entry[SW_CAP_HASH_FIELD_LIST_KEY] = "no capabilities" + + entry[SW_CAP_HASH_FIELD_LIST_KEY] = entry[SW_CAP_HASH_FIELD_LIST_KEY].split(',') + + 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', + 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', + ] + body.append(row) + + click.echo(tabulate.tabulate(body, header)) + + +def register(cli): + """ Register new CLI nodes in root CLI. + + Args: + cli (click.core.Command): Root CLI node. + Raises: + Exception: when root CLI already has a command + we are trying to register. + """ + cli_node = SWITCH_HASH + if cli_node.name in cli.commands: + raise Exception(f"{cli_node.name} already exists in CLI") + cli.add_command(SWITCH_HASH) diff --git a/tests/hash_input/assert_show_output.py b/tests/hash_input/assert_show_output.py new file mode 100644 index 00000000..80edc1cf --- /dev/null +++ b/tests/hash_input/assert_show_output.py @@ -0,0 +1,158 @@ +""" +Module holding the correct values for show CLI command outputs for the hash_test.py +""" + +show_hash_empty="""\ +ECMP HASH LAG HASH +----------- ---------- +""" + +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 +""" + +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 +""" + +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 +""" + +show_hash_capabilities_no="""\ +ECMP HASH LAG HASH +--------------- --------------- +no capabilities no capabilities +""" + +show_hash_capabilities_na="""\ +ECMP HASH LAG HASH +----------- ---------- +N/A N/A +""" + +show_hash_capabilities_empty="""\ +ECMP HASH LAG HASH +------------- ------------- +not supported 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 +""" + +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 +""" + +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 +""" diff --git a/tests/hash_input/mock_config/ecmp.json b/tests/hash_input/mock_config/ecmp.json new file mode 100644 index 00000000..329af0be --- /dev/null +++ b/tests/hash_input/mock_config/ecmp.json @@ -0,0 +1,5 @@ +{ + "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" + } +} diff --git a/tests/hash_input/mock_config/ecmp_and_lag.json b/tests/hash_input/mock_config/ecmp_and_lag.json new file mode 100644 index 00000000..caa095ac --- /dev/null +++ b/tests/hash_input/mock_config/ecmp_and_lag.json @@ -0,0 +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", + "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" + } +} diff --git a/tests/hash_input/mock_config/empty.json b/tests/hash_input/mock_config/empty.json new file mode 100644 index 00000000..e4b16ce1 --- /dev/null +++ b/tests/hash_input/mock_config/empty.json @@ -0,0 +1,5 @@ +{ + "SWITCH_HASH|GLOBAL": { + "NULL": "NULL" + } +} diff --git a/tests/hash_input/mock_config/lag.json b/tests/hash_input/mock_config/lag.json new file mode 100644 index 00000000..69b63bd0 --- /dev/null +++ b/tests/hash_input/mock_config/lag.json @@ -0,0 +1,5 @@ +{ + "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" + } +} diff --git a/tests/hash_input/mock_state/ecmp.json b/tests/hash_input/mock_state/ecmp.json new file mode 100644 index 00000000..e9f7cf43 --- /dev/null +++ b/tests/hash_input/mock_state/ecmp.json @@ -0,0 +1,7 @@ +{ + "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" + } +} diff --git a/tests/hash_input/mock_state/ecmp_and_lag.json b/tests/hash_input/mock_state/ecmp_and_lag.json new file mode 100644 index 00000000..ee0e9416 --- /dev/null +++ b/tests/hash_input/mock_state/ecmp_and_lag.json @@ -0,0 +1,7 @@ +{ + "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" + } +} diff --git a/tests/hash_input/mock_state/empty.json b/tests/hash_input/mock_state/empty.json new file mode 100644 index 00000000..9e221a2f --- /dev/null +++ b/tests/hash_input/mock_state/empty.json @@ -0,0 +1,7 @@ +{ + "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" + } +} diff --git a/tests/hash_input/mock_state/lag.json b/tests/hash_input/mock_state/lag.json new file mode 100644 index 00000000..3fb0008a --- /dev/null +++ b/tests/hash_input/mock_state/lag.json @@ -0,0 +1,7 @@ +{ + "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" + } +} diff --git a/tests/hash_input/mock_state/no_capabilities.json b/tests/hash_input/mock_state/no_capabilities.json new file mode 100644 index 00000000..68f5962c --- /dev/null +++ b/tests/hash_input/mock_state/no_capabilities.json @@ -0,0 +1,7 @@ +{ + "SWITCH_CAPABILITY|switch": { + "ECMP_HASH_CAPABLE": "true", + "LAG_HASH_CAPABLE": "true", + "HASH|NATIVE_HASH_FIELD_LIST": "" + } +} diff --git a/tests/hash_input/mock_state/not_applicable.json b/tests/hash_input/mock_state/not_applicable.json new file mode 100644 index 00000000..de390e89 --- /dev/null +++ b/tests/hash_input/mock_state/not_applicable.json @@ -0,0 +1,7 @@ +{ + "SWITCH_CAPABILITY|switch": { + "ECMP_HASH_CAPABLE": "true", + "LAG_HASH_CAPABLE": "true", + "HASH|NATIVE_HASH_FIELD_LIST": "N/A" + } +} diff --git a/tests/hash_test.py b/tests/hash_test.py new file mode 100644 index 00000000..96e8558d --- /dev/null +++ b/tests/hash_test.py @@ -0,0 +1,244 @@ +import pytest +import os +import logging +import show.main as show +import config.main as config + +from click.testing import CliRunner +from utilities_common.db import Db +from .mock_tables import dbconnector +from .hash_input import assert_show_output + + +test_path = os.path.dirname(os.path.abspath(__file__)) +input_path = os.path.join(test_path, "hash_input") +mock_config_path = os.path.join(input_path, "mock_config") +mock_state_path = os.path.join(input_path, "mock_state") + +logger = logging.getLogger(__name__) + + +HASH_FIELD_LIST = [ + "DST_MAC", + "SRC_MAC", + "ETHERTYPE", + "IP_PROTOCOL", + "DST_IP", + "SRC_IP", + "L4_DST_PORT", + "L4_SRC_PORT" +] +INNER_HASH_FIELD_LIST = [ + "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" +] + +SUCCESS = 0 +ERROR2 = 2 + + +class TestHash: + @classmethod + def setup_class(cls): + logger.info("Setup class: {}".format(cls.__name__)) + os.environ['UTILITIES_UNIT_TESTING'] = "1" + dbconnector.dedicated_dbs["STATE_DB"] = os.path.join(mock_state_path, "ecmp_and_lag") + + @classmethod + def teardown_class(cls): + logger.info("Teardown class: {}".format(cls.__name__)) + os.environ['UTILITIES_UNIT_TESTING'] = "0" + dbconnector.dedicated_dbs.clear() + + + ########## CONFIG SWITCH-HASH GLOBAL ########## + + + @pytest.mark.parametrize( + "hash", [ + "ecmp-hash", + "lag-hash" + ] + ) + @pytest.mark.parametrize( + "args", [ + pytest.param( + " ".join(HASH_FIELD_LIST), + id="outer-frame" + ), + pytest.param( + " ".join(INNER_HASH_FIELD_LIST), + id="inner-frame" + ) + ] + ) + def test_config_hash(self, hash, args): + db = Db() + runner = CliRunner() + + result = runner.invoke( + config.config.commands["switch-hash"].commands["global"]. + commands[hash], args, obj=db + ) + + logger.debug("\n" + result.output) + logger.debug(result.exit_code) + + assert result.exit_code == SUCCESS + + @pytest.mark.parametrize( + "hash", [ + "ecmp-hash", + "lag-hash" + ] + ) + @pytest.mark.parametrize( + "args,pattern", [ + pytest.param( + "DST_MAC1 SRC_MAC ETHERTYPE", + "invalid choice: DST_MAC1.", + id="INVALID,SRC_MAC,ETHERTYPE" + ), + pytest.param( + "DST_MAC SRC_MAC1 ETHERTYPE", + "invalid choice: SRC_MAC1.", + id="DST_MAC,INVALID,ETHERTYPE" + ), + pytest.param( + "DST_MAC SRC_MAC ETHERTYPE1", + "invalid choice: ETHERTYPE1.", + id="DST_MAC,SRC_MAC,INVALID" + ), + pytest.param( + "DST_MAC DST_MAC SRC_MAC ETHERTYPE", + "duplicate hash field(s) DST_MAC", + id="DUPLICATE,SRC_MAC,ETHERTYPE" + ), + pytest.param( + "DST_MAC DST_MAC SRC_MAC SRC_MAC ETHERTYPE", + "duplicate hash field(s) DST_MAC, SRC_MAC", + id="DUPLICATE,DUPLICATE,ETHERTYPE" + ), + pytest.param( + "DST_MAC DST_MAC SRC_MAC SRC_MAC ETHERTYPE ETHERTYPE", + "duplicate hash field(s) DST_MAC, SRC_MAC, ETHERTYPE", + id="DUPLICATE,DUPLICATE,DUPLICATE" + ) + ] + ) + def test_config_hash_neg(self, hash, args, pattern): + db = Db() + runner = CliRunner() + + result = runner.invoke( + config.config.commands["switch-hash"].commands["global"]. + commands[hash], args, 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 ########## + + + @pytest.mark.parametrize( + "cfgdb,output", [ + pytest.param( + os.path.join(mock_config_path, "empty"), + assert_show_output.show_hash_empty, + id="empty" + ), + pytest.param( + os.path.join(mock_config_path, "ecmp"), + assert_show_output.show_hash_ecmp, + id="ecmp" + ), + pytest.param( + os.path.join(mock_config_path, "lag"), + assert_show_output.show_hash_lag, + id="lag" + ), + pytest.param( + os.path.join(mock_config_path, "ecmp_and_lag"), + assert_show_output.show_hash_ecmp_and_lag, + id="all" + ) + ] + ) + def test_show_hash(self, cfgdb, output): + dbconnector.dedicated_dbs["CONFIG_DB"] = cfgdb + + db = Db() + runner = CliRunner() + + result = runner.invoke( + show.cli.commands["switch-hash"]. + commands["global"], [], obj=db + ) + + logger.debug("\n" + result.output) + logger.debug(result.exit_code) + + assert result.output == output + 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, + id="no" + ), + pytest.param( + os.path.join(mock_state_path, "not_applicable"), + assert_show_output.show_hash_capabilities_na, + id="na" + ), + pytest.param( + os.path.join(mock_state_path, "empty"), + assert_show_output.show_hash_capabilities_empty, + id="empty" + ), + pytest.param( + os.path.join(mock_state_path, "ecmp"), + assert_show_output.show_hash_capabilities_ecmp, + id="ecmp" + ), + pytest.param( + os.path.join(mock_state_path, "lag"), + assert_show_output.show_hash_capabilities_lag, + id="lag" + ), + pytest.param( + os.path.join(mock_state_path, "ecmp_and_lag"), + assert_show_output.show_hash_capabilities_ecmp_and_lag, + id="all" + ) + ] + ) + def test_show_hash_capabilities(self, statedb, output): + dbconnector.dedicated_dbs["STATE_DB"] = statedb + + db = Db() + runner = CliRunner() + + result = runner.invoke( + show.cli.commands["switch-hash"]. + commands["capabilities"], [], obj=db + ) + + logger.debug("\n" + result.output) + logger.debug(result.exit_code) + + assert result.output == output + assert result.exit_code == SUCCESS diff --git a/utilities_common/switch_hash.py b/utilities_common/switch_hash.py new file mode 100644 index 00000000..1f29ca4e --- /dev/null +++ b/utilities_common/switch_hash.py @@ -0,0 +1,64 @@ +from collections import Counter + +from swsscommon.swsscommon import CFG_SWITCH_HASH_TABLE_NAME as CFG_SWITCH_HASH +from swsscommon.swsscommon import STATE_SWITCH_CAPABILITY_TABLE_NAME as STATE_SWITCH_CAPABILITY + +# +# Hash constants ------------------------------------------------------------------------------------------------------ +# + +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_HASH_KEY = "GLOBAL" +SW_CAP_KEY = "switch" + +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" +] + +SYSLOG_IDENTIFIER = "switch_hash" + +# +# Hash helpers -------------------------------------------------------------------------------------------------------- +# + +def get_param(ctx, name): + """ Get click parameter """ + for param in ctx.command.params: + if param.name == name: + return param + return None + + +def get_param_hint(ctx, name): + """ Get click parameter description """ + return get_param(ctx, name).get_error_hint(ctx) + + +def get_dupes(obj_list): + """ Get list duplicate items """ + return [k for k, v in Counter(obj_list).items() if v > 1] + + +def to_str(obj_list): + """ Convert list to comma-separated representation """ + return ", ".join(obj_list) From 7ca31477d9426afbda0f3b03aeecadafaceca95f Mon Sep 17 00:00:00 2001 From: Vaibhav Hemant Dixit Date: Tue, 11 Jul 2023 10:24:32 -0700 Subject: [PATCH 194/312] [db_migrator] Set docker_routing_config_mode to the value obtained from minigraph parser (#2890) MSFT ADO: 24419953 This is to fix a bug where warm upgrade from old image (eg. 20181130) to new image (eg. 202012) does not update docker_routing_config_mode to the new config expected the target OS. For eg., in 201811 DEVICE_METADATA.localhost.docker_routing_config_mode is set to unified. After upgrade to 202012 the value is not changed. However, the expectation in newer images is that the value is separated. The move from unified to separated was done as part of an old change: sonic-net/sonic-buildimage#2961 However, migration logic was not updated since then. Because of this miss, cross-branch warm-upgrade from 201811 to 2020212 to 202305 to latest will always keep the setting as unified. How I did it Added a common migration logic: update docker_routing_config_mode to the value from minigraph parser. How to verify it Added a new unit test. Updated old unit tests. --- scripts/db_migrator.py | 18 ++++++++++++++++++ .../acs-msn2700-t0-version_3_0_0.json | 2 +- .../acs-msn2700-t0-version_3_0_3.json | 2 +- .../acs-msn2700-t1-version_3_0_0.json | 2 +- .../acs-msn2700-t1-version_3_0_3.json | 2 +- ...anch_upgrade_to_version_2_0_2_expected.json | 7 +++++-- ..._branch_upgrade_to_version_2_0_2_input.json | 3 +++ .../config_db/empty-config-expected.json | 3 ++- ...700-c28d8-single-pool-t0-version_3_0_0.json | 2 +- ...700-c28d8-single-pool-t0-version_3_0_3.json | 2 +- ...700-c28d8-single-pool-t1-version_3_0_0.json | 2 +- ...700-c28d8-single-pool-t1-version_3_0_3.json | 2 +- ...mellanox-sn2700-c28d8-t0-version_3_0_0.json | 2 +- ...mellanox-sn2700-c28d8-t0-version_3_0_3.json | 2 +- ...mellanox-sn2700-c28d8-t1-version_3_0_0.json | 2 +- ...mellanox-sn2700-c28d8-t1-version_3_0_3.json | 2 +- ...llanox-sn2700-d40c8s8-t0-version_3_0_0.json | 2 +- ...llanox-sn2700-d40c8s8-t0-version_3_0_3.json | 2 +- ...llanox-sn2700-d40c8s8-t1-version_3_0_0.json | 2 +- ...llanox-sn2700-d40c8s8-t1-version_3_0_3.json | 2 +- ...700-d48c8-single-pool-t0-version_3_0_0.json | 2 +- ...700-d48c8-single-pool-t0-version_3_0_3.json | 2 +- ...700-d48c8-single-pool-t1-version_3_0_0.json | 2 +- ...700-d48c8-single-pool-t1-version_3_0_3.json | 2 +- ...mellanox-sn2700-d48c8-t0-version_3_0_0.json | 2 +- ...mellanox-sn2700-d48c8-t0-version_3_0_3.json | 2 +- ...mellanox-sn2700-d48c8-t1-version_3_0_0.json | 2 +- ...mellanox-sn2700-d48c8-t1-version_3_0_3.json | 2 +- ...ox-sn2700-single-pool-t0-version_3_0_0.json | 2 +- ...ox-sn2700-single-pool-t0-version_3_0_3.json | 2 +- ...ox-sn2700-single-pool-t1-version_3_0_0.json | 2 +- ...ox-sn2700-single-pool-t1-version_3_0_3.json | 2 +- .../mellanox-sn2700-t0-version_3_0_0.json | 2 +- .../mellanox-sn2700-t0-version_3_0_3.json | 2 +- .../mellanox-sn2700-t1-version_3_0_0.json | 2 +- .../mellanox-sn2700-t1-version_3_0_3.json | 2 +- .../config_db/non-default-config-expected.json | 2 +- .../config_db/non-default-config-input.json | 2 +- ...g-buffer-dynamic-double-pools-expected.json | 2 +- ...ming-buffer-dynamic-double-pools-input.json | 2 +- ...ng-buffer-dynamic-single-pool-expected.json | 2 +- ...iming-buffer-dynamic-single-pool-input.json | 2 +- ...ffer-traditional-double-pools-expected.json | 2 +- ...-buffer-traditional-double-pools-input.json | 2 +- ...uffer-traditional-single-pool-expected.json | 2 +- ...g-buffer-traditional-single-pool-input.json | 2 +- tests/db_migrator_test.py | 7 +++++++ 47 files changed, 77 insertions(+), 45 deletions(-) diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index 9c11ab20..8b11f56e 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -613,6 +613,7 @@ def migrate_feature_timer(self): config['delayed'] = state config.pop('has_timer') self.configDB.set_entry('FEATURE', feature, config) + def migrate_route_table(self): """ Handle route table migration. Migrations handled: @@ -636,6 +637,21 @@ def migrate_route_table(self): if 'protocol' not in route_attr: self.appDB.set(self.appDB.APPL_DB, route_key, 'protocol', '') + def migrate_routing_config_mode(self): + # DEVICE_METADATA - synchronous_mode entry + if not self.minigraph_data or 'DEVICE_METADATA' not in self.minigraph_data: + return + device_metadata_old = self.configDB.get_entry('DEVICE_METADATA', 'localhost') + device_metadata_new = self.minigraph_data['DEVICE_METADATA']['localhost'] + # overwrite the routing-config-mode as per minigraph parser + # Criteria for update: + # if config mode is missing in base OS or if base and target modes are not same + # Eg. in 201811 mode is "unified", and in newer branches mode is "separated" + if ('docker_routing_config_mode' not in device_metadata_old and 'docker_routing_config_mode' in device_metadata_new) or \ + (device_metadata_old.get('docker_routing_config_mode') != device_metadata_new.get('docker_routing_config_mode')): + device_metadata_old['docker_routing_config_mode'] = device_metadata_new.get('docker_routing_config_mode') + self.configDB.set_entry('DEVICE_METADATA', 'localhost', device_metadata_old) + def update_edgezone_aggregator_config(self): """ Update cable length configuration in ConfigDB for T0 neighbor interfaces @@ -1057,6 +1073,8 @@ def common_migration_ops(self): # Updating edgezone aggregator cable length config for T0 devices self.update_edgezone_aggregator_config() + # update FRR config mode based on minigraph parser on target image + self.migrate_routing_config_mode() def migrate(self): version = self.get_version() diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_0.json index 4cab434e..9eedab4a 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_0.json @@ -681,7 +681,7 @@ "DEVICE_METADATA|localhost": { "hwsku": "ACS-MSN2700", "default_bgp_status": "up", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_3.json index 89f46af5..3b4092c1 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t0-version_3_0_3.json @@ -681,7 +681,7 @@ "DEVICE_METADATA|localhost": { "hwsku": "ACS-MSN2700", "default_bgp_status": "up", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_0.json index d7698cac..321227f7 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_0.json @@ -762,7 +762,7 @@ "bgp_asn": "65100", "buffer_model": "dynamic", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "LOSSLESS_TRAFFIC_PATTERN|AZURE": { "small_packet_percentage": "100", diff --git a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_3.json index b9ad1706..ac6cc034 100644 --- a/tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/acs-msn2700-t1-version_3_0_3.json @@ -761,7 +761,7 @@ "bgp_asn": "65100", "buffer_model": "dynamic", "deployment_id": "1", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "synchronous_mode": "enable" }, "LOSSLESS_TRAFFIC_PATTERN|AZURE": { diff --git a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_expected.json b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_expected.json index 946a9812..e46be0a4 100644 --- a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_expected.json +++ b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_expected.json @@ -22,5 +22,8 @@ }, "CONSOLE_SWITCH|console_mgmt": { "enabled": "no" - } -} + }, + "DEVICE_METADATA|localhost": { + "docker_routing_config_mode": "separated" + } +} \ No newline at end of file diff --git a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_input.json b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_input.json index bfd870e4..a0b63b56 100644 --- a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_input.json +++ b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_input.json @@ -1,3 +1,6 @@ { + "DEVICE_METADATA|localhost": { + "docker_routing_config_mode": "unified" + } } diff --git a/tests/db_migrator_input/config_db/empty-config-expected.json b/tests/db_migrator_input/config_db/empty-config-expected.json index eebe7eaf..eba0ae3f 100644 --- a/tests/db_migrator_input/config_db/empty-config-expected.json +++ b/tests/db_migrator_input/config_db/empty-config-expected.json @@ -3,6 +3,7 @@ "VERSION": "version_3_0_3" }, "DEVICE_METADATA|localhost": { - "synchronous_mode": "enable" + "synchronous_mode": "enable", + "docker_routing_config_mode": "separated" } } diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_0.json index f9d6c6ce..59d08775 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_0.json @@ -735,7 +735,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_3.json index e6cf4111..5fe2bf31 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t0-version_3_0_3.json @@ -734,7 +734,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "synchronous_mode": "enable" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_0.json index a77c75e9..bd11e913 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_0.json @@ -828,7 +828,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_3.json index 81f6b1f1..1f9d19c5 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-single-pool-t1-version_3_0_3.json @@ -827,7 +827,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "synchronous_mode": "enable" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_0.json index dac897f7..80cb0b4a 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_0.json @@ -740,7 +740,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_3.json index 76d095e9..e2b89c2a 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t0-version_3_0_3.json @@ -739,7 +739,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "synchronous_mode": "enable" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_0.json index 05ca9f95..04b85181 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_0.json @@ -833,7 +833,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_3.json index abccee20..60fd253d 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-c28d8-t1-version_3_0_3.json @@ -832,7 +832,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "synchronous_mode": "enable" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_0.json index cae7a8de..576bb3d9 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_0.json @@ -735,7 +735,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_3.json index 9367e7d6..3adabbb6 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t0-version_3_0_3.json @@ -734,7 +734,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "synchronous_mode": "enable" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_0.json index 51f0ab67..0f867189 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_0.json @@ -828,7 +828,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_3.json index c2f12ef9..5fc6f8cf 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d40c8s8-t1-version_3_0_3.json @@ -827,7 +827,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "synchronous_mode": "enable" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_0.json index 9aeb0b2b..6f3903bb 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_0.json @@ -735,7 +735,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_3.json index 52b9c7f5..78261808 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t0-version_3_0_3.json @@ -734,7 +734,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "synchronous_mode": "enable" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_0.json index 6add5489..fd88b64f 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_0.json @@ -828,7 +828,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_3.json index 082bd157..5d3aa563 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-single-pool-t1-version_3_0_3.json @@ -827,7 +827,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "synchronous_mode": "enable" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_0.json index adf0fb31..60327d71 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_0.json @@ -740,7 +740,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_3.json index 5282b3e7..5b6304f5 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t0-version_3_0_3.json @@ -739,7 +739,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "synchronous_mode": "enable" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_0.json index 09df55a4..c67a2081 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_0.json @@ -833,7 +833,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_3.json index e20f0dce..f786f4bb 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-d48c8-t1-version_3_0_3.json @@ -832,7 +832,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "synchronous_mode": "enable" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_0.json index e0f5d3fb..3119633f 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_0.json @@ -726,7 +726,7 @@ "DEVICE_METADATA|localhost": { "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_3.json index 39956f85..ad89f640 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t0-version_3_0_3.json @@ -726,7 +726,7 @@ "DEVICE_METADATA|localhost": { "hwsku": "Mellanox-SN2700", "default_bgp_status": "up", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_0.json index b72e1498..b8ddd657 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_0.json @@ -828,7 +828,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_3.json index 28b01ee3..84db7284 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-single-pool-t1-version_3_0_3.json @@ -827,7 +827,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "synchronous_mode": "enable" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_0.json index 3b614fe0..8286ced5 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_0.json @@ -740,7 +740,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_3.json index 7bc0720e..a0844eaf 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t0-version_3_0_3.json @@ -739,7 +739,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "synchronous_mode": "enable" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_0.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_0.json index a53b1bbd..a5508699 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_0.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_0.json @@ -833,7 +833,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_3.json b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_3.json index 203ac217..8a30df2a 100644 --- a/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_3.json +++ b/tests/db_migrator_input/config_db/mellanox-sn2700-t1-version_3_0_3.json @@ -832,7 +832,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "synchronous_mode": "enable" }, "PORT|Ethernet0": { diff --git a/tests/db_migrator_input/config_db/non-default-config-expected.json b/tests/db_migrator_input/config_db/non-default-config-expected.json index 13ae7aa2..a3b0c1ba 100644 --- a/tests/db_migrator_input/config_db/non-default-config-expected.json +++ b/tests/db_migrator_input/config_db/non-default-config-expected.json @@ -754,7 +754,7 @@ "DEVICE_METADATA|localhost": { "hwsku": "ACS-MSN2700", "default_bgp_status": "up", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", diff --git a/tests/db_migrator_input/config_db/non-default-config-input.json b/tests/db_migrator_input/config_db/non-default-config-input.json index 3cdd3527..44ee11f4 100644 --- a/tests/db_migrator_input/config_db/non-default-config-input.json +++ b/tests/db_migrator_input/config_db/non-default-config-input.json @@ -730,7 +730,7 @@ "DEVICE_METADATA|localhost": { "hwsku": "ACS-MSN2700", "default_bgp_status": "up", - "docker_routing_config_mode": "unified", + "docker_routing_config_mode": "separated", "hostname": "sonic", "platform": "x86_64-mlnx_msn2700-r0", "mac": "00:01:02:03:04:00", 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 a5126017..5181daa0 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 @@ -207,7 +207,7 @@ "bgp_asn": "65100", "buffer_model": "dynamic", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", 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 df58b4e5..d8deef19 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 @@ -123,7 +123,7 @@ "bgp_asn": "65100", "buffer_model": "dynamic", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", 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 7bd0dd25..278a40bc 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 @@ -203,7 +203,7 @@ "bgp_asn": "65100", "buffer_model": "dynamic", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", 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 b2ea5f52..b3bda32f 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 @@ -119,7 +119,7 @@ "bgp_asn": "65100", "buffer_model": "dynamic", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-expected.json b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-expected.json index d1537d3d..9c06a186 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-expected.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-expected.json @@ -266,7 +266,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-input.json b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-input.json index 35fc6a6a..31f4ae33 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-input.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-double-pools-input.json @@ -158,7 +158,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-expected.json b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-expected.json index 4c1518c4..0b58a6b7 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-expected.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-expected.json @@ -261,7 +261,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-input.json b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-input.json index 408afb40..85cb2412 100644 --- a/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-input.json +++ b/tests/db_migrator_input/config_db/reclaiming-buffer-traditional-single-pool-input.json @@ -158,7 +158,7 @@ "bgp_asn": "65100", "buffer_model": "traditional", "deployment_id": "1", - "docker_routing_config_mode": "unified" + "docker_routing_config_mode": "separated" }, "PORT|Ethernet0": { "lanes": "0,1,2,3", diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index 02c56f91..2db9eae0 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -508,6 +508,13 @@ def test_warm_upgrade_to_2_0_2(self): diff = DeepDiff(resulting_table, expected_table, ignore_order=True) assert not diff + target_routing_mode_result = dbmgtr.configDB.get_table("DEVICE_METADATA")['localhost']['docker_routing_config_mode'] + target_routing_mode_expected = expected_db.cfgdb.get_table("DEVICE_METADATA")['localhost']['docker_routing_config_mode'] + diff = DeepDiff(resulting_table, expected_table, ignore_order=True) + assert target_routing_mode_result == target_routing_mode_expected,\ + "After migration: {}. Expected after migration: {}".format( + target_routing_mode_result, target_routing_mode_expected) + def test_warm_upgrade__without_mg_to_2_0_2(self): dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'cross_branch_upgrade_to_version_2_0_2_input') import db_migrator From 553a34328f3da1f1ef9361a801bec6c02f792bd4 Mon Sep 17 00:00:00 2001 From: Jing Zhang Date: Tue, 11 Jul 2023 20:10:03 -0700 Subject: [PATCH 195/312] [dualtor][route_check] filter out `soc_ipv6` (#2899) What I did Skip soc_ipv6 when comparing appl_db and asic_db route entries on active-active dualtor. Because it's creating false alarms when tunnel route is added for soc ips. The route is meant to be programmed in asic only. sign-off: Jing Zhang zhangjing@microsoft.com How I did it How to verify it Run the updated script on active-active dualtor devices. --- scripts/route_check.py | 8 ++++++-- tests/route_check_test_data.py | 4 +++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/scripts/route_check.py b/scripts/route_check.py index a85222ce..7dc8b7b8 100755 --- a/scripts/route_check.py +++ b/scripts/route_check.py @@ -582,8 +582,12 @@ def get_soc_ips(config_db): mux_table = config_db.get_table('MUX_CABLE') soc_ips = [] for _, mux_entry in mux_table.items(): - if mux_entry.get("cable_type", "") == "active-active" and "soc_ipv4" in mux_entry: - soc_ips.append(mux_entry["soc_ipv4"]) + if mux_entry.get("cable_type", "") == "active-active": + if "soc_ipv4" in mux_entry and mux_entry["soc_ipv4"]: + soc_ips.append(mux_entry["soc_ipv4"]) + + if "soc_ipv6" in mux_entry and mux_entry["soc_ipv6"]: + soc_ips.append(mux_entry["soc_ipv6"]) return soc_ips diff --git a/tests/route_check_test_data.py b/tests/route_check_test_data.py index 7ed1eee4..3419feee 100644 --- a/tests/route_check_test_data.py +++ b/tests/route_check_test_data.py @@ -342,6 +342,7 @@ "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" }, } @@ -356,7 +357,8 @@ 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 + "192.168.0.3/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "fc02:1000::3/128" + RT_ENTRY_KEY_SUFFIX: {} } } } From 1ee736687f5cdbb7e8b3f387c3381c84d4c8f817 Mon Sep 17 00:00:00 2001 From: ganglv <88995770+ganglyu@users.noreply.github.com> Date: Wed, 12 Jul 2023 16:17:48 +0800 Subject: [PATCH 196/312] [db_migrator] Migrate DNS configuratuion (#2893) What I did sonic-net/sonic-buildimage#14549 This PR has introduced DNS configuration to CONFIG_DB, we need to migrate original CONFIG_DB to support DNS configuration during upgrading SONiC. How I did it If there's no DNS_NAMESERVER table in CONFIG_DB, read DNS_NAMESERVER table from minigraph and update CONFIG_DB. How to verify it Run unit test for db migrator. --- scripts/db_migrator.py | 26 +++++++++++++-- .../config_db/dns-nameserver-expected.json | 11 +++++++ .../config_db/dns-nameserver-input.json | 5 +++ tests/db_migrator_test.py | 32 +++++++++++++++++++ 4 files changed, 72 insertions(+), 2 deletions(-) create mode 100644 tests/db_migrator_input/config_db/dns-nameserver-expected.json create mode 100644 tests/db_migrator_input/config_db/dns-nameserver-input.json diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index 8b11f56e..e2176a08 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -47,7 +47,7 @@ def __init__(self, namespace, socket=None): none-zero values. build: sequentially increase within a minor version domain. """ - self.CURRENT_VERSION = 'version_4_0_3' + self.CURRENT_VERSION = 'version_4_0_4' self.TABLE_NAME = 'VERSIONS' self.TABLE_KEY = 'DATABASE' @@ -637,6 +637,18 @@ def migrate_route_table(self): if 'protocol' not in route_attr: self.appDB.set(self.appDB.APPL_DB, route_key, 'protocol', '') + 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: + return + dns_table = self.configDB.get_table('DNS_NAMESERVER') + if not dns_table: + for addr, config in self.minigraph_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: @@ -1020,9 +1032,19 @@ def version_4_0_2(self): def version_4_0_3(self): """ Version 4_0_3. - This is the latest version for master branch """ log.log_info('Handling version_4_0_3') + self.set_version('version_4_0_4') + return 'version_4_0_4' + + 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') + # Updating DNS nameserver + self.migrate_dns_nameserver() return None def get_version(self): diff --git a/tests/db_migrator_input/config_db/dns-nameserver-expected.json b/tests/db_migrator_input/config_db/dns-nameserver-expected.json new file mode 100644 index 00000000..0d9924e2 --- /dev/null +++ b/tests/db_migrator_input/config_db/dns-nameserver-expected.json @@ -0,0 +1,11 @@ +{ + "DNS_NAMESERVER|1.1.1.1": { + "state": "enabled" + }, + "DNS_NAMESERVER|2001:1001:110:1001::1": { + "state": "enabled" + }, + "VERSIONS|DATABASE": { + "VERSION": "version_4_0_4" + } +} diff --git a/tests/db_migrator_input/config_db/dns-nameserver-input.json b/tests/db_migrator_input/config_db/dns-nameserver-input.json new file mode 100644 index 00000000..eca39b06 --- /dev/null +++ b/tests/db_migrator_input/config_db/dns-nameserver-input.json @@ -0,0 +1,5 @@ +{ + "VERSIONS|DATABASE": { + "VERSION": "version_4_0_3" + } +} diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index 2db9eae0..adba6a0f 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -294,6 +294,37 @@ def test_lacp_key_migrator(self): 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 TestDnsNameserverMigrator(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_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 = { + 'DNS_NAMESERVER': { + '1.1.1.1': {}, + '2001:1001:110:1001::1': {} + } + } + dbmgtr.migrate() + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'dns-nameserver-expected') + expected_db = Db() + advance_version_for_expected_database(dbmgtr.configDB, expected_db.cfgdb, 'version_4_0_4') + resulting_keys = dbmgtr.configDB.keys(dbmgtr.configDB.CONFIG_DB, 'DNS_NAMESERVER*') + expected_keys = expected_db.cfgdb.keys(expected_db.cfgdb.CONFIG_DB, 'DNS_NAMESERVER*') + + diff = DeepDiff(resulting_keys, expected_keys, ignore_order=True) + assert not diff + class TestQosDBFieldValueReferenceRemoveMigrator(object): @classmethod def setup_class(cls): @@ -681,5 +712,6 @@ def test_fast_reboot_upgrade_to_4_0_3(self): dbmgtr = db_migrator.DBMigrator(None) dbmgtr.migrate() expected_db = self.mock_dedicated_config_db(db_after_migrate) + advance_version_for_expected_database(dbmgtr.configDB, expected_db.cfgdb, 'version_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 From 81c0ed4ef98d849e5f59690bc7d6142f70913b4f Mon Sep 17 00:00:00 2001 From: Jing Zhang Date: Wed, 12 Jul 2023 11:14:22 -0700 Subject: [PATCH 197/312] [show][muxcable] update `show mux tunnel-route` to check soc_ipv6 as well --- show/muxcable.py | 2 +- tests/mock_tables/asic_db.json | 6 +++++- tests/mock_tables/config_db.json | 3 ++- tests/muxcable_test.py | 6 ++++++ 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/show/muxcable.py b/show/muxcable.py index d62760c8..8b72bd8c 100644 --- a/show/muxcable.py +++ b/show/muxcable.py @@ -592,7 +592,7 @@ def get_tunnel_route_per_port(db, port_tunnel_route, per_npu_configdb, per_npu_a mux_cfg_dict = per_npu_configdb[asic_id].get_all( per_npu_configdb[asic_id].CONFIG_DB, 'MUX_CABLE|{}'.format(port)) - dest_names = ["server_ipv4", "server_ipv6", "soc_ipv4"] + dest_names = ["server_ipv4", "server_ipv6", "soc_ipv4", "soc_ipv6"] for name in dest_names: dest_address = mux_cfg_dict.get(name, None) diff --git a/tests/mock_tables/asic_db.json b/tests/mock_tables/asic_db.json index e16fc315..f95b835f 100644 --- a/tests/mock_tables/asic_db.json +++ b/tests/mock_tables/asic_db.json @@ -23,5 +23,9 @@ "ASIC_STATE:SAI_OBJECT_TYPE_ROUTE_ENTRY:{\"dest\":\"10.2.1.1\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x300000000007c\"}": { "SAI_ROUTE_ENTRY_ATTR_PACKET_ACTION": "SAI_PACKET_ACTION_FORWARD", "SAI_ROUTE_ENTRY_ATTR_NEXT_HOP_ID": "oid:0x40000000015d8" - } + }, + "ASIC_STATE:SAI_OBJECT_TYPE_ROUTE_ENTRY:{\"dest\":\"e801::47\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x300000000007c\"}": { + "SAI_ROUTE_ENTRY_ATTR_PACKET_ACTION": "SAI_PACKET_ACTION_FORWARD", + "SAI_ROUTE_ENTRY_ATTR_NEXT_HOP_ID": "oid:0x40000000015d8" + } } diff --git a/tests/mock_tables/config_db.json b/tests/mock_tables/config_db.json index 538f81d6..a6088ecc 100644 --- a/tests/mock_tables/config_db.json +++ b/tests/mock_tables/config_db.json @@ -1842,7 +1842,8 @@ "MUX_CABLE|Ethernet4": { "state": "auto", "server_ipv4": "10.3.1.1", - "server_ipv6": "e801::46" + "server_ipv6": "e801::46", + "soc_ipv6": "e801::47" }, "MUX_CABLE|Ethernet8": { "state": "active", diff --git a/tests/muxcable_test.py b/tests/muxcable_test.py index 0405b27d..0b0f8b37 100644 --- a/tests/muxcable_test.py +++ b/tests/muxcable_test.py @@ -580,6 +580,11 @@ "DEST": "10.3.1.1", "kernel": 1, "asic": false + }, + "soc_ipv6": { + "DEST": "e801::47", + "kernel": false, + "asic": 1 } } } @@ -591,6 +596,7 @@ --------- ----------- -------------- -------- ------ Ethernet0 server_ipv4 10.2.1.1 added added Ethernet4 server_ipv4 10.3.1.1 added - +Ethernet4 soc_ipv6 e801::47 - added """ show_muxcable_tunnel_route_expected_output_port_json="""\ From fd497755403187c7ef7e51e0d172339a3bcd63c1 Mon Sep 17 00:00:00 2001 From: Longxiang Lyu <35479537+lolyu@users.noreply.github.com> Date: Thu, 13 Jul 2023 16:43:18 +0800 Subject: [PATCH 198/312] [route_check][dualtor] Ignore vlan neighbor route miss (#2888) What I did As the subject. This PR is to leave the vlan neighbor route checking to dualtor_neighbor_check.py script: #2840 Signed-off-by: Longxiang Lyu lolv@microsoft.com How I did it If any misses are found on dualtor, ignore those vlan neighbor misses. How to verify it UT and verify on testbed. --- scripts/route_check.py | 50 +++++++++++++++++++++++++++++++ tests/route_check_test_data.py | 54 ++++++++++++++++++++++++++++++++++ 2 files changed, 104 insertions(+) diff --git a/scripts/route_check.py b/scripts/route_check.py index 7dc8b7b8..85d0539c 100755 --- a/scripts/route_check.py +++ b/scripts/route_check.py @@ -621,6 +621,51 @@ def filter_out_soc_ip_routes(routes): return updated_routes +def get_vlan_neighbors(): + """Return a list of VLAN neighbors.""" + db = swsscommon.DBConnector(APPL_DB_NAME, 0) + print_message(syslog.LOG_DEBUG, "APPL DB connected for neighbors") + tbl = swsscommon.Table(db, 'NEIGH_TABLE') + neigh_entries = tbl.getKeys() + + valid_neighs = [] + for neigh_entry in neigh_entries: + if ':' in neigh_entry: + device, prefix = neigh_entry.split(':', 1) + if device.startswith("Vlan"): + valid_neighs.append(add_prefix_ifnot(prefix.lower())) + + print_message(syslog.LOG_DEBUG, "Vlan neighbors:", json.dumps(valid_neighs, indent=4)) + return valid_neighs + + +def filter_out_vlan_neigh_route_miss(rt_appl_miss, rt_asic_miss): + """Ignore any route miss for vlan neighbor IPs.""" + + def _filter_out_neigh_route(routes, neighs): + updated_routes = [] + ignored_routes = [] + for route in routes: + if route in neighs: + ignored_routes.append(route) + else: + updated_routes.append(route) + return updated_routes, ignored_routes + + config_db = swsscommon.ConfigDBConnector() + config_db.connect() + + print_message(syslog.LOG_DEBUG, "Ignore vlan neighbor route miss") + if is_dualtor(config_db): + vlan_neighs = set(get_vlan_neighbors()) + rt_appl_miss, ignored_rt_appl_miss = _filter_out_neigh_route(rt_appl_miss, vlan_neighs) + print_message(syslog.LOG_DEBUG, "Ignored appl route miss:", json.dumps(ignored_rt_appl_miss, indent=4)) + rt_asic_miss, ignored_rt_asic_miss = _filter_out_neigh_route(rt_asic_miss, vlan_neighs) + print_message(syslog.LOG_DEBUG, "Ignored asic route miss:", json.dumps(ignored_rt_asic_miss, indent=4)) + + return rt_appl_miss, rt_asic_miss + + def check_routes(): """ The heart of this script which runs the checks. @@ -673,6 +718,11 @@ def check_routes(): if rt_appl_miss: rt_appl_miss = filter_out_voq_neigh_routes(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) + if rt_appl_miss or rt_asic_miss: # Look for subscribe updates for a second adds, deletes = get_subscribe_updates(selector, subs) diff --git a/tests/route_check_test_data.py b/tests/route_check_test_data.py index 3419feee..b0f3e997 100644 --- a/tests/route_check_test_data.py +++ b/tests/route_check_test_data.py @@ -482,4 +482,58 @@ } } }, + "11": { + DESCR: "dualtor ignore vlan neighbor route miss case", + ARGS: "route_check -i 15", + RET: -1, + PRE: { + CONFIG_DB: { + DEVICE_METADATA: { + LOCALHOST: {"subtype": "DualToR"} + } + }, + APPL_DB: { + ROUTE_TABLE: { + "10.10.196.12/31" : { "ifname": "portchannel0" }, + "10.10.196.20/31" : { "ifname": "portchannel0" }, + "192.168.0.101/32": { "ifname": "tun0" }, + "192.168.0.103/32": { "ifname": "tun0" }, + }, + INTF_TABLE: { + "PortChannel1013:90.10.196.24/31": {}, + "PortChannel1023:9603:10b0:503:df4::5d/126": {}, + }, + NEIGH_TABLE: { + "Vlan1000:192.168.0.100": {}, + "Vlan1000:192.168.0.101": {}, + "Vlan1000:192.168.0.102": {}, + "Vlan1000:192.168.0.103": {}, + } + }, + ASIC_DB: { + RT_ENTRY_TABLE: { + RT_ENTRY_KEY_PREFIX + "20.10.196.12/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "20.10.196.20/31" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "20.10.196.24/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "192.168.0.101/32" + RT_ENTRY_KEY_SUFFIX: {}, + RT_ENTRY_KEY_PREFIX + "192.168.0.102/32" + RT_ENTRY_KEY_SUFFIX: {}, + } + } + }, + RESULT: { + "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", + ] + } + }, } From 51c7a43cc04bfd4feef354689f47e12ee9c404c1 Mon Sep 17 00:00:00 2001 From: Jing Zhang Date: Thu, 13 Jul 2023 13:42:43 -0700 Subject: [PATCH 199/312] [show][muxcable] update `show mux config` to print out `soc_ipv6` as well (#2909) Update `show mux config` to print soc_ipv6 as well if it exists. sign-off: Jing Zhang zhangjing@microsoft.com --- show/muxcable.py | 14 ++++++++-- tests/mock_tables/asic_db.json | 2 +- tests/mock_tables/config_db.json | 17 ++++++------ tests/muxcable_test.py | 44 ++++++++++++++++++-------------- 4 files changed, 47 insertions(+), 30 deletions(-) diff --git a/show/muxcable.py b/show/muxcable.py index 8b72bd8c..6a94e7f7 100644 --- a/show/muxcable.py +++ b/show/muxcable.py @@ -568,6 +568,13 @@ def create_table_dump_per_port_config(db ,print_data, per_npu_configdb, asic_id, if soc_ipv4_value is not None: port_list.append(soc_ipv4_value) is_dualtor_active_active[0] = True + soc_ipv6_value = get_optional_value_for_key_in_config_tbl(per_npu_configdb[asic_id], port, "soc_ipv6", "MUX_CABLE") + if soc_ipv6_value is not None: + if cable_type is None: + port_list.append("") + if soc_ipv4_value is None: + port_list.append("") + port_list.append(soc_ipv6_value) print_data.append(port_list) @@ -587,6 +594,9 @@ def create_json_dump_per_port_config(db, port_status_dict, per_npu_configdb, asi soc_ipv4_value = get_optional_value_for_key_in_config_tbl(per_npu_configdb[asic_id], port, "soc_ipv4", "MUX_CABLE") if soc_ipv4_value is not None: port_status_dict["MUX_CABLE"]["PORTS"][port_name]["SERVER"]["soc_ipv4"] = soc_ipv4_value + soc_ipv6_value = get_optional_value_for_key_in_config_tbl(per_npu_configdb[asic_id], port, "soc_ipv6", "MUX_CABLE") + if soc_ipv6_value is not None: + port_status_dict["MUX_CABLE"]["PORTS"][port_name]["SERVER"]["soc_ipv6"] = soc_ipv6_value def get_tunnel_route_per_port(db, port_tunnel_route, per_npu_configdb, per_npu_appl_db, per_npu_asic_db, asic_id, port): @@ -863,7 +873,7 @@ def config(db, port, json_output): print_peer_tor.append(peer_tor_data) click.echo(tabulate(print_peer_tor, headers=headers)) if is_dualtor_active_active[0]: - headers = ['port', 'state', 'ipv4', 'ipv6', 'cable_type', 'soc_ipv4'] + headers = ['port', 'state', 'ipv4', 'ipv6', 'cable_type', 'soc_ipv4', 'soc_ipv6'] else: headers = ['port', 'state', 'ipv4', 'ipv6'] click.echo(tabulate(print_data, headers=headers)) @@ -915,7 +925,7 @@ def config(db, port, json_output): print_peer_tor.append(peer_tor_data) click.echo(tabulate(print_peer_tor, headers=headers)) if is_dualtor_active_active[0]: - headers = ['port', 'state', 'ipv4', 'ipv6', 'cable_type', 'soc_ipv4'] + headers = ['port', 'state', 'ipv4', 'ipv6', 'cable_type', 'soc_ipv4', 'soc_ipv6'] else: headers = ['port', 'state', 'ipv4', 'ipv6'] click.echo(tabulate(print_data, headers=headers)) diff --git a/tests/mock_tables/asic_db.json b/tests/mock_tables/asic_db.json index f95b835f..b8218651 100644 --- a/tests/mock_tables/asic_db.json +++ b/tests/mock_tables/asic_db.json @@ -24,7 +24,7 @@ "SAI_ROUTE_ENTRY_ATTR_PACKET_ACTION": "SAI_PACKET_ACTION_FORWARD", "SAI_ROUTE_ENTRY_ATTR_NEXT_HOP_ID": "oid:0x40000000015d8" }, - "ASIC_STATE:SAI_OBJECT_TYPE_ROUTE_ENTRY:{\"dest\":\"e801::47\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x300000000007c\"}": { + "ASIC_STATE:SAI_OBJECT_TYPE_ROUTE_ENTRY:{\"dest\":\"fc00::76\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x300000000007c\"}": { "SAI_ROUTE_ENTRY_ATTR_PACKET_ACTION": "SAI_PACKET_ACTION_FORWARD", "SAI_ROUTE_ENTRY_ATTR_NEXT_HOP_ID": "oid:0x40000000015d8" } diff --git a/tests/mock_tables/config_db.json b/tests/mock_tables/config_db.json index a6088ecc..8861d43a 100644 --- a/tests/mock_tables/config_db.json +++ b/tests/mock_tables/config_db.json @@ -1818,16 +1818,17 @@ }, "MUX_CABLE|Ethernet32": { "state": "auto", - "server_ipv4": "10.1.1.1", + "server_ipv4": "10.1.1.1", "cable_type": "active-active", - "soc_ipv4": "10.1.1.2", - "server_ipv6": "fc00::75" + "soc_ipv4": "10.1.1.2", + "soc_ipv6": "fc00::76", + "server_ipv6": "fc00::75" }, "MUX_CABLE|Ethernet16": { "state": "standby", - "server_ipv4": "10.1.1.1", + "server_ipv4": "10.1.1.1", "cable_type": "active-standby", - "server_ipv6": "fc00::75" + "server_ipv6": "fc00::75" }, "MUX_CABLE|Ethernet28": { "state": "manual", @@ -1841,9 +1842,9 @@ }, "MUX_CABLE|Ethernet4": { "state": "auto", - "server_ipv4": "10.3.1.1", - "server_ipv6": "e801::46", - "soc_ipv6": "e801::47" + "server_ipv4": "10.3.1.1", + "server_ipv6": "e801::46", + "soc_ipv6": "e801::47" }, "MUX_CABLE|Ethernet8": { "state": "active", diff --git a/tests/muxcable_test.py b/tests/muxcable_test.py index 0b0f8b37..571509ff 100644 --- a/tests/muxcable_test.py +++ b/tests/muxcable_test.py @@ -150,30 +150,30 @@ SWITCH_NAME PEER_TOR ------------- ---------- sonic-switch 10.2.2.2 -port state ipv4 ipv6 cable_type soc_ipv4 ----------- ------- -------- -------- -------------- ---------- +port state ipv4 ipv6 cable_type soc_ipv4 soc_ipv6 +---------- ------- -------- -------- -------------- ---------- ---------- Ethernet0 active 10.2.1.1 e800::46 -Ethernet4 auto 10.3.1.1 e801::46 +Ethernet4 auto 10.3.1.1 e801::46 e801::47 Ethernet8 active 10.4.1.1 e802::46 Ethernet12 active 10.4.1.1 e802::46 Ethernet16 standby 10.1.1.1 fc00::75 active-standby Ethernet28 manual 10.1.1.1 fc00::75 -Ethernet32 auto 10.1.1.1 fc00::75 active-active 10.1.1.2 +Ethernet32 auto 10.1.1.1 fc00::75 active-active 10.1.1.2 fc00::76 """ tabular_data_config_output_expected_alias = """\ SWITCH_NAME PEER_TOR ------------- ---------- sonic-switch 10.2.2.2 -port state ipv4 ipv6 cable_type soc_ipv4 ------- ------- -------- -------- -------------- ---------- +port state ipv4 ipv6 cable_type soc_ipv4 soc_ipv6 +------ ------- -------- -------- -------------- ---------- ---------- etp1 active 10.2.1.1 e800::46 -etp2 auto 10.3.1.1 e801::46 +etp2 auto 10.3.1.1 e801::46 e801::47 etp3 active 10.4.1.1 e802::46 etp4 active 10.4.1.1 e802::46 etp5 standby 10.1.1.1 fc00::75 active-standby etp8 manual 10.1.1.1 fc00::75 -etp9 auto 10.1.1.1 fc00::75 active-active 10.1.1.2 +etp9 auto 10.1.1.1 fc00::75 active-active 10.1.1.2 fc00::76 """ json_data_status_config_output_expected = """\ @@ -192,7 +192,8 @@ "STATE": "auto", "SERVER": { "IPv4": "10.3.1.1", - "IPv6": "e801::46" + "IPv6": "e801::46", + "soc_ipv6": "e801::47" } }, "Ethernet8": { @@ -230,7 +231,8 @@ "IPv4": "10.1.1.1", "IPv6": "fc00::75", "cable_type": "active-active", - "soc_ipv4": "10.1.1.2" + "soc_ipv4": "10.1.1.2", + "soc_ipv6": "fc00::76" } } } @@ -254,7 +256,8 @@ "STATE": "auto", "SERVER": { "IPv4": "10.3.1.1", - "IPv6": "e801::46" + "IPv6": "e801::46", + "soc_ipv6": "e801::47" } }, "etp3": { @@ -292,7 +295,8 @@ "IPv4": "10.1.1.1", "IPv6": "fc00::75", "cable_type": "active-active", - "soc_ipv4": "10.1.1.2" + "soc_ipv4": "10.1.1.2", + "soc_ipv6": "fc00::76" } } } @@ -580,9 +584,11 @@ "DEST": "10.3.1.1", "kernel": 1, "asic": false - }, + } + }, + "Ethernet32": { "soc_ipv6": { - "DEST": "e801::47", + "DEST": "fc00::76", "kernel": false, "asic": 1 } @@ -592,11 +598,11 @@ """ show_muxcable_tunnel_route_expected_output="""\ -PORT DEST_TYPE DEST_ADDRESS kernel asic ---------- ----------- -------------- -------- ------ -Ethernet0 server_ipv4 10.2.1.1 added added -Ethernet4 server_ipv4 10.3.1.1 added - -Ethernet4 soc_ipv6 e801::47 - added +PORT DEST_TYPE DEST_ADDRESS kernel asic +---------- ----------- -------------- -------- ------ +Ethernet0 server_ipv4 10.2.1.1 added added +Ethernet4 server_ipv4 10.3.1.1 added - +Ethernet32 soc_ipv6 fc00::76 - added """ show_muxcable_tunnel_route_expected_output_port_json="""\ From b617d97dfd8e8b9dac2819a0d895909fbfbcf543 Mon Sep 17 00:00:00 2001 From: Longxiang Lyu <35479537+lolyu@users.noreply.github.com> Date: Sat, 15 Jul 2023 00:30:08 +0800 Subject: [PATCH 200/312] [dualtor] Add script to verify consistency between kernel and ASIC (#2840) #### What I did Add script `dualtor_neighbor_check.py` to verify the neighbor consistency based on the mux state. It will have the following output: ``` NEIGHBOR MAC PORT MUX_STATE IN_MUX_TOGGLE NEIGHBOR_IN_ASIC TUNNERL_IN_ASIC HWSTATUS ------------- ----------------- ---------- ----------- --------------- ------------------ ----------------- ---------- 192.168.0.2 ee:86:d8:46:7d:01 Ethernet4 standby False no yes consistent 192.168.0.3 86:73:c2:22:bf:02 Ethernet8 standby False no yes consistent 192.168.0.24 56:a6:bf:c5:dd:17 Ethernet92 active False yes no consistent 192.168.0.25 3a:18:56:f5:02:18 Ethernet96 active False yes no consistent 192.168.0.100 00:00:00:00:00:00 N/A N/A N/A no yes consistent ``` Signed-off-by: Longxiang Lyu #### How I did it the workflow of this scripts: 1. for non-zero-mac neighbors in `APPL_DB` `NEIGH_TABLE`, use the `ASIC_DB` fdb entries to find the mux port that it belongs to. 2. check if the neighbor is consistent with mux state: * if mux state is `active`, the neighbor is consistent only if the neighbor is present in `ASIC_DB` but no tunnel route. * if mux state is `standby`, the neighbor is consistent only if the tunnel route is present in `ASIC_DB`1 but no neighbor. 3. if there are any inconsistent neighbors and the mux port is currently in-toggle, the script will have a non-zero negative return, and will write error messages to logs. #### How to verify it UT and verify on testbed. #### 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/dualtor_neighbor_check.py | 503 ++++++++++++++++++++++ setup.py | 1 + tests/dualtor_neighbor_check_test.py | 613 +++++++++++++++++++++++++++ 3 files changed, 1117 insertions(+) create mode 100755 scripts/dualtor_neighbor_check.py create mode 100644 tests/dualtor_neighbor_check_test.py diff --git a/scripts/dualtor_neighbor_check.py b/scripts/dualtor_neighbor_check.py new file mode 100755 index 00000000..16117700 --- /dev/null +++ b/scripts/dualtor_neighbor_check.py @@ -0,0 +1,503 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +dualtor_neighbor_check.py + +This tool is designed to verify that, for dualtor SONiC, the neighbors learnt from +mux ports should have correct neighbor/route entry in ASIC. +""" +import argparse +import enum +import functools +import ipaddress +import json +import logging +import shlex +import sys +import syslog +import subprocess +import tabulate + +from natsort import natsorted + +from swsscommon import swsscommon +from sonic_py_common import daemon_base +try: + from swsssdk import port_util +except ImportError: + from sonic_py_common import port_util + + +DB_READ_SCRIPT = """ +-- this script is to read required tables from db: +-- APPL_DB: +-- - MUX_CABLE_TABLE +-- - HW_MUX_CABLE_TABLE +-- - NEIGH_TABLE +-- ASIC_DB: +-- - ASIC_STATE +-- +-- KEYS - None +-- ARGV[1] - APPL_DB db index +-- ARGV[2] - APPL_DB separator +-- ARGV[3] - APPL_DB neighbor table name +-- ARGV[4] - APPL_DB mux cable table name +-- ARGV[5] - APPL_DB hardware mux cable table name +-- ARGV[6] - ASIC_DB db index +-- ARGV[7] - ASIC_DB separator +-- ARGV[8] - ASIC_DB asic state table name + +local APPL_DB = 0 +local APPL_DB_SEPARATOR = ':' +local neighbor_table_name = 'NEIGH_TABLE' +local mux_state_table_name = 'MUX_CABLE_TABLE' +local hw_mux_state_table_name = 'HW_MUX_CABLE_TABLE' +local ASIC_DB = 1 +local ASIC_DB_SEPARATOR = ':' +local asic_state_table_name = 'ASIC_STATE' +local asic_route_key_prefix = 'SAI_OBJECT_TYPE_ROUTE_ENTRY' +local asic_neigh_key_prefix = 'SAI_OBJECT_TYPE_NEIGHBOR_ENTRY' +local asic_fdb_key_prefix = 'SAI_OBJECT_TYPE_FDB_ENTRY' + +if table.getn(ARGV) == 7 then + APPL_DB = ARGV[1] + APPL_DB_SEPARATOR = ARGV[2] + neighbor_table_name = ARGV[3] + mux_state_table_name = ARGV[4] + hw_mux_state_table_name = ARGV[5] + ASIC_DB = ARGV[6] + ASIC_DB_SEPARATOR = ARGV[7] + asic_state_table_name = ARGV[8] +end + +local neighbors = {} +local mux_states = {} +local hw_mux_states = {} +local asic_fdb = {} +local asic_route_table = {} +local asic_neighbor_table = {} + +-- read from APPL_DB +redis.call('SELECT', APPL_DB) + +-- read neighbors learnt from Vlan devices +local neighbor_table_vlan_prefix = neighbor_table_name .. APPL_DB_SEPARATOR .. 'Vlan' +local neighbor_keys = redis.call('KEYS', neighbor_table_vlan_prefix .. '*') +for i, neighbor_key in ipairs(neighbor_keys) do + local second_separator_index = string.find(neighbor_key, APPL_DB_SEPARATOR, string.len(neighbor_table_vlan_prefix), true) + if second_separator_index ~= nil then + local neighbor_ip = string.sub(neighbor_key, second_separator_index + 1) + local mac = string.lower(redis.call('HGET', neighbor_key, 'neigh')) + neighbors[neighbor_ip] = mac + end +end + +-- read mux states +local mux_state_table_prefix = mux_state_table_name .. APPL_DB_SEPARATOR +local mux_cables = redis.call('KEYS', mux_state_table_prefix .. '*') +for i, mux_cable_key in ipairs(mux_cables) do + local port_name = string.sub(mux_cable_key, string.len(mux_state_table_prefix) + 1) + local mux_state = redis.call('HGET', mux_cable_key, 'state') + if mux_state ~= nil then + mux_states[port_name] = mux_state + end +end + +local hw_mux_state_table_prefix = hw_mux_state_table_name .. APPL_DB_SEPARATOR +local hw_mux_cables = redis.call('KEYS', hw_mux_state_table_prefix .. '*') +for i, hw_mux_cable_key in ipairs(hw_mux_cables) do + local port_name = string.sub(hw_mux_cable_key, string.len(hw_mux_state_table_prefix) + 1) + local mux_state = redis.call('HGET', hw_mux_cable_key, 'state') + if mux_state ~= nil then + hw_mux_states[port_name] = mux_state + end +end + +-- read from ASIC_DB +redis.call('SELECT', ASIC_DB) + +-- read ASIC fdb entries +local fdb_prefix = asic_state_table_name .. ASIC_DB_SEPARATOR .. asic_fdb_key_prefix +local fdb_entries = redis.call('KEYS', fdb_prefix .. '*') +for i, fdb_entry in ipairs(fdb_entries) do + local bridge_port_id = redis.call('HGET', fdb_entry, 'SAI_FDB_ENTRY_ATTR_BRIDGE_PORT_ID') + local fdb_details = cjson.decode(string.sub(fdb_entry, string.len(fdb_prefix) + 2)) + local mac = string.lower(fdb_details['mac']) + asic_fdb[mac] = bridge_port_id +end + +-- read ASIC route table +local route_prefix = asic_state_table_name .. ASIC_DB_SEPARATOR .. asic_route_key_prefix +local route_entries = redis.call('KEYS', route_prefix .. '*') +for i, route_entry in ipairs(route_entries) do + local route_details = string.sub(route_entry, string.len(route_prefix) + 2) + table.insert(asic_route_table, route_details) +end + +-- read ASIC neigh table +local neighbor_prefix = asic_state_table_name .. ASIC_DB_SEPARATOR .. asic_neigh_key_prefix +local neighbor_entries = redis.call('KEYS', neighbor_prefix .. '*') +for i, neighbor_entry in ipairs(neighbor_entries) do + local neighbor_details = string.sub(neighbor_entry, string.len(neighbor_prefix) + 2) + table.insert(asic_neighbor_table, neighbor_details) +end + +local result = {} +result['neighbors'] = neighbors +result['mux_states'] = mux_states +result['hw_mux_states'] = hw_mux_states +result['asic_fdb'] = asic_fdb +result['asic_route_table'] = asic_route_table +result['asic_neigh_table'] = asic_neighbor_table + +return redis.status_reply(cjson.encode(result)) +""" + +DB_READ_SCRIPT_CONFIG_DB_KEY = "_DUALTOR_NEIGHBOR_CHECK_SCRIPT_SHA1" +ZERO_MAC = "00:00:00:00:00:00" +NEIGHBOR_ATTRIBUTES = ["NEIGHBOR", "MAC", "PORT", "MUX_STATE", "IN_MUX_TOGGLE", "NEIGHBOR_IN_ASIC", "TUNNERL_IN_ASIC", "HWSTATUS"] +NOT_AVAILABLE = "N/A" + + +class LogOutput(enum.Enum): + """Enum to represent log output.""" + SYSLOG = "SYSLOG" + STDOUT = "STDOUT" + + def __str__(self): + return self.value + + +class SyslogLevel(enum.IntEnum): + """Enum to represent syslog level.""" + ERROR = 3 + NOTICE = 5 + INFO = 6 + DEBUG = 7 + + def __str__(self): + return self.name + + +SYSLOG_LEVEL = SyslogLevel.INFO +WRITE_LOG_ERROR = None +WRITE_LOG_WARN = None +WRITE_LOG_INFO = None +WRITE_LOG_DEBUG = None + + +def parse_args(): + parser = argparse.ArgumentParser( + description="Verify neighbors state is consistent with mux state." + ) + parser.add_argument( + "-o", + "--log-output", + type=LogOutput, + choices=list(LogOutput), + default=LogOutput.STDOUT, + help="log output" + ) + parser.add_argument( + "-s", + "--syslog-level", + choices=["ERROR", "NOTICE", "INFO", "DEBUG"], + default=None, + help="syslog level" + ) + parser.add_argument( + "-l", + "--log-level", + choices=["ERROR", "WARNING", "INFO", "DEBUG"], + default=None, + help="stdout log level" + ) + args = parser.parse_args() + + if args.log_output == LogOutput.STDOUT: + if args.log_level is None: + args.log_level = logging.WARNING + else: + args.log_level = logging.getLevelName(args.log_level) + + if args.syslog_level is not None: + parser.error("Received syslog level with log output to stdout.") + if args.log_output == LogOutput.SYSLOG: + if args.syslog_level is None: + args.syslog_level = SyslogLevel.NOTICE + else: + args.syslog_level = SyslogLevel[args.syslog_level] + + if args.log_level is not None: + parser.error("Received stdout log level with log output to syslog.") + + return args + + +def write_syslog(level, message, *args): + if level > SYSLOG_LEVEL: + return + if args: + message %= args + if level == SyslogLevel.ERROR: + syslog.syslog(syslog.LOG_ERR, message) + elif level == SyslogLevel.NOTICE: + syslog.syslog(syslog.LOG_NOTICE, message) + elif level == SyslogLevel.INFO: + syslog.syslog(syslog.LOG_INFO, message) + elif level == SyslogLevel.DEBUG: + syslog.syslog(syslog.LOG_DEBUG, message) + else: + syslog.syslog(syslog.LOG_DEBUG, message) + + +def config_logging(args): + """Configures logging based on arguments.""" + global SYSLOG_LEVEL + global WRITE_LOG_ERROR + global WRITE_LOG_WARN + global WRITE_LOG_INFO + global WRITE_LOG_DEBUG + if args.log_output == LogOutput.STDOUT: + logging.basicConfig( + stream=sys.stdout, + level=args.log_level, + format="%(message)s" + ) + WRITE_LOG_ERROR = logging.error + WRITE_LOG_WARN = logging.warning + WRITE_LOG_INFO = logging.info + WRITE_LOG_DEBUG = logging.debug + elif args.log_output == LogOutput.SYSLOG: + SYSLOG_LEVEL = args.syslog_level + WRITE_LOG_ERROR = functools.partial(write_syslog, SyslogLevel.ERROR) + WRITE_LOG_WARN = functools.partial(write_syslog, SyslogLevel.NOTICE) + WRITE_LOG_INFO = functools.partial(write_syslog, SyslogLevel.INFO) + WRITE_LOG_DEBUG = functools.partial(write_syslog, SyslogLevel.DEBUG) + + +def run_command(cmd): + """Runs a command and returns its output.""" + WRITE_LOG_DEBUG("Running command: %s", cmd) + try: + p = subprocess.Popen(shlex.split(cmd), stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + (output, _) = p.communicate() + except Exception as details: + raise RuntimeError("Failed to run command: %s", details) + WRITE_LOG_DEBUG("Command output: %s", output) + WRITE_LOG_DEBUG("Command return code: %s", p.returncode) + if p.returncode != 0: + raise RuntimeError("Command failed with return code %s: %s" % (p.returncode, output)) + return output.decode() + + +def redis_cli(redis_cmd): + """Call a redis command with return error check.""" + run_cmd = "sudo redis-cli %s" % redis_cmd + result = run_command(run_cmd).strip() + if "error" in result or "ERR" in result: + raise RuntimeError("Redis command '%s' failed: %s" % (redis_cmd, result)) + return result + + +def read_tables_from_db(appl_db): + """Reads required tables from db.""" + # NOTE: let's cache the db read script sha1 in APPL_DB under + # key "_DUALTOR_NEIGHBOR_CHECK_SCRIPT_SHA1" + db_read_script_sha1 = appl_db.get(DB_READ_SCRIPT_CONFIG_DB_KEY) + if not db_read_script_sha1: + redis_load_cmd = "SCRIPT LOAD \"%s\"" % DB_READ_SCRIPT + db_read_script_sha1 = redis_cli(redis_load_cmd).strip() + WRITE_LOG_INFO("loaded script sha1: %s", db_read_script_sha1) + appl_db.set(DB_READ_SCRIPT_CONFIG_DB_KEY, db_read_script_sha1) + + redis_run_cmd = "EVALSHA %s 0" % db_read_script_sha1 + result = redis_cli(redis_run_cmd).strip() + tables = json.loads(result) + + neighbors = tables["neighbors"] + mux_states = tables["mux_states"] + hw_mux_states = tables["hw_mux_states"] + asic_fdb = {k: v.lstrip("oid:0x") for k, v in tables["asic_fdb"].items()} + asic_route_table = tables["asic_route_table"] + asic_neigh_table = tables["asic_neigh_table"] + WRITE_LOG_DEBUG("neighbors: %s", json.dumps(neighbors, indent=4)) + WRITE_LOG_DEBUG("mux states: %s", json.dumps(mux_states, indent=4)) + WRITE_LOG_DEBUG("hw mux states: %s", json.dumps(hw_mux_states, indent=4)) + WRITE_LOG_DEBUG("ASIC FDB: %s", json.dumps(asic_fdb, indent=4)) + WRITE_LOG_DEBUG("ASIC route table: %s", json.dumps(asic_route_table, indent=4)) + WRITE_LOG_DEBUG("ASIC neigh table: %s", json.dumps(asic_neigh_table, indent=4)) + return neighbors, mux_states, hw_mux_states, asic_fdb, asic_route_table, asic_neigh_table + + +def get_if_br_oid_to_port_name_map(): + """Return port bridge oid to port name map.""" + db = swsscommon.SonicV2Connector(host="127.0.0.1") + try: + port_name_map = port_util.get_interface_oid_map(db)[1] + except IndexError: + port_name_map = {} + if_br_oid_map = port_util.get_bridge_port_map(db) + if_br_oid_to_port_name_map = {} + for if_br_oid, if_oid in if_br_oid_map.items(): + if if_oid in port_name_map: + if_br_oid_to_port_name_map[if_br_oid] = port_name_map[if_oid] + return if_br_oid_to_port_name_map + + +def is_dualtor(config_db): + """Check if it is a dualtor device.""" + device_metadata = config_db.get_table('DEVICE_METADATA') + return ("localhost" in device_metadata and + "subtype" in device_metadata['localhost'] and + device_metadata['localhost']['subtype'].lower() == 'dualtor') + + +def get_mux_cable_config(config_db): + """Return mux cable config from CONFIG_DB.""" + return config_db.get_table("MUX_CABLE") + + +def get_mux_server_to_port_map(mux_cables): + """Return mux server ip to port name map.""" + mux_server_to_port_map = {} + for port, mux_details in mux_cables.items(): + if "server_ipv4" in mux_details: + server_ipv4 = str(ipaddress.ip_interface(mux_details["server_ipv4"]).ip) + mux_server_to_port_map[server_ipv4] = port + if "server_ipv6" in mux_details: + server_ipv6 = str(ipaddress.ip_interface(mux_details["server_ipv6"]).ip) + mux_server_to_port_map[server_ipv6] = port + return mux_server_to_port_map + + +def get_mac_to_port_name_map(asic_fdb, if_oid_to_port_name_map): + """Return mac to port name map.""" + mac_to_port_name_map = {} + for mac, port_br_oid in asic_fdb.items(): + if port_br_oid in if_oid_to_port_name_map: + mac_to_port_name_map[mac] = if_oid_to_port_name_map[port_br_oid] + return mac_to_port_name_map + + +def check_neighbor_consistency(neighbors, mux_states, hw_mux_states, mac_to_port_name_map, + asic_route_table, asic_neigh_table, mux_server_to_port_map): + """Checks if neighbors are consistent with mux states.""" + + asic_route_destinations = set(json.loads(_)["dest"].split("/")[0] for _ in asic_route_table) + asic_neighs = set(json.loads(_)["ip"] for _ in asic_neigh_table) + + check_results = [] + for neighbor_ip in natsorted(list(neighbors.keys())): + mac = neighbors[neighbor_ip] + check_result = {attr: NOT_AVAILABLE for attr in NEIGHBOR_ATTRIBUTES} + check_result["NEIGHBOR"] = neighbor_ip + check_result["MAC"] = mac + + is_zero_mac = (mac == ZERO_MAC) + if mac not in mac_to_port_name_map and not is_zero_mac: + check_results.append(check_result) + continue + + check_result["NEIGHBOR_IN_ASIC"] = neighbor_ip in asic_neighs + check_result["TUNNERL_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"]) + else: + port_name = mac_to_port_name_map[mac] + # NOTE: mux server ips are always fixed to the mux port + if neighbor_ip in mux_server_to_port_map: + port_name = mux_server_to_port_map[neighbor_ip] + mux_state = mux_states[port_name] + hw_mux_state = hw_mux_states[port_name] + check_result["PORT"] = port_name + check_result["MUX_STATE"] = mux_state + check_result["IN_MUX_TOGGLE"] = mux_state != hw_mux_state + + if mux_state == "active": + check_result["HWSTATUS"] = (check_result["NEIGHBOR_IN_ASIC"] and (not check_result["TUNNERL_IN_ASIC"])) + elif mux_state == "standby": + check_result["HWSTATUS"] = ((not check_result["NEIGHBOR_IN_ASIC"]) and check_result["TUNNERL_IN_ASIC"]) + else: + # skip as unknown mux state + continue + + check_results.append(check_result) + + return check_results + + +def parse_check_results(check_results): + """Parse the check results to see if there are neighbors that are inconsistent with mux state.""" + failed_neighbors = [] + bool_to_yes_no = ("no", "yes") + bool_to_consistency = ("inconsistent", "consistent") + for check_result in check_results: + port = check_result["PORT"] + is_zero_mac = check_result["MAC"] == ZERO_MAC + if port == NOT_AVAILABLE and not is_zero_mac: + continue + in_toggle = check_result["IN_MUX_TOGGLE"] + hwstatus = check_result["HWSTATUS"] + if not is_zero_mac: + check_result["IN_MUX_TOGGLE"] = bool_to_yes_no[in_toggle] + check_result["NEIGHBOR_IN_ASIC"] = bool_to_yes_no[check_result["NEIGHBOR_IN_ASIC"]] + check_result["TUNNERL_IN_ASIC"] = bool_to_yes_no[check_result["TUNNERL_IN_ASIC"]] + check_result["HWSTATUS"] = bool_to_consistency[hwstatus] + if (not hwstatus): + if is_zero_mac: + failed_neighbors.append(check_result) + elif not in_toggle: + failed_neighbors.append(check_result) + + output_lines = tabulate.tabulate( + [[check_result[attr] for attr in NEIGHBOR_ATTRIBUTES] for check_result in check_results], + headers=NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ) + for output_line in output_lines.split("\n"): + WRITE_LOG_WARN(output_line) + + if failed_neighbors: + WRITE_LOG_ERROR("Found neighbors that are inconsistent with mux states: %s", [_["NEIGHBOR"] for _ in failed_neighbors]) + err_output_lines = tabulate.tabulate( + [[neighbor[attr] for attr in NEIGHBOR_ATTRIBUTES] for neighbor in failed_neighbors], + headers=NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ) + for output_line in err_output_lines.split("\n"): + WRITE_LOG_ERROR(output_line) + return False + return True + + +if __name__ == "__main__": + args = parse_args() + config_logging(args) + + config_db = swsscommon.ConfigDBConnector(use_unix_socket_path=False) + config_db.connect() + appl_db = daemon_base.db_connect("APPL_DB") + + mux_cables = get_mux_cable_config(config_db) + + if not is_dualtor(config_db) or not mux_cables: + WRITE_LOG_DEBUG("Not a valid dualtor setup, skip the check.") + sys.exit(0) + + mux_server_to_port_map = get_mux_server_to_port_map(mux_cables) + if_oid_to_port_name_map = get_if_br_oid_to_port_name_map() + neighbors, mux_states, hw_mux_states, asic_fdb, asic_route_table, asic_neigh_table = read_tables_from_db(appl_db) + mac_to_port_name_map = get_mac_to_port_name_map(asic_fdb, if_oid_to_port_name_map) + + check_results = check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = parse_check_results(check_results) + sys.exit(0 if res else 1) diff --git a/setup.py b/setup.py index 45eefb2a..68796c96 100644 --- a/setup.py +++ b/setup.py @@ -122,6 +122,7 @@ 'scripts/disk_check.py', 'scripts/dropconfig', 'scripts/dropstat', + 'scripts/dualtor_neighbor_check.py', 'scripts/dump_nat_entries.py', 'scripts/ecnconfig', 'scripts/fabricstat', diff --git a/tests/dualtor_neighbor_check_test.py b/tests/dualtor_neighbor_check_test.py new file mode 100644 index 00000000..1a0a7f5f --- /dev/null +++ b/tests/dualtor_neighbor_check_test.py @@ -0,0 +1,613 @@ +import dualtor_neighbor_check +import json +import pytest +import shlex +import sys +import subprocess +import tabulate + +from unittest.mock import call +from unittest.mock import MagicMock +from unittest.mock import patch + +sys.path.append("scripts") + + +class TestDualtorNeighborCheck(object): + """Test class to test dualtor_neighbor_check.py""" + + @pytest.fixture + def mock_log_functions(self): + with patch("dualtor_neighbor_check.WRITE_LOG_ERROR") as mock_log_err, \ + patch("dualtor_neighbor_check.WRITE_LOG_WARN") as mock_log_warn, \ + patch("dualtor_neighbor_check.WRITE_LOG_INFO") as mock_log_info, \ + patch("dualtor_neighbor_check.WRITE_LOG_DEBUG") as mock_log_debug: + yield mock_log_err, mock_log_warn, mock_log_info, mock_log_debug + + @pytest.fixture + def mock_py_log_functions(self): + with patch("dualtor_neighbor_check.logging.error") as mock_log_err, \ + patch("dualtor_neighbor_check.logging.warning") as mock_log_warn, \ + patch("dualtor_neighbor_check.logging.info") as mock_log_info, \ + patch("dualtor_neighbor_check.logging.debug") as mock_log_debug: + yield mock_log_err, mock_log_warn, mock_log_info, mock_log_debug + + @pytest.fixture + def mock_syslog_log_function(self): + with patch("dualtor_neighbor_check.syslog.syslog") as mock_syslog_log: + yield mock_syslog_log + + def test_run_command(self, mock_log_functions): + with patch("dualtor_neighbor_check.subprocess.Popen") as mock_popen: + mock_proc = MagicMock() + mock_popen.return_value = mock_proc + mock_proc.communicate.return_value = (b"admin", None) + mock_proc.returncode = 0 + + out = dualtor_neighbor_check.run_command("whoami") + + mock_popen.assert_called_once_with(shlex.split("whoami"), stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + mock_proc.communicate.assert_called_once() + assert out == "admin" + + def test_run_command_nonzero_return(self, mock_log_functions): + with patch("dualtor_neighbor_check.subprocess.Popen") as mock_popen: + mock_proc = MagicMock() + mock_popen.return_value = mock_proc + mock_proc.communicate.return_value = (b"ls: cannot access '/tmp/not-existed': No such file or directory", None) + mock_proc.returncode = 2 + + with pytest.raises(RuntimeError): + dualtor_neighbor_check.run_command("ls /tmp/not-existed") + + mock_popen.assert_called_once_with(shlex.split("ls /tmp/not-existed"), stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + mock_proc.communicate.assert_called_once() + + def test_redis_cli(self, mock_log_functions): + with patch("dualtor_neighbor_check.subprocess.Popen") as mock_popen: + mock_proc = MagicMock() + mock_popen.return_value = mock_proc + mock_proc.communicate.return_value = (b"6cde21a0d21ab29e08dd72e13b77214dbb01902f", None) + mock_proc.returncode = 0 + + redis_cmd = "script load \"return helloworld\"" + out = dualtor_neighbor_check.redis_cli(redis_cmd) + + mock_popen.assert_called_once_with(shlex.split("sudo redis-cli %s" % redis_cmd), stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + mock_proc.communicate.assert_called_once() + assert out == "6cde21a0d21ab29e08dd72e13b77214dbb01902f" + + def test_redis_cli_error_stdout(self, mock_log_functions): + with patch("dualtor_neighbor_check.subprocess.Popen") as mock_popen: + mock_proc = MagicMock() + mock_popen.return_value = mock_proc + mock_proc.communicate.return_value = (b"(error) NOSCRIPT No matching script. Please use EVAL.", None) + mock_proc.returncode = 0 + + redis_cmd = "evalsha 0 0" + with pytest.raises(RuntimeError): + dualtor_neighbor_check.redis_cli(redis_cmd) + + mock_popen.assert_called_once_with(shlex.split("sudo redis-cli %s" % redis_cmd), stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + mock_proc.communicate.assert_called_once() + + def test_log_config_default(self, mock_py_log_functions): + mock_log_err, mock_log_warn, mock_log_info, mock_log_debug = mock_py_log_functions + with patch("dualtor_neighbor_check.sys.argv", ["dualtor_neighbor_check.py"]) as mock_argv: + args = dualtor_neighbor_check.parse_args() + dualtor_neighbor_check.config_logging(args) + dualtor_neighbor_check.WRITE_LOG_ERROR("test_error") + dualtor_neighbor_check.WRITE_LOG_WARN("test_warn") + dualtor_neighbor_check.WRITE_LOG_INFO("test_info") + dualtor_neighbor_check.WRITE_LOG_DEBUG("test_debug") + + assert args.log_output == dualtor_neighbor_check.LogOutput.STDOUT + assert args.log_level == dualtor_neighbor_check.logging.WARNING + assert args.syslog_level is None + mock_log_err.assert_called_once_with("test_error") + mock_log_warn.assert_called_once_with("test_warn") + mock_log_info.assert_called_once_with("test_info") + mock_log_debug.assert_called_once_with("test_debug") + + def test_log_config_syslog_default_level(self, mock_syslog_log_function): + expected_syslog_calls = [ + call(dualtor_neighbor_check.syslog.LOG_ERR, "test_error"), + call(dualtor_neighbor_check.syslog.LOG_NOTICE, "test_warn") + ] + with patch("dualtor_neighbor_check.sys.argv", ["dualtor_neighbor_check.py", "-o", "SYSLOG"]) as mock_argv: + args = dualtor_neighbor_check.parse_args() + dualtor_neighbor_check.config_logging(args) + dualtor_neighbor_check.WRITE_LOG_ERROR("test_error") + dualtor_neighbor_check.WRITE_LOG_WARN("test_warn") + dualtor_neighbor_check.WRITE_LOG_INFO("test_info") + dualtor_neighbor_check.WRITE_LOG_DEBUG("test_debug") + + assert args.log_output == dualtor_neighbor_check.LogOutput.SYSLOG + assert args.syslog_level == dualtor_neighbor_check.SyslogLevel.NOTICE + assert args.log_level is None + mock_syslog_log_function.assert_has_calls(expected_syslog_calls) + + def test_log_config_syslog_debug_level(self, mock_syslog_log_function): + expected_syslog_calls = [ + call(dualtor_neighbor_check.syslog.LOG_ERR, "test_error"), + call(dualtor_neighbor_check.syslog.LOG_NOTICE, "test_warn"), + call(dualtor_neighbor_check.syslog.LOG_INFO, "test_info"), + call(dualtor_neighbor_check.syslog.LOG_DEBUG, "test_debug") + ] + with patch("dualtor_neighbor_check.sys.argv", ["dualtor_neighbor_check.py", "-o", "SYSLOG", "-s", "DEBUG"]) as mock_argv: + args = dualtor_neighbor_check.parse_args() + dualtor_neighbor_check.config_logging(args) + dualtor_neighbor_check.WRITE_LOG_ERROR("test_error") + dualtor_neighbor_check.WRITE_LOG_WARN("test_warn") + dualtor_neighbor_check.WRITE_LOG_INFO("test_info") + dualtor_neighbor_check.WRITE_LOG_DEBUG("test_debug") + + assert args.log_output == dualtor_neighbor_check.LogOutput.SYSLOG + assert args.syslog_level == dualtor_neighbor_check.SyslogLevel.DEBUG + assert args.log_level is None + mock_syslog_log_function.assert_has_calls(expected_syslog_calls) + + def test_is_dualtor_true(self, mock_log_functions): + mock_config_db = MagicMock() + mock_config_db.get_table = MagicMock( + return_value={ + "localhost": { + "bgp_asn": "65100", + "hostname": "lab-dev-01-t0", + "peer_switch": "lab-dev-01-lt0", + "subtype": "DualToR", + "type": "ToRRouter", + } + } + ) + + is_dualtor = dualtor_neighbor_check.is_dualtor(mock_config_db) + mock_config_db.get_table.assert_has_calls( + [call("DEVICE_METADATA")] + ) + assert is_dualtor + + def test_is_dualtor_false(self, mock_log_functions): + mock_config_db = MagicMock() + mock_config_db.get_table = MagicMock( + return_value={ + "localhost": { + "bgp_asn": "65100", + "hostname": "lab-dev-01-t0", + "type": "ToRRouter", + } + } + ) + + is_dualtor = dualtor_neighbor_check.is_dualtor(mock_config_db) + mock_config_db.get_table.assert_has_calls( + [call("DEVICE_METADATA")] + ) + assert not is_dualtor + + def test_is_dualtor_false_empty_metadata(self, mock_log_functions): + mock_config_db = MagicMock() + mock_config_db.get_table = MagicMock(return_value={}) + + is_dualtor = dualtor_neighbor_check.is_dualtor(mock_config_db) + mock_config_db.get_table.assert_has_calls( + [call("DEVICE_METADATA")] + ) + assert not is_dualtor + + def test_read_from_db(self, mock_log_functions): + with patch("dualtor_neighbor_check.run_command") as mock_run_command: + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "active"} + hw_mux_states = {"Ethernet4": "active"} + asic_fdb = {"ee:86:d8:46:7d:01": "oid:0x3a00000000064b"} + asic_route_table = [] + asic_neigh_table = ["{\"ip\":\"192.168.0.23\",\"rif\":\"oid:0x6000000000671\",\"switch_id\":\"oid:0x21000000000000\"}"] + mock_run_command.side_effect = [ + "c53fd5eaad68be1e66a2fe80cd20a9cb18c91259", + json.dumps( + { + "neighbors": neighbors, + "mux_states": mux_states, + "hw_mux_states": hw_mux_states, + "asic_fdb": asic_fdb, + "asic_route_table": asic_route_table, + "asic_neigh_table": asic_neigh_table + } + ) + ] + mock_appl_db = MagicMock() + mock_appl_db.get = MagicMock(return_value=None) + + result = dualtor_neighbor_check.read_tables_from_db(mock_appl_db) + + mock_appl_db.get.assert_called_once_with("_DUALTOR_NEIGHBOR_CHECK_SCRIPT_SHA1") + mock_run_command.assert_has_calls( + [ + call("sudo redis-cli SCRIPT LOAD \"%s\"" % dualtor_neighbor_check.DB_READ_SCRIPT), + call("sudo redis-cli EVALSHA c53fd5eaad68be1e66a2fe80cd20a9cb18c91259 0") + ] + ) + assert neighbors == result[0] + assert mux_states == result[1] + assert hw_mux_states == result[2] + assert {k: v.lstrip("oid:0x") for k, v in asic_fdb.items()} == result[3] + assert asic_route_table == result[4] + assert asic_neigh_table == result[5] + + def test_read_from_db_with_lua_cache(self, mock_log_functions): + with patch("dualtor_neighbor_check.run_command") as mock_run_command: + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "active"} + hw_mux_states = {"Ethernet4": "active"} + asic_fdb = {"ee:86:d8:46:7d:01": "oid:0x3a00000000064b"} + asic_route_table = [] + asic_neigh_table = ["{\"ip\":\"192.168.0.23\",\"rif\":\"oid:0x6000000000671\",\"switch_id\":\"oid:0x21000000000000\"}"] + mock_run_command.return_value = json.dumps( + { + "neighbors": neighbors, + "mux_states": mux_states, + "hw_mux_states": hw_mux_states, + "asic_fdb": asic_fdb, + "asic_route_table": asic_route_table, + "asic_neigh_table": asic_neigh_table + } + ) + mock_appl_db = MagicMock() + mock_appl_db.get = MagicMock(return_value="c53fd5eaad68be1e66a2fe80cd20a9cb18c91259") + + result = dualtor_neighbor_check.read_tables_from_db(mock_appl_db) + + mock_appl_db.get.assert_called_once_with("_DUALTOR_NEIGHBOR_CHECK_SCRIPT_SHA1") + mock_run_command.assert_called_once_with("sudo redis-cli EVALSHA c53fd5eaad68be1e66a2fe80cd20a9cb18c91259 0") + assert neighbors == result[0] + assert mux_states == result[1] + assert hw_mux_states == result[2] + assert {k: v.lstrip("oid:0x") for k, v in asic_fdb.items()} == result[3] + assert asic_route_table == result[4] + assert asic_neigh_table == result[5] + + def test_get_mux_server_to_port_map(self, mock_log_functions): + mux_cables = { + "Ethernet4": { + "server_ipv4": "192.168.0.2/32", + "server_ipv6": "fc02:1000::2/128", + "state": "active" + } + } + mux_server_to_port_map = { + "192.168.0.2": "Ethernet4", + "fc02:1000::2": "Ethernet4" + } + + result = dualtor_neighbor_check.get_mux_server_to_port_map(mux_cables) + + assert mux_server_to_port_map == result + + def test_check_neighbor_consistency_no_fdb_entry(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "active"} + hw_mux_states = {"Ethernet4": "active"} + mac_to_port_name_map = {"ee:86:d8:46:7d:02": "Ethernet4"} + asic_route_table = [] + asic_neigh_table = [] + mux_server_to_port_map = {} + expected_output = ["192.168.0.2", "ee:86:d8:46:7d:01", "N/A", "N/A", "N/A", "N/A", "N/A", "N/A"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is True + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_not_called() + + def test_check_neighbor_consistency_consistent_neighbor_mux_active(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "active"} + hw_mux_states = {"Ethernet4": "active"} + mac_to_port_name_map = {"ee:86:d8:46:7d:01": "Ethernet4"} + asic_route_table = [] + asic_neigh_table = ["{\"ip\":\"192.168.0.2\",\"rif\":\"oid:0x6000000000671\",\"switch_id\":\"oid:0x21000000000000\"}"] + mux_server_to_port_map = {"192.168.0.2": "Ethernet4"} + expected_output = ["192.168.0.2", "ee:86:d8:46:7d:01", "Ethernet4", "active", "no", "yes", "no", "consistent"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is True + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_not_called() + + def test_check_neighbor_consistency_inconsistent_neighbor_mux_active_no_asic_neighbor(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "active"} + hw_mux_states = {"Ethernet4": "active"} + mac_to_port_name_map = {"ee:86:d8:46:7d:01": "Ethernet4"} + asic_route_table = [] + asic_neigh_table = [] + mux_server_to_port_map = {"192.168.0.2": "Ethernet4"} + expected_output = ["192.168.0.2", "ee:86:d8:46:7d:01", "Ethernet4", "active", "no", "no", "no", "inconsistent"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + expected_log_error_calls = [call("Found neighbors that are inconsistent with mux states: %s", ["192.168.0.2"])] + expected_log_error_calls.extend([call(line) for line in expected_log_output]) + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is False + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_has_calls(expected_log_error_calls) + + def test_check_neighbor_consistency_inconsistent_neighbor_mux_active_asic_tunnel_route(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "active"} + hw_mux_states = {"Ethernet4": "active"} + mac_to_port_name_map = {"ee:86:d8:46:7d:01": "Ethernet4"} + asic_route_table = ["{\"dest\":\"192.168.0.2/32\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x3000000000024\"}"] + asic_neigh_table = [] + mux_server_to_port_map = {"192.168.0.2": "Ethernet4"} + expected_output = ["192.168.0.2", "ee:86:d8:46:7d:01", "Ethernet4", "active", "no", "no", "yes", "inconsistent"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + expected_log_error_calls = [call("Found neighbors that are inconsistent with mux states: %s", ["192.168.0.2"])] + expected_log_error_calls.extend([call(line) for line in expected_log_output]) + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is False + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_has_calls(expected_log_error_calls) + + def test_check_neighbor_consistency_inconsistent_neighbor_mux_active_in_toggle(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "active"} + hw_mux_states = {"Ethernet4": "standby"} + mac_to_port_name_map = {"ee:86:d8:46:7d:01": "Ethernet4"} + asic_route_table = [] + asic_neigh_table = [] + mux_server_to_port_map = {"192.168.0.2": "Ethernet4"} + expected_output = ["192.168.0.2", "ee:86:d8:46:7d:01", "Ethernet4", "active", "yes", "no", "no", "inconsistent"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is True + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_not_called() + + def test_check_neighbor_consistency_consistent_neighbor_mux_standby(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "standby"} + hw_mux_states = {"Ethernet4": "standby"} + mac_to_port_name_map = {"ee:86:d8:46:7d:01": "Ethernet4"} + asic_route_table = ["{\"dest\":\"192.168.0.2/32\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x3000000000024\"}"] + asic_neigh_table = [] + mux_server_to_port_map = {"192.168.0.2": "Ethernet4"} + expected_output = ["192.168.0.2", "ee:86:d8:46:7d:01", "Ethernet4", "standby", "no", "no", "yes", "consistent"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is True + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_not_called() + + def test_check_neighbor_consistency_inconsistent_neighbor_mux_standby_no_asic_tunnel_route(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "standby"} + hw_mux_states = {"Ethernet4": "standby"} + mac_to_port_name_map = {"ee:86:d8:46:7d:01": "Ethernet4"} + asic_route_table = [] + asic_neigh_table = [] + mux_server_to_port_map = {"192.168.0.2": "Ethernet4"} + expected_output = ["192.168.0.2", "ee:86:d8:46:7d:01", "Ethernet4", "standby", "no", "no", "no", "inconsistent"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + expected_log_error_calls = [call("Found neighbors that are inconsistent with mux states: %s", ["192.168.0.2"])] + expected_log_error_calls.extend([call(line) for line in expected_log_output]) + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is False + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_has_calls(expected_log_error_calls) + + def test_check_neighbor_consistency_inconsistent_neighbor_mux_standby_asic_neighbor(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "standby"} + hw_mux_states = {"Ethernet4": "standby"} + mac_to_port_name_map = {"ee:86:d8:46:7d:01": "Ethernet4"} + asic_route_table = [] + asic_neigh_table = ["{\"ip\":\"192.168.0.2\",\"rif\":\"oid:0x6000000000671\",\"switch_id\":\"oid:0x21000000000000\"}"] + mux_server_to_port_map = {"192.168.0.2": "Ethernet4"} + expected_output = ["192.168.0.2", "ee:86:d8:46:7d:01", "Ethernet4", "standby", "no", "yes", "no", "inconsistent"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + expected_log_error_calls = [call("Found neighbors that are inconsistent with mux states: %s", ["192.168.0.2"])] + expected_log_error_calls.extend([call(line) for line in expected_log_output]) + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is False + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_has_calls(expected_log_error_calls) + + def test_check_neighbor_consistency_inconsistent_neighbor_mux_standby_in_toggle(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.2": "ee:86:d8:46:7d:01"} + mux_states = {"Ethernet4": "standby"} + hw_mux_states = {"Ethernet4": "active"} + mac_to_port_name_map = {"ee:86:d8:46:7d:01": "Ethernet4"} + asic_route_table = [] + asic_neigh_table = [] + mux_server_to_port_map = {"192.168.0.2": "Ethernet4"} + expected_output = ["192.168.0.2", "ee:86:d8:46:7d:01", "Ethernet4", "standby", "yes", "no", "no", "inconsistent"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is True + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_not_called() + + def test_check_neighbor_consistency_zero_mac_neighbor(self, mock_log_functions): + mock_log_error, mock_log_warn, _, _ = mock_log_functions + neighbors = {"192.168.0.102": "00:00:00:00:00:00"} + mux_states = {"Ethernet4": "active"} + hw_mux_states = {"Ethernet4": "active"} + mac_to_port_name_map = {"ee:86:d8:46:7d:01": "Ethernet4"} + asic_route_table = ["{\"dest\":\"192.168.0.102/32\",\"switch_id\":\"oid:0x21000000000000\",\"vr\":\"oid:0x3000000000024\"}"] + asic_neigh_table = [] + mux_server_to_port_map = {"192.168.0.2": "Ethernet4"} + expected_output = ["192.168.0.102", "00:00:00:00:00:00", "N/A", "N/A", "N/A", "no", "yes", "consistent"] + expected_log_output = tabulate.tabulate( + [expected_output], + headers=dualtor_neighbor_check.NEIGHBOR_ATTRIBUTES, + tablefmt="simple" + ).split("\n") + expected_log_warn_calls = [call(line) for line in expected_log_output] + + check_results = dualtor_neighbor_check.check_neighbor_consistency( + neighbors, + mux_states, + hw_mux_states, + mac_to_port_name_map, + asic_route_table, + asic_neigh_table, + mux_server_to_port_map + ) + res = dualtor_neighbor_check.parse_check_results(check_results) + + assert res is True + mock_log_warn.assert_has_calls(expected_log_warn_calls) + mock_log_error.assert_not_called() From c301f3bb5c62d14a764706164488ccf679a2ac8d Mon Sep 17 00:00:00 2001 From: Vivek Date: Sun, 16 Jul 2023 11:08:50 -0700 Subject: [PATCH 201/312] [Techsupport] Update the message seen during the lock acquisition failure (#2897) #### What I did When a second techsupport instance starts while one is running, the message thrown before exiting is not very user friendly. Thus updating the message for it to make more sense. --- scripts/generate_dump | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate_dump b/scripts/generate_dump index e9f26398..36ff8a1e 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -2074,7 +2074,7 @@ else rm_lock_and_exit else # Lock is valid and the other instance is active. Exit Now - echo "Accquiring lock failed, PID ${PID_PROG} is active" >&2 + echo "Another instance of techsupport running with PID: ${PID_PROG}, please retry after some time..." >&2 exit $EXT_LOCKFAIL fi fi From 489a0c989b5f61d7aa84ac495d53d33016289220 Mon Sep 17 00:00:00 2001 From: bingwang-ms <66248323+bingwang-ms@users.noreply.github.com> Date: Wed, 19 Jul 2023 13:01:40 -0700 Subject: [PATCH 202/312] Flush RESTAPI db in fast-reboot shutdown path (#2917) * Flush RESTAPI db in fast-reboot shutdown path --- scripts/fast-reboot | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/fast-reboot b/scripts/fast-reboot index 917449b4..1c47664e 100755 --- a/scripts/fast-reboot +++ b/scripts/fast-reboot @@ -793,6 +793,11 @@ for service in ${SERVICES_TO_STOP}; do sonic-db-cli FLEX_COUNTER_DB FLUSHDB > /dev/null fi + if [[ "$REBOOT_TYPE" = "fast-reboot" ]]; then + # Flush RESTAP_DB in fast-reboot to avoid stale status + sonic-db-cli RESTAPI_DB FLUSHDB > /dev/null + fi + backup_database fi From feea95ed60fe437052125b6383386a9ca10f7df2 Mon Sep 17 00:00:00 2001 From: Vaibhav Hemant Dixit Date: Wed, 19 Jul 2023 23:48:54 -0700 Subject: [PATCH 203/312] UT change: for db_migrator test do not check for RESTAPI cert values (#2919) What I did MSFT ADO: 24598790 Why: RESTAPI table has certs generated from minigraph parser. The values in RESTAPI table (cert and key names) are dependent on how they are hardcoded in minigraph parser. Current solution works on public repo, but breaks the internal build (different naming). What: Do not match values for RESTAPI attributes. The test still ensures that missing table and keys are migrated. How I did it How to verify it --- .../cross_branch_upgrade_to_version_2_0_2_expected.json | 6 +++--- tests/db_migrator_test.py | 8 +++++++- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_expected.json b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_expected.json index e46be0a4..445d0601 100644 --- a/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_expected.json +++ b/tests/db_migrator_input/config_db/cross_branch_upgrade_to_version_2_0_2_expected.json @@ -5,9 +5,9 @@ "allow_insecure": "false" }, "RESTAPI|certs": { - "server_key": "/etc/sonic/credentials/restapiserver.key", - "ca_crt": "/etc/sonic/credentials/restapica.crt", - "server_crt": "/etc/sonic/credentials/restapiserver.crt", + "server_key": "/etc/sonic/credentials/restapi.key", + "ca_crt": "/etc/sonic/credentials/restapi.crt", + "server_crt": "/etc/sonic/credentials/restapi.crt", "client_crt_cname": "client.restapi.sonic" }, "TELEMETRY|gnmi": { diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index adba6a0f..ecd187aa 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -536,7 +536,13 @@ def test_warm_upgrade_to_2_0_2(self): for table in new_tables: resulting_table = dbmgtr.configDB.get_table(table) expected_table = expected_db.cfgdb.get_table(table) - diff = DeepDiff(resulting_table, expected_table, ignore_order=True) + if table == "RESTAPI": + # for RESTAPI - just make sure if the new fields are added, and ignore values match + # values are ignored as minigraph parser is expected to generate different + # results for cert names based on the project specific config. + diff = set(resulting_table.get("certs").keys()) != set(expected_table.get("certs").keys()) + else: + diff = DeepDiff(resulting_table, expected_table, ignore_order=True) assert not diff target_routing_mode_result = dbmgtr.configDB.get_table("DEVICE_METADATA")['localhost']['docker_routing_config_mode'] From 42cba9069b0ea3606227b74bd09aa01e51492612 Mon Sep 17 00:00:00 2001 From: RoRonoa Date: Thu, 20 Jul 2023 23:51:22 +0500 Subject: [PATCH 204/312] Fixed db_migrator version 4_0_3 and 4_0_4 and added missing log info to version 4_0_1 (#2912) #### What I did In PR #2893 the db_migrator "migrate_dns_nameserver" was misplaced in the latest version being version 4_0_4 instead of being placed in version 4_0_3. Additionally, the log info for version 4_0_1 was missing as well --- scripts/db_migrator.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index e2176a08..cbb25e0a 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -1013,6 +1013,8 @@ def version_4_0_1(self): """ Version 4_0_1. """ + log.log_info('Handling version_4_0_1') + self.migrate_feature_timer() self.set_version('version_4_0_2') return 'version_4_0_2' @@ -1034,6 +1036,9 @@ def version_4_0_3(self): Version 4_0_3. """ 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' @@ -1043,8 +1048,6 @@ def version_4_0_4(self): This is the latest version for master branch """ log.log_info('Handling version_4_0_4') - # Updating DNS nameserver - self.migrate_dns_nameserver() return None def get_version(self): From e49fd91f64720d1d45f5360bdbbac5360101a280 Mon Sep 17 00:00:00 2001 From: isabelmsft <67024108+isabelmsft@users.noreply.github.com> Date: Thu, 20 Jul 2023 15:56:47 -0700 Subject: [PATCH 205/312] [GCU] Update RDMA Platform Validator (#2913) --- .../field_operation_validators.py | 13 ++++++- .../gcu_field_operation_validators.conf.json | 17 ++++++++-- .../field_operation_validator_test.py | 34 ++++++++++++++++++- 3 files changed, 60 insertions(+), 4 deletions(-) diff --git a/generic_config_updater/field_operation_validators.py b/generic_config_updater/field_operation_validators.py index 72af9c8b..8f555d0c 100644 --- a/generic_config_updater/field_operation_validators.py +++ b/generic_config_updater/field_operation_validators.py @@ -31,9 +31,17 @@ def get_asic_name(): hwsku = output.rstrip('\n') if asic_type == 'mellanox' or asic_type == 'vs': spc1_hwskus = asic_mapping["mellanox_asics"]["spc1"] + spc2_hwskus = asic_mapping["mellanox_asics"]["spc2"] + spc3_hwskus = asic_mapping["mellanox_asics"]["spc3"] if hwsku.lower() in [spc1_hwsku.lower() for spc1_hwsku in spc1_hwskus]: asic = "spc1" return asic + if hwsku.lower() in [spc2_hwsku.lower() for spc2_hwsku in spc2_hwskus]: + asic = "spc2" + return asic + if hwsku.lower() in [spc3_hwsku.lower() for spc3_hwsku in spc3_hwskus]: + asic = "spc3" + return asic if asic_type == 'broadcom' or asic_type == 'vs': broadcom_asics = asic_mapping["broadcom_asics"] for asic_shorthand, hwskus in broadcom_asics.items(): @@ -75,7 +83,10 @@ def _get_fields_in_patch(): if 'value' in patch_element.keys() and isinstance(patch_element['value'], dict): for key in patch_element['value']: - cleaned_fields.append(cleaned_field+ '/' + key) + if len(cleaned_field) > 0: + cleaned_fields.append(cleaned_field + '/' + key) + else: + cleaned_fields.append(key) else: cleaned_fields.append(cleaned_field) diff --git a/generic_config_updater/gcu_field_operation_validators.conf.json b/generic_config_updater/gcu_field_operation_validators.conf.json index 2dcf1649..f598e0d3 100644 --- a/generic_config_updater/gcu_field_operation_validators.conf.json +++ b/generic_config_updater/gcu_field_operation_validators.conf.json @@ -17,7 +17,9 @@ "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" ], + "spc2": [ "ACS-MSN3800", "Mellanox-SN3800-D112C8" ], + "spc3": [ "ACS-MSN4700", "ACS-MSN4600", "ACS-MSN4600C", "ACS-MSN4410", "Mellanox-SN4600C-D112C8", "Mellanox-SN4600C-C64" ] }, "broadcom_asics": { "th": [ "Force10-S6100", "Arista-7060CX-32S-C32", "Arista-7060CX-32S-C32-T1", "Arista-7060CX-32S-D48C8", "Celestica-DX010-C32", "Seastone-DX010" ], @@ -37,11 +39,14 @@ "restoration_time", "detection_time", "action", - "global/poll_interval" + "global/poll_interval", + "" ], "operations": ["remove", "add", "replace"], "platforms": { "spc1": "20181100", + "spc2": "20191100", + "spc3": "20220500", "td2": "20181100", "th": "20181100", "th2": "20181100", @@ -65,6 +70,8 @@ "operations": ["replace"], "platforms": { "spc1": "20191100", + "spc2": "20191100", + "spc3": "20220500", "td2": "", "th": "20221100", "th2": "20221100", @@ -86,6 +93,8 @@ "operations": ["replace"], "platforms": { "spc1": "20181100", + "spc2": "20191100", + "spc3": "20220500", "td2": "20181100", "th": "20181100", "th2": "20181100", @@ -100,6 +109,8 @@ "operations": ["replace"], "platforms": { "spc1": "20191100", + "spc2": "20191100", + "spc3": "20220500", "td2": "", "th": "20221100", "th2": "20221100", @@ -123,6 +134,8 @@ "operations": ["replace"], "platforms": { "spc1": "20181100", + "spc2": "20191100", + "spc3": "20220500", "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 4ffe11d5..f381c593 100644 --- a/tests/generic_config_updater/field_operation_validator_test.py +++ b/tests/generic_config_updater/field_operation_validator_test.py @@ -31,10 +31,26 @@ def test_rdma_config_update_validator_td3_asic_invalid_version(self): @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="spc1")) @patch("os.path.exists", mock.Mock(return_value=True)) @patch("builtins.open", mock_open(read_data='{"tables": {"PFC_WD": {"validator_data": {"rdma_config_update_validator": {"PFCWD enable/disable": {"fields": ["detection_time", "action"], "operations": ["remove", "replace", "add"], "platforms": {"spc1": "20181100"}}}}}}}')) - def test_rdma_config_update_validator_spc_asic_valid_version(self): + def test_rdma_config_update_validator_spc_asic_valid_version_remove(self): patch_element = {"path": "/PFC_WD/Ethernet8/detection_time", "op": "remove"} assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == True + + @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"build_version": "SONiC.20220530"})) + @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="spc1")) + @patch("os.path.exists", mock.Mock(return_value=True)) + @patch("builtins.open", mock_open(read_data='{"tables": {"PFC_WD": {"validator_data": {"rdma_config_update_validator": {"PFCWD enable/disable": {"fields": ["detection_time", "restoration_time", "action"], "operations": ["remove", "replace", "add"], "platforms": {"spc1": "20181100"}}}}}}}')) + def test_rdma_config_update_validator_spc_asic_valid_version_add_pfcwd(self): + patch_element = {"path": "/PFC_WD/Ethernet8", "op": "add", "value": {"action": "drop", "detection_time": "300", "restoration_time": "200"}} + assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == True + @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"build_version": "SONiC.20220530"})) + @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="spc1")) + @patch("os.path.exists", mock.Mock(return_value=True)) + @patch("builtins.open", mock_open(read_data='{"tables": {"PFC_WD": {"validator_data": {"rdma_config_update_validator": {"PFCWD enable/disable": {"fields": ["detection_time", "action", ""], "operations": ["remove", "replace", "add"], "platforms": {"spc1": "20181100"}}}}}}}')) + def test_rdma_config_update_validator_spc_asic_valid_version(self): + patch_element = {"path": "/PFC_WD/Ethernet8", "op": "remove"} + assert generic_config_updater.field_operation_validators.rdma_config_update_validator(patch_element) == True + @patch("sonic_py_common.device_info.get_sonic_version_info", mock.Mock(return_value={"build_version": "SONiC.20220530"})) @patch("generic_config_updater.field_operation_validators.get_asic_name", mock.Mock(return_value="spc1")) @patch("os.path.exists", mock.Mock(return_value=True)) @@ -103,6 +119,22 @@ def test_get_asic_spc1(self, mock_popen, mock_get_sonic_version_info): mock_popen.return_value.communicate.return_value = ["Mellanox-SN2700-D48C8", 0] self.assertEqual(fov.get_asic_name(), "spc1") + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_spc2(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'mellanox'} + mock_popen.return_value = mock.Mock() + mock_popen.return_value.communicate.return_value = ["ACS-MSN3800", 0] + self.assertEqual(fov.get_asic_name(), "spc2") + + @patch('sonic_py_common.device_info.get_sonic_version_info') + @patch('subprocess.Popen') + def test_get_asic_spc3(self, mock_popen, mock_get_sonic_version_info): + mock_get_sonic_version_info.return_value = {'asic_type': 'mellanox'} + mock_popen.return_value = mock.Mock() + mock_popen.return_value.communicate.return_value = ["Mellanox-SN4600C-C64", 0] + self.assertEqual(fov.get_asic_name(), "spc3") + @patch('sonic_py_common.device_info.get_sonic_version_info') @patch('subprocess.Popen') def test_get_asic_th(self, mock_popen, mock_get_sonic_version_info): From 6716bcf4859c43bd66946132986960842de09248 Mon Sep 17 00:00:00 2001 From: wenyiz2021 <91497961+wenyiz2021@users.noreply.github.com> Date: Thu, 20 Jul 2023 16:30:15 -0700 Subject: [PATCH 206/312] [multi-asic] Refine [override config table] for corner cases (#2918) Handle corner case for multi-asics: 1. when golden config file is empty for multi-asic case 2. when config format is incorrect for multi-asics, e.g. localhost or namespace is missing in golden config db --- config/main.py | 20 ++++++++--- .../multi_asic_missing_asic.json | 5 +++ .../multi_asic_missing_localhost.json | 11 ++++++ tests/config_override_test.py | 35 +++++++++++++++++++ 4 files changed, 66 insertions(+), 5 deletions(-) create mode 100644 tests/config_override_input/multi_asic_missing_asic.json create mode 100644 tests/config_override_input/multi_asic_missing_localhost.json diff --git a/config/main.py b/config/main.py index c8ec8bc8..6641328c 100644 --- a/config/main.py +++ b/config/main.py @@ -1894,14 +1894,24 @@ def override_config_table(db, input_config_db, dry_run): current_config = config_db.get_config() # Serialize to the same format as json input sonic_cfggen.FormatConverter.to_serialized(current_config) - - if multi_asic.is_multi_asic(): + ns_config_input = None + if multi_asic.is_multi_asic() and len(config_input): # Golden Config will use "localhost" to represent host name if ns == DEFAULT_NAMESPACE: - ns_config_input = config_input["localhost"] + if "localhost" in config_input.keys(): + ns_config_input = config_input["localhost"] + else: + click.secho("Wrong config format! 'localhost' not found in host config! cannot override.. abort") + sys.exit(1) else: - ns_config_input = config_input[ns] - else: + 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) + if not ns_config_input: + # if ns_config_input is not defined, define it + # it could be single-asic dut, or config_input is empty ns_config_input = config_input # Generate sysinfo if missing in ns_config_input generate_sysinfo(current_config, ns_config_input, ns) diff --git a/tests/config_override_input/multi_asic_missing_asic.json b/tests/config_override_input/multi_asic_missing_asic.json new file mode 100644 index 00000000..4399bfb3 --- /dev/null +++ b/tests/config_override_input/multi_asic_missing_asic.json @@ -0,0 +1,5 @@ +{ + "localhost": { + "DEVICE_METADATA": {} + } +} diff --git a/tests/config_override_input/multi_asic_missing_localhost.json b/tests/config_override_input/multi_asic_missing_localhost.json new file mode 100644 index 00000000..861c8971 --- /dev/null +++ b/tests/config_override_input/multi_asic_missing_localhost.json @@ -0,0 +1,11 @@ +{ + "host": { + "DEVICE_METADATA": {} + }, + "asic0": { + "DEVICE_METADATA": {} + }, + "asic1": { + "DEVICE_METADATA": {} + } +} diff --git a/tests/config_override_test.py b/tests/config_override_test.py index 3df8cea5..beeafaa8 100644 --- a/tests/config_override_test.py +++ b/tests/config_override_test.py @@ -24,6 +24,8 @@ MULTI_ASIC_MACSEC_OV = os.path.join(DATA_DIR, "multi_asic_macsec_ov.json") MULTI_ASIC_DEVICE_METADATA_RM = os.path.join(DATA_DIR, "multi_asic_dm_rm.json") MULTI_ASIC_DEVICE_METADATA_GEN_SYSINFO = os.path.join(DATA_DIR, "multi_asic_dm_gen_sysinfo.json") +MULTI_ASIC_MISSING_LOCALHOST_OV = os.path.join(DATA_DIR, "multi_asic_missing_localhost.json") +MULTI_ASIC_MISSING_ASIC_OV = os.path.join(DATA_DIR, "multi_asic_missing_asic.json") # Load sonic-cfggen from source since /usr/local/bin/sonic-cfggen does not have .py extension. sonic_cfggen = load_module_from_source('sonic_cfggen', '/usr/local/bin/sonic-cfggen') @@ -381,6 +383,39 @@ def read_json_file_side_effect(filename): assert platform == "multi_asic" assert mac == "11:22:33:44:55:66" + def test_masic_missig_localhost_override(self): + def read_json_file_side_effect(filename): + with open(MULTI_ASIC_MISSING_LOCALHOST_OV, "r") as f: + wrong_format = json.load(f) + return wrong_format + db = Db() + cfgdb_clients = db.cfgdb_clients + + with mock.patch('config.main.read_json_file', + mock.MagicMock(side_effect=read_json_file_side_effect)): + runner = CliRunner() + result = runner.invoke(config.config.commands["override-config-table"], + ['golden_config_db.json'], obj=db) + assert "'localhost' not found in host config" in result.output + # make sure program aborted with return code 1 + assert result.exit_code == 1 + + def test_masic_missig_asic_override(self): + def read_json_file_side_effect(filename): + with open(MULTI_ASIC_MISSING_ASIC_OV, "r") as f: + wrong_format = json.load(f) + return wrong_format + db = Db() + cfgdb_clients = db.cfgdb_clients + + with mock.patch('config.main.read_json_file', + mock.MagicMock(side_effect=read_json_file_side_effect)): + runner = CliRunner() + result = runner.invoke(config.config.commands["override-config-table"], + ['golden_config_db.json'], obj=db) + assert "not found in asic config" in result.output + # make sure program aborted with return code 1 + assert result.exit_code == 1 @classmethod def teardown_class(cls): From 44c1108f012a0171862e70a3ddf7a3012132a7cf Mon Sep 17 00:00:00 2001 From: rbpittman Date: Tue, 25 Jul 2023 11:01:26 -0400 Subject: [PATCH 207/312] Several fixes and updates for ecnconfig (#2889) * Update DB entry table ref syntax. Allow non-lossless queues to be queried and updated. Remove entire wred_profile entry to activate a change to the SAI layer. If wred_profile was the only value and was removed, delete entire key entry. Check that a port is available before attempting an index access. * Update mock DB syntax, fix UT. Update mock DB syntax for wred_profile entries. Add UT support for expecting no wred profile to exist. Fix UT expectations. * Add new lossy queue tests. * rm comment. * rm another comment. --------- Co-authored-by: Kevin Wang <65380078+kevinskwang@users.noreply.github.com> --- scripts/ecnconfig | 28 ++++--- tests/ecn_input/ecn_test_vectors.py | 39 ++++++---- tests/ecn_test.py | 32 ++++++-- tests/mock_tables/config_db.json | 116 ++++++++++++++-------------- 4 files changed, 126 insertions(+), 89 deletions(-) diff --git a/scripts/ecnconfig b/scripts/ecnconfig index 7a59bc7d..e3b08d2b 100755 --- a/scripts/ecnconfig +++ b/scripts/ecnconfig @@ -86,10 +86,7 @@ PORT_TABLE_NAME = "PORT" QUEUE_TABLE_NAME = "QUEUE" DEVICE_NEIGHBOR_TABLE_NAME = "DEVICE_NEIGHBOR" FIELD = "wred_profile" -ON = "[WRED_PROFILE|AZURE_LOSSLESS]" -OFF = "[]" - -lossless_queues = ['3', '4'] +ON = "AZURE_LOSSLESS" def chk_exec_privilege(): if os.geteuid() != 0 and os.environ.get("UTILITIES_UNIT_TESTING", "0") != "2": @@ -202,7 +199,6 @@ class EcnQ(object): def __init__(self, queues, filename, verbose): self.ports_key = [] self.queues = queues.split(',') - self.validate_queues() self.filename = filename self.verbose = verbose @@ -215,16 +211,15 @@ class EcnQ(object): self.gen_ports_key() - def validate_queues(self): - for q in self.queues: - if q not in lossless_queues: - sys.exit('Invalid queue index: %s' % q) - def gen_ports_key(self): if self.ports_key is not None: port_table = self.config_db.get_table(DEVICE_NEIGHBOR_TABLE_NAME) self.ports_key = list(port_table.keys()) + # Verify at least one port is available + if len(self.ports_key) == 0: + raise Exception("No active ports detected in table '{}'".format(DEVICE_NEIGHBOR_TABLE_NAME)) + # In multi-ASIC platforms backend ethernet ports are identified as # 'Ethernet-BPxy'. Add 1024 to sort backend ports to the end. self.ports_key.sort( @@ -245,7 +240,18 @@ class EcnQ(object): print("%s ECN on %s queue %s" % ("Enable" if enable else "Disable", ','.join(self.ports_key), queue)) for port_key in self.ports_key: key = '|'.join([port_key, queue]) - self.config_db.mod_entry(QUEUE_TABLE_NAME, key, {FIELD: ON if enable else OFF}) + entry = self.config_db.get_entry(QUEUE_TABLE_NAME, key) + if enable: + entry[FIELD] = ON + else: + # Remove entry to propagate SAI change + if FIELD in entry: + del entry[FIELD] + # If entry is now empty, remove the key + if entry == {}: + self.config_db.mod_entry(QUEUE_TABLE_NAME, key, None) + else: + self.config_db.set_entry(QUEUE_TABLE_NAME, key, entry) self.dump_table_info() def get(self): diff --git a/tests/ecn_input/ecn_test_vectors.py b/tests/ecn_input/ecn_test_vectors.py index a0aa2e85..c53bf48a 100644 --- a/tests/ecn_input/ecn_test_vectors.py +++ b/tests/ecn_input/ecn_test_vectors.py @@ -122,22 +122,29 @@ 'args' : ['-q', '3'], 'rc' : 0, 'rc_msg' : 'ECN status:\nqueue 3: on\n', - 'cmp_args' : ['wred_profile,[WRED_PROFILE|AZURE_LOSSLESS]'], + 'cmp_args' : ['wred_profile,AZURE_LOSSLESS'], 'cmp_q_args' : ['3', '4'] }, 'ecn_q_get_verbose' : {'cmd' : ['q_cmd'], 'args' : ['-q', '3', '-vv'], 'rc' : 0, 'rc_msg' : 'ECN status:\n{0} queue 3: on\n', - 'cmp_args' : ['wred_profile,[WRED_PROFILE|AZURE_LOSSLESS]'], + 'cmp_args' : ['wred_profile,AZURE_LOSSLESS'], 'cmp_q_args' : ['3', '4'], 'db_table' : 'DEVICE_NEIGHBOR' }, + 'ecn_lossy_q_get' : {'cmd' : ['q_cmd'], + 'args' : ['-q', '2'], + 'rc' : 0, + 'rc_msg' : 'ECN status:\nqueue 2: off\n', + 'cmp_args' : [None], + 'cmp_q_args' : ['2'] + }, 'ecn_q_all_get_verbose' : {'cmd' : ['q_cmd'], 'args' : ['-q', '3,4', '-vv'], 'rc' : 0, 'rc_msg' : 'ECN status:\n{0} queue 3: on\n{0} queue 4: on\n', - 'cmp_args' : ['wred_profile,[WRED_PROFILE|AZURE_LOSSLESS]'], + 'cmp_args' : ['wred_profile,AZURE_LOSSLESS'], 'cmp_q_args' : ['3', '4'], 'db_table' : 'DEVICE_NEIGHBOR' }, @@ -145,19 +152,19 @@ 'args' : ['-q', '3,4'], 'rc' : 0, 'rc_msg' : 'ECN status:\nqueue 3: on\nqueue 4: on\n', - 'cmp_args' : ['wred_profile,[WRED_PROFILE|AZURE_LOSSLESS]'], + 'cmp_args' : ['wred_profile,AZURE_LOSSLESS'], 'cmp_q_args' : ['3', '4'] }, 'ecn_cfg_q_all_off' : {'cmd' : ['q_cmd'], 'args' : ['-q', '3,4', 'off'], 'rc' : 0, - 'cmp_args' : ['wred_profile,[]'], + 'cmp_args' : [None], 'cmp_q_args' : ['3', '4'] }, 'ecn_cfg_q_all_off_verbose' : {'cmd' : ['q_cmd'], 'args' : ['-q', '3,4', 'off', '-vv'], 'rc' : 0, - 'cmp_args' : ['wred_profile,[]'], + 'cmp_args' : [None], 'cmp_q_args' : ['3', '4'], 'db_table' : 'DEVICE_NEIGHBOR', 'rc_msg' : 'Disable ECN on {0} queue 3\nDisable ECN on {0} queue 4' @@ -165,14 +172,14 @@ 'ecn_cfg_q_off' : {'cmd' : ['q_cmd'], 'args' : ['-q', '3', 'off'], 'rc' : 0, - 'cmp_args' : ['wred_profile,[]', 'wred_profile,[WRED_PROFILE|AZURE_LOSSLESS]'], + 'cmp_args' : [None, 'wred_profile,AZURE_LOSSLESS'], 'cmp_q_args' : ['3'], 'other_q' : ['4'] }, 'ecn_cfg_q_off_verbose' : {'cmd' : ['q_cmd'], 'args' : ['-q', '3', 'off', '-vv'], 'rc' : 0, - 'cmp_args' : ['wred_profile,[]', 'wred_profile,[WRED_PROFILE|AZURE_LOSSLESS]'], + 'cmp_args' : [None, 'wred_profile,AZURE_LOSSLESS'], 'cmp_q_args' : ['3'], 'other_q' : ['4'], 'db_table' : 'DEVICE_NEIGHBOR', @@ -181,13 +188,13 @@ 'ecn_cfg_q_all_on' : {'cmd' : ['q_cmd'], 'args' : ['-q', '3,4', 'on'], 'rc' : 0, - 'cmp_args' : ['wred_profile,[WRED_PROFILE|AZURE_LOSSLESS]'], + 'cmp_args' : ['wred_profile,AZURE_LOSSLESS'], 'cmp_q_args' : ['3', '4'] }, 'ecn_cfg_q_all_on_verbose' : {'cmd' : ['q_cmd'], 'args' : ['-q', '3,4', 'on', '-vv'], 'rc' : 0, - 'cmp_args' : ['wred_profile,[WRED_PROFILE|AZURE_LOSSLESS]'], + 'cmp_args' : ['wred_profile,AZURE_LOSSLESS'], 'cmp_q_args' : ['3', '4'], 'db_table' : 'DEVICE_NEIGHBOR', 'rc_msg' : 'Enable ECN on {0} queue 3\nEnable ECN on {0} queue 4' @@ -195,15 +202,21 @@ 'ecn_cfg_q_on' : {'cmd' : ['q_cmd'], 'args' : ['-q', '4', 'on'], 'rc' : 0, - 'cmp_args' : ['wred_profile,[WRED_PROFILE|AZURE_LOSSLESS]'], + 'cmp_args' : ['wred_profile,AZURE_LOSSLESS'], 'cmp_q_args' : ['3', '4'] }, 'ecn_cfg_q_on_verbose' : {'cmd' : ['q_cmd'], 'args' : ['-q', '4', 'on', '-vv'], 'rc' : 0, - 'cmp_args' : ['wred_profile,[WRED_PROFILE|AZURE_LOSSLESS]'], + 'cmp_args' : ['wred_profile,AZURE_LOSSLESS'], 'cmp_q_args' : ['3', '4'], 'db_table' : 'DEVICE_NEIGHBOR', 'rc_msg' : 'Enable ECN on {0} queue 4' - } + }, + 'ecn_cfg_lossy_q_on' : {'cmd' : ['q_cmd'], + 'args' : ['-q', '0,1,2,5,6,7', 'on'], + 'rc' : 0, + 'cmp_args' : ['wred_profile,AZURE_LOSSLESS'], + 'cmp_q_args' : ['0', '1', '2', '5', '6', '7'] + } } diff --git a/tests/ecn_test.py b/tests/ecn_test.py index 0eac54dd..13474b12 100644 --- a/tests/ecn_test.py +++ b/tests/ecn_test.py @@ -88,6 +88,9 @@ def test_ecn_queue_get(self): def test_ecn_queue_get_verbose(self): self.executor(testData['ecn_q_get_verbose']) + def test_ecn_queue_get_lossy(self): + self.executor(testData['ecn_lossy_q_get']) + def test_ecn_all_queue_get(self): self.executor(testData['ecn_q_all_get']) @@ -118,6 +121,21 @@ def test_ecn_queue_set_all_on(self): def test_ecn_queue_set_all_on_verbose(self): self.executor(testData['ecn_cfg_q_all_on_verbose']) + def test_ecn_queue_set_lossy_q_on(self): + self.executor(testData['ecn_cfg_lossy_q_on']) + + def process_cmp_args(self, cmp_args): + if cmp_args is None: + return (None, None) + return cmp_args.split(',') + + def verify_profile(self, queue_db_entry, profile, value): + if profile != None: + assert queue_db_entry[profile] == value + else: + assert profile not in queue_db_entry,\ + "Profile needs to be fully removed from table to propagate NULL OID to SAI" + def executor(self, input): runner = CliRunner() @@ -150,16 +168,16 @@ def executor(self, input): if 'cmp_args' in input: fd = open('/tmp/ecnconfig', 'r') cmp_data = json.load(fd) - if 'cmp_q_args' in input: + profile, value = self.process_cmp_args(input['cmp_args'][0]) if 'other_q' in input: - profile1, value1 = input['cmp_args'][-1].split(',') - profile, value = input['cmp_args'][0].split(',') + profile1, value1 = self.process_cmp_args(input['cmp_args'][-1]) for key in cmp_data: - if ast.literal_eval(key)[-1] in input['cmp_q_args']: - assert(cmp_data[key][profile] == value) - if 'other_q' in input and ast.literal_eval(key)[-1] in input['other_q']: - assert(cmp_data[key][profile1] == value1) + queue_idx = ast.literal_eval(key)[-1] + if queue_idx in input['cmp_q_args']: + self.verify_profile(cmp_data[key], profile, value) + if 'other_q' in input and queue_idx in input['other_q']: + self.verify_profile(cmp_data[key], profile1, value1) else: for args in input['cmp_args']: profile, name, value = args.split(',') diff --git a/tests/mock_tables/config_db.json b/tests/mock_tables/config_db.json index 8861d43a..ff0be3a4 100644 --- a/tests/mock_tables/config_db.json +++ b/tests/mock_tables/config_db.json @@ -2010,11 +2010,11 @@ }, "QUEUE|Ethernet0|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet0|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet0|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2033,11 +2033,11 @@ }, "QUEUE|Ethernet112|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet112|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet112|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2056,11 +2056,11 @@ }, "QUEUE|Ethernet116|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet116|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet116|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2079,11 +2079,11 @@ }, "QUEUE|Ethernet120|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet120|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet120|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2102,11 +2102,11 @@ }, "QUEUE|Ethernet124|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet124|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet124|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2125,11 +2125,11 @@ }, "QUEUE|Ethernet12|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet12|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet12|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2148,11 +2148,11 @@ }, "QUEUE|Ethernet16|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet16|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet16|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2171,11 +2171,11 @@ }, "QUEUE|Ethernet20|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet20|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet20|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2194,11 +2194,11 @@ }, "QUEUE|Ethernet24|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet24|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet24|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2217,11 +2217,11 @@ }, "QUEUE|Ethernet28|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet28|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet28|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2240,11 +2240,11 @@ }, "QUEUE|Ethernet32|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet32|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet32|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2263,11 +2263,11 @@ }, "QUEUE|Ethernet36|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet36|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet36|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2286,11 +2286,11 @@ }, "QUEUE|Ethernet40|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet40|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet40|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2309,11 +2309,11 @@ }, "QUEUE|Ethernet44|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet44|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet44|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2332,11 +2332,11 @@ }, "QUEUE|Ethernet48|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet48|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet48|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2355,11 +2355,11 @@ }, "QUEUE|Ethernet4|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet4|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet4|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2378,11 +2378,11 @@ }, "QUEUE|Ethernet52|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet52|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet52|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2401,11 +2401,11 @@ }, "QUEUE|Ethernet56|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet56|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet56|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2424,11 +2424,11 @@ }, "QUEUE|Ethernet60|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet60|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet60|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2447,11 +2447,11 @@ }, "QUEUE|Ethernet64|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet64|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet64|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2470,11 +2470,11 @@ }, "QUEUE|Ethernet68|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet68|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet68|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2493,11 +2493,11 @@ }, "QUEUE|Ethernet72|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet72|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet72|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2516,11 +2516,11 @@ }, "QUEUE|Ethernet76|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet76|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet76|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2539,11 +2539,11 @@ }, "QUEUE|Ethernet80|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet80|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet80|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2562,11 +2562,11 @@ }, "QUEUE|Ethernet84|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet84|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet84|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2585,11 +2585,11 @@ }, "QUEUE|Ethernet88|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet88|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet88|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2608,11 +2608,11 @@ }, "QUEUE|Ethernet8|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet8|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet8|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2631,11 +2631,11 @@ }, "QUEUE|Ethernet92|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet92|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet92|5": { "scheduler": "[SCHEDULER|scheduler.0]" @@ -2654,11 +2654,11 @@ }, "QUEUE|Ethernet96|3": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet96|4": { "scheduler": "[SCHEDULER|scheduler.1]", - "wred_profile": "[WRED_PROFILE|AZURE_LOSSLESS]" + "wred_profile": "AZURE_LOSSLESS" }, "QUEUE|Ethernet96|5": { "scheduler": "[SCHEDULER|scheduler.0]" From 4b547ef24faf84f27c134d4524933e5e459e7ac9 Mon Sep 17 00:00:00 2001 From: Liu Shilong Date: Thu, 27 Jul 2023 09:16:10 +0800 Subject: [PATCH 208/312] [build] Fix dependency issue between responses and urllib3 package. (#2928) * [build] Fix dependency issue between responses and urllib3 package. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 68796c96..ac069267 100644 --- a/setup.py +++ b/setup.py @@ -227,7 +227,7 @@ 'bcrypt==3.2.2', 'click==7.0', 'cryptography==3.3.2', - 'urllib3<2', + 'urllib3>=2', 'click-log>=0.3.2', 'docker>=4.4.4', 'docker-image-py>=0.1.10', From 5ae17ff067b3dbcb56815a8fbdbce10c8a99e4ae Mon Sep 17 00:00:00 2001 From: Vadym Hlushko <62022266+vadymhlushko-mlnx@users.noreply.github.com> Date: Thu, 27 Jul 2023 20:20:18 +0300 Subject: [PATCH 209/312] [sonic_cli_gen] Add YANG refine support (#2804) #### What I did Add [YANG "refine"](https://www.rfc-editor.org/rfc/rfc7950.html#section-7.13.2) support for the `sonic_cli_gen` utility. YANG refine is used to override the `description` and `mandatory` statements for YANG `grouping`. #### How I did it Modify the `sonic_cli_gen/yang_parser.py` #### How to verify it Modify the `sonic_cli_gen` UT --- sonic_cli_gen/yang_parser.py | 61 +++++++++++++++++-- .../yang_parser_test/assert_dictionaries.py | 6 +- .../sonic-grouping-complex.yang | 21 ++++++- 3 files changed, 79 insertions(+), 9 deletions(-) diff --git a/sonic_cli_gen/yang_parser.py b/sonic_cli_gen/yang_parser.py index df038253..cfefd9bc 100644 --- a/sonic_cli_gen/yang_parser.py +++ b/sonic_cli_gen/yang_parser.py @@ -259,16 +259,17 @@ def on_uses(y_module: OrderedDict, # trim prefixes in order to the next checks trim_uses_prefixes(y_uses) - # TODO: 'refine' support for group in y_grouping: if isinstance(y_uses, list): for use in y_uses: if group.get('@name') == use.get('@name'): + resolve_refine(group, use) ret_attrs.extend(get_leafs(group, group.get('@name'))) ret_attrs.extend(get_leaf_lists(group, group.get('@name'))) ret_attrs.extend(get_choices(y_module, group, conf_mgmt, group.get('@name'))) else: if group.get('@name') == y_uses.get('@name'): + resolve_refine(group, y_uses) ret_attrs.extend(get_leafs(group, group.get('@name'))) ret_attrs.extend(get_leaf_lists(group, group.get('@name'))) ret_attrs.extend(get_choices(y_module, group, conf_mgmt, group.get('@name'))) @@ -401,10 +402,10 @@ def get_mandatory(y_leaf: OrderedDict) -> bool: 'leaf' 'mandatory' value """ - if y_leaf.get('mandatory') is not None: - return True + if y_leaf.get('mandatory') is None: + return False - return False + return y_leaf.get('mandatory').get('@value') == 'true' def get_description(y_entity: OrderedDict) -> str: @@ -506,6 +507,58 @@ def get_uses(y_module: OrderedDict, return [] +def refine_cb(refine: OrderedDict, entity: OrderedDict): + if refine.get('@target-node') != entity.get('@name'): + return + + if refine.get('description') is not None: + entity['description'] = OrderedDict([('text', refine.get('description').get('text'))]) + + if refine.get('mandatory') is not None: + entity['mandatory'] = OrderedDict([('@value', refine.get('mandatory').get('@value'))]) + + +def resolve_refine_list(y_uses_refine: OrderedDict, y_entity: OrderedDict): + if isinstance(y_uses_refine, list): + if isinstance(y_entity, list): + for refine in y_uses_refine: + for e in y_entity: + refine_cb(refine, e) + else: + for refine in y_uses_refine: + refine_cb(refine, y_entity) + else: + if isinstance(y_entity, list): + for e in y_entity: + refine_cb(y_uses_refine, e) + else: + refine_cb(y_uses_refine, y_entity) + + +def resolve_refine(y_group: OrderedDict, y_uses: OrderedDict): + """ Check if the YANG 'uses' entity have the 'refine' entity, if so + this function will override values in 'y_group' using 'refine' values + + Args: + y_group: reference to 'grouping' + y_uses: reference to 'uses' + """ + + y_uses_refine = y_uses.get('refine') + + if y_uses_refine is None: + return + + y_group_leaf = y_group.get('leaf') + y_group_leaf_list = y_group.get('leaf-list') + + if y_group_leaf is not None: + resolve_refine_list(y_uses_refine, y_group_leaf) + + if y_group_leaf_list is not None: + resolve_refine_list(y_uses_refine, y_group_leaf_list) + + def get_all_grouping(y_module: OrderedDict, y_uses: OrderedDict, conf_mgmt: ConfigMgmt) -> list: diff --git a/tests/cli_autogen_input/yang_parser_test/assert_dictionaries.py b/tests/cli_autogen_input/yang_parser_test/assert_dictionaries.py index bed2a4a0..17dc0a97 100644 --- a/tests/cli_autogen_input/yang_parser_test/assert_dictionaries.py +++ b/tests/cli_autogen_input/yang_parser_test/assert_dictionaries.py @@ -535,14 +535,14 @@ "attrs":[ { "name":"GR_5_LEAF_1", - "description": "", + "description": "GR_5_LEAF_1 refine description", "is-mandatory": False, "is-leaf-list": False, "group": "GR_5", }, { "name":"GR_5_LEAF_LIST_1", - "description": "", + "description": "GR_5_LEAF_LIST_1 refine description", "is-mandatory": False, "is-leaf-list": True, "group": "GR_5", @@ -556,7 +556,7 @@ }, { "name":"GR_6_LEAF_2", - "description": "", + "description": "GR_6_LEAF_2 refine description", "is-mandatory": False, "is-leaf-list": False, "group": "GR_6", diff --git a/tests/cli_autogen_input/yang_parser_test/sonic-grouping-complex.yang b/tests/cli_autogen_input/yang_parser_test/sonic-grouping-complex.yang index 22956789..6656e37f 100644 --- a/tests/cli_autogen_input/yang_parser_test/sonic-grouping-complex.yang +++ b/tests/cli_autogen_input/yang_parser_test/sonic-grouping-complex.yang @@ -15,6 +15,8 @@ module sonic-grouping-complex { grouping GR_5 { leaf GR_5_LEAF_1 { + mandatory true; + description "GR_5_LEAF_1 description"; type string; } @@ -87,8 +89,23 @@ module sonic-grouping-complex { description "OBJECT_2 description"; - uses GR_5; - uses GR_6; + uses GR_5 { + refine GR_5_LEAF_1 { + mandatory false; + description "GR_5_LEAF_1 refine description"; + } + + refine GR_5_LEAF_LIST_1 { + description "GR_5_LEAF_LIST_1 refine description"; + } + } + + uses GR_6 { + refine GR_6_LEAF_2 { + description "GR_6_LEAF_2 refine description"; + } + } + uses sgroup2:GR_4; } } From a56b11b6d0751a56c49d591560f31a8173170707 Mon Sep 17 00:00:00 2001 From: Mai Bui Date: Mon, 31 Jul 2023 13:24:27 -0400 Subject: [PATCH 210/312] revert unit test tests/test_clear_tag (#2934) Revert test case due to frequent failure in azp introduced in PR #2849 Signed-off-by: Mai Bui --- tests/intfstat_test.py | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/tests/intfstat_test.py b/tests/intfstat_test.py index fa3af5e2..ab7e0958 100644 --- a/tests/intfstat_test.py +++ b/tests/intfstat_test.py @@ -1,7 +1,6 @@ import sys import os import traceback -import subprocess import show.main as show import clear.main as clear @@ -212,28 +211,6 @@ def test_alias_mode(self): assert interface in result_lines[i+2] os.environ["SONIC_CLI_IFACE_MODE"] = "default" - def test_clear_tag(self): - cmd0 = ["intfstat", "-c"] - subprocess.Popen(cmd0, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) - - cmd1 = ["intfstat", "-c", '-t', 'test'] - subprocess.Popen(cmd1, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) - cmd2 = ["intfstat", '-t', 'test'] - p2 = subprocess.Popen(cmd2, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) - output2 = p2.communicate()[0] - print(output2) - assert show_interfaces_counters_rif_clear in output2 - - cmd3 = ["intfstat", "-c", '-t', 'test'] - subprocess.Popen(cmd3, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) - cmd4 = ["intfstat", '-t', 'test'] - p4 = subprocess.Popen(cmd4, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) - output4 = p4.communicate()[0] - print(output4) - assert show_interfaces_counters_rif_clear in output4 - - show.run_command(["intfstat", "-D"]) - @classmethod def teardown_class(cls): print("TEARDOWN") From cd882cc8cefc2a0e0c6a016d01f20eb482672c5c Mon Sep 17 00:00:00 2001 From: ycoheNvidia <99744138+ycoheNvidia@users.noreply.github.com> Date: Thu, 3 Aug 2023 01:56:10 +0300 Subject: [PATCH 211/312] Input check for timeout in generate_dump (#2925) #### What I did Added input check for argument "-t" in generate_dump script #### How I did it Made sure only integer values can be received for this argument #### How to verify it Call generate_dump -t with non-integer values --- scripts/generate_dump | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/generate_dump b/scripts/generate_dump index 36ff8a1e..12ca39bd 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -2020,6 +2020,10 @@ while getopts ":xnvhzas:t:r:d" opt; do date --date="${SINCE_DATE}" &> /dev/null || abort "${EXT_INVALID_ARGUMENT}" "Invalid date expression passed: '${SINCE_DATE}'" ;; t) + if ! [[ ${OPTARG} =~ ^[0-9]+$ ]]; then + echo "Invalid timeout value: ${OPTARG}, Please enter a numeric value." + exit $EXT_GENERAL + fi TIMEOUT_MIN="${OPTARG}" ;; r) From cf346a310a3a8981905d57f31987a6c8d9aa5085 Mon Sep 17 00:00:00 2001 From: Arvindsrinivasan Lakshmi Narasimhan <55814491+arlakshm@users.noreply.github.com> Date: Thu, 3 Aug 2023 09:02:10 -0700 Subject: [PATCH 212/312] [chassis] rexec enhancements(#2935) Microsoft ADO 24703217 What I did In this PR the following enhancements are done Add support for user to pass username Add support to login to all linecards before executing any commands How I did it How to verify it UT and chassis --- rcli/linecard.py | 3 +- rcli/rexec.py | 39 ++++++++------ rcli/rshell.py | 24 +++++---- rcli/utils.py | 40 ++++++-------- tests/remote_cli_test.py | 109 ++++++++++++++++++++++++--------------- 5 files changed, 122 insertions(+), 93 deletions(-) diff --git a/rcli/linecard.py b/rcli/linecard.py index fdc6882e..73c13a73 100644 --- a/rcli/linecard.py +++ b/rcli/linecard.py @@ -44,9 +44,8 @@ def _connect(self): connection.set_missing_host_key_policy(paramiko.AutoAddPolicy()) try: connection.connect(self.ip, username=self.username, password=self.password) - except paramiko.ssh_exception.NoValidConnectionsError as e: + except: connection = None - click.echo(e) return connection def _get_password(self): diff --git a/rcli/rexec.py b/rcli/rexec.py index fb56df83..8831d558 100644 --- a/rcli/rexec.py +++ b/rcli/rexec.py @@ -10,35 +10,42 @@ @click.command() @click.argument('linecard_names', nargs=-1, type=str, required=True) @click.option('-c', '--command', type=str, required=True) -def cli(linecard_names, command): +@click.option('-u', '--username', type=str, default=None, help="Username for login") +def cli(linecard_names, command, username): """ Executes a command on one or many linecards - + :param linecard_names: A list of linecard names to execute the command on, use `all` to execute on all linecards. :param command: The command to execute on the linecard(s) + :param username: The username to use to login to the linecard(s) """ if not device_info.is_chassis(): click.echo("This commmand is only supported Chassis") sys.exit(1) - - username = os.getlogin() + + if not username: + username = os.getlogin() password = rcli_utils.get_password(username) - + if list(linecard_names) == ["all"]: # Get all linecard names using autocompletion helper linecard_names = rcli_utils.get_all_linecards(None, None, "") - # Iterate through each linecard, execute command, and gather output + linecards = [] + # Iterate through each linecard, check if the login was successful for linecard_name in linecard_names: - try: - lc = Linecard(linecard_name, username, password) - if lc.connection: - # If connection was created, connection exists. Otherwise, user will see an error message. - click.echo("======== {} output: ========".format(lc.linecard_name)) - click.echo(lc.execute_cmd(command)) - except paramiko.ssh_exception.AuthenticationException: - click.echo("Login failed on '{}' with username '{}'".format(linecard_name, lc.username)) - -if __name__=="__main__": + linecard = Linecard(linecard_name, username, password) + if not linecard.connection: + click.echo(f"Failed to connect to {linecard_name} with username {username}") + sys.exit(1) + linecards.append(linecard) + + for linecard in linecards: + if linecard.connection: + click.echo(f"======== {linecard.linecard_name} output: ========") + click.echo(linecard.execute_cmd(command)) + + +if __name__ == "__main__": cli(prog_name='rexec') diff --git a/rcli/rshell.py b/rcli/rshell.py index decda6cd..bac02d42 100644 --- a/rcli/rshell.py +++ b/rcli/rshell.py @@ -10,28 +10,32 @@ @click.command() @click.argument('linecard_name', type=str, autocompletion=rcli_utils.get_all_linecards) -def cli(linecard_name): +@click.option('-u', '--username', type=str, default=None, help="Username for login") +def cli(linecard_name, username): """ Open interactive shell for one linecard - + :param linecard_name: The name of the linecard to connect to """ if not device_info.is_chassis(): click.echo("This commmand is only supported Chassis") sys.exit(1) - username = os.getlogin() + if not username: + username = os.getlogin() password = rcli_utils.get_password(username) - + try: - lc =Linecard(linecard_name, username, password) - if lc.connection: - click.echo("Connecting to {}".format(lc.linecard_name)) - # If connection was created, connection exists. Otherwise, user will see an error message. - lc.start_shell() + linecard = Linecard(linecard_name, username, password) + if linecard.connection: + click.echo(f"Connecting to {linecard.linecard_name}") + # If connection was created, connection exists. + # Otherwise, user will see an error message. + linecard.start_shell() click.echo("Connection Closed") except paramiko.ssh_exception.AuthenticationException: - click.echo("Login failed on '{}' with username '{}'".format(linecard_name, lc.username)) + click.echo( + f"Login failed on '{linecard.linecard_name}' with username '{linecard.username}'") if __name__=="__main__": diff --git a/rcli/utils.py b/rcli/utils.py index 933043d0..510e3605 100644 --- a/rcli/utils.py +++ b/rcli/utils.py @@ -31,24 +31,21 @@ def connect_state_db(): return state_db - def get_linecard_module_name_from_hostname(linecard_name: str): - - chassis_state_db = connect_to_chassis_state_db() + chassis_state_db = connect_to_chassis_state_db() keys = chassis_state_db.keys(chassis_state_db.CHASSIS_STATE_DB , '{}|{}'.format(CHASSIS_MODULE_HOSTNAME_TABLE, '*')) for key in keys: module_name = key.split('|')[1] hostname = chassis_state_db.get(chassis_state_db.CHASSIS_STATE_DB, key, CHASSIS_MODULE_HOSTNAME) if hostname.replace('-', '').lower() == linecard_name.replace('-', '').lower(): - return module_name - + return module_name + return None - + def get_linecard_ip(linecard_name: str): """ Given a linecard name, lookup its IP address in the midplane table - :param linecard_name: The name of the linecard you want to connect to :type linecard_name: str :return: IP address of the linecard @@ -62,7 +59,7 @@ def get_linecard_ip(linecard_name: str): if module_name is None: module_name = linecard_name module_ip, module_access = get_module_ip_and_access_from_state_db(module_name) - + if not module_ip: click.echo('Linecard {} not found'.format(linecard_name)) return None @@ -70,8 +67,6 @@ def get_linecard_ip(linecard_name: str): if module_access != 'True': click.echo('Linecard {} not accessible'.format(linecard_name)) return None - - return module_ip def get_module_ip_and_access_from_state_db(module_name): @@ -80,10 +75,10 @@ def get_module_ip_and_access_from_state_db(module_name): state_db.STATE_DB, '{}|{}'.format(CHASSIS_MIDPLANE_INFO_TABLE,module_name )) if data_dict is None: return None, None - + linecard_ip = data_dict.get(CHASSIS_MIDPLANE_INFO_IP_FIELD, None) access = data_dict.get(CHASSIS_MIDPLANE_INFO_ACCESS_FIELD, None) - + return linecard_ip, access @@ -91,7 +86,7 @@ def get_all_linecards(ctx, args, incomplete) -> list: """ Return a list of all accessible linecard names. This function is used to autocomplete linecard names in the CLI. - + :param ctx: The Click context object that is passed to the command function :param args: The arguments passed to the Click command :param incomplete: The string that the user has typed so far @@ -100,10 +95,9 @@ def get_all_linecards(ctx, args, incomplete) -> list: # Adapted from `show chassis modules midplane-status` command logic: # https://github.com/sonic-net/sonic-utilities/blob/master/show/chassis_modules.py - chassis_state_db = connect_to_chassis_state_db() state_db = connect_state_db() - + linecards = [] keys = state_db.keys(state_db.STATE_DB,'{}|*'.format(CHASSIS_MIDPLANE_INFO_TABLE)) for key in keys: @@ -115,17 +109,17 @@ def get_all_linecards(ctx, args, incomplete) -> list: linecard_ip, access = get_module_ip_and_access_from_state_db(module_name) if linecard_ip is None: continue - - if access != "True" : + + if access != "True": continue - + # get the hostname for this module hostname = chassis_state_db.get(chassis_state_db.CHASSIS_STATE_DB, '{}|{}'.format(CHASSIS_MODULE_HOSTNAME_TABLE, module_name), CHASSIS_MODULE_HOSTNAME) if hostname: linecards.append(hostname) else: linecards.append(module_name) - + # Return a list of all matched linecards return [lc for lc in linecards if incomplete in lc] @@ -133,17 +127,17 @@ def get_all_linecards(ctx, args, incomplete) -> list: def get_password(username=None): """ Prompts the user for a password, and returns the password - + :param username: The username that we want to get the password for :type username: str :return: The password for the username. """ if username is None: - username =os.getlogin() - + username = os.getlogin() + return getpass( "Password for username '{}': ".format(username), # Pass in click stdout stream - this is similar to using click.echo stream=click.get_text_stream('stdout') - ) \ No newline at end of file + ) diff --git a/tests/remote_cli_test.py b/tests/remote_cli_test.py index 67545dd1..d9fd6721 100644 --- a/tests/remote_cli_test.py +++ b/tests/remote_cli_test.py @@ -1,7 +1,7 @@ import os from click.testing import CliRunner import paramiko -from rcli import rexec +from rcli import rexec from rcli import rshell from rcli import linecard from rcli import utils as rcli_utils @@ -23,24 +23,29 @@ :param linecard_names: A list of linecard names to execute the command on, use `all` to execute on all linecards. :param command: The command to - execute on the linecard(s) + execute on the linecard(s) :param username: The username to use to login to + the linecard(s) Options: - -c, --command TEXT [required] - --help Show this message and exit. + -c, --command TEXT [required] + -u, --username TEXT Username for login + --help Show this message and exit. ''' + def mock_exec_command(): mock_stdout = BytesIO(b"""hello world""") mock_stderr = BytesIO() return '', mock_stdout, None + def mock_exec_error_cmd(): mock_stdout = BytesIO() mock_stderr = BytesIO(b"""Command not found""") return '', mock_stdout, mock_stderr + def mock_connection_channel(): c = mock.MagicMock(return_value="channel") c.get_pty = mock.MagicMock(return_value='') @@ -48,37 +53,41 @@ def mock_connection_channel(): c.recv = mock.MagicMock(side_effect=['abcd', '']) return c + def mock_connection_channel_with_timeout(): c = mock.MagicMock(return_value="channel") c.get_pty = mock.MagicMock(return_value='') c.invoke_shell = mock.MagicMock() - c.recv = mock.MagicMock(side_effect=['abcd', socket.timeout(10, 'timeout')]) + c.recv = mock.MagicMock( + side_effect=['abcd', socket.timeout(10, 'timeout')]) return c + def mock_paramiko_connection(channel): # Create a mock to return for connection. conn = mock.MagicMock() - #create a mock return for transport - t = mock.MagicMock() + # create a mock return for transport + t = mock.MagicMock() t.open_session = mock.MagicMock(return_value=channel) conn.get_transport = mock.MagicMock(return_value=t) conn.connect = mock.MagicMock() conn.close = mock.MagicMock() return conn + class TestRemoteExec(object): @classmethod def setup_class(cls): print("SETUP") from .mock_tables import dbconnector dbconnector.load_database_config() - + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) - #@mock.patch.object(linecard.Linecard, '_get_password', mock.MagicMock(return_value='dummmy')) + # @mock.patch.object(linecard.Linecard, '_get_password', mock.MagicMock(return_value='dummmy')) @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) - @mock.patch.object(paramiko.SSHClient, 'exec_command', mock.MagicMock(return_value = mock_exec_command())) + @mock.patch.object(paramiko.SSHClient, 'exec_command', mock.MagicMock(return_value=mock_exec_command())) def test_rexec_with_module_name(self): runner = CliRunner() LINECARD_NAME = "LINE-CARD0" @@ -86,12 +95,12 @@ def test_rexec_with_module_name(self): print(result.output) assert result.exit_code == 0, result.output assert "hello world" in result.output - + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) - @mock.patch.object(paramiko.SSHClient, 'exec_command', mock.MagicMock(return_value = mock_exec_command())) + @mock.patch.object(paramiko.SSHClient, 'exec_command', mock.MagicMock(return_value=mock_exec_command())) def test_rexec_with_hostname(self): runner = CliRunner() LINECARD_NAME = "sonic-lc1" @@ -99,12 +108,12 @@ def test_rexec_with_hostname(self): print(result.output) assert result.exit_code == 0, result.output assert "hello world" in result.output - + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) - @mock.patch.object(paramiko.SSHClient, 'exec_command', mock.MagicMock(return_value = mock_exec_error_cmd())) + @mock.patch.object(paramiko.SSHClient, 'exec_command', mock.MagicMock(return_value=mock_exec_error_cmd())) def test_rexec_error_with_module_name(self): runner = CliRunner() LINECARD_NAME = "LINE-CARD0" @@ -112,24 +121,26 @@ def test_rexec_error_with_module_name(self): print(result.output) assert result.exit_code == 0, result.output assert "Command not found" in result.output - + def test_rexec_error(self): runner = CliRunner() LINECARD_NAME = "LINE-CARD0" - result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "show version"]) + result = runner.invoke( + rexec.cli, [LINECARD_NAME, "-c", "show version"]) print(result.output) assert result.exit_code == 1, result.output assert "This commmand is only supported Chassis" in result.output - + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) - @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value = "hello world")) + @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value="hello world")) def test_rexec_all(self): runner = CliRunner() LINECARD_NAME = "all" - result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "show version"]) + result = runner.invoke( + rexec.cli, [LINECARD_NAME, "-c", "show version"]) print(result.output) assert result.exit_code == 0, result.output assert MULTI_LC_REXEC_OUTPUT == result.output @@ -138,55 +149,70 @@ def test_rexec_all(self): @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) - @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value = "hello world")) + @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value="hello world")) def test_rexec_invalid_lc(self): runner = CliRunner() LINECARD_NAME = "sonic-lc-3" - result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "show version"]) + result = runner.invoke( + rexec.cli, [LINECARD_NAME, "-c", "show version"]) print(result.output) assert result.exit_code == 1, result.output assert "Linecard sonic-lc-3 not found\n" == result.output - @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) - @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value = "hello world")) + @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value="hello world")) def test_rexec_unreachable_lc(self): runner = CliRunner() LINECARD_NAME = "LINE-CARD1" - result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "show version"]) + result = runner.invoke( + rexec.cli, [LINECARD_NAME, "-c", "show version"]) print(result.output) assert result.exit_code == 1, result.output - assert "Linecard LINE-CARD1 not accessible\n" == result.output + assert "Linecard LINE-CARD1 not accessible\n" == result.output @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock()) - @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value = "hello world")) + @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value="hello world")) def test_rexec_help(self): runner = CliRunner() LINECARD_NAME = "LINE-CARD1" result = runner.invoke(rexec.cli, ["--help"]) print(result.output) assert result.exit_code == 0, result.output - assert REXEC_HELP == result.output - + assert REXEC_HELP == result.output + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock(side_effect=paramiko.ssh_exception.NoValidConnectionsError({('192.168.0.1', - 22): "None" }))) - @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value = "hello world")) + 22): "None"}))) + @mock.patch.object(linecard.Linecard, 'execute_cmd', mock.MagicMock(return_value="hello world")) def test_rexec_exception(self): runner = CliRunner() LINECARD_NAME = "sonic-lc1" - result = runner.invoke(rexec.cli, [LINECARD_NAME, "-c", "show version"]) + result = runner.invoke( + rexec.cli, [LINECARD_NAME, "-c", "show version"]) print(result.output) - assert result.exit_code == 0, result.output - assert "[Errno None] Unable to connect to port 22 on 192.168.0.1\n" == result.output + assert result.exit_code == 1, result.output + assert "Failed to connect to sonic-lc1 with username admin\n" == result.output + + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) + @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) + @mock.patch.object(paramiko.SSHClient, 'connect', mock.MagicMock(side_effect=paramiko.ssh_exception.NoValidConnectionsError({('192.168.0.1', + 22): "None"}))) + def test_rexec_with_user_param(self): + runner = CliRunner() + LINECARD_NAME = "all" + result = runner.invoke( + rexec.cli, [LINECARD_NAME, "-c", "show version", "-u", "testuser"]) + print(result.output) + assert result.exit_code == 1, result.output + assert "Failed to connect to sonic-lc1 with username testuser\n" == result.output class TestRemoteCLI(object): @@ -195,7 +221,7 @@ def setup_class(cls): print("SETUP") from .mock_tables import dbconnector dbconnector.load_database_config() - + @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) @@ -206,15 +232,14 @@ def test_rcli_with_module_name(self): runner = CliRunner() LINECARD_NAME = "LINE-CARD0" channel = mock_connection_channel() - + with mock.patch('paramiko.SSHClient', mock.MagicMock(return_value=mock_paramiko_connection(channel))), \ - mock.patch('select.select', mock.MagicMock(return_value=([channel], [], []))): + mock.patch('select.select', mock.MagicMock(return_value=([channel], [], []))): result = runner.invoke(rshell.cli, [LINECARD_NAME]) print(result.output) assert result.exit_code == 0, result.output assert "abcd" in result.output - @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) @mock.patch("rcli.utils.get_password", mock.MagicMock(return_value="dummy")) @@ -225,13 +250,13 @@ def test_rcli_with_module_name_2(self): runner = CliRunner() LINECARD_NAME = "LINE-CARD0" channel = mock_connection_channel() - + with mock.patch('paramiko.SSHClient', mock.MagicMock(return_value=mock_paramiko_connection(channel))), \ - mock.patch('select.select', mock.MagicMock(side_effect=[([], [], []), ([channel], [], []),([channel], [], [])])): + mock.patch('select.select', mock.MagicMock(side_effect=[([], [], []), ([channel], [], []), ([channel], [], [])])): result = runner.invoke(rshell.cli, [LINECARD_NAME]) print(result.output) assert result.exit_code == 0, result.output - assert "Connecting to LINE-CARD0" in result.output + assert "Connecting to LINE-CARD0" in result.output @mock.patch("sonic_py_common.device_info.is_chassis", mock.MagicMock(return_value=True)) @mock.patch("os.getlogin", mock.MagicMock(return_value="admin")) @@ -243,7 +268,7 @@ def test_rcli_with_module_name_3(self): runner = CliRunner() LINECARD_NAME = "LINE-CARD0" channel = mock_connection_channel_with_timeout() - + with mock.patch('paramiko.SSHClient', mock.MagicMock(return_value=mock_paramiko_connection(channel))), \ mock.patch('select.select', mock.MagicMock(return_value=([channel], [], []))): result = runner.invoke(rshell.cli, [LINECARD_NAME]) @@ -257,4 +282,4 @@ def test_rcli_error(self): result = runner.invoke(rshell.cli, [LINECARD_NAME]) print(result.output) assert result.exit_code == 1, result.output - assert "This commmand is only supported Chassis" in result.output \ No newline at end of file + assert "This commmand is only supported Chassis" in result.output From 5b492d546ef8a76cd90c4d15f645df1c730184ae Mon Sep 17 00:00:00 2001 From: Patrick MacArthur Date: Fri, 11 Aug 2023 15:18:55 -0400 Subject: [PATCH 213/312] [chassis][voq] clear: Fix clear queuecounters to also clear VOQ counters (#2878) Fix a bug where the CLI command sonic-clear queuecounters would not clear the VOQ counters. fixes sonic-net/sonic-buildimage#15198 How I did it Added the command to clear the VOQ counters. How to verify it Start traffic on an interface on a specific queue. Use show queue counters and show queue counters --voq to verify that the counters are non-zero. Stop traffic on the interface. Run sonic-clear queuecounters. Repeat the show commands and ensure that the counters have been reset. --- clear/main.py | 3 + tests/mock_tables/counters_db.json | 54 +++++------ tests/queue_counter_test.py | 146 ++++++++++++++++++++--------- 3 files changed, 130 insertions(+), 73 deletions(-) diff --git a/clear/main.py b/clear/main.py index 21c87d55..63a0a063 100755 --- a/clear/main.py +++ b/clear/main.py @@ -181,6 +181,9 @@ def queuecounters(): command = ["queuestat", "-c"] run_command(command) + command = ["queuestat", "-c", "--voq"] + run_command(command) + @cli.command() def pfccounters(): """Clear pfc counters""" diff --git a/tests/mock_tables/counters_db.json b/tests/mock_tables/counters_db.json index f2caba24..c0c37880 100644 --- a/tests/mock_tables/counters_db.json +++ b/tests/mock_tables/counters_db.json @@ -1059,36 +1059,36 @@ }, "COUNTERS_SYSTEM_PORT_NAME_MAP": { - "Ethernet0": "oid:0x1000000000042", - "Ethernet4": "oid:0x1000000000043", - "Ethernet8": "oid:0x1000000000044" + "testsw|Ethernet0": "oid:0x1000000000042", + "testsw|Ethernet4": "oid:0x1000000000043", + "testsw|Ethernet8": "oid:0x1000000000044" }, "COUNTERS_VOQ_NAME_MAP": { - "Ethernet0:0": "oid:0x15000000000657", - "Ethernet0:1": "oid:0x15000000000658", - "Ethernet0:2": "oid:0x15000000000659", - "Ethernet0:3": "oid:0x1500000000065a", - "Ethernet0:4": "oid:0x1500000000065b", - "Ethernet0:5": "oid:0x1500000000065c", - "Ethernet0:6": "oid:0x1500000000065d", - "Ethernet0:7": "oid:0x1500000000065e", - "Ethernet4:0": "oid:0x15000000000667", - "Ethernet4:1": "oid:0x15000000000668", - "Ethernet4:2": "oid:0x15000000000669", - "Ethernet4:3": "oid:0x1500000000066a", - "Ethernet4:4": "oid:0x1500000000066b", - "Ethernet4:5": "oid:0x1500000000066c", - "Ethernet4:6": "oid:0x1500000000066d", - "Ethernet4:7": "oid:0x1500000000066e", - "Ethernet8:0": "oid:0x15000000000677", - "Ethernet8:1": "oid:0x15000000000678", - "Ethernet8:2": "oid:0x15000000000679", - "Ethernet8:3": "oid:0x1500000000067a", - "Ethernet8:4": "oid:0x1500000000067b", - "Ethernet8:5": "oid:0x1500000000067c", - "Ethernet8:6": "oid:0x1500000000067d", - "Ethernet8:7": "oid:0x1500000000067e" + "testsw|Ethernet0:0": "oid:0x15000000000657", + "testsw|Ethernet0:1": "oid:0x15000000000658", + "testsw|Ethernet0:2": "oid:0x15000000000659", + "testsw|Ethernet0:3": "oid:0x1500000000065a", + "testsw|Ethernet0:4": "oid:0x1500000000065b", + "testsw|Ethernet0:5": "oid:0x1500000000065c", + "testsw|Ethernet0:6": "oid:0x1500000000065d", + "testsw|Ethernet0:7": "oid:0x1500000000065e", + "testsw|Ethernet4:0": "oid:0x15000000000667", + "testsw|Ethernet4:1": "oid:0x15000000000668", + "testsw|Ethernet4:2": "oid:0x15000000000669", + "testsw|Ethernet4:3": "oid:0x1500000000066a", + "testsw|Ethernet4:4": "oid:0x1500000000066b", + "testsw|Ethernet4:5": "oid:0x1500000000066c", + "testsw|Ethernet4:6": "oid:0x1500000000066d", + "testsw|Ethernet4:7": "oid:0x1500000000066e", + "testsw|Ethernet8:0": "oid:0x15000000000677", + "testsw|Ethernet8:1": "oid:0x15000000000678", + "testsw|Ethernet8:2": "oid:0x15000000000679", + "testsw|Ethernet8:3": "oid:0x1500000000067a", + "testsw|Ethernet8:4": "oid:0x1500000000067b", + "testsw|Ethernet8:5": "oid:0x1500000000067c", + "testsw|Ethernet8:6": "oid:0x1500000000067d", + "testsw|Ethernet8:7": "oid:0x1500000000067e" }, "COUNTERS_PORT_NAME_MAP": { diff --git a/tests/queue_counter_test.py b/tests/queue_counter_test.py index 1a78b3ee..a5fbf0b8 100644 --- a/tests/queue_counter_test.py +++ b/tests/queue_counter_test.py @@ -997,58 +997,94 @@ }""" show_queue_voq_counters = """\ - Port Voq Counter/pkts Counter/bytes Drop/pkts Drop/bytes ---------- ----- -------------- --------------- ----------- ------------ -Ethernet0 VOQ0 68 30 56 74 -Ethernet0 VOQ1 60 43 39 1 -Ethernet0 VOQ2 82 7 39 21 -Ethernet0 VOQ3 11 59 12 94 -Ethernet0 VOQ4 36 62 35 40 -Ethernet0 VOQ5 49 91 2 88 -Ethernet0 VOQ6 33 17 94 74 -Ethernet0 VOQ7 40 71 95 33 + Port Voq Counter/pkts Counter/bytes Drop/pkts Drop/bytes +---------------- ----- -------------- --------------- ----------- ------------ +testsw|Ethernet0 VOQ0 68 30 56 74 +testsw|Ethernet0 VOQ1 60 43 39 1 +testsw|Ethernet0 VOQ2 82 7 39 21 +testsw|Ethernet0 VOQ3 11 59 12 94 +testsw|Ethernet0 VOQ4 36 62 35 40 +testsw|Ethernet0 VOQ5 49 91 2 88 +testsw|Ethernet0 VOQ6 33 17 94 74 +testsw|Ethernet0 VOQ7 40 71 95 33 - Port Voq Counter/pkts Counter/bytes Drop/pkts Drop/bytes ---------- ----- -------------- --------------- ----------- ------------ -Ethernet4 VOQ0 54 8 93 78 -Ethernet4 VOQ1 83 96 74 9 -Ethernet4 VOQ2 15 60 61 31 -Ethernet4 VOQ3 45 52 82 94 -Ethernet4 VOQ4 55 88 89 52 -Ethernet4 VOQ5 14 70 95 79 -Ethernet4 VOQ6 68 60 66 81 -Ethernet4 VOQ7 63 4 48 76 + 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 ---------- ----- -------------- --------------- ----------- ------------ -Ethernet8 VOQ0 41 73 77 74 -Ethernet8 VOQ1 60 21 56 54 -Ethernet8 VOQ2 57 31 12 39 -Ethernet8 VOQ3 41 96 70 98 -Ethernet8 VOQ4 18 49 63 36 -Ethernet8 VOQ5 99 90 3 15 -Ethernet8 VOQ6 8 84 82 94 -Ethernet8 VOQ7 83 15 75 92 + Port Voq Counter/pkts Counter/bytes Drop/pkts Drop/bytes +---------------- ----- -------------- --------------- ----------- ------------ +testsw|Ethernet8 VOQ0 41 73 77 74 +testsw|Ethernet8 VOQ1 60 21 56 54 +testsw|Ethernet8 VOQ2 57 31 12 39 +testsw|Ethernet8 VOQ3 41 96 70 98 +testsw|Ethernet8 VOQ4 18 49 63 36 +testsw|Ethernet8 VOQ5 99 90 3 15 +testsw|Ethernet8 VOQ6 8 84 82 94 +testsw|Ethernet8 VOQ7 83 15 75 92 """ +show_queue_voq_counters_with_clear = ["""\ + Port Voq Counter/pkts Counter/bytes Drop/pkts Drop/bytes +---------------- ----- -------------- --------------- ----------- ------------ +testsw|Ethernet0 VOQ0 0 0 0 0 +testsw|Ethernet0 VOQ1 0 0 0 0 +testsw|Ethernet0 VOQ2 0 0 0 0 +testsw|Ethernet0 VOQ3 0 0 0 0 +testsw|Ethernet0 VOQ4 0 0 0 0 +testsw|Ethernet0 VOQ5 0 0 0 0 +testsw|Ethernet0 VOQ6 0 0 0 0 +testsw|Ethernet0 VOQ7 0 0 0 0 +""", """\ + Port Voq Counter/pkts Counter/bytes Drop/pkts Drop/bytes +---------------- ----- -------------- --------------- ----------- ------------ +testsw|Ethernet4 VOQ0 0 0 0 0 +testsw|Ethernet4 VOQ1 0 0 0 0 +testsw|Ethernet4 VOQ2 0 0 0 0 +testsw|Ethernet4 VOQ3 0 0 0 0 +testsw|Ethernet4 VOQ4 0 0 0 0 +testsw|Ethernet4 VOQ5 0 0 0 0 +testsw|Ethernet4 VOQ6 0 0 0 0 +testsw|Ethernet4 VOQ7 0 0 0 0 +""", """\ + Port Voq Counter/pkts Counter/bytes Drop/pkts Drop/bytes +---------------- ----- -------------- --------------- ----------- ------------ +testsw|Ethernet8 VOQ0 0 0 0 0 +testsw|Ethernet8 VOQ1 0 0 0 0 +testsw|Ethernet8 VOQ2 0 0 0 0 +testsw|Ethernet8 VOQ3 0 0 0 0 +testsw|Ethernet8 VOQ4 0 0 0 0 +testsw|Ethernet8 VOQ5 0 0 0 0 +testsw|Ethernet8 VOQ6 0 0 0 0 +testsw|Ethernet8 VOQ7 0 0 0 0 +""" +] + show_queue_port_voq_counters = """\ - Port Voq Counter/pkts Counter/bytes Drop/pkts Drop/bytes ---------- ----- -------------- --------------- ----------- ------------ -Ethernet0 VOQ0 68 30 56 74 -Ethernet0 VOQ1 60 43 39 1 -Ethernet0 VOQ2 82 7 39 21 -Ethernet0 VOQ3 11 59 12 94 -Ethernet0 VOQ4 36 62 35 40 -Ethernet0 VOQ5 49 91 2 88 -Ethernet0 VOQ6 33 17 94 74 -Ethernet0 VOQ7 40 71 95 33 + Port Voq Counter/pkts Counter/bytes Drop/pkts Drop/bytes +---------------- ----- -------------- --------------- ----------- ------------ +testsw|Ethernet0 VOQ0 68 30 56 74 +testsw|Ethernet0 VOQ1 60 43 39 1 +testsw|Ethernet0 VOQ2 82 7 39 21 +testsw|Ethernet0 VOQ3 11 59 12 94 +testsw|Ethernet0 VOQ4 36 62 35 40 +testsw|Ethernet0 VOQ5 49 91 2 88 +testsw|Ethernet0 VOQ6 33 17 94 74 +testsw|Ethernet0 VOQ7 40 71 95 33 """ show_queue_voq_counters_json = """\ { - "Ethernet0": { + "testsw|Ethernet0": { "VOQ0": { "dropbytes": "74", "droppacket": "56", @@ -1098,7 +1134,7 @@ "totalpacket": "40" } }, - "Ethernet4": { + "testsw|Ethernet4": { "VOQ0": { "dropbytes": "78", "droppacket": "93", @@ -1148,7 +1184,7 @@ "totalpacket": "63" } }, - "Ethernet8": { + "testsw|Ethernet8": { "VOQ0": { "dropbytes": "74", "droppacket": "77", @@ -1202,7 +1238,7 @@ show_queue_port_voq_counters_json = """\ { - "Ethernet0": { + "testsw|Ethernet0": { "VOQ0": { "dropbytes": "74", "droppacket": "56", @@ -1339,11 +1375,29 @@ def test_queue_voq_counters(self): assert result.exit_code == 0 assert result.output == show_queue_voq_counters + def test_queue_voq_counters_with_clear(self): + runner = CliRunner() + result = runner.invoke(clear.cli.commands['queuecounters'], []) + assert result.exit_code == 0 + result = runner.invoke( + show.cli.commands["queue"].commands["counters"], + ["--voq"] + ) + print(result.output) + show.run_command(['queuestat', '-d', '--voq']) + assert result.exit_code == 0 + assert "Ethernet0 Last cached time was" in result.output and \ + "Ethernet4 Last cached time was" in result.output and \ + "Ethernet8 Last cached time was" in result.output + assert show_queue_voq_counters_with_clear[0] in result.output and \ + show_queue_voq_counters_with_clear[1] in result.output and \ + show_queue_voq_counters_with_clear[2] in result.output + def test_queue_port_voq_counters(self): runner = CliRunner() result = runner.invoke( show.cli.commands["queue"].commands["counters"], - ["Ethernet0", "--voq"] + ["testsw|Ethernet0", "--voq"] ) print(result.output) assert result.exit_code == 0 @@ -1370,7 +1424,7 @@ def test_queue_voq_counters_port_json(self): runner = CliRunner() result = runner.invoke( show.cli.commands["queue"].commands["counters"], - ["Ethernet0", "--voq", "--json"] + ["testsw|Ethernet0", "--voq", "--json"] ) assert result.exit_code == 0 print(result.output) From 9694c7d61dff6387b3426c2f01531922b4de141b Mon Sep 17 00:00:00 2001 From: rajendra-dendukuri <47423477+rajendra-dendukuri@users.noreply.github.com> Date: Mon, 14 Aug 2023 02:26:59 -0400 Subject: [PATCH 214/312] [kdump] Fix API to read the current running image (#2217) ### What I did Simplify the API used to get the current active image name. #### How I did it Instead of relying on the output of the "sonic-installer list" command, use the API get_current_image() from the sonic_installer.bootloader py library. #### How to verify it config reload config kdump disable config kdump enable config kdump memory 768M --- scripts/sonic-kdump-config | 18 +++++++++++------- tests/sonic_kdump_config_test.py | 29 ++++++++++++++++++++++++++++- 2 files changed, 39 insertions(+), 8 deletions(-) diff --git a/scripts/sonic-kdump-config b/scripts/sonic-kdump-config index f86aa3a7..cafda7db 100755 --- a/scripts/sonic-kdump-config +++ b/scripts/sonic-kdump-config @@ -26,6 +26,8 @@ import syslog import subprocess from swsscommon.swsscommon import ConfigDBConnector +from sonic_installer.bootloader import get_bootloader +from sonic_installer.common import IMAGE_PREFIX aboot_cfg_template ="/host/image-%s/kernel-cmdline" grub_cfg = "/host/grub/grub.cfg" @@ -78,9 +80,10 @@ def run_command(cmd, use_shell=False): ## Search which SONiC image is the Current image def get_current_image(): - (rc, img, err_str) = run_command("sonic-installer list | grep 'Current: ' | cut -d '-' -f 3-", use_shell=True); - if type(img) == list and len(img) == 1: - return img[0] + bootloader = get_bootloader() + curimage = bootloader.get_current_image() + if curimage.startswith(IMAGE_PREFIX): + return curimage[len(IMAGE_PREFIX):] print_err("Unable to locate current SONiC image") sys.exit(1) @@ -94,10 +97,11 @@ def get_crash_kernel_size(): ## Search which SONiC image is the Next image def get_next_image(): - (rc, img, err_str) = run_command("sonic-installer list | grep 'Next: ' | cut -d '-' -f 3-", use_shell=True); - if type(img) == list and len(img) == 1: - return img[0] - print_err("Unable to locate current SONiC image") + bootloader = get_bootloader() + nextimage = bootloader.get_next_image() + if nextimage.startswith(IMAGE_PREFIX): + return nextimage[len(IMAGE_PREFIX):] + print_err("Unable to locate next SONiC image") sys.exit(1) ## Search for Current/Next SONiC image in grub configuration diff --git a/tests/sonic_kdump_config_test.py b/tests/sonic_kdump_config_test.py index ca687a03..ebf547fa 100644 --- a/tests/sonic_kdump_config_test.py +++ b/tests/sonic_kdump_config_test.py @@ -2,9 +2,10 @@ import os import sys import unittest -from unittest.mock import patch, mock_open +from unittest.mock import patch, mock_open, Mock from utilities_common.general import load_module_from_source +from sonic_installer.common import IMAGE_PREFIX TESTS_DIR_PATH = os.path.dirname(os.path.abspath(__file__)) UTILITY_DIR_PATH = os.path.dirname(TESTS_DIR_PATH) @@ -255,6 +256,32 @@ def test_cmd_kdump_disable(self, mock_path_exist, mock_num_dumps, mock_memory, return_result = sonic_kdump_config.cmd_kdump_disable(True) assert return_result == False + @patch("sonic_kdump_config.get_bootloader") + def test_get_image(self, mock_get_bootloader): + """Tests the function `get_current_image() and get_next_image()` in script `sonic-kdump-config.py`. + """ + # Setup bootloader mock + mock_bootloader = Mock() + mock_bootloader.get_current_image = Mock(return_value=IMAGE_PREFIX + "-20201230.62") + mock_bootloader.get_next_image = Mock(return_value=IMAGE_PREFIX + "-20201230.63") + mock_get_bootloader.return_value = mock_bootloader + + return_result = sonic_kdump_config.get_next_image() + assert return_result == "-20201230.63" + + return_result = sonic_kdump_config.get_current_image() + assert return_result == "-20201230.62" + + mock_bootloader.get_current_image.return_value = "-20201230.62" + with self.assertRaises(SystemExit) as sys_exit: + return_result = sonic_kdump_config.get_current_image() + self.assertEqual(sys_exit.exception.code, 1) + + mock_bootloader.get_next_image.return_value = "-20201230.63" + with self.assertRaises(SystemExit) as sys_exit: + return_result = sonic_kdump_config.get_next_image() + self.assertEqual(sys_exit.exception.code, 1) + @patch("sonic_kdump_config.write_use_kdump") @patch("os.path.exists") def test_kdump_disable(self, mock_path_exist, mock_write_kdump): From 63223891762cbfae8b83c9d6096de1ae4be80f8a Mon Sep 17 00:00:00 2001 From: royyi8 <126022672+royyi8@users.noreply.github.com> Date: Tue, 15 Aug 2023 13:29:35 -0700 Subject: [PATCH 215/312] [show] Add 'show p4-table' command (#2773) ### What I did Add 'show p4-table' command to the CLI. This is a new command to display P4RT tables used by PINS (P4 Integrated Network Stack). #### How I did it Add the command in show/p4_table.py to output the P4RT table entries in the Redis application database. #### How to verify it Run unit tests, manually test #### Previous command output (if the output of a command-line utility has changed) None #### New command output (if the output of a command-line utility has changed) See command reference --- doc/Command-Reference.md | 58 ++++++++++++++++++++++++++++ show/main.py | 2 + show/p4_table.py | 34 +++++++++++++++++ tests/mock_tables/appl_db.json | 28 ++++++++++++++ tests/p4_table_test.py | 69 ++++++++++++++++++++++++++++++++++ 5 files changed, 191 insertions(+) create mode 100644 show/p4_table.py create mode 100644 tests/p4_table_test.py diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 211074bc..c4a28a54 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -132,6 +132,7 @@ * [Platform Specific Commands](#platform-specific-commands) * [Mellanox Platform Specific Commands](#mellanox-platform-specific-commands) * [Barefoot Platform Specific Commands](#barefoot-platform-specific-commands) +* [PINS](#pins-show commands) * [PortChannels](#portchannels) * [PortChannel Show commands](#portchannel-show-commands) * [PortChannel Config commands](#portchannel-config-commands) @@ -8384,6 +8385,63 @@ It supports add/update/remove operations. Go Back To [Beginning of the document](#) or [Beginning of this section](#pbh) +## PINS + +### PINS Show commands + +#### P4RT Table + +**show p4-table** + +This command displays the P4RT (P4 Runtime) tables in the application database. + +These tables are used by PINS (P4 Integrated Network Stack) for orchagent to +communicate with the P4RT application. + +- Usage: + ```bash + show p4-table + show p4-table + ``` + +- Example: + + ```bash + admin@sonic:~$ show p4-table + { + "P4RT_TABLE:ACL_TABLE_DEFINITION_TABLE:ACL_ACL_PRE_INGRESS_TABLE": { + "stage":"PRE_INGRESS", + "match/dst_ipv6":"{\"bitwidth\":128,\"format\":\"IPV6\",\"kind\":\"sai_field\",\"sai_field\":\"SAI_ACL_TABLE_ATTR_FIELD_DST_IPV6\"}", + "match/in_port":"{\"format\":\"STRING\",\"kind\":\"sai_field\",\"sai_field\":\"SAI_ACL_TABLE_ATTR_FIELD_IN_PORT\"}", + "match/is_ipv4":"{\"bitwidth\":1,\"format\":\"HEX_STRING\",\"kind\":\"sai_field\",\"sai_field\":\"SAI_ACL_TABLE_ATTR_FIELD_ACL_IP_TYPE/IPV4ANY\"}", + "action/set_vrf": "[{\"action\":\"SAI_PACKET_ACTION_FORWARD\"},{\"action\":\"SAI_ACL_ENTRY_ATTR_ACTION_SET_VRF\",\"param\":\"vrf_id\"}]" + }, + "P4RT_TABLE:ACL_ACL_PRE_INGRESS_TABLE:{\"match/dst_ip\":\"10.53.192.0&255.255.240.0\",\"match/is_ipv4\":\"0x1\",\"priority\":1132}": { + "action": "set_vrf", + "param/vrf_id": "p4rt-vrf-80", + "controller_metadata": "my metadata" + }, + ... + } + ``` + + The command supports filtering entries by table name. If a prefix is + specified, only p4 table entries matching that prefix will be displayed. + + ```bash + admin@sonic:~$ show p4-table ACL_ACL_PRE_INGRESS_TABLE + { + "P4RT_TABLE:ACL_ACL_PRE_INGRESS_TABLE:{\"match/dst_ip\":\"10.53.192.0&255.255.240.0\",\"match/is_ipv4\":\"0x1\",\"priority\":1132}": { + "action": "set_vrf", + "param/vrf_id": "p4rt-vrf-80", + "controller_metadata": "my metadata" + }, + ... + } + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#pbh) + ## QoS ### QoS Show commands diff --git a/show/main.py b/show/main.py index aa1b5257..35303b6e 100755 --- a/show/main.py +++ b/show/main.py @@ -54,6 +54,7 @@ from . import muxcable from . import nat from . import platform +from . import p4_table from . import processes from . import reboot_cause from . import sflow @@ -288,6 +289,7 @@ def cli(ctx): cli.add_command(muxcable.muxcable) cli.add_command(nat.nat) cli.add_command(platform.platform) +cli.add_command(p4_table.p4_table) cli.add_command(processes.processes) cli.add_command(reboot_cause.reboot_cause) cli.add_command(sflow.sflow) diff --git a/show/p4_table.py b/show/p4_table.py new file mode 100644 index 00000000..ea5b5e44 --- /dev/null +++ b/show/p4_table.py @@ -0,0 +1,34 @@ +import json +import click +import utilities_common.cli as clicommon +from swsscommon.swsscommon import SonicV2Connector +from tabulate import tabulate + + +# +# 'p4_table' command ("show p4-table") +# +@click.command() +@click.argument('table_name', required=False) +@click.option('--verbose', is_flag=True, help='Enable verbose output') +def p4_table(table_name, verbose): + """Display all P4RT tables""" + appDB = SonicV2Connector(use_unix_socket_path=True) + + if appDB is None: + click.echo('Failed to connect to the application database.') + return -1 + + db = appDB.APPL_DB + appDB.connect(db) + + if table_name is None: + table_name = '' + + keys = appDB.keys(db, f'P4RT_TABLE:{table_name}*') + db_info = {} + + for k in keys: + db_info[k] = appDB.get_all(db, k) + + click.echo(json.dumps(db_info, indent=4)) diff --git a/tests/mock_tables/appl_db.json b/tests/mock_tables/appl_db.json index e330bdad..71b9e7f2 100644 --- a/tests/mock_tables/appl_db.json +++ b/tests/mock_tables/appl_db.json @@ -342,5 +342,33 @@ }, "BGP_PROFILE_TABLE:FROM_SDN_SLB_ROUTES": { "community_id" : "1234:1235" + }, + "P4RT_TABLE:ACL_TABLE_DEFINITION_TABLE:ACL_ACL_PRE_INGRESS_TABLE": { + "stage": "PRE_INGRESS", + "match/dst_ipv6": "{\"bitwidth\":128,\"format\":\"IPV6\",\"kind\":\"sai_field\",\"sai_field\":\"SAI_ACL_TABLE_ATTR_FIELD_DST_IPV6\"}", + "match/in_port": "{\"format\":\"STRING\",\"kind\":\"sai_field\",\"sai_field\":\"SAI_ACL_TABLE_ATTR_FIELD_IN_PORT\"}", + "match/is_ipv4": "{\"bitwidth\":1,\"format\":\"HEX_STRING\",\"kind\":\"sai_field\",\"sai_field\":\"SAI_ACL_TABLE_ATTR_FIELD_ACL_IP_TYPE/IPV4ANY\"}", + "action/set_vrf": "[{\"action\":\"SAI_PACKET_ACTION_FORWARD\"},{\"action\":\"SAI_ACL_ENTRY_ATTR_ACTION_SET_VRF\",\"param\":\"vrf_id\"}]" + }, + "P4RT_TABLE:ACL_TABLE_DEFINITION_TABLE:ACL_ACL_INGRESS_TABLE": { + "stage": "INGRESS", + "match/arp_tpa": "{\"bitwidth\":32,\"elements\":[{\"base\":\"SAI_UDF_BASE_L3\",\"bitwidth\":16,\"kind\":\"udf\",\"offset\":24},{\"base\":\"SAI_UDF_BASE_L3\",\"bitwidth\":16,\"kind\":\"udf\",\"offset\":26}],\"format\":\"HEX_STRING\",\"kind\":\"composite\"}", + "action/mirror": "[{\"action\":\"SAI_PACKET_ACTION_FORWARD\"},{\"action\":\"SAI_ACL_ENTRY_ATTR_ACTION_MIRROR_INGRESS\",\"param\":\"mirror_session_id\"}]", + "match/is_ipv4": "{\"bitwidth\":1,\"format\":\"HEX_STRING\",\"kind\":\"sai_field\",\"sai_field\":\"SAI_ACL_TABLE_ATTR_FIELD_ACL_IP_TYPE/IPV4ANY\"}", + "action/trap": "[{\"action\":\"SAI_PACKET_ACTION_TRAP\"},{\"action\":\"QOS_QUEUE\",\"param\":\"qos_queue\"}]" + }, + "P4RT_TABLE:ACL_ACL_INGRESS_TABLE:{\"match/dst_mac\":\"33:33:00:00:00:02&ff:ff:ff:ff:ff:ff\",\"match/icmpv6_type\":\"0x87&0xff\",\"match/ip_protocol\":\"0x3a&0xff\",\"match/is_ipv6\":\"0x1\",\"priority\":2070}": { + "action": "trap", + "param/qos_queue": "0x6", + "meter/cir": "28000", + "meter/cburst": "7000", + "meter/pir": "28000", + "meter/pburst": "7000", + "controller_metadata": "my metadata" + }, + "P4RT_TABLE:ACL_ACL_PRE_INGRESS_TABLE:{\"match/dst_ip\":\"10.53.192.0&255.255.240.0\",\"match/is_ipv4\":\"0x1\",\"priority\":1132}": { + "action": "set_vrf", + "param/vrf_id": "p4rt-vrf-80", + "controller_metadata": "my metadata" } } diff --git a/tests/p4_table_test.py b/tests/p4_table_test.py new file mode 100644 index 00000000..1341ea79 --- /dev/null +++ b/tests/p4_table_test.py @@ -0,0 +1,69 @@ +from click.testing import CliRunner +import show.main as show + +show_p4_table_output = r"""{ + "P4RT_TABLE:ACL_TABLE_DEFINITION_TABLE:ACL_ACL_PRE_INGRESS_TABLE": { + "stage": "PRE_INGRESS", + "match/dst_ipv6": "{\"bitwidth\":128,\"format\":\"IPV6\",\"kind\":\"sai_field\",\"sai_field\":\"SAI_ACL_TABLE_ATTR_FIELD_DST_IPV6\"}", + "match/in_port": "{\"format\":\"STRING\",\"kind\":\"sai_field\",\"sai_field\":\"SAI_ACL_TABLE_ATTR_FIELD_IN_PORT\"}", + "match/is_ipv4": "{\"bitwidth\":1,\"format\":\"HEX_STRING\",\"kind\":\"sai_field\",\"sai_field\":\"SAI_ACL_TABLE_ATTR_FIELD_ACL_IP_TYPE/IPV4ANY\"}", + "action/set_vrf": "[{\"action\":\"SAI_PACKET_ACTION_FORWARD\"},{\"action\":\"SAI_ACL_ENTRY_ATTR_ACTION_SET_VRF\",\"param\":\"vrf_id\"}]" + }, + "P4RT_TABLE:ACL_TABLE_DEFINITION_TABLE:ACL_ACL_INGRESS_TABLE": { + "stage": "INGRESS", + "match/arp_tpa": "{\"bitwidth\":32,\"elements\":[{\"base\":\"SAI_UDF_BASE_L3\",\"bitwidth\":16,\"kind\":\"udf\",\"offset\":24},{\"base\":\"SAI_UDF_BASE_L3\",\"bitwidth\":16,\"kind\":\"udf\",\"offset\":26}],\"format\":\"HEX_STRING\",\"kind\":\"composite\"}", + "action/mirror": "[{\"action\":\"SAI_PACKET_ACTION_FORWARD\"},{\"action\":\"SAI_ACL_ENTRY_ATTR_ACTION_MIRROR_INGRESS\",\"param\":\"mirror_session_id\"}]", + "match/is_ipv4": "{\"bitwidth\":1,\"format\":\"HEX_STRING\",\"kind\":\"sai_field\",\"sai_field\":\"SAI_ACL_TABLE_ATTR_FIELD_ACL_IP_TYPE/IPV4ANY\"}", + "action/trap": "[{\"action\":\"SAI_PACKET_ACTION_TRAP\"},{\"action\":\"QOS_QUEUE\",\"param\":\"qos_queue\"}]" + }, + "P4RT_TABLE:ACL_ACL_INGRESS_TABLE:{\"match/dst_mac\":\"33:33:00:00:00:02&ff:ff:ff:ff:ff:ff\",\"match/icmpv6_type\":\"0x87&0xff\",\"match/ip_protocol\":\"0x3a&0xff\",\"match/is_ipv6\":\"0x1\",\"priority\":2070}": { + "action": "trap", + "param/qos_queue": "0x6", + "meter/cir": "28000", + "meter/cburst": "7000", + "meter/pir": "28000", + "meter/pburst": "7000", + "controller_metadata": "my metadata" + }, + "P4RT_TABLE:ACL_ACL_PRE_INGRESS_TABLE:{\"match/dst_ip\":\"10.53.192.0&255.255.240.0\",\"match/is_ipv4\":\"0x1\",\"priority\":1132}": { + "action": "set_vrf", + "param/vrf_id": "p4rt-vrf-80", + "controller_metadata": "my metadata" + } +} +""" + +show_p4_table_filter_acl_table_output = r"""{ + "P4RT_TABLE:ACL_ACL_INGRESS_TABLE:{\"match/dst_mac\":\"33:33:00:00:00:02&ff:ff:ff:ff:ff:ff\",\"match/icmpv6_type\":\"0x87&0xff\",\"match/ip_protocol\":\"0x3a&0xff\",\"match/is_ipv6\":\"0x1\",\"priority\":2070}": { + "action": "trap", + "param/qos_queue": "0x6", + "meter/cir": "28000", + "meter/cburst": "7000", + "meter/pir": "28000", + "meter/pburst": "7000", + "controller_metadata": "my metadata" + }, + "P4RT_TABLE:ACL_ACL_PRE_INGRESS_TABLE:{\"match/dst_ip\":\"10.53.192.0&255.255.240.0\",\"match/is_ipv4\":\"0x1\",\"priority\":1132}": { + "action": "set_vrf", + "param/vrf_id": "p4rt-vrf-80", + "controller_metadata": "my metadata" + } +} +""" + + +class TestP4Table(object): + + def test_show_p4_table(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["p4-table"], []) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_p4_table_output + + def test_show_p4_table_filter_acl_table(self): + runner = CliRunner() + result = runner.invoke(show.cli.commands["p4-table"], ["ACL_ACL"]) + print(result.output) + assert result.exit_code == 0 + assert result.output == show_p4_table_filter_acl_table_output 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 216/312] [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 8f555d0c..fc7c1446 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 f598e0d3..28f4dc05 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 becc203a..acdebcc2 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 f381c593..f69955fc 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 536965d0..f5c15794 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 217/312] 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 31c181de..5bacfe7d 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 bfda10a0..32a52436 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 1b2cdc60..64db81fb 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 218/312] 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 6641328c..8b16a42b 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 4399bfb3..db8ba8ec 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 beeafaa8..19d2ddc1 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 219/312] [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 63a0a063..d0915353 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 fcc0983a..205e3170 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 7e37e993..625c1d14 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 220/312] 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 12ca39bd..dd98302a 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 221/312] 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 8b16a42b..5f7e41a3 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 00000000..fe51ccaf --- /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 03660ab0..7206868d 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 c4a28a54..429fe39b 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 cbb25e0a..c2d0fd83 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 285863d7..5988b7f4 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 5aeaef6b..8757d23a 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 1ef2cf49..19fb6a80 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 2644e5f4..da97ad3f 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 00000000..0f49b5ed --- /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 00000000..9613f29e --- /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 ecd187aa..7b4f8424 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 c3246ba0..84940f0b 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 ef37199b..bb83dd31 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 50b691be..bb9e53ac 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 de20194a..023e7029 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 ff0be3a4..07fc66db 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 13364f76..e00d3c40 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 9d3cdae7..54e867c6 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 222/312] [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 c19f8bdf..51d5af48 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 f50acdc4..f8917d9c 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 223/312] [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 528e3d51..829c3c2b 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 d75541a5..bb3af93e 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 900538dd..baeab6fd 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 224/312] 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 28f4dc05..4398f96a 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 225/312] [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 c2d0fd83..d8d1ec24 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 00000000..b2e3169d --- /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 7b4f8424..3f15f2c2 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 226/312] 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 00000000..54c37619 --- /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 ac069267..6888d340 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 c4f2c3a2..d3e9fa09 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 f98de518..8d7f27f7 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 00000000..d97ce5c7 --- /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 227/312] 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 d8d1ec24..8df892b2 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 228/312] [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 7ed2be0a..d01ed9cb 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 ad365f94..db9a79b3 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 229/312] 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 eecf1c9e..1f0f3544 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 230/312] 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 d82e7e4a..8f955544 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 35303b6e..725556e6 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 c0c37880..d62c34cb 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 a5fbf0b8..20b9516f 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 231/312] 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 dd98302a..ac9528ff 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 232/312] 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 7206868d..fd70b027 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 e00d3c40..456bb5dd 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 233/312] 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 51d5af48..af16ddcf 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 f8917d9c..0de4a460 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 234/312] [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 fd70b027..2f99f3cc 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 07fc66db..f622184e 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 456bb5dd..5212a7b0 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 b9c0b4e2..4a0ab5a2 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 235/312] [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 5bacfe7d..e81e05d9 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 4bcd8049..586661bb 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 c4d2e0b9..599e4746 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 236/312] 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 5f7e41a3..f49773be 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 00000000..f9dc1786 --- /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 c0338a17..ebeb74fd 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 b94d428a..baa99608 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 00000000..c20a9645 --- /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 00000000..7218270e --- /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 f622184e..ae5d7f97 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 237/312] [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 f220a4b5..50b73690 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 9737e57d..341111f2 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 3e257ae3..e9cb727d 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 238/312] 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 852b5872..b504cf5d 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 497cb4ee..29a887da 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 f14a3ad7..802bc2dc 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 239/312] [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 1c47664e..922d217e 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 240/312] [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 429fe39b..9cb0cfbb 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 5988b7f4..f80523c0 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 8757d23a..b1d3c69b 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 0af19898..210b66d8 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 bb83dd31..6e48c972 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 71b9e7f2..2c3d14da 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 ae5d7f97..8786051e 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 8d7f27f7..993e05c4 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 f5c15794..25858b78 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 241/312] 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 f49773be..30d004b5 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 9328b79e..c66972bf 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 332bfe14..81c4e404 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 00000000..5da08628 --- /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 242/312] 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 30d004b5..1d2c3360 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 fe51ccaf..00000000 --- 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 2f99f3cc..6cc3193e 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 9cb0cfbb..019499b0 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 8df892b2..00f2d7cc 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 f80523c0..eb40a491 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 b1d3c69b..a5a37346 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 19fb6a80..1ef2cf49 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 da97ad3f..2644e5f4 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 0f49b5ed..00000000 --- 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 9613f29e..00000000 --- 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 3f15f2c2..e75f7589 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 84940f0b..c3246ba0 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 6e48c972..469c73e0 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 bb9e53ac..50b691be 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 023e7029..de20194a 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 8786051e..e58119d9 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 5212a7b0..6dae8be8 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 54e867c6..9d3cdae7 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 243/312] [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 1d2c3360..f336fb58 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 019499b0..35e221dd 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 a84a4bdf..0cbc8c7c 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 2c3d14da..2889e6b2 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 e58119d9..24a25053 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 ecd62265..4ee298df 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 244/312] 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 35e221dd..6784b8fa 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 af16ddcf..454287ca 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 0de4a460..bed8e994 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 245/312] [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 d4f686be..95cced33 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 e7e192ee..5dd68348 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 246/312] [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 00f2d7cc..a4240eac 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 247/312] 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 b504cf5d..852b5872 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 29a887da..497cb4ee 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 802bc2dc..f14a3ad7 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 248/312] [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 454287ca..e324963e 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 bed8e994..0e1f8b99 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 249/312] [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 1f0f3544..9688eb2d 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 250/312] 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 f336fb58..24c56cfa 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 13c0157b..d74152f9 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 24a25053..2a81f96b 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 251/312] 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 fc7c1446..1aae399a 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 4398f96a..50d3ebb4 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 f69955fc..8874a402 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 252/312] 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 a4240eac..f15f27ba 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 1ebfbc6a..a64d38bc 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 07ce7636..e2d8d045 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 2644e5f4..f380c753 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 753a8860..43a9fabd 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 47381ec5..f84c1a90 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 c62e293d..3c288b95 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 5181daa0..decf997d 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 d8deef19..d3337cca 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 278a40bc..3572be8b 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 b3bda32f..60f4455c 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 253/312] [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 24c56cfa..c7250e8a 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 81c4e404..c773ad29 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 254/312] [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 16117700..39de3c67 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 1a0a7f5f..5916a183 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 255/312] 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 c7250e8a..630facb4 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 256/312] [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 4b547b05..583d0c25 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 1ec06765..10fe72ca 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 657e4aac..c4bc157f 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 257/312] [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 83c2558c..842834fe 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 258/312] 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 497cb4ee..25501f75 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 f14a3ad7..fff7fa20 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 259/312] 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 50d3ebb4..95be9bd8 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 260/312] [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 ac9528ff..2179c17c 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 261/312] [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 583d0c25..15d3aedd 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 c4bc157f..8e6edcd0 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 262/312] [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 c66972bf..1e0bcbec 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 5da08628..3227fa83 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 263/312] 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 95be9bd8..f447b0d8 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 8874a402..1bc39674 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 264/312] 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 2179c17c..5fa0f605 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 265/312] [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 d01ed9cb..e41bb00e 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 db9a79b3..46ea3f6a 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 266/312] [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 50b73690..2551fe8e 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 08eab7d2..c9e15c9b 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 e9cb727d..9e8438a7 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 267/312] [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 6784b8fa..d39e64ec 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 6888d340..3b7e4c17 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 00000000..011676ee --- /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 00000000..e69de29b diff --git a/wol/main.py b/wol/main.py new file mode 100644 index 00000000..3b569a3a --- /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 b31725059a92580611cc15e57b76b3b56cc4fe8b 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 268/312] [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 f15f27ba..a8214395 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 00000000..7a786ae0 --- /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 00000000..4fcf7be5 --- /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 00000000..66b45b4b --- /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 00000000..4c14c262 --- /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 e75f7589..014b6455 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 b5daf5d4a9f54ff3cf2f33e44889d77976ff4f80 Mon Sep 17 00:00:00 2001 From: Yaqiang Zhu Date: Wed, 29 Nov 2023 01:05:09 -0500 Subject: [PATCH 269/312] [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 6cc3193e..7ace1d6d 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 6dae8be8..436e3092 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 71514ea38e87ac0c40657552e4455879bfee9804 Mon Sep 17 00:00:00 2001 From: Ying Xie Date: Wed, 29 Nov 2023 16:05:12 -0800 Subject: [PATCH 270/312] 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 a8214395..0f813763 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 a64d38bc..1ebfbc6a 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 e2d8d045..07ce7636 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 f380c753..2644e5f4 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 43a9fabd..753a8860 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 f84c1a90..47381ec5 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 3c288b95..c62e293d 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 decf997d..5181daa0 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 d3337cca..d8deef19 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 3572be8b..278a40bc 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 60f4455c..b3bda32f 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 1b1402f5dc0fd01e5f0d25679e7382fc96226a40 Mon Sep 17 00:00:00 2001 From: Nazarii Hnydyn Date: Fri, 1 Dec 2023 21:04:15 +0200 Subject: [PATCH 271/312] [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 1d3c65c5..75a78772 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 d39e64ec..e8e24e5a 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 467b124c..37440677 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 80edc1cf..8a1e1fa2 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 329af0be..a488aca2 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 caa095ac..e1c0018e 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 69b63bd0..14f26281 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 e9f7cf43..9e79484d 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 ee0e9416..27a8d84a 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 9e221a2f..240080f1 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 3fb0008a..ad4e4725 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 68f5962c..5e4652cc 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 de390e89..6495b585 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 96e8558d..f9de27e9 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 1f29ca4e..93e11b06 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 fba4bf0b932949117d5383afccdeb36d6a882209 Mon Sep 17 00:00:00 2001 From: Ying Xie Date: Thu, 21 Dec 2023 09:18:36 -0800 Subject: [PATCH 272/312] [202311][db_migrator] add db migrator version space for 202305/202311 branch (#3082) Signed-off-by: Ying Xie --- scripts/db_migrator.py | 47 +++++++++++++++++++--------- tests/db_migrator_test.py | 64 +++++++++++++++++++++++++++++++++++++-- 2 files changed, 94 insertions(+), 17 deletions(-) diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index 0f813763..0cea7c8f 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_202311_02' self.TABLE_NAME = 'VERSIONS' self.TABLE_KEY = 'DATABASE' @@ -1077,27 +1084,37 @@ 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_4_0_5(self): + def version_202311_02(self): """ - Version 4_0_5. - This is the latest version for master branch + Version 202311_02. + This is current last erversion for 202311 branch """ - log.log_info('Handling version_4_0_5') + log.log_info('Handling version_202311_02') return None def get_version(self): diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index 014b6455..dfecccd5 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): @@ -739,7 +799,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 72b6c04c5d64d0322ca36e5c8606740027a97767 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 273/312] 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 90fc52ec..7533a7f7 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 e8e24e5a..f9c62335 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -10222,6 +10222,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 354100a5..44915b6d 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 cb0fd4280bff26b7a6e8d691a0c555155b02138b Mon Sep 17 00:00:00 2001 From: Junchao-Mellanox <57339448+Junchao-Mellanox@users.noreply.github.com> Date: Fri, 19 Jan 2024 00:31:59 +0800 Subject: [PATCH 274/312] [202311] Collect module EEPROM data in dump (#3009) (#3124) * Collect module EEPROM data in dump --- doc/Command-Reference.md | 179 +++++++++++++++++++ scripts/generate_dump | 1 + sfputil/main.py | 361 +++++++++++++++++++++++++++------------ tests/sfputil_test.py | 152 ++++++++++++++++- 4 files changed, 582 insertions(+), 111 deletions(-) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index f9c62335..30f317be 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -202,6 +202,10 @@ * [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 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) * [Static DNS config command](#static-dns-config-command) * [Static DNS show command](#static-dns-show-command) @@ -12937,6 +12941,181 @@ 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 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 + +- 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/scripts/generate_dump b/scripts/generate_dump index 5fa0f605..6b46333d 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 e324963e..013c8d7c 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 @@ -50,6 +52,19 @@ 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 +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 # TODO: We should share these maps and the formatting functions between sfputil and sfpshow QSFP_DD_DATA_MAP = { @@ -678,120 +693,241 @@ 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 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 - logical_port_name = port - physical_port = logical_port_to_physical_port_index(logical_port_name) + 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) + + 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, flat_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(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) - return output def convert_byte_to_valid_ascii_char(byte): if byte < 32 or 126 < byte: @@ -799,27 +935,36 @@ def convert_byte_to_valid_ascii_char(byte): 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 + 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) - return result # 'presence' subcommand @show.command() diff --git a/tests/sfputil_test.py b/tests/sfputil_test.py index 0e1f8b99..2b74423a 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 7a242eeb8e12c18366bff5eb27500b0de2a213c8 Mon Sep 17 00:00:00 2001 From: Junchao-Mellanox <57339448+Junchao-Mellanox@users.noreply.github.com> Date: Sat, 20 Jan 2024 01:15:28 +0800 Subject: [PATCH 275/312] [202311] Support reading/writing module EEPROM data by page and offset (#3008) (#3073) * Support reading/writing module EEPROM data by page and offset (#3008) * Support reading/writing module EEPROM data by page and offset --- doc/Command-Reference.md | 7 +- sfputil/main.py | 193 +++++++++++++++++++++++++--- tests/sfputil_test.py | 267 ++++++++++++++++++++++++++++++++++++++- 3 files changed, 441 insertions(+), 26 deletions(-) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 30f317be..3e64103a 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -12942,7 +12942,8 @@ 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 @@ -13048,7 +13049,7 @@ EEPROM hexdump for port Ethernet8 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| ``` -# SFP Utilities read command +## SFP Utilities read command - Read SFP EEPROM data @@ -13080,7 +13081,7 @@ admin@sonic:~$ sfputil read-eeprom --port Ethernet0 --page 0 --offset 100 --size 4a44 ``` -# SFP Utilities write command +## SFP Utilities write command - Write SFP EEPROM data diff --git a/sfputil/main.py b/sfputil/main.py index 013c8d7c..0e59fbe8 100644 --- a/sfputil/main.py +++ b/sfputil/main.py @@ -908,27 +908,6 @@ def eeprom_dump_general(physical_port, page, flat_offset, size, page_offset, no_ return 0, ''.join('{:02x}'.format(x) for x in page_dump) -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: - 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(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 convert_byte_to_valid_ascii_char(byte): if byte < 32 or 126 < byte: return '.' @@ -1712,5 +1691,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 2b74423a..63814f31 100644 --- a/tests/sfputil_test.py +++ b/tests/sfputil_test.py @@ -1117,6 +1117,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): @@ -1147,5 +1412,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 e70b054604062683f766a28dc295c7443b63c4a1 Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak <38952541+stepanblyschak@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:23:30 +0200 Subject: [PATCH 276/312] [202311] Revert bgp suppress fib pending (#3109) * Revert "[config/show] Add command to control pending FIB suppression (#2495)" This reverts commit 9126e7f8ab66427096b16c6e305d075767be49eb. * Revert "Revert "Revert frr route check (#2761)" (#2762)" This reverts commit b4f4e63ed7310a1e8684a68eb4a33cc4a559bd6d. --- config/main.py | 16 +--- doc/Command-Reference.md | 38 --------- scripts/route_check.py | 105 +------------------------ show/main.py | 11 --- tests/mock_tables/config_db.json | 3 +- tests/route_check_test.py | 17 +--- tests/route_check_test_data.py | 120 ----------------------------- tests/suppress_pending_fib_test.py | 34 -------- 8 files changed, 9 insertions(+), 335 deletions(-) delete mode 100644 tests/suppress_pending_fib_test.py diff --git a/config/main.py b/config/main.py index 630facb4..3bdb31a1 100644 --- a/config/main.py +++ b/config/main.py @@ -1771,7 +1771,7 @@ def load_minigraph(db, no_service_restart, traffic_shift_away, override_config, cfggen_namespace_option = ['-n', str(namespace)] clicommon.run_command([db_migrator, '-o', 'set_version'] + cfggen_namespace_option) - # Keep device isolated with TSA + # Keep device isolated with TSA if traffic_shift_away: clicommon.run_command(["TSA"], display_cmd=True) if override_config: @@ -2056,21 +2056,9 @@ def synchronous_mode(sync_mode): config reload -y \n Option 2. systemctl restart swss""" % sync_mode) -# -# 'suppress-fib-pending' command ('config suppress-fib-pending ...') -# -@config.command('suppress-fib-pending') -@click.argument('state', metavar='', required=True, type=click.Choice(['enabled', 'disabled'])) -@clicommon.pass_db -def suppress_pending_fib(db, state): - ''' Enable or disable pending FIB suppression. Once enabled, BGP will not advertise routes that are not yet installed in the hardware ''' - - config_db = db.cfgdb - config_db.mod_entry('DEVICE_METADATA' , 'localhost', {"suppress-fib-pending" : state}) - # # 'yang_config_validation' command ('config yang_config_validation ...') -# +# @config.command('yang_config_validation') @click.argument('yang_config_validation', metavar='', required=True) def yang_config_validation(yang_config_validation): diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 3e64103a..13489eb7 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -2447,26 +2447,6 @@ This command displays the routing policy that takes precedence over the other ro Exit routemap ``` -**show suppress-fib-pending** - -This command is used to show the status of suppress pending FIB feature. -When enabled, BGP will not advertise routes which aren't yet offloaded. - -- Usage: - ``` - show suppress-fib-pending - ``` - -- Examples: - ``` - admin@sonic:~$ show suppress-fib-pending - Enabled - ``` - ``` - admin@sonic:~$ show suppress-fib-pending - Disabled - ``` - Go Back To [Beginning of the document](#) or [Beginning of this section](#bgp) ### BGP config commands @@ -2559,24 +2539,6 @@ This command is used to remove particular IPv4 or IPv6 BGP neighbor configuratio admin@sonic:~$ sudo config bgp remove neighbor SONIC02SPINE ``` -**config suppress-fib-pending** - -This command is used to enable or disable announcements of routes not yet installed in the HW. -Once enabled, BGP will not advertise routes which aren't yet offloaded. - -- Usage: - ``` - config suppress-fib-pending - ``` - -- Examples: - ``` - admin@sonic:~$ sudo config suppress-fib-pending enabled - ``` - ``` - admin@sonic:~$ sudo config suppress-fib-pending disabled - ``` - Go Back To [Beginning of the document](#) or [Beginning of this section](#bgp) ## Console diff --git a/scripts/route_check.py b/scripts/route_check.py index 85d0539c..8af8393f 100755 --- a/scripts/route_check.py +++ b/scripts/route_check.py @@ -45,9 +45,8 @@ import time import signal import traceback -import subprocess - from ipaddress import ip_network + from swsscommon import swsscommon from utilities_common import chassis @@ -73,9 +72,6 @@ PRINT_MSG_LEN_MAX = 1000 -FRR_CHECK_RETRIES = 3 -FRR_WAIT_TIME = 15 - class Level(Enum): ERR = 'ERR' INFO = 'INFO' @@ -146,7 +142,7 @@ def add_prefix(ip): ip = ip + PREFIX_SEPARATOR + "32" else: ip = ip + PREFIX_SEPARATOR + "128" - return str(ip_network(ip)) + return ip def add_prefix_ifnot(ip): @@ -322,31 +318,6 @@ def get_route_entries(): return (selector, subs, sorted(rt)) -def is_suppress_fib_pending_enabled(): - """ - Returns True if FIB suppression is enabled, False otherwise - """ - cfg_db = swsscommon.ConfigDBConnector() - cfg_db.connect() - - state = cfg_db.get_entry('DEVICE_METADATA', 'localhost').get('suppress-fib-pending') - - return state == 'enabled' - - -def get_frr_routes(): - """ - Read routes from zebra through CLI command - :return frr routes dictionary - """ - - output = subprocess.check_output('show ip route json', shell=True) - routes = json.loads(output) - output = subprocess.check_output('show ipv6 route json', shell=True) - routes.update(json.loads(output)) - return routes - - def get_interfaces(): """ helper to read interface table from APPL-DB. @@ -523,61 +494,6 @@ def filter_out_standalone_tunnel_routes(routes): return updated_routes -def check_frr_pending_routes(): - """ - 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() - - for _, entries in frr_routes.items(): - for entry in entries: - if entry['protocol'] != 'bgp': - continue - - # TODO: Also handle VRF routes. Currently this script does not check for VRF routes so it would be incorrect for us - # to assume they are installed in ASIC_DB, so we don't handle them. - if entry['vrfName'] != 'default': - continue - - if not entry.get('offloaded', False): - missed_rt.append(entry) - - if not missed_rt: - break - - time.sleep(FRR_WAIT_TIME) - - return missed_rt - - -def mitigate_installed_not_offloaded_frr_routes(missed_frr_rt, rt_appl): - """ - Mitigate installed but not offloaded FRR routes. - - In case route exists in APPL_DB, this function will manually send a notification to fpmsyncd - to trigger the flow that sends offload flag to zebra. - - It is designed to mitigate a problem when orchagent fails to send notification about installed route to fpmsyncd - or fpmsyncd not being able to read the notification or in case zebra fails to receive offload update due to variety of reasons. - 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) - 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'])]) - response_producer.send('SWSS_RC_SUCCESS', entry['prefix'], fvs) - - print_message(syslog.LOG_ERR, f'Mitigated route {entry["prefix"]}') - - def get_soc_ips(config_db): mux_table = config_db.get_table('MUX_CABLE') soc_ips = [] @@ -612,7 +528,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: @@ -679,16 +595,12 @@ def check_routes(): If there are still some unjustifiable diffs, between APPL & ASIC DB, related to routes report failure, else all good. - If there are FRR routes that aren't marked offloaded but all APPL & ASIC DB - routes are in sync report failure and perform a mitigation action. - :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 = [] results = {} adds = [] @@ -742,22 +654,11 @@ def check_routes(): if rt_asic_miss: results["Unaccounted_ROUTE_ENTRY_TABLE_entries"] = rt_asic_miss - rt_frr_miss = check_frr_pending_routes() - - if rt_frr_miss: - results["missed_FRR_routes"] = rt_frr_miss - 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!") diff --git a/show/main.py b/show/main.py index 725556e6..096e4e4a 100755 --- a/show/main.py +++ b/show/main.py @@ -2128,17 +2128,6 @@ def peer(db, peer_ip): click.echo(tabulate(bfd_body, bfd_headers)) -# 'suppress-fib-pending' subcommand ("show suppress-fib-pending") -@cli.command('suppress-fib-pending') -@clicommon.pass_db -def suppress_pending_fib(db): - """ Show the status of suppress pending FIB feature """ - - field_values = db.cfgdb.get_entry('DEVICE_METADATA', 'localhost') - state = field_values.get('suppress-fib-pending', 'disabled').title() - click.echo(state) - - # Load plugins and register them helper = util_base.UtilHelper() helper.load_and_register_plugins(plugins, cli) diff --git a/tests/mock_tables/config_db.json b/tests/mock_tables/config_db.json index 2a81f96b..8b4b9345 100644 --- a/tests/mock_tables/config_db.json +++ b/tests/mock_tables/config_db.json @@ -883,8 +883,7 @@ "mac": "1d:34:db:16:a6:00", "platform": "x86_64-mlnx_msn3800-r0", "peer_switch": "sonic-switch", - "type": "ToRRouter", - "suppress-fib-pending": "enabled" + "type": "ToRRouter" }, "SNMP_COMMUNITY|msft": { "TYPE": "RO" diff --git a/tests/route_check_test.py b/tests/route_check_test.py index 118e9eab..85e6a64a 100644 --- a/tests/route_check_test.py +++ b/tests/route_check_test.py @@ -7,7 +7,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, DESCR, OP_DEL, OP_SET, PRE, RESULT, RET, TEST_DATA, UPD import pytest @@ -239,7 +239,6 @@ def setup(self): def init(self): route_check.UNIT_TESTING = 1 - route_check.FRR_WAIT_TIME = 0 @pytest.fixture def force_hang(self): @@ -259,8 +258,7 @@ def mock_dbs(self): 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("route_check.swsscommon.NotificationProducer"): + patch("route_check.swsscommon.ConfigDBConnector", return_value=mock_config_db): device_info.get_platform = MagicMock(return_value='unittest') set_mock(mock_table, mock_conn, mock_sel, mock_subs, mock_config_db) yield @@ -274,16 +272,7 @@ def test_route_check(self, mock_dbs, test_num): set_test_case_data(ct_data) logger.info("Running test case {}: {}".format(test_num, ct_data[DESCR])) - with patch('sys.argv', ct_data[ARGS].split()), \ - patch('route_check.subprocess.check_output') as mock_check_output: - - routes = ct_data.get(FRR_ROUTES, {}) - - def side_effect(*args, **kwargs): - return json.dumps(routes) - - mock_check_output.side_effect = side_effect - + with patch('sys.argv', ct_data[ARGS].split()): ret, res = route_check.main() expect_ret = ct_data[RET] if RET in ct_data else 0 expect_res = ct_data[RESULT] if RESULT in ct_data else None diff --git a/tests/route_check_test_data.py b/tests/route_check_test_data.py index b0f3e997..0f0f74bf 100644 --- a/tests/route_check_test_data.py +++ b/tests/route_check_test_data.py @@ -6,7 +6,6 @@ CONFIG_DB = 4 PRE = "pre-value" UPD = "update" -FRR_ROUTES = "frr-routes" RESULT = "res" OP_SET = "SET" @@ -363,125 +362,6 @@ } } }, - "10": { - DESCR: "basic good one, check FRR routes", - 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" }, - }, - 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", - }, - ], - }, - }, - "11": { - DESCR: "failure test case, missing FRR routes", - 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" }, - }, - 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", - }, - ], - }, - RESULT: { - "missed_FRR_routes": [ - {"prefix": "10.10.196.12/31", "vrfName": "default", "protocol": "bgp"} - ], - }, - RET: -1, - }, - "10": { - DESCR: "basic good one with IPv6 address", - ARGS: "route_check -m INFO -i 1000", - PRE: { - APPL_DB: { - ROUTE_TABLE: { - }, - INTF_TABLE: { - "PortChannel1013:2000:31:0:0::1/64": {}, - } - }, - ASIC_DB: { - RT_ENTRY_TABLE: { - RT_ENTRY_KEY_PREFIX + "2000:31::1/128" + RT_ENTRY_KEY_SUFFIX: {}, - } - } - } - }, "11": { DESCR: "dualtor ignore vlan neighbor route miss case", ARGS: "route_check -i 15", diff --git a/tests/suppress_pending_fib_test.py b/tests/suppress_pending_fib_test.py deleted file mode 100644 index 04064d30..00000000 --- a/tests/suppress_pending_fib_test.py +++ /dev/null @@ -1,34 +0,0 @@ -from click.testing import CliRunner - -import config.main as config -import show.main as show -from utilities_common.db import Db - - -class TestSuppressFibPending: - def test_synchronous_mode(self): - runner = CliRunner() - - db = Db() - - result = runner.invoke(config.config.commands['suppress-fib-pending'], ['enabled'], obj=db) - print(result.output) - assert result.exit_code == 0 - assert db.cfgdb.get_entry('DEVICE_METADATA' , 'localhost')['suppress-fib-pending'] == 'enabled' - - result = runner.invoke(show.cli.commands['suppress-fib-pending'], obj=db) - assert result.exit_code == 0 - assert result.output == 'Enabled\n' - - result = runner.invoke(config.config.commands['suppress-fib-pending'], ['disabled'], obj=db) - print(result.output) - assert result.exit_code == 0 - assert db.cfgdb.get_entry('DEVICE_METADATA' , 'localhost')['suppress-fib-pending'] == 'disabled' - - result = runner.invoke(show.cli.commands['suppress-fib-pending'], obj=db) - assert result.exit_code == 0 - assert result.output == 'Disabled\n' - - result = runner.invoke(config.config.commands['suppress-fib-pending'], ['invalid-input'], obj=db) - print(result.output) - assert result.exit_code != 0 From e9ae14d2e80deb6b3d7417f3a12ce61ba433becd 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 277/312] 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 3bdb31a1..5eb26346 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 0cea7c8f..f3ffe019 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) @@ -650,19 +696,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 00000000..d9ba49c5 --- /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 00000000..66fbc197 --- /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 dfecccd5..6ee4589a 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() @@ -858,3 +858,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 f7a71cec..c9f0c3a9 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 9c1d489ca5cd849020610c4a57664c675c64d321 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 278/312] 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 f3ffe019..a48da00f 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' @@ -1256,10 +1257,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 6ee4589a..2e5544be 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 @@ -904,3 +905,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 be6224a3446a6e091c29fb36d87d259205ea1688 Mon Sep 17 00:00:00 2001 From: ganglv <88995770+ganglyu@users.noreply.github.com> Date: Fri, 2 Feb 2024 00:43:10 +0800 Subject: [PATCH 279/312] [202311] Migrate GNMI table (#3138) --- scripts/db_migrator.py | 39 ++++++++++++- .../config_db/gnmi-configdb-expected.json | 15 +++++ .../config_db/gnmi-input.json | 15 +++++ .../config_db/gnmi-minigraph-expected.json | 15 +++++ tests/db_migrator_test.py | 56 +++++++++++++++++++ 5 files changed, 138 insertions(+), 2 deletions(-) create mode 100644 tests/db_migrator_input/config_db/gnmi-configdb-expected.json create mode 100644 tests/db_migrator_input/config_db/gnmi-input.json create mode 100644 tests/db_migrator_input/config_db/gnmi-minigraph-expected.json diff --git a/scripts/db_migrator.py b/scripts/db_migrator.py index a48da00f..f9a71430 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -59,7 +59,7 @@ def __init__(self, namespace, socket=None): none-zero values. build: sequentially increase within a minor version domain. """ - self.CURRENT_VERSION = 'version_202311_02' + self.CURRENT_VERSION = 'version_202311_03' self.TABLE_NAME = 'VERSIONS' self.TABLE_KEY = 'DATABASE' @@ -618,6 +618,30 @@ def migrate_telemetry(self): if not certs: self.configDB.set_entry("TELEMETRY", "certs", telemetry_data.get("certs")) + def migrate_gnmi(self): + # If there's GNMI table in CONFIG_DB, no need to migrate + gnmi = self.configDB.get_entry('GNMI', 'gnmi') + certs = self.configDB.get_entry('GNMI', 'certs') + if gnmi and certs: + return + if self.config_src_data: + if 'GNMI' in self.config_src_data: + # If there's GNMI in minigraph or golden config, copy configuration from config_src_data + gnmi_data = self.config_src_data['GNMI'] + log.log_notice('Migrate GNMI configuration') + if 'gnmi' in gnmi_data: + self.configDB.set_entry("GNMI", "gnmi", gnmi_data.get('gnmi')) + if 'certs' in gnmi_data: + self.configDB.set_entry("GNMI", "certs", gnmi_data.get('certs')) + else: + # If there's no minigraph or golden config, copy configuration from CONFIG_DB TELEMETRY table + gnmi = self.configDB.get_entry('TELEMETRY', 'gnmi') + if gnmi: + self.configDB.set_entry("GNMI", "gnmi", gnmi) + certs = self.configDB.get_entry('TELEMETRY', 'certs') + if certs: + self.configDB.set_entry("GNMI", "certs", certs) + def migrate_console_switch(self): # CONSOLE_SWITCH - add missing key if not self.config_src_data or 'CONSOLE_SWITCH' not in self.config_src_data: @@ -1159,9 +1183,20 @@ def version_202311_01(self): def version_202311_02(self): """ Version 202311_02. - This is current last erversion for 202311 branch """ log.log_info('Handling version_202311_02') + # Update GNMI table + self.migrate_gnmi() + + self.set_version('version_202311_03') + return 'version_202311_03' + + def version_202311_03(self): + """ + Version 202311_03. + This is current last erversion for 202311 branch + """ + log.log_info('Handling version_202311_03') return None def get_version(self): diff --git a/tests/db_migrator_input/config_db/gnmi-configdb-expected.json b/tests/db_migrator_input/config_db/gnmi-configdb-expected.json new file mode 100644 index 00000000..971c8099 --- /dev/null +++ b/tests/db_migrator_input/config_db/gnmi-configdb-expected.json @@ -0,0 +1,15 @@ +{ + "GNMI|gnmi": { + "client_auth": "true", + "log_level": "2", + "port": "50051" + }, + "GNMI|certs": { + "server_key": "/etc/sonic/telemetry/streamingtelemetryserver.key", + "ca_crt": "/etc/sonic/telemetry/dsmsroot.cer", + "server_crt": "/etc/sonic/telemetry/streamingtelemetryserver.cer" + }, + "VERSIONS|DATABASE": { + "VERSION": "version_202311_03" + } +} diff --git a/tests/db_migrator_input/config_db/gnmi-input.json b/tests/db_migrator_input/config_db/gnmi-input.json new file mode 100644 index 00000000..5fe666a6 --- /dev/null +++ b/tests/db_migrator_input/config_db/gnmi-input.json @@ -0,0 +1,15 @@ +{ + "TELEMETRY|gnmi": { + "client_auth": "true", + "log_level": "2", + "port": "50051" + }, + "TELEMETRY|certs": { + "server_key": "/etc/sonic/telemetry/streamingtelemetryserver.key", + "ca_crt": "/etc/sonic/telemetry/dsmsroot.cer", + "server_crt": "/etc/sonic/telemetry/streamingtelemetryserver.cer" + }, + "VERSIONS|DATABASE": { + "VERSION": "version_202311_01" + } +} diff --git a/tests/db_migrator_input/config_db/gnmi-minigraph-expected.json b/tests/db_migrator_input/config_db/gnmi-minigraph-expected.json new file mode 100644 index 00000000..442066e8 --- /dev/null +++ b/tests/db_migrator_input/config_db/gnmi-minigraph-expected.json @@ -0,0 +1,15 @@ +{ + "GNMI|gnmi": { + "client_auth": "true", + "log_level": "2", + "port": "50052" + }, + "GNMI|certs": { + "server_key": "/etc/sonic/telemetry/streamingtelemetryserver.key", + "ca_crt": "/etc/sonic/telemetry/dsmsroot.cer", + "server_crt": "/etc/sonic/telemetry/streamingtelemetryserver.cer" + }, + "VERSIONS|DATABASE": { + "VERSION": "version_202311_03" + } +} diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index 2e5544be..a917813f 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -920,3 +920,59 @@ 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() + + +class TestGNMIMigrator(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_gnmi_migrator_minigraph(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'gnmi-input') + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + # Set config_src_data + dbmgtr.config_src_data = { + 'GNMI': { + 'gnmi': { + "client_auth": "true", + "log_level": "2", + "port": "50052" + }, + 'certs': { + "server_key": "/etc/sonic/telemetry/streamingtelemetryserver.key", + "ca_crt": "/etc/sonic/telemetry/dsmsroot.cer", + "server_crt": "/etc/sonic/telemetry/streamingtelemetryserver.cer" + } + } + } + dbmgtr.migrate() + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'gnmi-minigraph-expected') + expected_db = Db() + advance_version_for_expected_database(dbmgtr.configDB, expected_db.cfgdb, 'version_202311_03') + resulting_table = dbmgtr.configDB.get_table("GNMI") + expected_table = expected_db.cfgdb.get_table("GNMI") + + diff = DeepDiff(resulting_table, expected_table, ignore_order=True) + assert not diff + + def test_gnmi_migrator_configdb(self): + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'gnmi-input') + import db_migrator + dbmgtr = db_migrator.DBMigrator(None) + # Set config_src_data + dbmgtr.config_src_data = {} + dbmgtr.migrate() + dbconnector.dedicated_dbs['CONFIG_DB'] = os.path.join(mock_db_path, 'config_db', 'gnmi-configdb-expected') + expected_db = Db() + advance_version_for_expected_database(dbmgtr.configDB, expected_db.cfgdb, 'version_202311_03') + resulting_table = dbmgtr.configDB.get_table("GNMI") + expected_table = expected_db.cfgdb.get_table("GNMI") + + diff = DeepDiff(resulting_table, expected_table, ignore_order=True) + assert not diff From f4b5ef218d9b2e40ff0bfeb0fd51b737bb72d140 Mon Sep 17 00:00:00 2001 From: Stephen Sun <5379172+stephenxs@users.noreply.github.com> Date: Fri, 26 Jan 2024 04:25:04 +0800 Subject: [PATCH 280/312] Add all SKUs to the generic config update list (#3131) --- .../gcu_field_operation_validators.conf.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/generic_config_updater/gcu_field_operation_validators.conf.json b/generic_config_updater/gcu_field_operation_validators.conf.json index f447b0d8..6fa65be2 100644 --- a/generic_config_updater/gcu_field_operation_validators.conf.json +++ b/generic_config_updater/gcu_field_operation_validators.conf.json @@ -17,10 +17,11 @@ "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-C28D8", "Mellanox-SN2700-D40C8S8", "Mellanox-SN2700-D44C10", "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" ], + "spc2": [ "ACS-MSN3800", "Mellanox-SN3800-D112C8", "ACS-MSN3420", "ACS-MSN3700C", "ACS-MSN3700", "Mellanox-SN3800-C64", "Mellanox-SN3800-D100C12S2", "Mellanox-SN3800-D24C52", "Mellanox-SN3800-D28C49S1", "Mellanox-SN3800-D28C50" ], + "spc3": [ "ACS-MSN4700", "ACS-MSN4600", "ACS-MSN4600C", "ACS-MSN4410", "Mellanox-SN4600C-D112C8", "Mellanox-SN4600C-C64", "Mellanox-SN4700-O8C48", "Mellanox-SN4600C-D100C12S2", "Mellanox-SN4600C-D48C40", + "Mellanox-SN4700-A96C8V8", "Mellanox-SN4700-C128", "Mellanox-SN4700-O28", "Mellanox-SN4700-O8V48", "Mellanox-SN4700-V48C32"], "spc4": [ "ACS-SN5600"] }, "broadcom_asics": { From 8862c114e8d223680d9628aa794bfffbbce7067a Mon Sep 17 00:00:00 2001 From: Saikrishna Arcot Date: Wed, 13 Dec 2023 19:06:30 -0800 Subject: [PATCH 281/312] 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 34238b3f..d5151b69 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 1515edcb576a1c0cef281462b43a4134552d6c19 Mon Sep 17 00:00:00 2001 From: Sudharsan Dhamal Gopalarathnam Date: Thu, 14 Dec 2023 17:23:50 -0800 Subject: [PATCH 282/312] [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 f9a71430..2bbd40d4 100755 --- a/scripts/db_migrator.py +++ b/scripts/db_migrator.py @@ -693,28 +693,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): """ @@ -1243,8 +1221,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 7f48e64e..00000000 --- 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 3b93a36c..00000000 --- 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 a917813f..e8f66bf1 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -692,41 +692,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 555ecf649200d4e185acc8350fcbd2546200d635 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 283/312] [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 837ced3b..db0fb6b7 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 bfcae471..886c681b 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -343,11 +343,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 de20194a..4bb4c9d9 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 00000000..c64a3d34 --- /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 00000000..b89597e1 --- /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 f9fa66a0..1cded681 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 00000000..62f7dfc8 --- /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 00000000..b177ea7d --- /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 58e8d910..814cc84b 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 88c027f023bcf47ef44c310ee52ff20ca53aec83 Mon Sep 17 00:00:00 2001 From: Sudharsan Dhamal Gopalarathnam Date: Fri, 12 Jan 2024 11:15:42 -0800 Subject: [PATCH 284/312] [Techsupport]Adding more FRR and BGP dumps (#3118) --- scripts/generate_dump | 64 +++++++++++++++++++++++++++++++++++++++---- 1 file changed, 58 insertions(+), 6 deletions(-) diff --git a/scripts/generate_dump b/scripts/generate_dump index 6b46333d..fb4b2517 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -694,6 +694,23 @@ save_bgp_info() { save_vtysh "show bgp ipv6 summary" "bgp.ipv6.summary" save_vtysh "show bgp ipv6 neighbors" "bgp.ipv6.neighbors" save_vtysh "show bgp ipv6" "bgp.ipv6.table" + save_vtysh "show ip bgp vrf all" "bgp.vrf.all" + save_vtysh "show ip bgp vrf all summary json" "bgp.vrf.all.summary.json" + save_vtysh "show ip bgp vrf all neighbors json" "bgp.vrf.all.neigh.json" + save_vtysh "show ip bgp vrf all nexthop" "bgp.vrf.all.nexthop" + save_vtysh "show ip bgp vrf all update-group" "bgp.vrf.all.nexthop" + save_vtysh "show bgp vrfs json" "bgp.vrf.json" + save_vtysh "show bgp vrf all ipv4 unicast summary json" "bgp.vrf.all.ipv4uc.summary.json" + save_vtysh "show bgp vrf all ipv6 unicast summary json" "bgp.vrf.all.ipv6uc.summary.json" + save_vtysh "show bgp vrf all ipv4 unicast detail json" "bgp.vrf.all.ipv4uc.detail.json" + save_vtysh "show bgp vrf all ipv6 unicast detail json" "bgp.vrf.all.ipv6uc.detail.json" + save_vtysh "show bgp vrf all ipv4 unicast update-group" "bgp.vrf.all.ipv4uc.update_group" + save_vtysh "show bgp vrf all ipv6 unicast update-group" "bgp.vrf.all.ipv6uc.update_group" + save_vtysh "show bgp vrf all ipv4 unicast route-leak json" "bgp.vrf.all.ipv4uc.route_leak.json" + save_vtysh "show bgp vrf all ipv6 unicast route-leak json" "bgp.vrf.all.ipv6uc.route_leak.json" + save_vtysh "show bgp ipv4 labeled-unicast" "bgp.ipv4.labeled_unicast" + save_vtysh "show bgp ipv6 labeled-unicast" "bgp.ipv6.labeled_unicast" + save_vtysh "show bgp mac hash" "bgp.mac.hash" save_bgp_neighbor_all_ns } @@ -709,9 +726,25 @@ save_bgp_info() { save_evpn_info() { trap 'handle_error $? $LINENO' ERR save_vtysh "show bgp l2vpn evpn" "bgp.l2vpn.evpn" - save_vtysh "show bgp l2vpn evpn route detail" "bgp.evpn.route" - save_vtysh "show evpn vni detail" "bgp.evpn.vni" - save_vtysh "show evpn arp-cache vni all" "bgp.evpn.arp" + save_vtysh "show bgp l2vpn evpn summary json" "bgp.evpn.summary.json" + save_vtysh "show bgp l2vpn evpn route" "bgp.evpn.route" + save_vtysh "show bgp l2vpn evpn route detail" "bgp.evpn.route.detail" + save_vtysh "show bgp l2vpn evpn vni json" "bgp.evpn.vni.json" + save_vtysh "show bgp l2vpn evpn import-rt json" "bgp.evpn.import-rt.json" + save_vtysh "show bgp l2vpn evpn vrf-import-rt json" "bgp.evpn.vrf_import-rt.json" + save_vtysh "show bgp l2vpn evpn update-groups" "bgp.evpn.update_groups" + save_vtysh "show bgp l2vpn evpn next-hops json" "bgp.evpn.next_hops.json" + save_vtysh "show bgp vni all" "bgp.vni.all" + save_vtysh "show bgp vni all detail" "bgp.vni.all.detail" + save_vtysh "show evpn vni detail json" "evpn.vni.json" + save_vtysh "show evpn access-vlan json" "evpn.access_vlan.json" + save_vtysh "show evpn arp-cache vni all" "evpn.arp" + save_vtysh "show evpn json" "evpn.json" + save_vtysh "show evpn l2-nh json" "evpn.l2_nh.json" + save_vtysh "show evpn mac vni all" "evpn.mac.vni" + save_vtysh "show evpn arp-cache vni all" "evpn.arp_cache.vni" + save_vtysh "show evpn rmac vni all json" "evpn.rmac.vni.json" + save_vtysh "show evpn next-hops vni all json" "evpn.next_hops.vni.json" save_bgp_evpn_neighbor_all_ns } ############################################################################### @@ -726,12 +759,31 @@ save_evpn_info() { save_frr_info() { trap 'handle_error $? $LINENO' ERR save_vtysh "show running-config" "frr.running_config" - save_vtysh "show ip route vrf all" "frr.ip_route" - save_vtysh "show ipv6 route vrf all" "frr.ip6_route" + save_vtysh "show ip route vrf all nexthop-group" "frr.ip_route.nhg" + save_vtysh "show ipv6 route vrf all nexthop-group" "frr.ip6_route.nhg" save_vtysh "show zebra fpm stats" "frr.fpm.stats" save_vtysh "show zebra dplane detailed" "frr.dplane" save_vtysh "show interface vrf all" "frr.interfaces" - save_vtysh "show zebra client summary" "frr.client" + save_vtysh "show zebra" "frr.zebra" + save_vtysh "show zebra client" "frr.zebra.client" + save_vtysh "show zebra client summary" "frr.zebra.client.summary" + save_vtysh "show zebra router table summary" "frr.zebra.router.table.summary" + save_vtysh "show vrf" "frr.vrf" + save_vtysh "show vrf vni" "frr.vrf.vni" + save_vtysh "show ip nht vrf all" "frr.ip.nht.vrf.all" + save_vtysh "show ipv6 nht vrf all" "frr.ipv6.nht.vrf.all" + save_vtysh "show mpls table" "frr.mpls.table" + save_vtysh "show mpls fec" "frr.mpls.fec" + save_vtysh "show nexthop-group rib" "frr.nhg.rib" + save_vtysh "show thread cpu" "frr.thread_cpu" + save_vtysh "show thread poll" "frr.thread_poll" + save_vtysh "show debugging hashtable" "frr.debugging_hashtable" + save_vtysh "show work-queues" "frr.work_queues" + save_vtysh "show memory" "frr.memory" + save_vtysh "show modules" "frr.modules" + save_vtysh "show version" "frr.version" + save_vtysh "show debugging" "frr.debugging" + save_vtysh "show logging" "frr.logging" } ############################################################################### From fbd6c9161d0952e61028bc5fd49cfff6ab9104af Mon Sep 17 00:00:00 2001 From: selvipal Date: Thu, 11 Jan 2024 08:28:30 -0800 Subject: [PATCH 285/312] 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 c2bfe8d5..d76ddcc0 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 From 2046e66cafba9e4dcade775d781342bb35e683bb 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 286/312] 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 fb4b2517..486b902b 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -1663,9 +1663,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 @@ -1676,9 +1676,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 31a6584cc250552cc2f4166ee828de1f88623830 Mon Sep 17 00:00:00 2001 From: Mai Bui Date: Tue, 6 Feb 2024 04:06:36 -0500 Subject: [PATCH 287/312] Fix `sudo config load_mgmt_config` fails with error "File /var/run/dhclient.eth0.pid does not exist" (#3149) * Fix load_mgmt_config not exit when dhclient.eth0.pid not exists Signed-off-by: Mai Bui * add UT Signed-off-by: Mai Bui --------- Signed-off-by: Mai Bui --- config/main.py | 20 +++-- tests/config_test.py | 171 +++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 175 insertions(+), 16 deletions(-) diff --git a/config/main.py b/config/main.py index 5eb26346..a64a26a9 100644 --- a/config/main.py +++ b/config/main.py @@ -1683,17 +1683,15 @@ def load_mgmt_config(filename): clicommon.run_command(command, display_cmd=True, ignore_error=True) if len(config_data['MGMT_INTERFACE'].keys()) > 0: filepath = '/var/run/dhclient.eth0.pid' - if not os.path.isfile(filepath): - sys.exit('File {} does not exist'.format(filepath)) - - out0, rc0 = clicommon.run_command(['cat', filepath], display_cmd=True, return_cmd=True) - if rc0 != 0: - sys.exit('Exit: {}. Command: cat {} failed.'.format(rc0, filepath)) - - out1, rc1 = clicommon.run_command(['kill', str(out0).strip('\n')], return_cmd=True) - if rc1 != 0: - sys.exit('Exit: {}. Command: kill {} failed.'.format(rc1, out0)) - clicommon.run_command(['rm', '-f', filepath], display_cmd=True, return_cmd=True) + if os.path.isfile(filepath): + out0, rc0 = clicommon.run_command(['cat', filepath], display_cmd=True, return_cmd=True) + if rc0 != 0: + sys.exit('Exit: {}. Command: cat {} failed.'.format(rc0, filepath)) + + out1, rc1 = clicommon.run_command(['kill', str(out0).strip('\n')], display_cmd=True, return_cmd=True) + if rc1 != 0: + sys.exit('Exit: {}. Command: kill {} failed.'.format(rc1, out0)) + clicommon.run_command(['rm', '-f', filepath], display_cmd=True, return_cmd=True) click.echo("Please note loaded setting will be lost after system reboot. To preserve setting, run `config save`.") @config.command("load_minigraph") diff --git a/tests/config_test.py b/tests/config_test.py index c773ad29..cc0ac22e 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -70,7 +70,8 @@ Running command: ifconfig eth0 10.0.0.100 netmask 255.255.255.0 Running command: ip route add default via 10.0.0.1 dev eth0 table default Running command: ip rule add from 10.0.0.100 table default -Running command: kill `cat /var/run/dhclient.eth0.pid` +Running command: cat /var/run/dhclient.eth0.pid +Running command: kill 101 Running command: rm -f /var/run/dhclient.eth0.pid Please note loaded setting will be lost after system reboot. To preserve setting, run `config save`. """ @@ -82,7 +83,8 @@ Running command: ifconfig eth0 add fc00:1::32/64 Running command: ip -6 route add default via fc00:1::1 dev eth0 table default Running command: ip -6 rule add from fc00:1::32 table default -Running command: kill `cat /var/run/dhclient.eth0.pid` +Running command: cat /var/run/dhclient.eth0.pid +Running command: kill 101 Running command: rm -f /var/run/dhclient.eth0.pid Please note loaded setting will be lost after system reboot. To preserve setting, run `config save`. """ @@ -97,11 +99,41 @@ Running command: ifconfig eth0 add fc00:1::32/64 Running command: ip -6 route add default via fc00:1::1 dev eth0 table default Running command: ip -6 rule add from fc00:1::32 table default -Running command: kill `cat /var/run/dhclient.eth0.pid` +Running command: cat /var/run/dhclient.eth0.pid +Running command: kill 101 Running command: rm -f /var/run/dhclient.eth0.pid Please note loaded setting will be lost after system reboot. To preserve setting, run `config save`. """ +load_mgmt_config_command_ipv4_ipv6_cat_failed_output="""\ +Running command: /usr/local/bin/sonic-cfggen -M device_desc.xml --write-to-db +parse dummy device_desc.xml +change hostname to dummy +Running command: ifconfig eth0 10.0.0.100 netmask 255.255.255.0 +Running command: ip route add default via 10.0.0.1 dev eth0 table default +Running command: ip rule add from 10.0.0.100 table default +Running command: ifconfig eth0 add fc00:1::32/64 +Running command: ip -6 route add default via fc00:1::1 dev eth0 table default +Running command: ip -6 rule add from fc00:1::32 table default +Running command: cat /var/run/dhclient.eth0.pid +Exit: 2. Command: cat /var/run/dhclient.eth0.pid failed. +""" + +load_mgmt_config_command_ipv4_ipv6_kill_failed_output="""\ +Running command: /usr/local/bin/sonic-cfggen -M device_desc.xml --write-to-db +parse dummy device_desc.xml +change hostname to dummy +Running command: ifconfig eth0 10.0.0.100 netmask 255.255.255.0 +Running command: ip route add default via 10.0.0.1 dev eth0 table default +Running command: ip rule add from 10.0.0.100 table default +Running command: ifconfig eth0 add fc00:1::32/64 +Running command: ip -6 route add default via fc00:1::1 dev eth0 table default +Running command: ip -6 rule add from fc00:1::32 table default +Running command: cat /var/run/dhclient.eth0.pid +Running command: kill 104 +Exit: 4. Command: kill 104 failed. +""" + RELOAD_CONFIG_DB_OUTPUT = """\ Stopping SONiC target ... Running command: /usr/local/bin/sonic-cfggen -j /tmp/config.json --write-to-db @@ -143,8 +175,6 @@ def mock_run_command_side_effect(*args, **kwargs): command = ' '.join(command) if kwargs.get('display_cmd'): - if 'cat /var/run/dhclient.eth0.pid' in command: - command = 'kill `cat /var/run/dhclient.eth0.pid`' click.echo(click.style("Running command: ", fg='cyan') + click.style(command, fg='green')) if kwargs.get('return_cmd'): @@ -154,6 +184,54 @@ def mock_run_command_side_effect(*args, **kwargs): return 'sonic.target\nswss', 0 elif command == "systemctl is-enabled snmp.timer": return 'enabled', 0 + elif command == 'cat /var/run/dhclient.eth0.pid': + return '101', 0 + else: + return '', 0 + +def mock_run_command_cat_failed_side_effect(*args, **kwargs): + command = args[0] + if isinstance(command, str): + command = command + elif isinstance(command, list): + command = ' '.join(command) + + if kwargs.get('display_cmd'): + click.echo(click.style("Running command: ", fg='cyan') + click.style(command, fg='green')) + + if kwargs.get('return_cmd'): + if command == "systemctl list-dependencies --plain sonic-delayed.target | sed '1d'": + return 'snmp.timer', 0 + elif command == "systemctl list-dependencies --plain sonic.target": + return 'sonic.target\nswss', 0 + elif command == "systemctl is-enabled snmp.timer": + return 'enabled', 0 + elif command == 'cat /var/run/dhclient.eth0.pid': + return '102', 2 + else: + return '', 0 + +def mock_run_command_kill_failed_side_effect(*args, **kwargs): + command = args[0] + if isinstance(command, str): + command = command + elif isinstance(command, list): + command = ' '.join(command) + + if kwargs.get('display_cmd'): + click.echo(click.style("Running command: ", fg='cyan') + click.style(command, fg='green')) + + if kwargs.get('return_cmd'): + if command == "systemctl list-dependencies --plain sonic-delayed.target | sed '1d'": + return 'snmp.timer', 0 + elif command == "systemctl list-dependencies --plain sonic.target": + return 'sonic.target\nswss', 0 + elif command == "systemctl is-enabled snmp.timer": + return 'enabled', 0 + elif command == 'cat /var/run/dhclient.eth0.pid': + return '104', 0 + elif command == 'kill 104': + return 'Failed to kill 104', 4 else: return '', 0 @@ -1663,6 +1741,89 @@ def change_hostname_side_effect(hostname): assert "\n".join([l.rstrip() for l in result.output.split('\n')]) == expected_output assert mock_run_command.call_count == expected_command_call_count + + def test_config_load_mgmt_config_ipv4_ipv6_cat_failed(self, get_cmd_module, setup_single_broadcom_asic): + device_desc_result = { + 'DEVICE_METADATA': { + 'localhost': { + 'hostname': 'dummy' + } + }, + 'MGMT_INTERFACE': { + ('eth0', '10.0.0.100/24') : { + 'gwaddr': ipaddress.ip_address(u'10.0.0.1') + }, + ('eth0', 'FC00:1::32/64') : { + 'gwaddr': ipaddress.ip_address(u'fc00:1::1') + } + } + } + self.check_output_cat_failed(get_cmd_module, device_desc_result, load_mgmt_config_command_ipv4_ipv6_cat_failed_output, 8) + + def check_output_cat_failed(self, get_cmd_module, parse_device_desc_xml_result, expected_output, expected_command_call_count): + def parse_device_desc_xml_side_effect(filename): + print("parse dummy device_desc.xml") + return parse_device_desc_xml_result + def change_hostname_side_effect(hostname): + print("change hostname to {}".format(hostname)) + with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_cat_failed_side_effect)) as mock_run_command: + with mock.patch('os.path.isfile', mock.MagicMock(return_value=True)): + with mock.patch('config.main.parse_device_desc_xml', mock.MagicMock(side_effect=parse_device_desc_xml_side_effect)): + with mock.patch('config.main._change_hostname', mock.MagicMock(side_effect=change_hostname_side_effect)): + (config, show) = get_cmd_module + runner = CliRunner() + with runner.isolated_filesystem(): + with open('device_desc.xml', 'w') as f: + f.write('dummy') + result = runner.invoke(config.config.commands["load_mgmt_config"], ["-y", "device_desc.xml"]) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code == 1 + assert "\n".join([l.rstrip() for l in result.output.split('\n')]) == expected_output + assert mock_run_command.call_count == expected_command_call_count + + def test_config_load_mgmt_config_ipv4_ipv6_kill_failed(self, get_cmd_module, setup_single_broadcom_asic): + device_desc_result = { + 'DEVICE_METADATA': { + 'localhost': { + 'hostname': 'dummy' + } + }, + 'MGMT_INTERFACE': { + ('eth0', '10.0.0.100/24') : { + 'gwaddr': ipaddress.ip_address(u'10.0.0.1') + }, + ('eth0', 'FC00:1::32/64') : { + 'gwaddr': ipaddress.ip_address(u'fc00:1::1') + } + } + } + self.check_output_kill_failed(get_cmd_module, device_desc_result, load_mgmt_config_command_ipv4_ipv6_kill_failed_output, 9) + + def check_output_kill_failed(self, get_cmd_module, parse_device_desc_xml_result, expected_output, expected_command_call_count): + def parse_device_desc_xml_side_effect(filename): + print("parse dummy device_desc.xml") + return parse_device_desc_xml_result + def change_hostname_side_effect(hostname): + print("change hostname to {}".format(hostname)) + with mock.patch("utilities_common.cli.run_command", mock.MagicMock(side_effect=mock_run_command_kill_failed_side_effect)) as mock_run_command: + with mock.patch('os.path.isfile', mock.MagicMock(return_value=True)): + with mock.patch('config.main.parse_device_desc_xml', mock.MagicMock(side_effect=parse_device_desc_xml_side_effect)): + with mock.patch('config.main._change_hostname', mock.MagicMock(side_effect=change_hostname_side_effect)): + (config, show) = get_cmd_module + runner = CliRunner() + with runner.isolated_filesystem(): + with open('device_desc.xml', 'w') as f: + f.write('dummy') + result = runner.invoke(config.config.commands["load_mgmt_config"], ["-y", "device_desc.xml"]) + print(result.exit_code) + print(result.output) + traceback.print_tb(result.exc_info[2]) + assert result.exit_code == 1 + assert "\n".join([l.rstrip() for l in result.output.split('\n')]) == expected_output + assert mock_run_command.call_count == expected_command_call_count + @classmethod def teardown_class(cls): print("TEARDOWN") From 54595c1efc5cbe98fc9d52bd4dcea3e22121b795 Mon Sep 17 00:00:00 2001 From: Sudharsan Dhamal Gopalarathnam Date: Fri, 9 Feb 2024 15:48:12 -0800 Subject: [PATCH 288/312] [202311]Fix the sfputil treats page number as decimal instead of hexadecimal (#3153) (#3160) * Fix the sfputil treats page number as decimal instead of hexadecimal (#22) Signed-off-by: Kebo Liu Co-authored-by: Kebo Liu --- doc/Command-Reference.md | 4 ++-- sfputil/main.py | 42 +++++++++++++++++++++++++++++++--------- 2 files changed, 35 insertions(+), 11 deletions(-) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 13489eb7..80ae3da9 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -13023,7 +13023,7 @@ Usage: sfputil read-eeprom [OPTIONS] Options: -p, --port Logical port name [required] - -n, --page EEPROM page number [required] + -n, --page EEPROM page number in hex [required] -o, --offset EEPROM offset within the page [required] -s, --size Size of byte to be read [required] --no-format Display non formatted data @@ -13055,7 +13055,7 @@ Usage: sfputil write-eeprom [OPTIONS] Options: -p, --port Logical port name [required] - -n, --page EEPROM page number [required] + -n, --page EEPROM page number in hex [required] -o, --offset EEPROM offset within the page [required] -d, --data Hex string EEPROM data [required] --wire-addr TEXT Wire address of sff8472 diff --git a/sfputil/main.py b/sfputil/main.py index 0e59fbe8..eddc43f3 100644 --- a/sfputil/main.py +++ b/sfputil/main.py @@ -697,16 +697,20 @@ def eeprom(port, dump_dom, namespace): # 'eeprom-hexdump' subcommand @show.command() @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 ") +@click.option('-n', '--page', metavar='', help="Display SFP EEEPROM hexdump for ") def eeprom_hexdump(port, page): """Display EEPROM hexdump of SFP transceiver(s)""" if port: if page is None: page = 0 - return_code, output = eeprom_hexdump_single_port(port, page) + else: + page = validate_eeprom_page(page) + return_code, output = eeprom_hexdump_single_port(port, int(str(page), base=16)) click.echo(output) sys.exit(return_code) else: + if page is not None: + page = validate_eeprom_page(page) logical_port_list = natsorted(platform_sfputil.logical) lines = [] for logical_port_name in logical_port_list: @@ -718,6 +722,23 @@ def eeprom_hexdump(port, page): lines.append(output) click.echo('\n'.join(lines)) +def validate_eeprom_page(page): + """ + Validate input page module EEPROM + Args: + page: str page input by user + Returns: + int page + """ + try: + page = int(str(page), base=16) + except ValueError: + click.echo('Please enter a numeric page number') + sys.exit(ERROR_NOT_IMPLEMENTED) + if page < 0 or page > MAX_EEPROM_PAGE: + click.echo(f'Error: Invalid page number {page}') + sys.exit(ERROR_INVALID_PAGE) + return page def eeprom_hexdump_single_port(logical_port_name, page): """ @@ -810,7 +831,7 @@ def eeprom_hexdump_pages_general(logical_port_name, pages, target_page): 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'] + lines = [f'EEPROM hexdump for port {logical_port_name} page {target_page:x}h'] else: lines = [f'EEPROM hexdump for port {logical_port_name}'] physical_port = logical_port_to_physical_port_index(logical_port_name) @@ -851,7 +872,7 @@ def eeprom_hexdump_pages_sff8472(logical_port_name, pages, target_page): 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'] + lines = [f'EEPROM hexdump for port {logical_port_name} page {target_page:x}h'] else: lines = [f'EEPROM hexdump for port {logical_port_name}'] physical_port = logical_port_to_physical_port_index(logical_port_name) @@ -1695,7 +1716,7 @@ def target(port_name, target): # '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('-n', '--page', metavar='', help="EEPROM page number in hex", 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") @@ -1723,6 +1744,8 @@ def read_eeprom(port, page, offset, size, no_format, wire_addr): api = sfp.get_xcvr_api() if api is None: click.echo('Error: SFP EEPROM not detected!') + if page is not None: + page = validate_eeprom_page(page) if not isinstance(api, sff8472.Sff8472Api): overall_offset = get_overall_offset_general(api, page, offset, size) else: @@ -1743,7 +1766,7 @@ def read_eeprom(port, page, offset, size, no_format, wire_addr): # '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('-n', '--page', metavar='', help="EEPROM page number in hex", 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") @@ -1777,7 +1800,8 @@ def write_eeprom(port, page, offset, data, wire_addr, verify): if api is None: click.echo('Error: SFP EEPROM not detected!') sys.exit(EXIT_FAIL) - + if page is not None: + page = validate_eeprom_page(page) if not isinstance(api, sff8472.Sff8472Api): overall_offset = get_overall_offset_general(api, page, offset, len(bytes)) else: @@ -1813,11 +1837,11 @@ def get_overall_offset_general(api, page, offset, size): """ if api.is_flat_memory(): if page != 0: - raise ValueError(f'Invalid page number {page}, only page 0 is supported') + raise ValueError(f'Invalid page number {page:x}h, 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]') + raise ValueError(f'Invalid offset {offset} for page {page:x}h, valid range: [80h, FFh]') if size + offset - 1 > MAX_EEPROM_OFFSET: raise ValueError(f'Invalid size {size}, valid range: [1, {255 - offset + 1}]') From b21257617755c5d9af061f9d60d131d012de82e6 Mon Sep 17 00:00:00 2001 From: Arvindsrinivasan Lakshmi Narasimhan <55814491+arlakshm@users.noreply.github.com> Date: Thu, 8 Feb 2024 09:20:59 -0800 Subject: [PATCH 289/312] [chassis] fix show bgp summary when no neighbors are present on one ASIC (#3158) This PR #3099 fixes the case where on chassis Linecard there are no BGP neighbors. However, if the Linecard has neighbors on one ASIC but not on other, the command show bgp summary displayed no neighbors. This PR fixes this. How I did it Add check in bgp_util to create empty peer list only once Add UT to cover this case --- tests/bgp_commands_test.py | 53 +++++++++-- tests/conftest.py | 23 ++++- .../asic0/show_ip_bgp_summary.json | 92 +++++++++++++++++++ utilities_common/bgp_util.py | 3 +- 4 files changed, 161 insertions(+), 10 deletions(-) create mode 100644 tests/mock_tables/asic0/show_ip_bgp_summary.json diff --git a/tests/bgp_commands_test.py b/tests/bgp_commands_test.py index db0fb6b7..a60ba8c8 100644 --- a/tests/bgp_commands_test.py +++ b/tests/bgp_commands_test.py @@ -280,11 +280,12 @@ Total number of neighbors 23 """ - -SHOW_BGP_SUMMARY_V4_NO_EXT_NEIGHBORS = """ +SHOW_BGP_SUMMARY_V4_NO_EXT_NEIGHBORS_ON_ALL_ASIC = """ IPv4 Unicast Summary: asic0: BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 BGP table version 8972 +asic1: BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 +BGP table version 8972 RIB entries 0, using 0 bytes of memory Peers 0, using 0 KiB of memory Peer groups 0, using 0 bytes of memory @@ -296,6 +297,24 @@ Total number of neighbors 0 """ +SHOW_BGP_SUMMARY_V4_NO_EXT_NEIGHBORS_ON_ASIC1 = """ +IPv4 Unicast Summary: +asic0: BGP router identifier 192.0.0.6, local AS number 65100 vrf-id 0 +BGP table version 59923 +asic1: BGP router identifier 10.1.0.32, local AS number 65100 vrf-id 0 +BGP table version 8972 +RIB entries 3, using 3 bytes of memory +Peers 3, using 3 KiB of memory +Peer groups 3, using 3 bytes of memory + + +Neighbhor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd NeighborName +----------- --- ----- --------- --------- -------- ----- ------ --------- -------------- -------------- +10.0.0.1 4 65222 4633 11029 0 0 0 00:18:33 8514 ARISTA01T2 + +Total number of neighbors 1 +""" + SHOW_BGP_SUMMARY_ALL_V4_NO_EXT_NEIGHBORS = """ IPv4 Unicast Summary: asic0: BGP router identifier 192.0.0.6, local AS number 65100 vrf-id 0 @@ -513,13 +532,14 @@ def test_bgp_summary_multi_asic_no_v6_neigh( assert result.exit_code == 0 assert result.output == show_error_no_v6_neighbor_multi_asic - @patch.object(bgp_util, 'get_external_bgp_neighbors_dict', mock.MagicMock(return_value={})) + @patch.object(multi_asic.MultiAsic, 'get_ns_list_based_on_options', mock.Mock(return_value=['asic0', 'asic1'])) @patch.object(multi_asic.MultiAsic, 'get_display_option', mock.MagicMock(return_value=constants.DISPLAY_EXTERNAL)) @pytest.mark.parametrize('setup_multi_asic_bgp_instance', - ['show_bgp_summary_no_ext_neigh_on_all_asic'], indirect=['setup_multi_asic_bgp_instance']) + ['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( + def test_bgp_summary_multi_asic_no_external_neighbors_on_all_asic( self, setup_bgp_commands, setup_multi_asic_bgp_instance): @@ -529,8 +549,27 @@ def test_bgp_summary_multi_asic_no_external_neighbor( 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 - + assert result.output == SHOW_BGP_SUMMARY_V4_NO_EXT_NEIGHBORS_ON_ALL_ASIC + + + @patch.object(multi_asic.MultiAsic, 'get_ns_list_based_on_options', mock.Mock(return_value=['asic0', 'asic1'])) + @patch.object(multi_asic.MultiAsic, 'get_display_option', mock.MagicMock(return_value=constants.DISPLAY_EXTERNAL)) + @pytest.mark.parametrize('setup_multi_asic_bgp_instance', + ['show_bgp_summary_no_ext_neigh_on_asic1'], + indirect=['setup_multi_asic_bgp_instance']) + @patch.object(device_info, 'is_chassis', mock.MagicMock(return_value=True)) + def test_bgp_summary_multi_asic_no_external_neighbor_on_asic1( + self, + setup_bgp_commands, + setup_multi_asic_bgp_instance): + show = setup_bgp_commands + runner = CliRunner() + result = runner.invoke( + show.cli.commands["ip"].commands["bgp"].commands["summary"], []) + print("{}".format(result.output)) + assert result.exit_code == 0 + assert result.output == SHOW_BGP_SUMMARY_V4_NO_EXT_NEIGHBORS_ON_ASIC1 + @pytest.mark.parametrize('setup_multi_asic_bgp_instance', ['show_bgp_summary_no_ext_neigh_on_all_asic'], indirect=['setup_multi_asic_bgp_instance']) diff --git a/tests/conftest.py b/tests/conftest.py index 886c681b..fd859ccc 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -357,8 +357,25 @@ def mock_run_show_summ_bgp_command_no_ext_neigh_on_all_asic(vtysh_cmd, bgp_names return mock_frr_data else: return "" - - + + def mock_run_show_summ_bgp_command_no_ext_neigh_on_asic1(vtysh_cmd, bgp_namespace, vtysh_shell_cmd=constants.VTYSH_COMMAND): + if vtysh_cmd == "show ip bgp summary json": + if bgp_namespace == "asic1": + m_asic_json_file = 'no_ext_bgp_neigh.json' + else: + m_asic_json_file = 'show_ip_bgp_summary.json' + else: + m_asic_json_file = 'device_bgp_info.json' + + bgp_mocked_json = os.path.join( + test_path, 'mock_tables', bgp_namespace, m_asic_json_file) + if os.path.isfile(bgp_mocked_json): + with open(bgp_mocked_json) as json_data: + mock_frr_data = json_data.read() + return mock_frr_data + else: + return "" + _old_run_bgp_command = bgp_util.run_bgp_command if request.param == 'ip_route_for_int_ip': bgp_util.run_bgp_command = mock_run_bgp_command_for_static @@ -366,6 +383,8 @@ def mock_run_show_summ_bgp_command_no_ext_neigh_on_all_asic(vtysh_cmd, bgp_names bgp_util.run_bgp_command = mock_run_show_sum_bgp_command elif request.param == 'show_bgp_summary_no_ext_neigh_on_all_asic': bgp_util.run_bgp_command = mock_run_show_summ_bgp_command_no_ext_neigh_on_all_asic + elif request.param == 'show_bgp_summary_no_ext_neigh_on_asic1': + bgp_util.run_bgp_command = mock_run_show_summ_bgp_command_no_ext_neigh_on_asic1 else: bgp_util.run_bgp_command = mock_run_bgp_command diff --git a/tests/mock_tables/asic0/show_ip_bgp_summary.json b/tests/mock_tables/asic0/show_ip_bgp_summary.json new file mode 100644 index 00000000..5db42728 --- /dev/null +++ b/tests/mock_tables/asic0/show_ip_bgp_summary.json @@ -0,0 +1,92 @@ +{ +"ipv4Unicast":{ + "routerId":"192.0.0.6", + "as":65100, + "vrfId":0, + "vrfName":"default", + "tableVersion":59923, + "ribCount":163, + "ribMemory":29992, + "peerCount":3, + "peerMemory":3704040, + "peerGroupCount":3, + "peerGroupMemory":128, + "peers":{ + "3.3.3.2":{ + "hostname":"svcstr-sonic-lc1-1", + "remoteAs":65100, + "localAs":65100, + "version":4, + "msgRcvd":127, + "msgSent":123, + "tableVersion":0, + "outq":0, + "inq":0, + "peerUptime":"00:05:26", + "peerUptimeMsec":326000, + "peerUptimeEstablishedEpoch":1707332746, + "pfxRcd":16, + "pfxSnt":12, + "state":"Established", + "peerState":"OK", + "connectionsEstablished":1, + "connectionsDropped":0, + "desc":"ASIC1", + "idType":"ipv4" + }, + "3.3.3.8":{ + "hostname":"svcstr-sonic-lc2-1", + "remoteAs":65100, + "localAs":65100, + "version":4, + "msgRcvd":129, + "msgSent":123, + "tableVersion":0, + "outq":0, + "inq":0, + "peerUptime":"00:05:26", + "peerUptimeMsec":326000, + "peerUptimeEstablishedEpoch":1707332746, + "pfxRcd":18, + "pfxSnt":12, + "state":"Established", + "peerState":"OK", + "connectionsEstablished":1, + "connectionsDropped":0, + "desc":"svcstr-sonic-lc2-1-ASIC1", + "idType":"ipv4" + }, + "10.0.0.1":{ + "hostname":"ARISTA01T2", + "remoteAs":65222, + "localAs":65200, + "version":4, + "msgRcvd":4633, + "msgSent":11029, + "tableVersion":0, + "outq":0, + "inq":0, + "peerUptime":"00:18:33", + "peerUptimeMsec":326000, + "peerUptimeEstablishedEpoch":1707332746, + "pfxRcd":8514, + "pfxSnt":12, + "state":"Established", + "peerState":"OK", + "connectionsEstablished":1, + "connectionsDropped":0, + "desc":"ARISTA01T2", + "idType":"ipv4" + } + + }, + "failedPeers":0, + "displayedPeers": 5, + "totalPeers":5, + "dynamicPeers":0, + "bestPath":{ + "multiPathRelax":"true", + "peerTypeRelax":true + } +} +} diff --git a/utilities_common/bgp_util.py b/utilities_common/bgp_util.py index 814cc84b..64054662 100644 --- a/utilities_common/bgp_util.py +++ b/utilities_common/bgp_util.py @@ -401,7 +401,8 @@ def process_bgp_summary_json(bgp_summary, cmd_output, device, has_bgp_neighbors= bgp_summary.setdefault('peers', []).append(peers) else: - bgp_summary['peers'] = [] + if 'peers' not in bgp_summary: + bgp_summary['peers'] = [] except KeyError as e: ctx = click.get_current_context() ctx.fail("{} missing in the bgp_summary".format(e.args[0])) From c711b061c8af6a50c74e97c87d3c1cb9b906648d Mon Sep 17 00:00:00 2001 From: Stephen Sun <5379172+stephenxs@users.noreply.github.com> Date: Mon, 5 Feb 2024 16:04:15 +0800 Subject: [PATCH 290/312] [Mellanox buffer migrator] Do not touch the buffer model on generic SKUs if the buffer configuration is empty (#3114) ### What I did Do not touch the buffer model on generic SKUs if the buffer configuration is empty. #### How I did it Set the buffer model to traditional on generic SKUs in Mellanox db migrator only if the buffer configuration is not default and not empty. #### How to verify it Manually and mock test. ### Details #### Buffer configuration contains two parts: 1. the buffer model in `DEVICE_METADATA|localhost` which is from `init_cfg.json` and can be updated by Mellanox buffer migrator 2. the buffer pools, profiles, PGs, and queues which are renderred from the buffer templates in `config qos reload` There was a logic to update the buffer model in Mellanox buffer migrator: if the buffer configuration is not default, the buffer model is set to traditional. However, if a device is installed from ONIE, the buffer configuration is also empty. As a result, the traditional buffer manager starts after the device is installed from ONIE, and it requires to restart the buffer manager to switch to the dynamic model. This can be done only by `config reload`. It didn't matter since it was required to execute `config qos reload` to complete buffer configuration which required `config save` and `config reload` in any case due to issue https://github.com/sonic-net/sonic-buildimage/issues/9088. Now that the issue has been fixed and `config reload` isn't required anymore to complete `config qos reload`, we should avoid setting the buffer model to traditional in such case, otherwise `config reload` is still required to switch the buffer model. Verified the following scenarios: 1. non-default configuration generic SKU upgrade from 202305: warm/cold boot: expected: traditional model 2. default configuration generic SKU upgrade from 201911/202305: warm/cold boot: expected: dynamic model 3. install from ONIE: expected: dynamic model 4. MSFT SKU upgrade from 201911 by cold boot/ from 202012 by warm boot: expected: traditional model --- scripts/mellanox_buffer_migrator.py | 6 +++++- ...pty-config-with-device-info-generic-expected.json | 11 +++++++++++ .../empty-config-with-device-info-generic-input.json | 6 ++++++ ...config-with-device-info-traditional-expected.json | 12 ++++++++++++ ...ty-config-with-device-info-traditional-input.json | 6 ++++++ tests/db_migrator_test.py | 2 ++ 6 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 tests/db_migrator_input/config_db/empty-config-with-device-info-generic-expected.json create mode 100644 tests/db_migrator_input/config_db/empty-config-with-device-info-generic-input.json create mode 100644 tests/db_migrator_input/config_db/empty-config-with-device-info-traditional-expected.json create mode 100644 tests/db_migrator_input/config_db/empty-config-with-device-info-traditional-input.json diff --git a/scripts/mellanox_buffer_migrator.py b/scripts/mellanox_buffer_migrator.py index 187e77af..a01e8665 100755 --- a/scripts/mellanox_buffer_migrator.py +++ b/scripts/mellanox_buffer_migrator.py @@ -117,6 +117,7 @@ def __init__(self, configDB, appDB, stateDB): self.default_speed_list = ['1000', '10000', '25000', '40000', '50000', '100000', '200000', '400000'] self.default_cable_len_list = ['5m', '40m', '300m'] self.is_buffer_config_default = True + self.is_buffer_config_empty = False mellanox_default_parameter = { "version_1_0_2": { @@ -645,7 +646,10 @@ def mlnx_migrate_buffer_pool_size(self, old_version, new_version): # If some buffer pool is not default ones, don't need migrate for buffer_pool in default_buffer_pool_list_old: if buffer_pool not in configdb_buffer_pool_names and buffer_pool != 'ingress_lossy_pool': + # Check whether it's empty buffer configuration log.log_notice("Default pool {} isn't in CONFIG_DB, skip buffer pool migration".format(buffer_pool)) + if not self.configDB.get_keys('BUFFER_*'): + self.is_buffer_config_empty = True return True default_buffer_pools_old = self.mlnx_default_buffer_parameters(old_version, "buffer_pools") @@ -818,7 +822,7 @@ def mlnx_flush_new_buffer_configuration(self): if not self.ready: return True - if not self.is_buffer_config_default or self.is_msft_sku: + if not self.is_buffer_config_default and not self.is_buffer_config_empty or self.is_msft_sku: log.log_notice("No item pending to be updated") metadata = self.configDB.get_entry('DEVICE_METADATA', 'localhost') metadata['buffer_model'] = 'traditional' diff --git a/tests/db_migrator_input/config_db/empty-config-with-device-info-generic-expected.json b/tests/db_migrator_input/config_db/empty-config-with-device-info-generic-expected.json new file mode 100644 index 00000000..2c06c3ff --- /dev/null +++ b/tests/db_migrator_input/config_db/empty-config-with-device-info-generic-expected.json @@ -0,0 +1,11 @@ +{ + "VERSIONS|DATABASE": { + "VERSION": "version_3_0_3" + }, + "DEVICE_METADATA|localhost": { + "synchronous_mode": "enable", + "docker_routing_config_mode": "separated", + "platform": "x86_64-mlnx_msn2700-r0", + "hwsku": "ACS-MSN2700" + } +} diff --git a/tests/db_migrator_input/config_db/empty-config-with-device-info-generic-input.json b/tests/db_migrator_input/config_db/empty-config-with-device-info-generic-input.json new file mode 100644 index 00000000..eca9dc52 --- /dev/null +++ b/tests/db_migrator_input/config_db/empty-config-with-device-info-generic-input.json @@ -0,0 +1,6 @@ +{ + "DEVICE_METADATA|localhost": { + "platform": "x86_64-mlnx_msn2700-r0", + "hwsku": "ACS-MSN2700" + } +} diff --git a/tests/db_migrator_input/config_db/empty-config-with-device-info-traditional-expected.json b/tests/db_migrator_input/config_db/empty-config-with-device-info-traditional-expected.json new file mode 100644 index 00000000..009ccdc7 --- /dev/null +++ b/tests/db_migrator_input/config_db/empty-config-with-device-info-traditional-expected.json @@ -0,0 +1,12 @@ +{ + "VERSIONS|DATABASE": { + "VERSION": "version_3_0_3" + }, + "DEVICE_METADATA|localhost": { + "buffer_model": "traditional", + "synchronous_mode": "enable", + "docker_routing_config_mode": "separated", + "platform": "x86_64-mlnx_msn2700-r0", + "hwsku": "Mellanox-SN2700" + } +} diff --git a/tests/db_migrator_input/config_db/empty-config-with-device-info-traditional-input.json b/tests/db_migrator_input/config_db/empty-config-with-device-info-traditional-input.json new file mode 100644 index 00000000..9aa91c21 --- /dev/null +++ b/tests/db_migrator_input/config_db/empty-config-with-device-info-traditional-input.json @@ -0,0 +1,6 @@ +{ + "DEVICE_METADATA|localhost": { + "platform": "x86_64-mlnx_msn2700-r0", + "hwsku": "Mellanox-SN2700" + } +} diff --git a/tests/db_migrator_test.py b/tests/db_migrator_test.py index e8f66bf1..433d0a52 100644 --- a/tests/db_migrator_test.py +++ b/tests/db_migrator_test.py @@ -154,6 +154,8 @@ def check_appl_db(self, result, expected): @pytest.mark.parametrize('scenario', ['empty-config', + 'empty-config-with-device-info-generic', + 'empty-config-with-device-info-traditional', 'non-default-config', 'non-default-xoff', 'non-default-lossless-profile-in-pg', From 891a5a36ab5f7fa64b25ce3f69bbcda8058f42a1 Mon Sep 17 00:00:00 2001 From: dennis_chiu Date: Wed, 3 Jul 2024 17:22:57 +0800 Subject: [PATCH 291/312] remove exec from the platform_reboot call when executing reboot in kdump kernel --- scripts/reboot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/reboot b/scripts/reboot index 2d1cd8a8..63f4939b 100755 --- a/scripts/reboot +++ b/scripts/reboot @@ -14,7 +14,7 @@ if [ -e $VMCORE_FILE -a -s $VMCORE_FILE ]; then sync PLATFORM=$(grep -oP 'sonic_platform=\K\S+' /proc/cmdline) if [ ! -z "${PLATFORM}" -a -x ${DEVPATH}/${PLATFORM}/${PLAT_REBOOT} ]; then - exec ${DEVPATH}/${PLATFORM}/${PLAT_REBOOT} + ${DEVPATH}/${PLATFORM}/${PLAT_REBOOT} fi # If no platform-specific reboot tool, just run /sbin/reboot /sbin/reboot From 276f6482efd36674efb33c4d77dc1d60de76fc46 Mon Sep 17 00:00:00 2001 From: Peter-TSW Date: Fri, 5 Jul 2024 11:53:11 +0800 Subject: [PATCH 292/312] Fix the error of running "show storm-control interface" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CLI shows an error when trying to show the storm control configuration. This PR is to fix the error of running "show storm-control interface". ```shell admin@sonic:~$ show storm-control interface Ethernet0 Traceback (most recent call last):   File "/usr/local/bin/show", line 8, in     sys.exit(cli())   File "/usr/local/lib/python3.9/dist-packages/click/core.py", line 764, in __call__     return self.main(*args, **kwargs)   File "/usr/local/lib/python3.9/dist-packages/click/core.py", line 717, in main     rv = self.invoke(ctx)   File "/usr/local/lib/python3.9/dist-packages/click/core.py", line 1137, in invoke     return _process_result(sub_ctx.command.invoke(sub_ctx))   File "/usr/local/lib/python3.9/dist-packages/click/core.py", line 1137, in invoke     return _process_result(sub_ctx.command.invoke(sub_ctx))   File "/usr/local/lib/python3.9/dist-packages/click/core.py", line 956, in invoke     return ctx.invoke(self.callback, **ctx.params)   File "/usr/local/lib/python3.9/dist-packages/click/core.py", line 555, in invoke     return callback(*args, **kwargs) TypeError: interface() missing 2 required positional arguments: 'namespace' and 'display' ``` ```shell admin@sonic:~$ show storm-control interface Ethernet0 +------------------+--------------+---------------+---------------------+ | Interface Name | Storm Type | Rate (kbps) | Burst Size(kbits) | +==================+==============+===============+=====================+ | Ethernet0 | broadcast | 10000 | default | +------------------+--------------+---------------+---------------------+ ``` --- show/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/show/main.py b/show/main.py index 096e4e4a..039fdbd2 100755 --- a/show/main.py +++ b/show/main.py @@ -472,6 +472,7 @@ def storm_control(ctx, namespace, display): click.echo(tabulate(body, header, tablefmt="grid")) @storm_control.command('interface') +@multi_asic_util.multi_asic_click_options @click.argument('interface', metavar='',required=True) def interface(interface, namespace, display): if multi_asic.is_multi_asic() and namespace not in multi_asic.get_namespace_list(): From 6905870340f0e805f73c08afe848aa6d04cb0a21 Mon Sep 17 00:00:00 2001 From: chiourung_huang Date: Mon, 8 Jul 2024 06:52:40 +0000 Subject: [PATCH 293/312] [DPB] Enhance the code to shutdown interface before delete ports Enhancement done in this commit: Check the admin status on the ports to be deleted. If the port admin status is up, do shutdown ports. If the port admin status is down, do nothing. Wait until the admin status of the ports to be removed on state DB has changed to down. Signed-off-by: chiourung_huang chiourung_huang@edge-core.com --- config/config_mgmt.py | 33 +++++++++++++++++++++++++++++++- tests/config_mgmt_test.py | 7 +++++-- tests/mock_tables/config_db.json | 1 + 3 files changed, 38 insertions(+), 3 deletions(-) diff --git a/config/config_mgmt.py b/config/config_mgmt.py index 4e3115bd..62ec32cc 100644 --- a/config/config_mgmt.py +++ b/config/config_mgmt.py @@ -378,6 +378,31 @@ def _checkNoPortsInAsicDb(self, db, ports, portMap): return True + def _verifyPortShutdown(self, db, ports, timeout): + self.sysLog(doPrint=True, msg="Verify Port shutdown from State DB, Wait...") + + db.connect(db.STATE_DB) + for waitTime in range(timeout): + retry = False + for intf in ports: + _hash = "PORT_TABLE|{}".format(intf) + port_status = db.get(db.STATE_DB, _hash, "admin_status") + if port_status != 'down': + retry = True + continue + if retry: + tsleep(1) + else: + break + + if waitTime + 1 == timeout: + for intf in ports: + _hash = "PORT_TABLE|{}".format(intf) + port_status = db.get(db.STATE_DB, _hash, "admin_status") + if port_status != 'down': + self.sysLog(syslog.LOG_CRIT, "Fail to shutdown port {}".format(intf)) + + def _verifyAsicDB(self, db, ports, portMap, timeout): ''' Verify in the Asic DB that port are deleted, Keep on trying till timeout @@ -457,6 +482,7 @@ def breakOutPort(self, delPorts=list(), portJson=dict(), force=False, \ # -- verify Asic DB for port deletion, # -- then update addition of ports in config DB. self._shutdownIntf(delPorts) + self._verifyPortShutdown(dataBase, delPorts, MAX_WAIT) self.writeConfigDB(delConfigToLoad) # Verify in Asic DB, self._verifyAsicDB(db=dataBase, ports=delPorts, portMap=if_name_map, \ @@ -603,9 +629,14 @@ def _shutdownIntf(self, ports): Returns: void """ + configdb = ConfigDBConnector() + configdb.connect(False) shutDownConf = dict(); shutDownConf["PORT"] = dict() for intf in ports: - shutDownConf["PORT"][intf] = {"admin_status": "down"} + port_entry = configdb.get_entry('PORT', intf) + port_status = port_entry.get("admin_status") + if port_status == "up": + shutDownConf["PORT"][intf] = {"admin_status": "down"} self.sysLog(msg='shutdown Interfaces: {}'.format(shutDownConf)) if len(shutDownConf["PORT"]): diff --git a/tests/config_mgmt_test.py b/tests/config_mgmt_test.py index b09fdd6b..69e1dff2 100644 --- a/tests/config_mgmt_test.py +++ b/tests/config_mgmt_test.py @@ -188,8 +188,10 @@ def test_shutdownIntf_call(self): args = args[0] assert "PORT" in args - # {"admin_status": "down"} should be set for all ports in dPorts - assert len(args["PORT"]) == len(dPorts) + # {"admin_status": "down"} should be set for Ethernet8 + # The admin_status of Ethernet8 is 'up'. + # Only need to shutdown Ethernet8 + assert len(args["PORT"]) == 1 # each port should have {"admin_status": "down"} for port in args["PORT"].keys(): assert args["PORT"][port]['admin_status'] == 'down' @@ -227,6 +229,7 @@ def config_mgmt_dpb(self, curConfig): # mock funcs cmdpb.writeConfigDB = mock.MagicMock(return_value=True) cmdpb._verifyAsicDB = mock.MagicMock(return_value=True) + cmdpb._verifyPortShutdown = mock.MagicMock(return_value=True) from .mock_tables import dbconnector return cmdpb diff --git a/tests/mock_tables/config_db.json b/tests/mock_tables/config_db.json index 8b4b9345..79021303 100644 --- a/tests/mock_tables/config_db.json +++ b/tests/mock_tables/config_db.json @@ -24,6 +24,7 @@ "brkout_mode": "1x100G[40G]" }, "PORT|Ethernet0": { + "admin_status": "up", "alias": "etp1", "description": "etp1", "index": "0", From 3fc3273639ddad9782008a88564689214c4314a0 Mon Sep 17 00:00:00 2001 From: bryan1978 Date: Thu, 24 Aug 2023 06:17:12 +0000 Subject: [PATCH 294/312] apply: Fix yang model checking failed for MGMT_PORT #2601 [storm_control] CLI show error when trying to show the configuration with the specified interface #2729 --- config/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/config/main.py b/config/main.py index a64a26a9..2f97cd56 100644 --- a/config/main.py +++ b/config/main.py @@ -4556,6 +4556,7 @@ def add(ctx, interface_name, ip_addr, gw): config_db.set_entry("MGMT_INTERFACE", (interface_name, str(ip_address)), {"NULL": "NULL"}) else: config_db.set_entry("MGMT_INTERFACE", (interface_name, str(ip_address)), {"gwaddr": gw}) + config_db.set_entry("MGMT_PORT", interface_name, {"admin_status": "up", "alias": interface_name}) return From 22ca1a314e62911a65eafe1405ea7db8fd013d8e Mon Sep 17 00:00:00 2001 From: PJHsieh <49477291+PJHsieh@users.noreply.github.com> Date: Mon, 8 Jul 2024 07:10:03 +0000 Subject: [PATCH 295/312] [LT] Not allow configuring link-training at RJ45 ports * Skip RJ-45 interfaces * Add unit test case to resolve coverage error --- scripts/portconfig | 4 ++++ tests/config_lt_test.py | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/scripts/portconfig b/scripts/portconfig index acdebcc2..a1c39ed2 100755 --- a/scripts/portconfig +++ b/scripts/portconfig @@ -160,6 +160,10 @@ class portconfig(object): if self.is_lag: raise Exception("Invalid port %s" % (port)) + if self.is_rj45_port: + print("Setting RJ45 ports' link-training is not supported") + exit(1) + if self.verbose: print("Setting link-training %s on port %s" % (mode, port)) lt_modes = ['on', 'off'] diff --git a/tests/config_lt_test.py b/tests/config_lt_test.py index 8e8c1d6f..529e9a77 100644 --- a/tests/config_lt_test.py +++ b/tests/config_lt_test.py @@ -38,6 +38,11 @@ def test_config_link_training(self, ctx): result = self.basic_check("link-training", ["PortChannel0001", "on"], ctx, operator.ne) assert 'Invalid port PortChannel0001' in result.output + result = self.basic_check("link-training", ["Ethernet16", "on"], ctx, operator.ne) + assert "Setting RJ45 ports' link-training is not supported" in result.output + result = self.basic_check("link-training", ["Ethernet16", "off"], ctx, operator.ne) + assert "Setting RJ45 ports' link-training is not supported" in result.output + def basic_check(self, command_name, para_list, ctx, op=operator.eq, expect_result=0): runner = CliRunner() result = runner.invoke(config.config.commands["interface"].commands[command_name], para_list, obj = ctx) From 3e46c542e26b1cbc4dde045270fffab688c300fd Mon Sep 17 00:00:00 2001 From: PeterTSW-EC Date: Tue, 16 Jul 2024 10:28:35 +0800 Subject: [PATCH 296/312] [Bug] SONiC Extension Packages Migration Error During New SONiC Image Install * In 17/05/2023, SONiC updates the format of CLI section in the manifest.json. * The implementation was updated in 202311 or later branches. * However, the PR #2753 reported there is a error occur when the CLI migration. * The root cause is occurred while a CLI field (show/config/clear) is empty (''). * This PR modifies the parser of the cli_plugins field in the manifest.py. --- sonic_package_manager/manifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonic_package_manager/manifest.py b/sonic_package_manager/manifest.py index 865db7ef..f18b9a7f 100644 --- a/sonic_package_manager/manifest.py +++ b/sonic_package_manager/manifest.py @@ -88,7 +88,7 @@ def marshal(self, value): raise ManifestError(f'{value} has items not of type {self.type.__name__}') return value elif isinstance(value, self.type): - return [value] + return [] if not value else [value] else: raise ManifestError(f'{value} is not of type {self.type.__name__}') From a5d34c54a5987189f7cff4751dbc5bada2c43757 Mon Sep 17 00:00:00 2001 From: rayx_huang Date: Wed, 29 Nov 2023 02:25:10 +0000 Subject: [PATCH 297/312] Add doc for "config rate smoothing-interval" What I did? Update doc/Command-Reference.md --- doc/Command-Reference.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/doc/Command-Reference.md b/doc/Command-Reference.md index 80ae3da9..eebe843c 100644 --- a/doc/Command-Reference.md +++ b/doc/Command-Reference.md @@ -149,6 +149,8 @@ * [Radius](#radius) * [Radius show commands](#show-radius-commands) * [Radius config commands](#Radius-config-commands) +* [Rate](#rate) + * [Rate config commands](#rate-config-commands) * [sFlow](#sflow) * [sFlow Show commands](#sflow-show-commands) * [sFlow Config commands](#sflow-config-commands) @@ -9190,6 +9192,28 @@ This command is to config the radius server for various parameter listed. timeout Specify RADIUS server global timeout <1 - 60> ``` + +## Rate + +### Rate config commands + +**config rate smoothing-interval** + +This commnad is used to change the window size of exponential moving average to make +the rates and utilization values more smooth in the output of "show interface counters" + +- Usage: + ``` + config rate smoothing-interval + ``` + +- Example: + ``` + admin@sonic:~$ sudo config rate smoothing-interval 20 + ``` + +Go Back To [Beginning of the document](#) or [Beginning of this section](#rate) + ## sFlow ### sFlow Show commands From 685aa65a859a55249342ba1e045118063afb799f Mon Sep 17 00:00:00 2001 From: irene_pan Date: Tue, 23 Jul 2024 06:31:06 +0000 Subject: [PATCH 298/312] Avoid show management_interface address failed if no default gateway Signed-off-by: irene_pan irene_pan@edge-core.com --- show/main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/show/main.py b/show/main.py index 039fdbd2..e778a7dd 100755 --- a/show/main.py +++ b/show/main.py @@ -528,7 +528,10 @@ def address (): mgmt_ip_data = config_db.get_table('MGMT_INTERFACE') for key in natsorted(list(mgmt_ip_data.keys())): click.echo("Management IP address = {0}".format(key[1])) - click.echo("Management Network Default Gateway = {0}".format(mgmt_ip_data[key]['gwaddr'])) + if mgmt_ip_data[key].get('gwaddr') is not None: + click.echo("Management Network Default Gateway = {0}".format(mgmt_ip_data[key]['gwaddr'])) + else: + click.echo("Management Network Default Gateway = ") # # 'snmpagentaddress' group ("show snmpagentaddress ...") From 64daa912b570cfe7eb6b16efd994e99154bfaa58 Mon Sep 17 00:00:00 2001 From: irene_pan Date: Tue, 23 Jul 2024 06:31:06 +0000 Subject: [PATCH 299/312] Avoid show management_interface address failed if no default gateway Signed-off-by: irene_pan irene_pan@edge-core.com --- show/main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/show/main.py b/show/main.py index 039fdbd2..e778a7dd 100755 --- a/show/main.py +++ b/show/main.py @@ -528,7 +528,10 @@ def address (): mgmt_ip_data = config_db.get_table('MGMT_INTERFACE') for key in natsorted(list(mgmt_ip_data.keys())): click.echo("Management IP address = {0}".format(key[1])) - click.echo("Management Network Default Gateway = {0}".format(mgmt_ip_data[key]['gwaddr'])) + if mgmt_ip_data[key].get('gwaddr') is not None: + click.echo("Management Network Default Gateway = {0}".format(mgmt_ip_data[key]['gwaddr'])) + else: + click.echo("Management Network Default Gateway = ") # # 'snmpagentaddress' group ("show snmpagentaddress ...") From 4135f5ae7cbeca74d980ff8d7974f6dc51621656 Mon Sep 17 00:00:00 2001 From: Kelly Chen Date: Tue, 30 Jul 2024 15:48:53 +0800 Subject: [PATCH 300/312] Revert "When enabling mgmtvrf, NTP vrf needs to be configured as "mgmt"" From 55045b16df4c527d355b854f449961220244f587 Mon Sep 17 00:00:00 2001 From: irene_pan Date: Tue, 30 Jul 2024 08:02:02 +0000 Subject: [PATCH 301/312] When mgmtvrf is enabled, the NTP vrf should be changed to "mgmt" Signed-off-by: irene_pan irene_pan@edge-core.com --- config/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/main.py b/config/main.py index 2f97cd56..3033145f 100644 --- a/config/main.py +++ b/config/main.py @@ -3135,6 +3135,7 @@ def vrf_add_management_vrf(config_db): return None try: config_db.mod_entry('MGMT_VRF_CONFIG', "vrf_global", {"mgmtVrfEnabled": "true"}) + config_db.mod_entry('NTP', "global", {"vrf": "mgmt"}) except ValueError as e: ctx = click.get_current_context() ctx.fail("Invalid ConfigDB. Error: {}".format(e)) @@ -3149,6 +3150,7 @@ def vrf_delete_management_vrf(config_db): return None try: config_db.mod_entry('MGMT_VRF_CONFIG', "vrf_global", {"mgmtVrfEnabled": "false"}) + config_db.mod_entry('NTP', "global", {"vrf": "default"}) except ValueError as e: ctx = click.get_current_context() ctx.fail("Invalid ConfigDB. Error: {}".format(e)) From 2a66110e28375b4e248348e029e316dc45e262d1 Mon Sep 17 00:00:00 2001 From: ecsonic Date: Wed, 31 Jul 2024 07:55:55 +0000 Subject: [PATCH 302/312] [VRF] Wait to delete VRF completely before adding the same VRF. --- config/main.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/config/main.py b/config/main.py index 3033145f..8edfeca4 100644 --- a/config/main.py +++ b/config/main.py @@ -5432,6 +5432,9 @@ def vrf(ctx): config_db.connect() ctx.obj = {} ctx.obj['config_db'] = config_db + state_db = SonicV2Connector(host='127.0.0.1') + state_db.connect(state_db.STATE_DB, False) + ctx.obj['state_db'] = state_db @vrf.command('add') @click.argument('vrf_name', metavar='', required=True) @@ -5439,6 +5442,8 @@ def vrf(ctx): def add_vrf(ctx, vrf_name): """Add vrf""" config_db = ValidatedConfigDBConnector(ctx.obj['config_db']) + state_db = ctx.obj['state_db'] + if not vrf_name.startswith("Vrf") and not (vrf_name == 'mgmt') and not (vrf_name == 'management'): ctx.fail("'vrf_name' must begin with 'Vrf' or named 'mgmt'/'management' in case of ManagementVRF.") if len(vrf_name) > 15: @@ -5449,6 +5454,12 @@ def add_vrf(ctx, vrf_name): vrf_add_management_vrf(config_db) else: try: + state_db.connect(state_db.STATE_DB, False) + _hash = '{}{}'.format('VRF_OBJECT_TABLE|', vrf_name) + while state_db.exists(state_db.STATE_DB, _hash): + log.log_info("Wait to remove {}!!!".format(vrf_name)) + time.sleep(0.01) + state_db.close(state_db.STATE_DB) config_db.set_entry('VRF', vrf_name, {"NULL": "NULL"}) except ValueError as e: ctx.fail("Invalid ConfigDB. Error: {}".format(e)) From 02586f1875ecd2f6e88e741227865e58ee4dc0aa Mon Sep 17 00:00:00 2001 From: ecsonic Date: Thu, 1 Aug 2024 03:08:22 +0000 Subject: [PATCH 303/312] [VRF] fixing bug in order to get state db. --- config/main.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/config/main.py b/config/main.py index 8edfeca4..0077b360 100644 --- a/config/main.py +++ b/config/main.py @@ -5432,9 +5432,6 @@ def vrf(ctx): config_db.connect() ctx.obj = {} ctx.obj['config_db'] = config_db - state_db = SonicV2Connector(host='127.0.0.1') - state_db.connect(state_db.STATE_DB, False) - ctx.obj['state_db'] = state_db @vrf.command('add') @click.argument('vrf_name', metavar='', required=True) @@ -5442,7 +5439,8 @@ def vrf(ctx): def add_vrf(ctx, vrf_name): """Add vrf""" config_db = ValidatedConfigDBConnector(ctx.obj['config_db']) - state_db = ctx.obj['state_db'] + state_db = SonicV2Connector(host='127.0.0.1') + state_db.connect(state_db.STATE_DB, False) if not vrf_name.startswith("Vrf") and not (vrf_name == 'mgmt') and not (vrf_name == 'management'): ctx.fail("'vrf_name' must begin with 'Vrf' or named 'mgmt'/'management' in case of ManagementVRF.") From 1def4fd94a059074d893b34a728618c12a2b8e3c Mon Sep 17 00:00:00 2001 From: mulin_huang Date: Thu, 8 Aug 2024 16:29:30 +0800 Subject: [PATCH 304/312] [VRF] enhance "show vrf" command --- show/main.py | 31 ++++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/show/main.py b/show/main.py index e778a7dd..2c640512 100755 --- a/show/main.py +++ b/show/main.py @@ -146,7 +146,7 @@ def get_cmd_output(cmd): iface_alias_converter = lazy_object_proxy.Proxy(lambda: clicommon.InterfaceAliasConverter()) # -# Display all storm-control data +# Display all storm-control data # def display_storm_all(): """ Show storm-control """ @@ -312,17 +312,21 @@ def cli(ctx): # 'vrf' command ("show vrf") # -def get_interface_bind_to_vrf(config_db, vrf_name): - """Get interfaces belong to vrf +def get_interface_bind_to_vrf(config_db, vrf_name_list): + """Get all interfaces belong to all vrfs of vrf_name_list """ tables = ['INTERFACE', 'PORTCHANNEL_INTERFACE', 'VLAN_INTERFACE', 'LOOPBACK_INTERFACE', 'VLAN_SUB_INTERFACE'] - data = [] + data = {} for table_name in tables: interface_dict = config_db.get_table(table_name) if interface_dict: - for interface in interface_dict: - if 'vrf_name' in interface_dict[interface] and vrf_name == interface_dict[interface]['vrf_name']: - data.append(interface) + for vrf_name in vrf_name_list: + for interface in interface_dict: + if 'vrf_name' in interface_dict[interface] and vrf_name == interface_dict[interface]['vrf_name']: + if vrf_name in data: + data[vrf_name].append(interface) + else: + data[vrf_name] = [interface] return data @cli.command() @@ -340,12 +344,13 @@ def vrf(vrf_name): vrfs = list(vrf_dict.keys()) elif vrf_name in vrf_dict: vrfs = [vrf_name] + intfs_dict = get_interface_bind_to_vrf(config_db, vrfs) + vrfs.sort() for vrf in vrfs: - intfs = get_interface_bind_to_vrf(config_db, vrf) - intfs = natsorted(intfs) - if len(intfs) == 0: + if vrf not in intfs_dict: body.append([vrf, ""]) else: + intfs = intfs_dict[vrf] body.append([vrf, intfs[0]]) for intf in intfs[1:]: body.append(["", intf]) @@ -444,7 +449,7 @@ def is_mgmt_vrf_enabled(ctx): return False # -# 'storm-control' group +# 'storm-control' group # "show storm-control [interface ]" # @cli.group('storm-control', invoke_without_command=True) @@ -2094,7 +2099,7 @@ def summary(db): key_values = key.split('|') values = db.db.get_all(db.db.STATE_DB, key) if "local_discriminator" not in values.keys(): - values["local_discriminator"] = "NA" + values["local_discriminator"] = "NA" bfd_body.append([key_values[3], key_values[2], key_values[1], values["state"], values["type"], values["local_addr"], values["tx_interval"], values["rx_interval"], values["multiplier"], values["multihop"], values["local_discriminator"]]) @@ -2125,7 +2130,7 @@ def peer(db, peer_ip): key_values = key.split(delimiter) values = db.db.get_all(db.db.STATE_DB, key) if "local_discriminator" not in values.keys(): - values["local_discriminator"] = "NA" + values["local_discriminator"] = "NA" bfd_body.append([key_values[3], key_values[2], key_values[1], values.get("state"), values.get("type"), values.get("local_addr"), values.get("tx_interval"), values.get("rx_interval"), values.get("multiplier"), values.get("multihop"), values.get("local_discriminator")]) From 0a3454d6a523ea7f0eb96c957222f25231250aff Mon Sep 17 00:00:00 2001 From: mulin_huang Date: Thu, 18 Jul 2024 13:59:35 +0800 Subject: [PATCH 305/312] JIRA-SONIC-9482: [show] Fix exception error for "show ip route vrf all" - Fix the unexpected exception error that appears when running "show ip route vrf all" when key 'interfaceName' does not exist. - Revise some output formats to ensure brackets are properly paired. --- show/bgp_common.py | 5 ++++- tests/show_ip_route_common.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/show/bgp_common.py b/show/bgp_common.py index b51e9f18..17aaa5a9 100644 --- a/show/bgp_common.py +++ b/show/bgp_common.py @@ -77,7 +77,10 @@ def get_nexthop_info_str(nxhp_info, filterByIp): str_2_return = " (blackhole)" if "vrf" in nxhp_info: - str_2_return += "(vrf {}, {},".format(nxhp_info['vrf'], nxhp_info['interfaceName']) + str_2_return += " (vrf {}".format(nxhp_info['vrf']) + if 'interfaceName' in nxhp_info: + str_2_return += ", {}".format(nxhp_info['interfaceName']) + str_2_return += ")" if "active" not in nxhp_info: str_2_return += " inactive" if "onLink" in nxhp_info: diff --git a/tests/show_ip_route_common.py b/tests/show_ip_route_common.py index 101b2330..bedb8119 100644 --- a/tests/show_ip_route_common.py +++ b/tests/show_ip_route_common.py @@ -111,7 +111,7 @@ F - PBR, f - OpenFabric, > - selected route, * - FIB route, q - queued route, r - rejected route -C>*10.3.0.4/31 (blackhole)(vrf 2, PortChannel1014, inactive (recursive) 2d22h02m +C>*10.3.0.4/31 (blackhole) (vrf 2, PortChannel1014) inactive (recursive) 2d22h02m C>*10.5.0.4/31 (ICMP unreachable) inactive 2d22h02m C>*10.5.0.8/31 (ICMP admin-prohibited) inactive onlink, src 10.2.3.4 2d22h02m C> 10.6.0.8/31 inactive 2d22h02m From 07e5bf4bfd12c641780d0092ccc5dcb86c7476da Mon Sep 17 00:00:00 2001 From: twtseng-tim <59221293+twtseng-tim@users.noreply.github.com> Date: Mon, 12 Aug 2024 17:24:48 +0800 Subject: [PATCH 306/312] Fix VLAN member not removed from VLAN TABLE after executing the CLI --- show/vlan.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/show/vlan.py b/show/vlan.py index b27f282a..daa5be48 100644 --- a/show/vlan.py +++ b/show/vlan.py @@ -147,28 +147,28 @@ def config(db): member_data = db.cfgdb.get_table('VLAN_MEMBER') interface_naming_mode = clicommon.get_interface_naming_mode() iface_alias_converter = clicommon.InterfaceAliasConverter(db) - + def get_iface_name_for_display(member): name_for_display = member if interface_naming_mode == "alias" and member: name_for_display = iface_alias_converter.name_to_alias(member) return name_for_display - + def get_tagging_mode(vlan, member): if not member: return '' tagging_mode = db.cfgdb.get_entry('VLAN_MEMBER', (vlan, member)).get('tagging_mode') return '?' if tagging_mode is None else tagging_mode - + def tablelize(keys, data): table = [] for k in natsorted(keys): - members = set([(vlan, member) for vlan, member in member_data if vlan == k] + [(k, member) for member in set(data[k].get('members', []))]) + members = set([(vlan, member) for vlan, member in member_data if vlan == k]) # vlan with no members if not members: members = [(k, '')] - + for vlan, member in natsorted(members): r = [vlan, data[vlan]['vlanid'], get_iface_name_for_display(member), get_tagging_mode(vlan, member)] table.append(r) From b1acfcdf9cdd0dbc3baee7cbf01f4c64b517200b Mon Sep 17 00:00:00 2001 From: mihirpat1 <112018033+mihirpat1@users.noreply.github.com> Date: Wed, 28 Feb 2024 09:15:45 -0800 Subject: [PATCH 307/312] CLI enhancements to revtrieve data from TRANSCEIVER_FIRMWARE_INFO table (#3177) * Retrieve firmware version fields from TRANSCEIVER_FIRMWARE_INFO table Signed-off-by: Mihir Patel * Fixed test failures * Removed update_firmware_info_to_state_db function * Revert "Removed update_firmware_info_to_state_db function" This reverts commit 68f52a2c3352bc709ab2e3ffe793761f7176a4f0. --------- Signed-off-by: Mihir Patel --- scripts/sfpshow | 7 +++++-- sfputil/main.py | 11 ++++++----- tests/mock_tables/asic1/state_db.json | 6 ++++-- tests/mock_tables/state_db.json | 12 ++++++++---- tests/sfputil_test.py | 6 +----- 5 files changed, 24 insertions(+), 18 deletions(-) diff --git a/scripts/sfpshow b/scripts/sfpshow index 81add132..31c3ec8c 100755 --- a/scripts/sfpshow +++ b/scripts/sfpshow @@ -305,7 +305,7 @@ class SFPShow(object): return output # Convert sfp info in DB to cli output string - def convert_sfp_info_to_output_string(self, sfp_info_dict): + def convert_sfp_info_to_output_string(self, sfp_info_dict, sfp_firmware_info_dict): indent = ' ' * 8 output = '' is_sfp_cmis = 'cmis_rev' in sfp_info_dict @@ -333,6 +333,8 @@ class SFPShow(object): output += '{}N/A\n'.format((indent * 2)) elif key == 'application_advertisement': output += covert_application_advertisement_to_output_string(indent, sfp_info_dict) + elif key == 'active_firmware' or key == 'inactive_firmware': + output += '{}{}: {}\n'.format(indent, data_map[key], sfp_firmware_info_dict[key] if key in sfp_firmware_info_dict else 'N/A') else: output += '{}{}: {}\n'.format(indent, data_map[key], sfp_info_dict[key]) @@ -441,12 +443,13 @@ class SFPShow(object): output = '' sfp_info_dict = state_db.get_all(state_db.STATE_DB, 'TRANSCEIVER_INFO|{}'.format(interface_name)) + sfp_firmware_info_dict = state_db.get_all(state_db.STATE_DB, 'TRANSCEIVER_FIRMWARE_INFO|{}'.format(interface_name)) if sfp_info_dict: if sfp_info_dict['type'] == RJ45_PORT_TYPE: output = 'SFP EEPROM is not applicable for RJ45 port\n' else: output = 'SFP EEPROM detected\n' - sfp_info_output = self.convert_sfp_info_to_output_string(sfp_info_dict) + sfp_info_output = self.convert_sfp_info_to_output_string(sfp_info_dict, sfp_firmware_info_dict) output += sfp_info_output if dump_dom: diff --git a/sfputil/main.py b/sfputil/main.py index eddc43f3..23be1b4d 100644 --- a/sfputil/main.py +++ b/sfputil/main.py @@ -84,8 +84,6 @@ 'encoding': 'Encoding', 'connector': 'Connector', 'application_advertisement': 'Application Advertisement', - 'active_firmware': 'Active Firmware Version', - 'inactive_firmware': 'Inactive Firmware Version', 'hardware_rev': 'Hardware Revision', 'media_interface_code': 'Media Interface Code', 'host_electrical_interface': 'Host Electrical Interface', @@ -1314,9 +1312,12 @@ def update_firmware_info_to_state_db(port_name): state_db = SonicV2Connector(use_unix_socket_path=False, namespace=namespace) if state_db is not None: state_db.connect(state_db.STATE_DB) - active_firmware, inactive_firmware = platform_chassis.get_sfp(physical_port).get_transceiver_info_firmware_versions() - state_db.set(state_db.STATE_DB, 'TRANSCEIVER_INFO|{}'.format(port_name), "active_firmware", active_firmware) - state_db.set(state_db.STATE_DB, 'TRANSCEIVER_INFO|{}'.format(port_name), "inactive_firmware", inactive_firmware) + transceiver_firmware_info_dict = platform_chassis.get_sfp(physical_port).get_transceiver_info_firmware_versions() + if transceiver_firmware_info_dict is not None: + active_firmware = transceiver_firmware_info_dict.get('active_firmware', 'N/A') + inactive_firmware = transceiver_firmware_info_dict.get('inactive_firmware', 'N/A') + state_db.set(state_db.STATE_DB, 'TRANSCEIVER_FIRMWARE_INFO|{}'.format(port_name), "active_firmware", active_firmware) + state_db.set(state_db.STATE_DB, 'TRANSCEIVER_FIRMWARE_INFO|{}'.format(port_name), "inactive_firmware", inactive_firmware) # 'firmware' subgroup @cli.group() diff --git a/tests/mock_tables/asic1/state_db.json b/tests/mock_tables/asic1/state_db.json index 7397d25b..195b8e87 100644 --- a/tests/mock_tables/asic1/state_db.json +++ b/tests/mock_tables/asic1/state_db.json @@ -29,8 +29,6 @@ "media_interface_technology" : "1550 nm DFB", "vendor_rev" : "XX", "cmis_rev" : "4.1", - "active_firmware" : "X.X", - "inactive_firmware" : "X.X", "supported_max_tx_power" : "4.0", "supported_min_tx_power" : "-22.9", "supported_max_laser_freq" : "196100", @@ -70,6 +68,10 @@ "vcclowalarm": "2.9700", "vcclowwarning": "3.1349" }, + "TRANSCEIVER_FIRMWARE_INFO|Ethernet64": { + "active_firmware": "X.X", + "inactive_firmware": "X.X" + }, "CHASSIS_INFO|chassis 1": { "psu_num": "2" }, diff --git a/tests/mock_tables/state_db.json b/tests/mock_tables/state_db.json index 993e05c4..b266b5e8 100644 --- a/tests/mock_tables/state_db.json +++ b/tests/mock_tables/state_db.json @@ -684,16 +684,17 @@ "media_interface_technology" : "1550 nm DFB", "vendor_rev" : "XX", "cmis_rev" : "4.1", - "active_firmware" : "X.X", - "inactive_firmware" : "X.X", "supported_max_tx_power" : "4.0", "supported_min_tx_power" : "-22.9", "supported_max_laser_freq" : "196100", "supported_min_laser_freq" : "191300" }, + "TRANSCEIVER_FIRMWARE_INFO|Ethernet64": { + "active_firmware": "X.X", + "inactive_firmware": "X.X" + }, "TRANSCEIVER_INFO|Ethernet72": { "active_apsel_hostlane4": "N/A", - "active_firmware": "0.0", "is_replaceable": "True", "application_advertisement": "{1: {'host_electrical_interface_id': 'IB NDR', 'module_media_interface_id': 'Copper cable', 'media_lane_count': 4, 'host_lane_count': 4, 'host_lane_assignment_options': 17}, 2: {'host_electrical_interface_id': 'IB SDR (Arch.Spec.Vol.2)', 'module_media_interface_id': 'Copper cable', 'media_lane_count': 4, 'host_lane_count': 4, 'host_lane_assignment_options': 17}}", "host_electrical_interface": "N/A", @@ -710,7 +711,6 @@ "supported_min_laser_freq": "N/A", "serial": "serial1 ", "active_apsel_hostlane7": "N/A", - "inactive_firmware": "N/A", "active_apsel_hostlane1": "N/A", "type": "OSFP 8X Pluggable Transceiver", "cable_length": "1.0", @@ -796,6 +796,10 @@ "txbiaslowalarm": "N/A", "txbiaslowwarning": "N/A" }, + "TRANSCEIVER_FIRMWARE_INFO|Ethernet72": { + "active_firmware": "0.0", + "inactive_firmware": "N/A" + }, "TRANSCEIVER_STATUS|Ethernet0": { "status": "67", "error": "Blocking Error|High temperature" diff --git a/tests/sfputil_test.py b/tests/sfputil_test.py index 63814f31..cfb7ed75 100644 --- a/tests/sfputil_test.py +++ b/tests/sfputil_test.py @@ -151,8 +151,6 @@ def test_format_dict_value_to_string(self): 'specification_compliance': "sm_media_interface", 'dom_capability': "{'Tx_power_support': 'no', 'Rx_power_support': 'no', 'Voltage_support': 'no', 'Temp_support': 'no'}", 'nominal_bit_rate': '0', - 'active_firmware': '0.1', - 'inactive_firmware': '0.0', 'hardware_rev': '0.0', 'media_interface_code': '400ZR, DWDM, amplified', 'host_electrical_interface': '400GAUI-8 C2M (Annex 120E)', @@ -184,7 +182,6 @@ def test_format_dict_value_to_string(self): " Active App Selection Host Lane 6: 1\n" " Active App Selection Host Lane 7: 1\n" " Active App Selection Host Lane 8: 1\n" - " Active Firmware Version: 0.1\n" " Application Advertisement: 400G CR8 - Host Assign (0x1) - Copper cable - Media Assign (0x2)\n" " 200GBASE-CR4 (Clause 136) - Host Assign (Unknown) - Unknown - Media Assign (Unknown)\n" " CMIS Revision: 5.0\n" @@ -197,7 +194,6 @@ def test_format_dict_value_to_string(self): " Host Lane Assignment Options: 1\n" " Host Lane Count: 8\n" " Identifier: QSFP-DD Double Density 8X Pluggable Transceiver\n" - " Inactive Firmware Version: 0.0\n" " Length Cable Assembly(m): 0\n" " Media Interface Code: 400ZR, DWDM, amplified\n" " Media Interface Technology: C-band tunable laser\n" @@ -1113,7 +1109,7 @@ def test_firmware_commit_cli(self): def test_update_firmware_info_to_state_db(self, mock_chassis): mock_sfp = MagicMock() mock_chassis.get_sfp = MagicMock(return_value=mock_sfp) - mock_sfp.get_transceiver_info_firmware_versions.return_value = ['a.b.c', 'd.e.f'] + mock_sfp.get_transceiver_info_firmware_versions.return_value = {'active_firmware' : 'a.b.c', 'inactive_firmware' : 'd.e.f'} sfputil.update_firmware_info_to_state_db("Ethernet0") From a5712ab41425453fce224566ae3821ac3b7d553d Mon Sep 17 00:00:00 2001 From: MuLin Date: Thu, 29 Aug 2024 14:53:27 +0800 Subject: [PATCH 308/312] Fix the unit test error for TestShowVrf --- show/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/show/main.py b/show/main.py index 2c640512..2ebbcaae 100755 --- a/show/main.py +++ b/show/main.py @@ -351,6 +351,7 @@ def vrf(vrf_name): body.append([vrf, ""]) else: intfs = intfs_dict[vrf] + intfs = natsorted(intfs) body.append([vrf, intfs[0]]) for intf in intfs[1:]: body.append(["", intf]) From a8fc082e6b88f32657c337a343cb21a289108114 Mon Sep 17 00:00:00 2001 From: link_chiang Date: Thu, 5 Sep 2024 11:12:04 +0800 Subject: [PATCH 309/312] Fix enable ipv6-link-local-only fail on VLAN It will fail when there is no VLAN interface for the VLAN --- config/main.py | 7 +++++-- utilities_common/cli.py | 7 +++++++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/config/main.py b/config/main.py index 0077b360..ec664e4d 100644 --- a/config/main.py +++ b/config/main.py @@ -5350,8 +5350,11 @@ def enable_use_link_local_only(ctx, interface_name): ctx.fail("Interface name %s is invalid. Please enter a valid interface name!!" %(interface_name)) if (interface_type == "VLAN_INTERFACE"): - if not clicommon.is_valid_vlan_interface(db, interface_name): - ctx.fail("Interface name %s is invalid. Please enter a valid interface name!!" %(interface_name)) + if not clicommon.check_if_vlanid_exist(db, interface_name): + ctx.fail("Vlan: %s is invalid. Please create vlan first!!" %(interface_name)) + + if not clicommon.has_vlan_member(db, interface_name): + ctx.fail("Vlan: %s doesn't contains member. Please make sure vlan contains vlan member!" %(interface_name)) portchannel_member_table = db.get_table('PORTCHANNEL_MEMBER') diff --git a/utilities_common/cli.py b/utilities_common/cli.py index 9d3cdae7..2c862d64 100644 --- a/utilities_common/cli.py +++ b/utilities_common/cli.py @@ -259,6 +259,13 @@ def check_if_vlanid_exist(config_db, vlan, table_name='VLAN'): return False +def has_vlan_member(config_db, vlan): + vlan_ports_data = config_db.get_table('VLAN_MEMBER') + for key in vlan_ports_data: + if key[0] == vlan: + return True + return False + def is_port_vlan_member(config_db, port, vlan): """Check if port is a member of vlan""" From de62523f7e0ba5c39047d7de9d96cc0773ada567 Mon Sep 17 00:00:00 2001 From: dennis_chiu Date: Tue, 10 Sep 2024 10:44:09 +0800 Subject: [PATCH 310/312] Skip to execute the l3 nat command if the chip does not support NAT feature --- scripts/generate_dump | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/scripts/generate_dump b/scripts/generate_dump index 486b902b..fb360923 100755 --- a/scripts/generate_dump +++ b/scripts/generate_dump @@ -1474,8 +1474,12 @@ collect_broadcom() { save_bcmcmd_all_ns "\"fabric connectivity\"" "fabric.connect.summary" save_bcmcmd_all_ns "\"port status\"" "port.status.summary" else - save_bcmcmd_all_ns "\"l3 nat_ingress show\"" "broadcom.nat.ingress" - save_bcmcmd_all_ns "\"l3 nat_egress show\"" "broadcom.nat.egress" + local driver_id=$(bcmcmd "soc" | grep Driver= | awk -F '=' '{print substr($4, 1, 8)}') + # BCM56980, BCM56370 and BCM56275 do not support NAT feature + if [[ ! "$driver_id" =~ ^(BCM56980|BCM56370|BCM56275)$ ]]; then + save_cmd "bcmcmd \"l3 nat_ingress show\"" "broadcom.nat.ingress" + save_cmd "bcmcmd \"l3 nat_egress show\"" "broadcom.nat.egress" + fi save_bcmcmd_all_ns "\"ipmc table show\"" "broadcom.ipmc" save_bcmcmd_all_ns "\"multicast show\"" "broadcom.multicast" save_bcmcmd_all_ns "\"conf show\"" "conf.summary" From e96e5d751e7d8c251f73db1537ca3dd54d7917ff Mon Sep 17 00:00:00 2001 From: roger530_ho Date: Mon, 16 Sep 2024 17:53:47 +0800 Subject: [PATCH 311/312] Looking for the SSD disk currently used by the SONiC. --- show/platform.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/show/platform.py b/show/platform.py index d3e9fa09..22627549 100644 --- a/show/platform.py +++ b/show/platform.py @@ -104,7 +104,14 @@ def psustatus(index, json, verbose): def ssdhealth(device, verbose, vendor): """Show SSD Health information""" if not device: - device = os.popen("lsblk -o NAME,TYPE -p | grep disk").readline().strip().split()[0] + # Looking for the SSD disk currently used by the SONiC. + + base_device = os.popen("lsblk -l -o NAME,TYPE,MOUNTPOINT -p | grep -w '/host'").readline().strip().split()[0] + + # Extract the base device name, handling both 'p' and non-'p' partitioning schemes + # Example : /dev/sda1 => /dev/sda + # /dev/nvme0n1p2 => /dev/nvme0n1 + device = base_device.rstrip("0123456789").split("p")[0] cmd = ['sudo', 'ssdutil', '-d', str(device)] options = ["-v"] if verbose else [] options += ["-e"] if vendor else [] From 6285d3817566f7cf0f4725a0771f09d9f4abc744 Mon Sep 17 00:00:00 2001 From: roger530_ho Date: Thu, 19 Sep 2024 09:16:37 +0800 Subject: [PATCH 312/312] Update the test command for test_ssdhealth in show_test.py --- tests/show_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/show_test.py b/tests/show_test.py index 5b55c158..8fd05c32 100644 --- a/tests/show_test.py +++ b/tests/show_test.py @@ -638,7 +638,7 @@ def test_ssdhealth(self, mock_popen, mock_run_command): print(result.exit_code) print(result.output) assert result.exit_code == 0 - mock_popen.assert_called_once_with('lsblk -o NAME,TYPE -p | grep disk') + mock_popen.assert_called_once_with("lsblk -l -o NAME,TYPE,MOUNTPOINT -p | grep -w '/host'") mock_run_command.assert_called_once_with(['sudo', 'ssdutil', '-d', '/dev/sda', '-v', '-e'], display_cmd=True) @patch('utilities_common.cli.run_command')