From 959a2a1aa860d5e5a0eee63fde689c953e8c12b9 Mon Sep 17 00:00:00 2001 From: zhou-run Date: Tue, 30 Jul 2024 14:55:51 +0800 Subject: [PATCH 1/2] isisd: When the metric-type is configured as "wide", the IS-IS generates incorrect metric values for IPv4 directly connected routes. The IPv4 directly connected route prefix exists in both the root LSP and the root's neighbor LSP: When generating vertices for directly connected route prefixes with a metric of 0 based on the root LSP, the isis_spf_preload_tent_ip_reach_cb function only generates vertices of type VTYPE_IPREACH_INTERNAL without distinguishing between area->oldmetric and area->newmetric. When generating vertices for the directly connected route prefix based on the neighbor LSP, the isis_spf_process_lsp function will generate vertices of type VTYPE_IPREACH_INTERNAL and VTYPE_IPREACH_TE based on area->oldmetric and area->newmetric, where the vertex metric is the sum of the metric from the root IS to the neighbor IS and from the neighbor IS to the root IS, respectively. If area->newmetric==1, the same directly connected route prefix will have both VTYPE_IPREACH_INTERNAL vertices with a metric of 0 and VTYPE_IPREACH_TE vertices with a non-zero metric. During route generation, the isis_spf_loop function will prioritize selecting VTYPE_IPREACH_TE vertices, leading to incorrect metrics for the directly connected routes. Supplement topotest modifications. Directly connected routes with incorrect ISIS cost calculations should not appear in the RIB. Signed-off-by: zhou-run --- isisd/isis_spf.c | 24 ++- tests/isisd/test_isis_spf.refout | 150 +++++++++--------- .../rt1/step1/show_ip_route.ref | 20 --- .../rt1/step2/show_ip_route.ref | 20 --- .../rt1/step3/show_ip_route.ref | 20 --- .../rt1/step4/show_ip_route.ref | 20 --- .../rt2/step1/show_ip_route.ref | 35 ---- .../rt3/step1/show_ip_route.ref | 35 ---- .../rt4/step1/show_ip_route.ref | 45 ------ .../rt5/step1/show_ip_route.ref | 46 ------ .../rt6/step1/show_ip_route.ref | 30 ---- .../rt6/step2/show_ip_route.ref | 30 ---- .../rt6/step3/show_ip_route.ref | 30 ---- .../rt6/step4/show_ip_route.ref | 30 ---- .../isis_sr_topo1/rt1/step1/show_ip_route.ref | 20 --- .../rt1/step10/show_ip_route.ref | 20 --- .../isis_sr_topo1/rt1/step2/show_ip_route.ref | 20 --- .../isis_sr_topo1/rt1/step3/show_ip_route.ref | 20 --- .../isis_sr_topo1/rt1/step4/show_ip_route.ref | 20 --- .../isis_sr_topo1/rt1/step5/show_ip_route.ref | 20 --- .../isis_sr_topo1/rt1/step6/show_ip_route.ref | 20 --- .../isis_sr_topo1/rt1/step7/show_ip_route.ref | 20 --- .../isis_sr_topo1/rt1/step8/show_ip_route.ref | 20 --- .../isis_sr_topo1/rt1/step9/show_ip_route.ref | 20 --- .../isis_sr_topo1/rt2/step1/show_ip_route.ref | 62 -------- .../rt2/step10/show_ip_route.ref | 35 ---- .../isis_sr_topo1/rt2/step2/show_ip_route.ref | 62 -------- .../isis_sr_topo1/rt2/step3/show_ip_route.ref | 62 -------- .../isis_sr_topo1/rt2/step4/show_ip_route.ref | 62 -------- .../isis_sr_topo1/rt2/step5/show_ip_route.ref | 62 -------- .../isis_sr_topo1/rt2/step6/show_ip_route.ref | 62 -------- .../isis_sr_topo1/rt2/step7/show_ip_route.ref | 62 -------- .../isis_sr_topo1/rt2/step8/show_ip_route.ref | 62 -------- .../isis_sr_topo1/rt2/step9/show_ip_route.ref | 62 -------- .../isis_sr_topo1/rt3/step1/show_ip_route.ref | 62 -------- .../rt3/step10/show_ip_route.ref | 62 -------- .../isis_sr_topo1/rt3/step2/show_ip_route.ref | 62 -------- .../isis_sr_topo1/rt3/step3/show_ip_route.ref | 62 -------- .../isis_sr_topo1/rt3/step4/show_ip_route.ref | 62 -------- .../isis_sr_topo1/rt3/step5/show_ip_route.ref | 62 -------- .../isis_sr_topo1/rt3/step6/show_ip_route.ref | 62 -------- .../isis_sr_topo1/rt3/step7/show_ip_route.ref | 62 -------- .../isis_sr_topo1/rt3/step8/show_ip_route.ref | 62 -------- .../isis_sr_topo1/rt3/step9/show_ip_route.ref | 62 -------- .../isis_sr_topo1/rt4/step1/show_ip_route.ref | 72 --------- .../rt4/step10/show_ip_route.ref | 30 ---- .../isis_sr_topo1/rt4/step2/show_ip_route.ref | 57 ------- .../isis_sr_topo1/rt4/step3/show_ip_route.ref | 42 ----- .../isis_sr_topo1/rt4/step4/show_ip_route.ref | 57 ------- .../isis_sr_topo1/rt4/step5/show_ip_route.ref | 57 ------- .../isis_sr_topo1/rt4/step6/show_ip_route.ref | 57 ------- .../isis_sr_topo1/rt4/step7/show_ip_route.ref | 57 ------- .../isis_sr_topo1/rt4/step8/show_ip_route.ref | 57 ------- .../isis_sr_topo1/rt4/step9/show_ip_route.ref | 57 ------- .../isis_sr_topo1/rt5/step1/show_ip_route.ref | 72 --------- .../rt5/step10/show_ip_route.ref | 57 ------- .../isis_sr_topo1/rt5/step2/show_ip_route.ref | 57 ------- .../isis_sr_topo1/rt5/step3/show_ip_route.ref | 42 ----- .../isis_sr_topo1/rt5/step4/show_ip_route.ref | 42 ----- .../isis_sr_topo1/rt5/step5/show_ip_route.ref | 42 ----- .../isis_sr_topo1/rt5/step6/show_ip_route.ref | 42 ----- .../isis_sr_topo1/rt5/step7/show_ip_route.ref | 42 ----- .../isis_sr_topo1/rt5/step8/show_ip_route.ref | 42 ----- .../isis_sr_topo1/rt5/step9/show_ip_route.ref | 42 ----- .../isis_sr_topo1/rt6/step1/show_ip_route.ref | 30 ---- .../rt6/step10/show_ip_route.ref | 30 ---- .../isis_sr_topo1/rt6/step2/show_ip_route.ref | 30 ---- .../isis_sr_topo1/rt6/step4/show_ip_route.ref | 30 ---- .../isis_sr_topo1/rt6/step5/show_ip_route.ref | 30 ---- .../isis_sr_topo1/rt6/step6/show_ip_route.ref | 30 ---- .../isis_sr_topo1/rt6/step7/show_ip_route.ref | 30 ---- .../isis_sr_topo1/rt6/step8/show_ip_route.ref | 30 ---- .../isis_sr_topo1/rt6/step9/show_ip_route.ref | 30 ---- .../rt1/step1/show_ip_route.ref | 20 --- .../rt1/step2/show_ip_route.ref | 20 --- .../rt1/step3/show_ip_route.ref | 20 --- .../rt1/step4/show_ip_route.ref | 20 --- .../rt1/step5/show_ip_route.ref | 20 --- .../rt1/step6/show_ip_route.ref | 20 --- .../rt1/step7/show_ip_route.ref | 20 --- .../rt1/step8/show_ip_route.ref | 20 --- .../rt1/step9/show_ip_route.ref | 20 --- .../rt2/step1/show_ip_route.ref | 62 -------- .../rt2/step2/show_ip_route.ref | 62 -------- .../rt2/step3/show_ip_route.ref | 62 -------- .../rt2/step4/show_ip_route.ref | 62 -------- .../rt2/step5/show_ip_route.ref | 62 -------- .../rt2/step6/show_ip_route.ref | 62 -------- .../rt2/step7/show_ip_route.ref | 62 -------- .../rt2/step8/show_ip_route.ref | 62 -------- .../rt2/step9/show_ip_route.ref | 62 -------- .../rt3/step1/show_ip_route.ref | 62 -------- .../rt3/step2/show_ip_route.ref | 62 -------- .../rt3/step3/show_ip_route.ref | 62 -------- .../rt3/step4/show_ip_route.ref | 62 -------- .../rt3/step5/show_ip_route.ref | 62 -------- .../rt3/step6/show_ip_route.ref | 62 -------- .../rt3/step7/show_ip_route.ref | 62 -------- .../rt3/step8/show_ip_route.ref | 62 -------- .../rt3/step9/show_ip_route.ref | 62 -------- .../rt4/step1/show_ip_route.ref | 72 --------- .../rt4/step2/show_ip_route.ref | 72 --------- .../rt4/step3/show_ip_route.ref | 72 --------- .../rt4/step4/show_ip_route.ref | 72 --------- .../rt4/step5/show_ip_route.ref | 72 --------- .../rt4/step6/show_ip_route.ref | 72 --------- .../rt4/step7/show_ip_route.ref | 72 --------- .../rt4/step8/show_ip_route.ref | 72 --------- .../rt4/step9/show_ip_route.ref | 72 --------- .../rt5/step1/show_ip_route.ref | 72 --------- .../rt5/step2/show_ip_route.ref | 72 --------- .../rt5/step3/show_ip_route.ref | 72 --------- .../rt5/step4/show_ip_route.ref | 72 --------- .../rt5/step5/show_ip_route.ref | 72 --------- .../rt5/step6/show_ip_route.ref | 72 --------- .../rt5/step7/show_ip_route.ref | 72 --------- .../rt5/step8/show_ip_route.ref | 72 --------- .../rt5/step9/show_ip_route.ref | 72 --------- .../rt6/step1/show_ip_route.ref | 30 ---- .../rt6/step2/show_ip_route.ref | 30 ---- .../rt6/step3/show_ip_route.ref | 30 ---- .../rt6/step4/show_ip_route.ref | 30 ---- .../rt6/step5/show_ip_route.ref | 30 ---- .../rt6/step6/show_ip_route.ref | 30 ---- .../rt6/step7/show_ip_route.ref | 30 ---- .../rt6/step8/show_ip_route.ref | 30 ---- .../rt6/step9/show_ip_route.ref | 30 ---- .../rt1/step1/show_ip_route.ref | 20 --- .../rt1/step2/show_ip_route.ref | 20 --- .../rt1/step3/show_ip_route.ref | 20 --- .../rt1/step4/show_ip_route.ref | 20 --- .../rt1/step5/show_ip_route.ref | 20 --- .../rt1/step6/show_ip_route.ref | 20 --- .../rt1/step7/show_ip_route.ref | 20 --- .../rt1/step8/show_ip_route.ref | 20 --- .../rt1/step9/show_ip_route.ref | 20 --- .../rt2/step1/show_ip_route.ref | 124 --------------- .../rt2/step2/show_ip_route.ref | 96 ----------- .../rt2/step3/show_ip_route.ref | 124 --------------- .../rt2/step4/show_ip_route.ref | 96 ----------- .../rt2/step5/show_ip_route.ref | 124 --------------- .../rt2/step6/show_ip_route.ref | 124 --------------- .../rt2/step7/show_ip_route.ref | 62 -------- .../rt2/step8/show_ip_route.ref | 124 --------------- .../rt2/step9/show_ip_route.ref | 124 --------------- .../rt3/step1/show_ip_route.ref | 124 --------------- .../rt3/step2/show_ip_route.ref | 124 --------------- .../rt3/step3/show_ip_route.ref | 124 --------------- .../rt3/step4/show_ip_route.ref | 62 -------- .../rt3/step5/show_ip_route.ref | 124 --------------- .../rt3/step6/show_ip_route.ref | 124 --------------- .../rt3/step7/show_ip_route.ref | 124 --------------- .../rt3/step8/show_ip_route.ref | 124 --------------- .../rt3/step9/show_ip_route.ref | 124 --------------- .../rt4/step1/show_ip_route.ref | 128 --------------- .../rt4/step2/show_ip_route.ref | 128 --------------- .../rt4/step3/show_ip_route.ref | 128 --------------- .../rt4/step4/show_ip_route.ref | 72 --------- .../rt4/step5/show_ip_route.ref | 128 --------------- .../rt4/step6/show_ip_route.ref | 128 --------------- .../rt4/step7/show_ip_route.ref | 128 --------------- .../rt4/step8/show_ip_route.ref | 128 --------------- .../rt4/step9/show_ip_route.ref | 128 --------------- .../rt5/step1/show_ip_route.ref | 128 --------------- .../rt5/step10/show_ip_route.ref | 102 ------------ .../rt5/step2/show_ip_route.ref | 128 --------------- .../rt5/step3/show_ip_route.ref | 128 --------------- .../rt5/step4/show_ip_route.ref | 94 ----------- .../rt5/step5/show_ip_route.ref | 128 --------------- .../rt5/step6/show_ip_route.ref | 128 --------------- .../rt5/step7/show_ip_route.ref | 128 --------------- .../rt5/step8/show_ip_route.ref | 128 --------------- .../rt5/step9/show_ip_route.ref | 128 --------------- .../rt6/step1/show_ip_route.ref | 52 ------ .../rt6/step10/show_ip_route.ref | 43 ----- .../rt6/step2/show_ip_route.ref | 52 ------ .../rt6/step3/show_ip_route.ref | 52 ------ .../rt6/step4/show_ip_route.ref | 52 ------ .../rt6/step5/show_ip_route.ref | 52 ------ .../rt6/step6/show_ip_route.ref | 52 ------ .../rt6/step7/show_ip_route.ref | 52 ------ .../rt6/step8/show_ip_route.ref | 52 ------ .../rt6/step9/show_ip_route.ref | 52 ------ .../topotests/isis_topo1/r1/r1_topology.json | 10 +- .../topotests/isis_topo1/r2/r2_topology.json | 10 +- .../topotests/isis_topo1/r3/r3_topology.json | 20 +-- .../topotests/isis_topo1/r4/r4_topology.json | 20 +-- .../topotests/isis_topo1/r5/r5_topology.json | 20 +-- .../isis_topo1_vrf/r1/r1_topology.json | 10 +- .../isis_topo1_vrf/r2/r2_topology.json | 10 +- .../isis_topo1_vrf/r3/r3_topology.json | 20 +-- .../isis_topo1_vrf/r4/r4_topology.json | 20 +-- .../isis_topo1_vrf/r5/r5_topology.json | 20 +-- tests/topotests/ldp_snmp/r1/show_ip_route.ref | 26 --- tests/topotests/ldp_snmp/r2/show_ip_route.ref | 26 --- tests/topotests/ldp_snmp/r3/show_ip_route.ref | 26 --- .../ldp_sync_isis_topo1/r1/show_ip_route.ref | 26 --- .../ldp_sync_isis_topo1/r2/show_ip_route.ref | 26 --- .../ldp_sync_isis_topo1/r3/show_ip_route.ref | 26 --- 199 files changed, 111 insertions(+), 11367 deletions(-) diff --git a/isisd/isis_spf.c b/isisd/isis_spf.c index 86302076f82d..d188dddebc35 100644 --- a/isisd/isis_spf.c +++ b/isisd/isis_spf.c @@ -1265,7 +1265,7 @@ static int isis_spf_preload_tent_ip_reach_cb(const struct prefix *prefix, struct isis_vertex *parent = args->parent; struct prefix_pair ip_info; enum vertextype vtype; - bool has_valid_psid = false; + bool has_valid_psid = false, transition = false; if (external) return LSP_ITER_CONTINUE; @@ -1275,10 +1275,17 @@ static int isis_spf_preload_tent_ip_reach_cb(const struct prefix *prefix, prefix_copy(&ip_info.dest, prefix); apply_mask(&ip_info.dest); - if (prefix->family == AF_INET) + if (prefix->family == AF_INET) { vtype = VTYPE_IPREACH_INTERNAL; - else + + if (spftree->area->newmetric) + vtype = VTYPE_IPREACH_TE; + + if (spftree->area->oldmetric && spftree->area->newmetric) + transition = true; + } else { vtype = VTYPE_IP6REACH_INTERNAL; + } /* Parse list of Prefix-SID subTLVs if SR is enabled */ if (spftree->area->srdb.enabled && subtlvs) { @@ -1293,6 +1300,11 @@ static int isis_spf_preload_tent_ip_reach_cb(const struct prefix *prefix, has_valid_psid = true; isis_spf_add_local(spftree, vtype, &ip_info, NULL, 0, psid, parent); + if (transition) + isis_spf_add_local(spftree, + VTYPE_IPREACH_INTERNAL, + &ip_info, NULL, 0, psid, + parent); /* * Stop the Prefix-SID iteration since we only support @@ -1301,9 +1313,13 @@ static int isis_spf_preload_tent_ip_reach_cb(const struct prefix *prefix, break; } } - if (!has_valid_psid) + if (!has_valid_psid) { isis_spf_add_local(spftree, vtype, &ip_info, NULL, 0, NULL, parent); + if (transition) + isis_spf_add_local(spftree, VTYPE_IPREACH_INTERNAL, + &ip_info, NULL, 0, NULL, parent); + } return LSP_ITER_CONTINUE; } diff --git a/tests/isisd/test_isis_spf.refout b/tests/isisd/test_isis_spf.refout index 255d920c10cb..f434e3b9791e 100644 --- a/tests/isisd/test_isis_spf.refout +++ b/tests/isisd/test_isis_spf.refout @@ -3,7 +3,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt4 TE-IS 20 rt2 - rt2(4) @@ -66,7 +66,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt4 TE-IS 10 rt4 - rt1(4) rt5 TE-IS 10 rt5 - rt1(4) rt2 TE-IS 15 rt2 - rt1(4) @@ -131,7 +131,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt4 TE-IS 20 rt2 - rt2(4) @@ -160,7 +160,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt4 TE-IS 20 rt2 - rt2(4) @@ -195,7 +195,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt4 TE-IS 20 rt2 - rt2(4) @@ -233,7 +233,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt4 TE-IS 20 rt2 - rt2(4) @@ -283,7 +283,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt4 TE-IS 10 rt4 - rt1(4) rt5 TE-IS 20 rt4 - rt4(4) rt7 TE-IS 20 rt4 - rt4(4) @@ -333,7 +333,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt4 TE-IS 10 rt4 - rt1(4) rt3 TE-IS 20 rt2 - rt2(4) @@ -382,7 +382,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt4 TE-IS 20 rt2 - rt2(4) @@ -463,7 +463,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt3 TE-IS 20 rt3 - rt1(4) rt4 TE-IS 20 rt4 - rt1(4) @@ -532,7 +532,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------ rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt2 pseudo_TE-IS 20 rt3 - rt3(4) @@ -597,7 +597,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt4 TE-IS 20 rt2 - rt2(4) @@ -638,7 +638,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt4 TE-IS 20 rt2 - rt2(4) @@ -675,7 +675,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt4 TE-IS 20 rt2 - rt2(4) @@ -710,7 +710,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------ rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt2 pseudo_TE-IS 20 rt3 - rt3(4) @@ -768,7 +768,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt4 TE-IS 20 rt2 - rt2(4) @@ -839,7 +839,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------ rt4 - 10.0.255.4/32 IP internal 0 rt4(4) + 10.0.255.4/32 IP TE 0 rt4(4) rt1 TE-IS 10 rt1 - rt4(4) rt5 TE-IS 10 rt5 - rt4(4) rt6 TE-IS 10 rt6 - rt4(4) @@ -916,7 +916,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------ rt4 - 10.0.255.4/32 IP internal 0 rt4(4) + 10.0.255.4/32 IP TE 0 rt4(4) rt1 TE-IS 10 rt1 - rt4(4) rt5 TE-IS 10 rt5 - rt4(4) rt6 TE-IS 10 rt6 - rt4(4) @@ -993,7 +993,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt4 TE-IS 20 rt2 - rt2(4) @@ -1047,7 +1047,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt4 TE-IS 20 rt2 - rt2(4) @@ -1098,7 +1098,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt4 TE-IS 10 rt4 - rt1(4) rt5 TE-IS 20 rt4 - rt4(4) rt7 TE-IS 20 rt4 - rt4(4) @@ -1180,7 +1180,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------- rt7 - 10.0.255.7/32 IP internal 0 rt7(4) + 10.0.255.7/32 IP TE 0 rt7(4) rt4 TE-IS 10 rt4 - rt7(4) rt8 TE-IS 10 rt8 - rt7(4) rt10 TE-IS 20 rt10 - rt7(4) @@ -1266,7 +1266,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------- rt8 - 10.0.255.8/32 IP internal 0 rt8(4) + 10.0.255.8/32 IP TE 0 rt8(4) rt5 TE-IS 10 rt5 - rt8(4) rt7 TE-IS 10 rt7 - rt8(4) rt9 TE-IS 10 rt9 - rt8(4) @@ -1347,7 +1347,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt3 - 10.0.255.3/32 IP internal 0 rt3(4) + 10.0.255.3/32 IP TE 0 rt3(4) rt1 TE-IS 10 rt1 - rt3(4) rt2 TE-IS 20 rt1 - rt1(4) 10.0.255.1/32 IP TE 20 rt1 - rt1(4) @@ -1458,7 +1458,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt8 - 10.0.255.8/32 IP internal 0 rt8(4) + 10.0.255.8/32 IP TE 0 rt8(4) rt5 TE-IS 10 rt5 - rt8(4) rt2 TE-IS 20 rt5 - rt5(4) 10.0.255.5/32 IP TE 20 rt5 - rt5(4) @@ -1561,7 +1561,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------ rt3 - 10.0.255.3/32 IP internal 0 rt3(4) + 10.0.255.3/32 IP TE 0 rt3(4) rt1 TE-IS 10 rt1 - rt3(4) rt2 TE-IS 10 rt2 - rt3(4) rt5 TE-IS 10 rt5 - rt3(4) @@ -1644,7 +1644,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt4 - 10.0.255.4/32 IP internal 0 rt4(4) + 10.0.255.4/32 IP TE 0 rt4(4) rt2 TE-IS 10 rt2 - rt4(4) rt3 TE-IS 10 rt3 - rt4(4) rt1 TE-IS 20 rt2 - rt2(4) @@ -1706,7 +1706,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt4 TE-IS 10 rt4 - rt1(4) rt2 TE-IS 10 rt2 - rt1(4) @@ -1767,7 +1767,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt4 TE-IS 10 rt4 - rt1(4) rt2 TE-IS 10 rt2 - rt1(4) @@ -1836,7 +1836,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------ rt5 - 10.0.255.5/32 IP internal 0 rt5(4) + 10.0.255.5/32 IP TE 0 rt5(4) rt4 TE-IS 10 rt4 - rt5(4) rt1 pseudo_TE-IS 20 rt4 - rt4(4) rt1 TE-IS 20 rt4 - rt1(2) @@ -1928,7 +1928,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt5 TE-IS 20 rt3 - rt3(4) 10.0.255.3/32 IP TE 20 rt3 - rt3(4) @@ -1945,7 +1945,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt4 TE-IS 20 rt2 - rt2(4) @@ -2077,7 +2077,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------ rt5 - 10.0.255.5/32 IP internal 0 rt5(4) + 10.0.255.5/32 IP TE 0 rt5(4) rt6 TE-IS 10 rt6 - rt5(4) rt4 TE-IS 20 rt6 - rt6(4) 10.0.255.6/32 IP TE 20 rt6 - rt6(4) @@ -2095,7 +2095,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------ rt5 - 10.0.255.5/32 IP internal 0 rt5(4) + 10.0.255.5/32 IP TE 0 rt5(4) rt1 TE-IS 10 rt1 - rt5(4) rt4 TE-IS 10 rt4 - rt5(4) rt6 TE-IS 10 rt6 - rt5(4) @@ -2244,7 +2244,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt5 - 10.0.255.5/32 IP internal 0 rt5(4) + 10.0.255.5/32 IP TE 0 rt5(4) rt6 TE-IS 10 rt6 - rt5(4) rt4 TE-IS 20 rt6 - rt6(4) 10.0.255.6/32 IP TE 20 rt6 - rt6(4) @@ -2263,7 +2263,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt5 - 10.0.255.5/32 IP internal 0 rt5(4) + 10.0.255.5/32 IP TE 0 rt5(4) rt4 TE-IS 10 rt4 - rt5(4) rt6 TE-IS 10 rt6 - rt5(4) rt2 TE-IS 20 rt4 - rt4(4) @@ -2335,7 +2335,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt5 - 10.0.255.5/32 IP internal 0 rt5(4) + 10.0.255.5/32 IP TE 0 rt5(4) rt4 TE-IS 10 rt4 - rt5(4) rt6 TE-IS 10 rt6 - rt5(4) rt2 TE-IS 20 rt4 - rt4(4) @@ -2352,7 +2352,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt5 - 10.0.255.5/32 IP internal 0 rt5(4) + 10.0.255.5/32 IP TE 0 rt5(4) rt4 TE-IS 10 rt4 - rt5(4) rt6 TE-IS 10 rt6 - rt5(4) rt2 TE-IS 20 rt4 - rt4(4) @@ -2405,7 +2405,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt5 TE-IS 20 rt3 - rt3(4) 10.0.255.3/32 IP TE 20 rt3 - rt3(4) @@ -2426,7 +2426,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt4 TE-IS 20 rt2 - rt2(4) @@ -2495,7 +2495,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt4 - 10.0.255.4/32 IP internal 0 rt4(4) + 10.0.255.4/32 IP TE 0 rt4(4) rt2 TE-IS 10 rt2 - rt4(4) rt6 TE-IS 10 rt6 - rt4(4) rt1 TE-IS 20 rt2 - rt2(4) @@ -2517,7 +2517,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt4 - 10.0.255.4/32 IP internal 0 rt4(4) + 10.0.255.4/32 IP TE 0 rt4(4) rt2 TE-IS 10 rt2 - rt4(4) rt3 TE-IS 10 rt3 - rt4(4) rt6 TE-IS 10 rt6 - rt4(4) @@ -2589,7 +2589,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------- rt11 - 10.0.255.11/32 IP internal 0 rt11(4) + 10.0.255.11/32 IP TE 0 rt11(4) rt10 TE-IS 10 rt10 - rt11(4) rt12 TE-IS 10 rt12 - rt11(4) rt9 TE-IS 20 rt12 - rt12(4) @@ -2620,7 +2620,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------- rt11 - 10.0.255.11/32 IP internal 0 rt11(4) + 10.0.255.11/32 IP TE 0 rt11(4) rt8 TE-IS 10 rt8 - rt11(4) rt10 TE-IS 10 rt10 - rt11(4) rt12 TE-IS 10 rt12 - rt11(4) @@ -2718,7 +2718,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------- rt6 - 10.0.255.6/32 IP internal 0 rt6(4) + 10.0.255.6/32 IP TE 0 rt6(4) rt3 TE-IS 10 rt3 - rt6(4) rt2 TE-IS 20 rt3 - rt3(4) 10.0.255.3/32 IP TE 20 rt3 - rt3(4) @@ -2755,7 +2755,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------- rt6 - 10.0.255.6/32 IP internal 0 rt6(4) + 10.0.255.6/32 IP TE 0 rt6(4) rt3 TE-IS 10 rt3 - rt6(4) rt5 TE-IS 10 rt5 - rt6(4) rt2 TE-IS 20 rt3 - rt3(4) @@ -2851,7 +2851,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------- rt2 - 10.0.255.2/32 IP internal 0 rt2(4) + 10.0.255.2/32 IP TE 0 rt2(4) rt1 TE-IS 10 rt1 - rt2(4) rt3 TE-IS 10 rt3 - rt2(4) rt4 TE-IS 20 rt1 - rt1(4) @@ -2881,7 +2881,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------- rt2 - 10.0.255.2/32 IP internal 0 rt2(4) + 10.0.255.2/32 IP TE 0 rt2(4) rt1 TE-IS 10 rt1 - rt2(4) rt3 TE-IS 10 rt3 - rt2(4) rt5 TE-IS 10 rt5 - rt2(4) @@ -2964,7 +2964,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt2 - 10.0.255.2/32 IP internal 0 rt2(4) + 10.0.255.2/32 IP TE 0 rt2(4) rt1 TE-IS 50 rt1 - rt2(4) rt3 TE-IS 50 rt3 - rt2(4) rt2 @@ -2982,7 +2982,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt2 - 10.0.255.2/32 IP internal 0 rt2(4) + 10.0.255.2/32 IP TE 0 rt2(4) rt4 TE-IS 10 rt4 - rt2(4) rt5 TE-IS 20 rt4 - rt4(4) rt6 TE-IS 20 rt4 - rt4(4) @@ -3123,7 +3123,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt4 TE-IS 20 rt2 - rt2(4) 10.0.255.2/32 IP TE 20 rt2 - rt2(4) @@ -3143,7 +3143,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt4 TE-IS 20 rt2 - rt2(4) @@ -3205,7 +3205,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt5 TE-IS 20 rt3 - rt3(4) 10.0.255.3/32 IP TE 20 rt3 - rt3(4) @@ -3292,7 +3292,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt4 TE-IS 10 rt4 - rt1(4) rt5 TE-IS 10 rt5 - rt1(4) rt2 TE-IS 15 rt2 - rt1(4) @@ -3386,7 +3386,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 15 rt2 - rt1(4) 10.0.255.2/32 IP TE 25 rt2 - rt2(4) rt3 TE-IS 30 rt3 - rt1(4) @@ -3476,7 +3476,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------ rt5 - 10.0.255.5/32 IP internal 0 rt5(4) + 10.0.255.5/32 IP TE 0 rt5(4) rt6 TE-IS 10 rt6 - rt5(4) rt4 TE-IS 20 rt6 - rt6(4) 10.0.255.6/32 IP TE 20 rt6 - rt6(4) @@ -3573,7 +3573,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt5 - 10.0.255.5/32 IP internal 0 rt5(4) + 10.0.255.5/32 IP TE 0 rt5(4) rt6 TE-IS 10 rt6 - rt5(4) rt4 TE-IS 20 rt6 - rt6(4) 10.0.255.6/32 IP TE 20 rt6 - rt6(4) @@ -3629,7 +3629,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt5 - 10.0.255.5/32 IP internal 0 rt5(4) + 10.0.255.5/32 IP TE 0 rt5(4) rt4 TE-IS 10 rt4 - rt5(4) rt6 TE-IS 10 rt6 - rt5(4) rt2 TE-IS 20 rt4 - rt4(4) @@ -3665,7 +3665,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt5 TE-IS 20 rt3 - rt3(4) 10.0.255.3/32 IP TE 20 rt3 - rt3(4) @@ -3714,7 +3714,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt4 - 10.0.255.4/32 IP internal 0 rt4(4) + 10.0.255.4/32 IP TE 0 rt4(4) rt2 TE-IS 10 rt2 - rt4(4) rt1 TE-IS 20 rt2 - rt2(4) 10.0.255.2/32 IP TE 20 rt2 - rt2(4) @@ -3760,7 +3760,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt3 TE-IS 10 rt3 - rt1(4) rt5 TE-IS 20 rt3 - rt3(4) 10.0.255.3/32 IP TE 20 rt3 - rt3(4) @@ -3811,7 +3811,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt4 - 10.0.255.4/32 IP internal 0 rt4(4) + 10.0.255.4/32 IP TE 0 rt4(4) rt2 TE-IS 10 rt2 - rt4(4) rt6 TE-IS 10 rt6 - rt4(4) rt1 TE-IS 20 rt2 - rt2(4) @@ -3865,7 +3865,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------- rt11 - 10.0.255.11/32 IP internal 0 rt11(4) + 10.0.255.11/32 IP TE 0 rt11(4) rt10 TE-IS 10 rt10 - rt11(4) rt12 TE-IS 10 rt12 - rt11(4) rt9 TE-IS 20 rt12 - rt12(4) @@ -3941,7 +3941,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------- rt6 - 10.0.255.6/32 IP internal 0 rt6(4) + 10.0.255.6/32 IP TE 0 rt6(4) rt3 TE-IS 10 rt3 - rt6(4) rt2 TE-IS 20 rt3 - rt3(4) 10.0.255.3/32 IP TE 20 rt3 - rt3(4) @@ -4022,7 +4022,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------- rt2 - 10.0.255.2/32 IP internal 0 rt2(4) + 10.0.255.2/32 IP TE 0 rt2(4) rt3 TE-IS 10 rt3 - rt2(4) rt5 TE-IS 10 rt5 - rt2(4) rt6 TE-IS 20 rt3 - rt3(4) @@ -4089,7 +4089,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------- rt2 - 10.0.255.2/32 IP internal 0 rt2(4) + 10.0.255.2/32 IP TE 0 rt2(4) rt1 TE-IS 10 rt1 - rt2(4) rt3 TE-IS 10 rt3 - rt2(4) rt4 TE-IS 20 rt1 - rt1(4) @@ -4151,7 +4151,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt4 TE-IS 20 rt2 - rt2(4) 10.0.255.2/32 IP TE 20 rt2 - rt2(4) @@ -4252,7 +4252,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt3 TE-IS 10 rt3 - rt1(4) 10.0.255.3/32 IP TE 20 rt3 - rt3(4) rt4 TE-IS 110 rt3 - rt3(4) @@ -4365,7 +4365,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt9 - 10.0.255.9/32 IP internal 0 rt9(4) + 10.0.255.9/32 IP TE 0 rt9(4) rt6 TE-IS 10 rt6 - rt9(4) rt7 TE-IS 10 rt7 - rt9(4) rt8 TE-IS 10 rt8 - rt9(4) @@ -4538,7 +4538,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt9 - 10.0.255.9/32 IP internal 0 rt9(4) + 10.0.255.9/32 IP TE 0 rt9(4) rt5 TE-IS 10 rt5 - rt9(4) rt6 TE-IS 10 rt6 - rt9(4) rt7 TE-IS 10 rt7 - rt9(4) @@ -4641,7 +4641,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt3 TE-IS 20 rt3 - rt1(4) rt4 TE-IS 20 rt4 - rt1(4) rt6 TE-IS 30 rt3 - rt3(4) @@ -4757,7 +4757,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt3 TE-IS 20 rt3 - rt1(4) rt5 TE-IS 20 rt2 - rt2(4) @@ -4854,7 +4854,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt2 - 10.0.255.2/32 IP internal 0 rt2(4) + 10.0.255.2/32 IP TE 0 rt2(4) rt1 TE-IS 50 rt1 - rt2(4) rt3 TE-IS 50 rt3 - rt2(4) rt2 @@ -4948,7 +4948,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ------------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt4 TE-IS 20 rt2 - rt2(4) 10.0.255.2/32 IP TE 20 rt2 - rt2(4) @@ -4997,7 +4997,7 @@ IS-IS paths to level-1 routers that speak IP Vertex Type Metric Next-Hop Interface Parent ----------------------------------------------------------------- rt1 - 10.0.255.1/32 IP internal 0 rt1(4) + 10.0.255.1/32 IP TE 0 rt1(4) rt2 TE-IS 10 rt2 - rt1(4) rt4 TE-IS 20 rt2 - rt2(4) 10.0.255.2/32 IP TE 20 rt2 - rt2(4) diff --git a/tests/topotests/isis_lsp_bits_topo1/rt1/step1/show_ip_route.ref b/tests/topotests/isis_lsp_bits_topo1/rt1/step1/show_ip_route.ref index 8557f4b010f2..e97c78057ce4 100644 --- a/tests/topotests/isis_lsp_bits_topo1/rt1/step1/show_ip_route.ref +++ b/tests/topotests/isis_lsp_bits_topo1/rt1/step1/show_ip_route.ref @@ -65,25 +65,5 @@ } ] } - ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } ] } diff --git a/tests/topotests/isis_lsp_bits_topo1/rt1/step2/show_ip_route.ref b/tests/topotests/isis_lsp_bits_topo1/rt1/step2/show_ip_route.ref index c826efdcfe11..50b00cd97995 100644 --- a/tests/topotests/isis_lsp_bits_topo1/rt1/step2/show_ip_route.ref +++ b/tests/topotests/isis_lsp_bits_topo1/rt1/step2/show_ip_route.ref @@ -58,25 +58,5 @@ } ] } - ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } ] } diff --git a/tests/topotests/isis_lsp_bits_topo1/rt1/step3/show_ip_route.ref b/tests/topotests/isis_lsp_bits_topo1/rt1/step3/show_ip_route.ref index 2b281b74fb24..e51763a851b9 100644 --- a/tests/topotests/isis_lsp_bits_topo1/rt1/step3/show_ip_route.ref +++ b/tests/topotests/isis_lsp_bits_topo1/rt1/step3/show_ip_route.ref @@ -38,25 +38,5 @@ } ] } - ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } ] } diff --git a/tests/topotests/isis_lsp_bits_topo1/rt1/step4/show_ip_route.ref b/tests/topotests/isis_lsp_bits_topo1/rt1/step4/show_ip_route.ref index 8557f4b010f2..e97c78057ce4 100644 --- a/tests/topotests/isis_lsp_bits_topo1/rt1/step4/show_ip_route.ref +++ b/tests/topotests/isis_lsp_bits_topo1/rt1/step4/show_ip_route.ref @@ -65,25 +65,5 @@ } ] } - ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } ] } diff --git a/tests/topotests/isis_lsp_bits_topo1/rt2/step1/show_ip_route.ref b/tests/topotests/isis_lsp_bits_topo1/rt2/step1/show_ip_route.ref index d7e886ce862d..2b9c1f354f78 100644 --- a/tests/topotests/isis_lsp_bits_topo1/rt2/step1/show_ip_route.ref +++ b/tests/topotests/isis_lsp_bits_topo1/rt2/step1/show_ip_route.ref @@ -38,40 +38,5 @@ } ] } - ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } ] } diff --git a/tests/topotests/isis_lsp_bits_topo1/rt3/step1/show_ip_route.ref b/tests/topotests/isis_lsp_bits_topo1/rt3/step1/show_ip_route.ref index 55f0aedef501..b0ed64f59111 100644 --- a/tests/topotests/isis_lsp_bits_topo1/rt3/step1/show_ip_route.ref +++ b/tests/topotests/isis_lsp_bits_topo1/rt3/step1/show_ip_route.ref @@ -58,40 +58,5 @@ } ] } - ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } ] } diff --git a/tests/topotests/isis_lsp_bits_topo1/rt4/step1/show_ip_route.ref b/tests/topotests/isis_lsp_bits_topo1/rt4/step1/show_ip_route.ref index 2cf5c406355f..50155fb47ed9 100644 --- a/tests/topotests/isis_lsp_bits_topo1/rt4/step1/show_ip_route.ref +++ b/tests/topotests/isis_lsp_bits_topo1/rt4/step1/show_ip_route.ref @@ -19,51 +19,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2" - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_lsp_bits_topo1/rt5/step1/show_ip_route.ref b/tests/topotests/isis_lsp_bits_topo1/rt5/step1/show_ip_route.ref index 358d0a230cfb..9567a22cddf8 100644 --- a/tests/topotests/isis_lsp_bits_topo1/rt5/step1/show_ip_route.ref +++ b/tests/topotests/isis_lsp_bits_topo1/rt5/step1/show_ip_route.ref @@ -39,36 +39,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3" - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -96,21 +66,5 @@ } ] } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "weight":1 - } - ] - } ] } diff --git a/tests/topotests/isis_lsp_bits_topo1/rt6/step1/show_ip_route.ref b/tests/topotests/isis_lsp_bits_topo1/rt6/step1/show_ip_route.ref index 40375792a4cf..101a2902a059 100644 --- a/tests/topotests/isis_lsp_bits_topo1/rt6/step1/show_ip_route.ref +++ b/tests/topotests/isis_lsp_bits_topo1/rt6/step1/show_ip_route.ref @@ -72,35 +72,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } ] } diff --git a/tests/topotests/isis_lsp_bits_topo1/rt6/step2/show_ip_route.ref b/tests/topotests/isis_lsp_bits_topo1/rt6/step2/show_ip_route.ref index 8083be4cfbfe..3b30cf33c675 100644 --- a/tests/topotests/isis_lsp_bits_topo1/rt6/step2/show_ip_route.ref +++ b/tests/topotests/isis_lsp_bits_topo1/rt6/step2/show_ip_route.ref @@ -65,35 +65,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } ] } diff --git a/tests/topotests/isis_lsp_bits_topo1/rt6/step3/show_ip_route.ref b/tests/topotests/isis_lsp_bits_topo1/rt6/step3/show_ip_route.ref index 1ba8c8cda849..f83f944294f4 100644 --- a/tests/topotests/isis_lsp_bits_topo1/rt6/step3/show_ip_route.ref +++ b/tests/topotests/isis_lsp_bits_topo1/rt6/step3/show_ip_route.ref @@ -45,35 +45,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } ] } diff --git a/tests/topotests/isis_lsp_bits_topo1/rt6/step4/show_ip_route.ref b/tests/topotests/isis_lsp_bits_topo1/rt6/step4/show_ip_route.ref index 40375792a4cf..101a2902a059 100644 --- a/tests/topotests/isis_lsp_bits_topo1/rt6/step4/show_ip_route.ref +++ b/tests/topotests/isis_lsp_bits_topo1/rt6/step4/show_ip_route.ref @@ -72,35 +72,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } ] } diff --git a/tests/topotests/isis_sr_topo1/rt1/step1/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt1/step1/show_ip_route.ref index 53bf8cb4458b..bd211a830fc1 100644 --- a/tests/topotests/isis_sr_topo1/rt1/step1/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt1/step1/show_ip_route.ref @@ -124,26 +124,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt1/step10/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt1/step10/show_ip_route.ref index c712538c00b3..95c94d55213f 100644 --- a/tests/topotests/isis_sr_topo1/rt1/step10/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt1/step10/show_ip_route.ref @@ -124,26 +124,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt1/step2/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt1/step2/show_ip_route.ref index c712538c00b3..95c94d55213f 100644 --- a/tests/topotests/isis_sr_topo1/rt1/step2/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt1/step2/show_ip_route.ref @@ -124,26 +124,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt1/step3/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt1/step3/show_ip_route.ref index 71f9ebddfbd2..0d5721c83b68 100644 --- a/tests/topotests/isis_sr_topo1/rt1/step3/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt1/step3/show_ip_route.ref @@ -91,26 +91,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt1/step4/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt1/step4/show_ip_route.ref index c712538c00b3..95c94d55213f 100644 --- a/tests/topotests/isis_sr_topo1/rt1/step4/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt1/step4/show_ip_route.ref @@ -124,26 +124,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt1/step5/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt1/step5/show_ip_route.ref index 16d9358468a9..3c3060199e0c 100644 --- a/tests/topotests/isis_sr_topo1/rt1/step5/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt1/step5/show_ip_route.ref @@ -118,26 +118,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt1/step6/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt1/step6/show_ip_route.ref index c712538c00b3..95c94d55213f 100644 --- a/tests/topotests/isis_sr_topo1/rt1/step6/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt1/step6/show_ip_route.ref @@ -124,26 +124,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt1/step7/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt1/step7/show_ip_route.ref index c712538c00b3..95c94d55213f 100644 --- a/tests/topotests/isis_sr_topo1/rt1/step7/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt1/step7/show_ip_route.ref @@ -124,26 +124,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt1/step8/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt1/step8/show_ip_route.ref index c712538c00b3..95c94d55213f 100644 --- a/tests/topotests/isis_sr_topo1/rt1/step8/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt1/step8/show_ip_route.ref @@ -124,26 +124,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt1/step9/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt1/step9/show_ip_route.ref index c712538c00b3..95c94d55213f 100644 --- a/tests/topotests/isis_sr_topo1/rt1/step9/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt1/step9/show_ip_route.ref @@ -124,26 +124,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt2/step1/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt2/step1/show_ip_route.ref index 109b94f7a198..284060833119 100644 --- a/tests/topotests/isis_sr_topo1/rt2/step1/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt2/step1/show_ip_route.ref @@ -154,68 +154,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1" - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt2/step10/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt2/step10/show_ip_route.ref index b7d52cecca7a..9921c3c5e941 100644 --- a/tests/topotests/isis_sr_topo1/rt2/step10/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt2/step10/show_ip_route.ref @@ -114,41 +114,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt2/step2/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt2/step2/show_ip_route.ref index 159392f7f768..043b2b66274c 100644 --- a/tests/topotests/isis_sr_topo1/rt2/step2/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt2/step2/show_ip_route.ref @@ -134,68 +134,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1" - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt2/step3/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt2/step3/show_ip_route.ref index 16f49ffe464e..09c204955a39 100644 --- a/tests/topotests/isis_sr_topo1/rt2/step3/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt2/step3/show_ip_route.ref @@ -101,68 +101,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1" - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt2/step4/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt2/step4/show_ip_route.ref index 159392f7f768..043b2b66274c 100644 --- a/tests/topotests/isis_sr_topo1/rt2/step4/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt2/step4/show_ip_route.ref @@ -134,68 +134,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1" - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt2/step5/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt2/step5/show_ip_route.ref index fbfcce10aabb..723a10b78bb1 100644 --- a/tests/topotests/isis_sr_topo1/rt2/step5/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt2/step5/show_ip_route.ref @@ -128,68 +128,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1" - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt2/step6/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt2/step6/show_ip_route.ref index 159392f7f768..043b2b66274c 100644 --- a/tests/topotests/isis_sr_topo1/rt2/step6/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt2/step6/show_ip_route.ref @@ -134,68 +134,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1" - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt2/step7/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt2/step7/show_ip_route.ref index 09ab6d4f8a64..b5fc6d79986e 100644 --- a/tests/topotests/isis_sr_topo1/rt2/step7/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt2/step7/show_ip_route.ref @@ -131,68 +131,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1" - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt2/step8/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt2/step8/show_ip_route.ref index 159392f7f768..043b2b66274c 100644 --- a/tests/topotests/isis_sr_topo1/rt2/step8/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt2/step8/show_ip_route.ref @@ -134,68 +134,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1" - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt2/step9/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt2/step9/show_ip_route.ref index fc82ada7e378..357750a18aa3 100644 --- a/tests/topotests/isis_sr_topo1/rt2/step9/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt2/step9/show_ip_route.ref @@ -134,68 +134,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1" - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt3/step1/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt3/step1/show_ip_route.ref index 241f76885969..44364b2835ca 100644 --- a/tests/topotests/isis_sr_topo1/rt3/step1/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt3/step1/show_ip_route.ref @@ -154,26 +154,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -214,48 +194,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1" - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2" - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt3/step10/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt3/step10/show_ip_route.ref index 40a98ab7c683..3ce15cda892d 100644 --- a/tests/topotests/isis_sr_topo1/rt3/step10/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt3/step10/show_ip_route.ref @@ -134,26 +134,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -194,48 +174,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1" - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2" - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt3/step2/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt3/step2/show_ip_route.ref index 55d8213c4ed1..a0dc00cffb16 100644 --- a/tests/topotests/isis_sr_topo1/rt3/step2/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt3/step2/show_ip_route.ref @@ -134,26 +134,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -194,48 +174,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1" - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2" - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt3/step3/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt3/step3/show_ip_route.ref index ed5cef8a5bb8..f897c8a0835f 100644 --- a/tests/topotests/isis_sr_topo1/rt3/step3/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt3/step3/show_ip_route.ref @@ -101,26 +101,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -161,48 +141,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1" - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2" - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt3/step4/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt3/step4/show_ip_route.ref index 55d8213c4ed1..a0dc00cffb16 100644 --- a/tests/topotests/isis_sr_topo1/rt3/step4/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt3/step4/show_ip_route.ref @@ -134,26 +134,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -194,48 +174,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1" - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2" - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt3/step5/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt3/step5/show_ip_route.ref index 3adcdce58cb8..f29890666bbf 100644 --- a/tests/topotests/isis_sr_topo1/rt3/step5/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt3/step5/show_ip_route.ref @@ -128,26 +128,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -188,48 +168,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1" - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2" - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt3/step6/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt3/step6/show_ip_route.ref index 55d8213c4ed1..a0dc00cffb16 100644 --- a/tests/topotests/isis_sr_topo1/rt3/step6/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt3/step6/show_ip_route.ref @@ -134,26 +134,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -194,48 +174,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1" - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2" - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt3/step7/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt3/step7/show_ip_route.ref index 7f6e05f08b4e..8f85d756a2cb 100644 --- a/tests/topotests/isis_sr_topo1/rt3/step7/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt3/step7/show_ip_route.ref @@ -131,26 +131,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -191,48 +171,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1" - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2" - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt3/step8/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt3/step8/show_ip_route.ref index 55d8213c4ed1..a0dc00cffb16 100644 --- a/tests/topotests/isis_sr_topo1/rt3/step8/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt3/step8/show_ip_route.ref @@ -134,26 +134,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -194,48 +174,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1" - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2" - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt3/step9/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt3/step9/show_ip_route.ref index 40a98ab7c683..3ce15cda892d 100644 --- a/tests/topotests/isis_sr_topo1/rt3/step9/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt3/step9/show_ip_route.ref @@ -134,26 +134,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -194,48 +174,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1" - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2" - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt4/step1/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt4/step1/show_ip_route.ref index 493f3ab60dcd..506c04b94c91 100644 --- a/tests/topotests/isis_sr_topo1/rt4/step1/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt4/step1/show_ip_route.ref @@ -181,48 +181,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1" - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -263,36 +221,6 @@ ] } ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt4/step10/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt4/step10/show_ip_route.ref index 11bc9483193d..d72a42819956 100644 --- a/tests/topotests/isis_sr_topo1/rt4/step10/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt4/step10/show_ip_route.ref @@ -154,21 +154,6 @@ ] } ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -240,21 +225,6 @@ ] } ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt4/step2/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt4/step2/show_ip_route.ref index c2fbdeb30ea7..d0b5aa21adb4 100644 --- a/tests/topotests/isis_sr_topo1/rt4/step2/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt4/step2/show_ip_route.ref @@ -171,48 +171,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1" - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -298,21 +256,6 @@ ] } ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt4/step3/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt4/step3/show_ip_route.ref index f2a54bf95869..49f4068e3cbb 100644 --- a/tests/topotests/isis_sr_topo1/rt4/step3/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt4/step3/show_ip_route.ref @@ -158,48 +158,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1" - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt4/step4/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt4/step4/show_ip_route.ref index e930657f8dc3..2ba73ce70208 100644 --- a/tests/topotests/isis_sr_topo1/rt4/step4/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt4/step4/show_ip_route.ref @@ -171,48 +171,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1" - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -298,21 +256,6 @@ ] } ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt4/step5/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt4/step5/show_ip_route.ref index 8b0ddd4ee522..89f1bcfaec54 100644 --- a/tests/topotests/isis_sr_topo1/rt4/step5/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt4/step5/show_ip_route.ref @@ -165,48 +165,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1" - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -292,21 +250,6 @@ ] } ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt4/step6/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt4/step6/show_ip_route.ref index e930657f8dc3..2ba73ce70208 100644 --- a/tests/topotests/isis_sr_topo1/rt4/step6/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt4/step6/show_ip_route.ref @@ -171,48 +171,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1" - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -298,21 +256,6 @@ ] } ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt4/step7/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt4/step7/show_ip_route.ref index f5ac45504e27..0e86d26a326d 100644 --- a/tests/topotests/isis_sr_topo1/rt4/step7/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt4/step7/show_ip_route.ref @@ -165,48 +165,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1" - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -292,21 +250,6 @@ ] } ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt4/step8/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt4/step8/show_ip_route.ref index e930657f8dc3..2ba73ce70208 100644 --- a/tests/topotests/isis_sr_topo1/rt4/step8/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt4/step8/show_ip_route.ref @@ -171,48 +171,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1" - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -298,21 +256,6 @@ ] } ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt4/step9/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt4/step9/show_ip_route.ref index a2b939a41828..7b813f156b30 100644 --- a/tests/topotests/isis_sr_topo1/rt4/step9/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt4/step9/show_ip_route.ref @@ -171,48 +171,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1" - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -298,21 +256,6 @@ ] } ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt5/step1/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt5/step1/show_ip_route.ref index 0497bd8399bc..6d0e362dadc1 100644 --- a/tests/topotests/isis_sr_topo1/rt5/step1/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt5/step1/show_ip_route.ref @@ -221,63 +221,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1" - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2" - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -305,21 +248,6 @@ ] } ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.10.10.10\/32":[ { "prefix":"10.10.10.10\/32", diff --git a/tests/topotests/isis_sr_topo1/rt5/step10/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt5/step10/show_ip_route.ref index 29f47824826f..e0e49b35da30 100644 --- a/tests/topotests/isis_sr_topo1/rt5/step10/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt5/step10/show_ip_route.ref @@ -232,48 +232,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1" - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2" - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -294,21 +252,6 @@ ] } ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.10.10.10\/32":[ { "prefix":"10.10.10.10\/32", diff --git a/tests/topotests/isis_sr_topo1/rt5/step2/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt5/step2/show_ip_route.ref index dc61b8641033..aeebc71065a0 100644 --- a/tests/topotests/isis_sr_topo1/rt5/step2/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt5/step2/show_ip_route.ref @@ -239,48 +239,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1" - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2" - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -301,21 +259,6 @@ ] } ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.10.10.10\/32":[ { "prefix":"10.10.10.10\/32", diff --git a/tests/topotests/isis_sr_topo1/rt5/step3/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt5/step3/show_ip_route.ref index 2d983c43b62d..ce1678d98899 100644 --- a/tests/topotests/isis_sr_topo1/rt5/step3/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt5/step3/show_ip_route.ref @@ -212,48 +212,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1" - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2" - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt5/step4/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt5/step4/show_ip_route.ref index 0a64db60f648..19ab0f640045 100644 --- a/tests/topotests/isis_sr_topo1/rt5/step4/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt5/step4/show_ip_route.ref @@ -239,48 +239,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1" - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2" - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt5/step5/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt5/step5/show_ip_route.ref index 88485477e3b4..3a66c8da7ca0 100644 --- a/tests/topotests/isis_sr_topo1/rt5/step5/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt5/step5/show_ip_route.ref @@ -233,48 +233,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1" - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2" - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt5/step6/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt5/step6/show_ip_route.ref index 0a64db60f648..19ab0f640045 100644 --- a/tests/topotests/isis_sr_topo1/rt5/step6/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt5/step6/show_ip_route.ref @@ -239,48 +239,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1" - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2" - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt5/step7/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt5/step7/show_ip_route.ref index 769bc4d31e00..b71cac19dd3e 100644 --- a/tests/topotests/isis_sr_topo1/rt5/step7/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt5/step7/show_ip_route.ref @@ -233,48 +233,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1" - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2" - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt5/step8/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt5/step8/show_ip_route.ref index 0a64db60f648..19ab0f640045 100644 --- a/tests/topotests/isis_sr_topo1/rt5/step8/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt5/step8/show_ip_route.ref @@ -239,48 +239,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1" - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2" - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt5/step9/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt5/step9/show_ip_route.ref index 34cbf68b214e..d2703199748a 100644 --- a/tests/topotests/isis_sr_topo1/rt5/step9/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt5/step9/show_ip_route.ref @@ -239,48 +239,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1" - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2" - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", diff --git a/tests/topotests/isis_sr_topo1/rt6/step1/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt6/step1/show_ip_route.ref index 7b62b0a9c616..ee345973fd17 100644 --- a/tests/topotests/isis_sr_topo1/rt6/step1/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt6/step1/show_ip_route.ref @@ -258,36 +258,6 @@ ] } ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } - ], "10.10.10.10\/32":[ { "prefix":"10.10.10.10\/32", diff --git a/tests/topotests/isis_sr_topo1/rt6/step10/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt6/step10/show_ip_route.ref index d430ef5a331a..f8a2a22b187a 100644 --- a/tests/topotests/isis_sr_topo1/rt6/step10/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt6/step10/show_ip_route.ref @@ -251,36 +251,6 @@ ] } ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } - ], "10.10.10.10\/32":[ { "prefix":"10.10.10.10\/32", diff --git a/tests/topotests/isis_sr_topo1/rt6/step2/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt6/step2/show_ip_route.ref index 4b204dbc4c10..ba8fc69c51c4 100644 --- a/tests/topotests/isis_sr_topo1/rt6/step2/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt6/step2/show_ip_route.ref @@ -251,36 +251,6 @@ ] } ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } - ], "10.10.10.10\/32":[ { "prefix":"10.10.10.10\/32", diff --git a/tests/topotests/isis_sr_topo1/rt6/step4/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt6/step4/show_ip_route.ref index 4b204dbc4c10..ba8fc69c51c4 100644 --- a/tests/topotests/isis_sr_topo1/rt6/step4/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt6/step4/show_ip_route.ref @@ -251,36 +251,6 @@ ] } ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } - ], "10.10.10.10\/32":[ { "prefix":"10.10.10.10\/32", diff --git a/tests/topotests/isis_sr_topo1/rt6/step5/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt6/step5/show_ip_route.ref index 3ccd57a6fd48..d8738b551e2a 100644 --- a/tests/topotests/isis_sr_topo1/rt6/step5/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt6/step5/show_ip_route.ref @@ -233,36 +233,6 @@ ] } ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } - ], "10.10.10.10\/32":[ { "prefix":"10.10.10.10\/32", diff --git a/tests/topotests/isis_sr_topo1/rt6/step6/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt6/step6/show_ip_route.ref index 4b204dbc4c10..ba8fc69c51c4 100644 --- a/tests/topotests/isis_sr_topo1/rt6/step6/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt6/step6/show_ip_route.ref @@ -251,36 +251,6 @@ ] } ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } - ], "10.10.10.10\/32":[ { "prefix":"10.10.10.10\/32", diff --git a/tests/topotests/isis_sr_topo1/rt6/step7/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt6/step7/show_ip_route.ref index 178798820740..7b1a3be6a94b 100644 --- a/tests/topotests/isis_sr_topo1/rt6/step7/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt6/step7/show_ip_route.ref @@ -245,36 +245,6 @@ ] } ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } - ], "10.10.10.10\/32":[ { "prefix":"10.10.10.10\/32", diff --git a/tests/topotests/isis_sr_topo1/rt6/step8/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt6/step8/show_ip_route.ref index 4b204dbc4c10..ba8fc69c51c4 100644 --- a/tests/topotests/isis_sr_topo1/rt6/step8/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt6/step8/show_ip_route.ref @@ -251,36 +251,6 @@ ] } ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } - ], "10.10.10.10\/32":[ { "prefix":"10.10.10.10\/32", diff --git a/tests/topotests/isis_sr_topo1/rt6/step9/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt6/step9/show_ip_route.ref index 4b204dbc4c10..ba8fc69c51c4 100644 --- a/tests/topotests/isis_sr_topo1/rt6/step9/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt6/step9/show_ip_route.ref @@ -251,36 +251,6 @@ ] } ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } - ], "10.10.10.10\/32":[ { "prefix":"10.10.10.10\/32", diff --git a/tests/topotests/isis_srv6_topo1/rt1/step1/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt1/step1/show_ip_route.ref index 590d75afbf99..be39d280650d 100644 --- a/tests/topotests/isis_srv6_topo1/rt1/step1/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt1/step1/show_ip_route.ref @@ -106,26 +106,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt1/step2/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt1/step2/show_ip_route.ref index 590d75afbf99..be39d280650d 100644 --- a/tests/topotests/isis_srv6_topo1/rt1/step2/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt1/step2/show_ip_route.ref @@ -106,26 +106,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt1/step3/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt1/step3/show_ip_route.ref index 590d75afbf99..be39d280650d 100644 --- a/tests/topotests/isis_srv6_topo1/rt1/step3/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt1/step3/show_ip_route.ref @@ -106,26 +106,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt1/step4/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt1/step4/show_ip_route.ref index 590d75afbf99..be39d280650d 100644 --- a/tests/topotests/isis_srv6_topo1/rt1/step4/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt1/step4/show_ip_route.ref @@ -106,26 +106,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt1/step5/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt1/step5/show_ip_route.ref index 590d75afbf99..be39d280650d 100644 --- a/tests/topotests/isis_srv6_topo1/rt1/step5/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt1/step5/show_ip_route.ref @@ -106,26 +106,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt1/step6/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt1/step6/show_ip_route.ref index 590d75afbf99..be39d280650d 100644 --- a/tests/topotests/isis_srv6_topo1/rt1/step6/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt1/step6/show_ip_route.ref @@ -106,26 +106,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt1/step7/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt1/step7/show_ip_route.ref index 590d75afbf99..be39d280650d 100644 --- a/tests/topotests/isis_srv6_topo1/rt1/step7/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt1/step7/show_ip_route.ref @@ -106,26 +106,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt1/step8/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt1/step8/show_ip_route.ref index 590d75afbf99..be39d280650d 100644 --- a/tests/topotests/isis_srv6_topo1/rt1/step8/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt1/step8/show_ip_route.ref @@ -106,26 +106,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt1/step9/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt1/step9/show_ip_route.ref index 590d75afbf99..be39d280650d 100644 --- a/tests/topotests/isis_srv6_topo1/rt1/step9/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt1/step9/show_ip_route.ref @@ -106,26 +106,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt2/step1/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt2/step1/show_ip_route.ref index 1d4a9e9a25bf..389417be2923 100644 --- a/tests/topotests/isis_srv6_topo1/rt2/step1/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt2/step1/show_ip_route.ref @@ -127,68 +127,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1" - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt2/step2/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt2/step2/show_ip_route.ref index 1d4a9e9a25bf..389417be2923 100644 --- a/tests/topotests/isis_srv6_topo1/rt2/step2/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt2/step2/show_ip_route.ref @@ -127,68 +127,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1" - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt2/step3/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt2/step3/show_ip_route.ref index 1d4a9e9a25bf..389417be2923 100644 --- a/tests/topotests/isis_srv6_topo1/rt2/step3/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt2/step3/show_ip_route.ref @@ -127,68 +127,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1" - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt2/step4/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt2/step4/show_ip_route.ref index 1d4a9e9a25bf..389417be2923 100644 --- a/tests/topotests/isis_srv6_topo1/rt2/step4/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt2/step4/show_ip_route.ref @@ -127,68 +127,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1" - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt2/step5/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt2/step5/show_ip_route.ref index 1d4a9e9a25bf..389417be2923 100644 --- a/tests/topotests/isis_srv6_topo1/rt2/step5/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt2/step5/show_ip_route.ref @@ -127,68 +127,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1" - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt2/step6/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt2/step6/show_ip_route.ref index 1d4a9e9a25bf..389417be2923 100644 --- a/tests/topotests/isis_srv6_topo1/rt2/step6/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt2/step6/show_ip_route.ref @@ -127,68 +127,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1" - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt2/step7/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt2/step7/show_ip_route.ref index 1d4a9e9a25bf..389417be2923 100644 --- a/tests/topotests/isis_srv6_topo1/rt2/step7/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt2/step7/show_ip_route.ref @@ -127,68 +127,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1" - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt2/step8/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt2/step8/show_ip_route.ref index 1d4a9e9a25bf..389417be2923 100644 --- a/tests/topotests/isis_srv6_topo1/rt2/step8/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt2/step8/show_ip_route.ref @@ -127,68 +127,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1" - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt2/step9/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt2/step9/show_ip_route.ref index 1d4a9e9a25bf..389417be2923 100644 --- a/tests/topotests/isis_srv6_topo1/rt2/step9/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt2/step9/show_ip_route.ref @@ -127,68 +127,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1" - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt3/step1/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt3/step1/show_ip_route.ref index 6ce5760e4f1d..058bad8f2e4e 100644 --- a/tests/topotests/isis_srv6_topo1/rt3/step1/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt3/step1/show_ip_route.ref @@ -127,26 +127,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -187,48 +167,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1" - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2" - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt3/step2/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt3/step2/show_ip_route.ref index 6ce5760e4f1d..058bad8f2e4e 100644 --- a/tests/topotests/isis_srv6_topo1/rt3/step2/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt3/step2/show_ip_route.ref @@ -127,26 +127,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -187,48 +167,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1" - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2" - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt3/step3/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt3/step3/show_ip_route.ref index 6ce5760e4f1d..058bad8f2e4e 100644 --- a/tests/topotests/isis_srv6_topo1/rt3/step3/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt3/step3/show_ip_route.ref @@ -127,26 +127,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -187,48 +167,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1" - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2" - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt3/step4/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt3/step4/show_ip_route.ref index 6ce5760e4f1d..058bad8f2e4e 100644 --- a/tests/topotests/isis_srv6_topo1/rt3/step4/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt3/step4/show_ip_route.ref @@ -127,26 +127,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -187,48 +167,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1" - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2" - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt3/step5/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt3/step5/show_ip_route.ref index 6ce5760e4f1d..058bad8f2e4e 100644 --- a/tests/topotests/isis_srv6_topo1/rt3/step5/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt3/step5/show_ip_route.ref @@ -127,26 +127,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -187,48 +167,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1" - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2" - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt3/step6/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt3/step6/show_ip_route.ref index 6ce5760e4f1d..058bad8f2e4e 100644 --- a/tests/topotests/isis_srv6_topo1/rt3/step6/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt3/step6/show_ip_route.ref @@ -127,26 +127,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -187,48 +167,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1" - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2" - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt3/step7/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt3/step7/show_ip_route.ref index 6ce5760e4f1d..058bad8f2e4e 100644 --- a/tests/topotests/isis_srv6_topo1/rt3/step7/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt3/step7/show_ip_route.ref @@ -127,26 +127,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -187,48 +167,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1" - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2" - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt3/step8/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt3/step8/show_ip_route.ref index 6ce5760e4f1d..058bad8f2e4e 100644 --- a/tests/topotests/isis_srv6_topo1/rt3/step8/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt3/step8/show_ip_route.ref @@ -127,26 +127,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -187,48 +167,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1" - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2" - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt3/step9/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt3/step9/show_ip_route.ref index 6ce5760e4f1d..058bad8f2e4e 100644 --- a/tests/topotests/isis_srv6_topo1/rt3/step9/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt3/step9/show_ip_route.ref @@ -127,26 +127,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -187,48 +167,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1" - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2" - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt4/step1/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt4/step1/show_ip_route.ref index 0f26fa5d7aed..2522d22898c2 100644 --- a/tests/topotests/isis_srv6_topo1/rt4/step1/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt4/step1/show_ip_route.ref @@ -154,48 +154,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1" - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -236,36 +194,6 @@ ] } ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt4/step2/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt4/step2/show_ip_route.ref index 0f26fa5d7aed..2522d22898c2 100644 --- a/tests/topotests/isis_srv6_topo1/rt4/step2/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt4/step2/show_ip_route.ref @@ -154,48 +154,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1" - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -236,36 +194,6 @@ ] } ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt4/step3/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt4/step3/show_ip_route.ref index 0f26fa5d7aed..2522d22898c2 100644 --- a/tests/topotests/isis_srv6_topo1/rt4/step3/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt4/step3/show_ip_route.ref @@ -154,48 +154,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1" - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -236,36 +194,6 @@ ] } ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt4/step4/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt4/step4/show_ip_route.ref index 0f26fa5d7aed..2522d22898c2 100644 --- a/tests/topotests/isis_srv6_topo1/rt4/step4/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt4/step4/show_ip_route.ref @@ -154,48 +154,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1" - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -236,36 +194,6 @@ ] } ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt4/step5/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt4/step5/show_ip_route.ref index 0f26fa5d7aed..2522d22898c2 100644 --- a/tests/topotests/isis_srv6_topo1/rt4/step5/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt4/step5/show_ip_route.ref @@ -154,48 +154,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1" - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -236,36 +194,6 @@ ] } ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt4/step6/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt4/step6/show_ip_route.ref index 0f26fa5d7aed..2522d22898c2 100644 --- a/tests/topotests/isis_srv6_topo1/rt4/step6/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt4/step6/show_ip_route.ref @@ -154,48 +154,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1" - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -236,36 +194,6 @@ ] } ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt4/step7/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt4/step7/show_ip_route.ref index 0f26fa5d7aed..2522d22898c2 100644 --- a/tests/topotests/isis_srv6_topo1/rt4/step7/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt4/step7/show_ip_route.ref @@ -154,48 +154,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1" - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -236,36 +194,6 @@ ] } ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt4/step8/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt4/step8/show_ip_route.ref index 0f26fa5d7aed..2522d22898c2 100644 --- a/tests/topotests/isis_srv6_topo1/rt4/step8/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt4/step8/show_ip_route.ref @@ -154,48 +154,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1" - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -236,36 +194,6 @@ ] } ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt4/step9/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt4/step9/show_ip_route.ref index 0f26fa5d7aed..2522d22898c2 100644 --- a/tests/topotests/isis_srv6_topo1/rt4/step9/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt4/step9/show_ip_route.ref @@ -154,48 +154,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1" - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -236,36 +194,6 @@ ] } ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_srv6_topo1/rt5/step1/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt5/step1/show_ip_route.ref index 65beaa59987c..ffdb040f2f42 100644 --- a/tests/topotests/isis_srv6_topo1/rt5/step1/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt5/step1/show_ip_route.ref @@ -194,63 +194,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1" - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2" - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -277,20 +220,5 @@ } ] } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } ] } diff --git a/tests/topotests/isis_srv6_topo1/rt5/step2/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt5/step2/show_ip_route.ref index 65beaa59987c..ffdb040f2f42 100644 --- a/tests/topotests/isis_srv6_topo1/rt5/step2/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt5/step2/show_ip_route.ref @@ -194,63 +194,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1" - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2" - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -277,20 +220,5 @@ } ] } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } ] } diff --git a/tests/topotests/isis_srv6_topo1/rt5/step3/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt5/step3/show_ip_route.ref index 65beaa59987c..ffdb040f2f42 100644 --- a/tests/topotests/isis_srv6_topo1/rt5/step3/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt5/step3/show_ip_route.ref @@ -194,63 +194,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1" - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2" - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -277,20 +220,5 @@ } ] } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } ] } diff --git a/tests/topotests/isis_srv6_topo1/rt5/step4/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt5/step4/show_ip_route.ref index 65beaa59987c..ffdb040f2f42 100644 --- a/tests/topotests/isis_srv6_topo1/rt5/step4/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt5/step4/show_ip_route.ref @@ -194,63 +194,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1" - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2" - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -277,20 +220,5 @@ } ] } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } ] } diff --git a/tests/topotests/isis_srv6_topo1/rt5/step5/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt5/step5/show_ip_route.ref index 65beaa59987c..ffdb040f2f42 100644 --- a/tests/topotests/isis_srv6_topo1/rt5/step5/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt5/step5/show_ip_route.ref @@ -194,63 +194,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1" - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2" - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -277,20 +220,5 @@ } ] } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } ] } diff --git a/tests/topotests/isis_srv6_topo1/rt5/step6/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt5/step6/show_ip_route.ref index 65beaa59987c..ffdb040f2f42 100644 --- a/tests/topotests/isis_srv6_topo1/rt5/step6/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt5/step6/show_ip_route.ref @@ -194,63 +194,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1" - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2" - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -277,20 +220,5 @@ } ] } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } ] } diff --git a/tests/topotests/isis_srv6_topo1/rt5/step7/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt5/step7/show_ip_route.ref index 65beaa59987c..ffdb040f2f42 100644 --- a/tests/topotests/isis_srv6_topo1/rt5/step7/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt5/step7/show_ip_route.ref @@ -194,63 +194,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1" - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2" - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -277,20 +220,5 @@ } ] } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } ] } diff --git a/tests/topotests/isis_srv6_topo1/rt5/step8/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt5/step8/show_ip_route.ref index 65beaa59987c..ffdb040f2f42 100644 --- a/tests/topotests/isis_srv6_topo1/rt5/step8/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt5/step8/show_ip_route.ref @@ -194,63 +194,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1" - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2" - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -277,20 +220,5 @@ } ] } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } ] } diff --git a/tests/topotests/isis_srv6_topo1/rt5/step9/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt5/step9/show_ip_route.ref index 65beaa59987c..ffdb040f2f42 100644 --- a/tests/topotests/isis_srv6_topo1/rt5/step9/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt5/step9/show_ip_route.ref @@ -194,63 +194,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1" - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2" - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -277,20 +220,5 @@ } ] } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } ] } diff --git a/tests/topotests/isis_srv6_topo1/rt6/step1/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt6/step1/show_ip_route.ref index 5fc293b6d8a5..1780825f0591 100644 --- a/tests/topotests/isis_srv6_topo1/rt6/step1/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt6/step1/show_ip_route.ref @@ -239,35 +239,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } ] } diff --git a/tests/topotests/isis_srv6_topo1/rt6/step2/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt6/step2/show_ip_route.ref index 5fc293b6d8a5..1780825f0591 100644 --- a/tests/topotests/isis_srv6_topo1/rt6/step2/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt6/step2/show_ip_route.ref @@ -239,35 +239,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } ] } diff --git a/tests/topotests/isis_srv6_topo1/rt6/step3/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt6/step3/show_ip_route.ref index 5fc293b6d8a5..1780825f0591 100644 --- a/tests/topotests/isis_srv6_topo1/rt6/step3/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt6/step3/show_ip_route.ref @@ -239,35 +239,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } ] } diff --git a/tests/topotests/isis_srv6_topo1/rt6/step4/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt6/step4/show_ip_route.ref index 5fc293b6d8a5..1780825f0591 100644 --- a/tests/topotests/isis_srv6_topo1/rt6/step4/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt6/step4/show_ip_route.ref @@ -239,35 +239,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } ] } diff --git a/tests/topotests/isis_srv6_topo1/rt6/step5/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt6/step5/show_ip_route.ref index 5fc293b6d8a5..1780825f0591 100644 --- a/tests/topotests/isis_srv6_topo1/rt6/step5/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt6/step5/show_ip_route.ref @@ -239,35 +239,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } ] } diff --git a/tests/topotests/isis_srv6_topo1/rt6/step6/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt6/step6/show_ip_route.ref index 5fc293b6d8a5..1780825f0591 100644 --- a/tests/topotests/isis_srv6_topo1/rt6/step6/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt6/step6/show_ip_route.ref @@ -239,35 +239,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } ] } diff --git a/tests/topotests/isis_srv6_topo1/rt6/step7/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt6/step7/show_ip_route.ref index 5fc293b6d8a5..1780825f0591 100644 --- a/tests/topotests/isis_srv6_topo1/rt6/step7/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt6/step7/show_ip_route.ref @@ -239,35 +239,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } ] } diff --git a/tests/topotests/isis_srv6_topo1/rt6/step8/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt6/step8/show_ip_route.ref index 5fc293b6d8a5..1780825f0591 100644 --- a/tests/topotests/isis_srv6_topo1/rt6/step8/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt6/step8/show_ip_route.ref @@ -239,35 +239,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } ] } diff --git a/tests/topotests/isis_srv6_topo1/rt6/step9/show_ip_route.ref b/tests/topotests/isis_srv6_topo1/rt6/step9/show_ip_route.ref index 5fc293b6d8a5..1780825f0591 100644 --- a/tests/topotests/isis_srv6_topo1/rt6/step9/show_ip_route.ref +++ b/tests/topotests/isis_srv6_topo1/rt6/step9/show_ip_route.ref @@ -239,35 +239,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4" - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } ] } diff --git a/tests/topotests/isis_tilfa_topo1/rt1/step1/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt1/step1/show_ip_route.ref index 92b7437324a6..688f078ef75b 100644 --- a/tests/topotests/isis_tilfa_topo1/rt1/step1/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt1/step1/show_ip_route.ref @@ -124,26 +124,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt1/step2/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt1/step2/show_ip_route.ref index 92b7437324a6..688f078ef75b 100644 --- a/tests/topotests/isis_tilfa_topo1/rt1/step2/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt1/step2/show_ip_route.ref @@ -124,26 +124,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt1/step3/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt1/step3/show_ip_route.ref index 92b7437324a6..688f078ef75b 100644 --- a/tests/topotests/isis_tilfa_topo1/rt1/step3/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt1/step3/show_ip_route.ref @@ -124,26 +124,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt1/step4/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt1/step4/show_ip_route.ref index 89e0b166b1e1..cc9eaed2d5ce 100644 --- a/tests/topotests/isis_tilfa_topo1/rt1/step4/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt1/step4/show_ip_route.ref @@ -121,26 +121,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt1/step5/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt1/step5/show_ip_route.ref index 92b7437324a6..688f078ef75b 100644 --- a/tests/topotests/isis_tilfa_topo1/rt1/step5/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt1/step5/show_ip_route.ref @@ -124,26 +124,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt1/step6/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt1/step6/show_ip_route.ref index 92b7437324a6..688f078ef75b 100644 --- a/tests/topotests/isis_tilfa_topo1/rt1/step6/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt1/step6/show_ip_route.ref @@ -124,26 +124,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt1/step7/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt1/step7/show_ip_route.ref index 270fcef5d60d..04329a88a621 100644 --- a/tests/topotests/isis_tilfa_topo1/rt1/step7/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt1/step7/show_ip_route.ref @@ -121,26 +121,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt1/step8/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt1/step8/show_ip_route.ref index 92b7437324a6..688f078ef75b 100644 --- a/tests/topotests/isis_tilfa_topo1/rt1/step8/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt1/step8/show_ip_route.ref @@ -124,26 +124,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt1/step9/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt1/step9/show_ip_route.ref index 841c902a37df..2229969785d2 100644 --- a/tests/topotests/isis_tilfa_topo1/rt1/step9/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt1/step9/show_ip_route.ref @@ -124,26 +124,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt2/step1/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt2/step1/show_ip_route.ref index 7e1ccd10a2b7..208b79b2bd11 100644 --- a/tests/topotests/isis_tilfa_topo1/rt2/step1/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt2/step1/show_ip_route.ref @@ -241,130 +241,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true, - "labels":[ - 16050 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true, - "labels":[ - 16050 - ] - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16050 - ] - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16050 - ] - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt2/step2/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt2/step2/show_ip_route.ref index 374eec7d508a..5604f4cdc0da 100644 --- a/tests/topotests/isis_tilfa_topo1/rt2/step2/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt2/step2/show_ip_route.ref @@ -189,102 +189,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16050 - ] - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16050 - ] - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt2/step3/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt2/step3/show_ip_route.ref index 7e1ccd10a2b7..208b79b2bd11 100644 --- a/tests/topotests/isis_tilfa_topo1/rt2/step3/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt2/step3/show_ip_route.ref @@ -241,130 +241,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true, - "labels":[ - 16050 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true, - "labels":[ - 16050 - ] - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16050 - ] - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16050 - ] - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt2/step4/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt2/step4/show_ip_route.ref index c5fc51b8628a..e87111d8018f 100644 --- a/tests/topotests/isis_tilfa_topo1/rt2/step4/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt2/step4/show_ip_route.ref @@ -170,102 +170,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16050 - ] - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16050 - ] - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt2/step5/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt2/step5/show_ip_route.ref index 7e1ccd10a2b7..208b79b2bd11 100644 --- a/tests/topotests/isis_tilfa_topo1/rt2/step5/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt2/step5/show_ip_route.ref @@ -241,130 +241,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true, - "labels":[ - 16050 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true, - "labels":[ - 16050 - ] - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16050 - ] - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16050 - ] - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt2/step6/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt2/step6/show_ip_route.ref index 7e1ccd10a2b7..208b79b2bd11 100644 --- a/tests/topotests/isis_tilfa_topo1/rt2/step6/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt2/step6/show_ip_route.ref @@ -241,130 +241,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true, - "labels":[ - 16050 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true, - "labels":[ - 16050 - ] - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16050 - ] - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16050 - ] - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt2/step7/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt2/step7/show_ip_route.ref index 9459f2ebda17..f219eeddfeee 100644 --- a/tests/topotests/isis_tilfa_topo1/rt2/step7/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt2/step7/show_ip_route.ref @@ -162,68 +162,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1" - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt2/step8/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt2/step8/show_ip_route.ref index 7e1ccd10a2b7..208b79b2bd11 100644 --- a/tests/topotests/isis_tilfa_topo1/rt2/step8/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt2/step8/show_ip_route.ref @@ -241,130 +241,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true, - "labels":[ - 16050 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true, - "labels":[ - 16050 - ] - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16050 - ] - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16050 - ] - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt2/step9/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt2/step9/show_ip_route.ref index 509615583362..e654cc3e9b97 100644 --- a/tests/topotests/isis_tilfa_topo1/rt2/step9/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt2/step9/show_ip_route.ref @@ -241,130 +241,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - }, - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true, - "labels":[ - 16500 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true, - "labels":[ - 16500 - ] - } - ] - } - ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16500 - ] - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.4", - "afi":"ipv4", - "interfaceName":"eth-rt4-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.3", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16500 - ] - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt3/step1/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt3/step1/show_ip_route.ref index d70e9fe882e2..d48e171b8231 100644 --- a/tests/topotests/isis_tilfa_topo1/rt3/step1/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt3/step1/show_ip_route.ref @@ -241,54 +241,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true, - "labels":[ - 16040 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true, - "labels":[ - 16040 - ] - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -365,82 +317,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16040 - ] - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16040 - ] - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt3/step2/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt3/step2/show_ip_route.ref index d70e9fe882e2..d48e171b8231 100644 --- a/tests/topotests/isis_tilfa_topo1/rt3/step2/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt3/step2/show_ip_route.ref @@ -241,54 +241,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true, - "labels":[ - 16040 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true, - "labels":[ - 16040 - ] - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -365,82 +317,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16040 - ] - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16040 - ] - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt3/step3/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt3/step3/show_ip_route.ref index d70e9fe882e2..d48e171b8231 100644 --- a/tests/topotests/isis_tilfa_topo1/rt3/step3/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt3/step3/show_ip_route.ref @@ -241,54 +241,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true, - "labels":[ - 16040 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true, - "labels":[ - 16040 - ] - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -365,82 +317,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16040 - ] - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16040 - ] - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt3/step4/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt3/step4/show_ip_route.ref index 5f8779966fa9..7720079307cd 100644 --- a/tests/topotests/isis_tilfa_topo1/rt3/step4/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt3/step4/show_ip_route.ref @@ -162,26 +162,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1" - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1" - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -258,48 +238,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1" - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2" - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt3/step5/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt3/step5/show_ip_route.ref index d70e9fe882e2..d48e171b8231 100644 --- a/tests/topotests/isis_tilfa_topo1/rt3/step5/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt3/step5/show_ip_route.ref @@ -241,54 +241,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true, - "labels":[ - 16040 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true, - "labels":[ - 16040 - ] - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -365,82 +317,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16040 - ] - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16040 - ] - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt3/step6/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt3/step6/show_ip_route.ref index e6d99e59e377..edb58eba3af6 100644 --- a/tests/topotests/isis_tilfa_topo1/rt3/step6/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt3/step6/show_ip_route.ref @@ -241,54 +241,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true, - "labels":[ - 30040 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true, - "labels":[ - 30040 - ] - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -365,82 +317,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16040 - ] - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16040 - ] - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt3/step7/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt3/step7/show_ip_route.ref index fd340ba96230..5cbb81d8c6b0 100644 --- a/tests/topotests/isis_tilfa_topo1/rt3/step7/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt3/step7/show_ip_route.ref @@ -234,54 +234,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true, - "labels":[ - 30040 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true, - "labels":[ - 30040 - ] - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -358,82 +310,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16040 - ] - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16040 - ] - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt3/step8/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt3/step8/show_ip_route.ref index e6d99e59e377..edb58eba3af6 100644 --- a/tests/topotests/isis_tilfa_topo1/rt3/step8/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt3/step8/show_ip_route.ref @@ -241,54 +241,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true, - "labels":[ - 30040 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true, - "labels":[ - 30040 - ] - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -365,82 +317,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16040 - ] - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16040 - ] - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt3/step9/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt3/step9/show_ip_route.ref index a9590ee0fc94..20c85d35a4fd 100644 --- a/tests/topotests/isis_tilfa_topo1/rt3/step9/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt3/step9/show_ip_route.ref @@ -241,54 +241,6 @@ ] } ], - "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - }, - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "backupIndex":[ - 0, - 1 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true, - "labels":[ - 30040 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true, - "labels":[ - 30040 - ] - } - ] - } - ], "10.0.2.0\/24":[ { "prefix":"10.0.2.0\/24", @@ -365,82 +317,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16040 - ] - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.5", - "afi":"ipv4", - "interfaceName":"eth-rt5-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"eth-sw1", - "active":true, - "labels":[ - 16040 - ] - } - ] - } - ], "10.0.6.0\/24":[ { "prefix":"10.0.6.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt4/step1/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt4/step1/show_ip_route.ref index 0ef5d1bc3f82..709ce185e18e 100644 --- a/tests/topotests/isis_tilfa_topo1/rt4/step1/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt4/step1/show_ip_route.ref @@ -258,82 +258,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true, - "labels":[ - 16030 - ] - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true, - "labels":[ - 16030 - ] - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -424,58 +348,6 @@ ] } ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "active":true - } - ] - } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt4/step2/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt4/step2/show_ip_route.ref index 0ef5d1bc3f82..709ce185e18e 100644 --- a/tests/topotests/isis_tilfa_topo1/rt4/step2/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt4/step2/show_ip_route.ref @@ -258,82 +258,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true, - "labels":[ - 16030 - ] - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true, - "labels":[ - 16030 - ] - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -424,58 +348,6 @@ ] } ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "active":true - } - ] - } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt4/step3/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt4/step3/show_ip_route.ref index 0ef5d1bc3f82..709ce185e18e 100644 --- a/tests/topotests/isis_tilfa_topo1/rt4/step3/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt4/step3/show_ip_route.ref @@ -258,82 +258,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true, - "labels":[ - 16030 - ] - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true, - "labels":[ - 16030 - ] - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -424,58 +348,6 @@ ] } ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "active":true - } - ] - } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt4/step4/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt4/step4/show_ip_route.ref index 0f26fa5d7aed..2522d22898c2 100644 --- a/tests/topotests/isis_tilfa_topo1/rt4/step4/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt4/step4/show_ip_route.ref @@ -154,48 +154,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1" - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2" - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -236,36 +194,6 @@ ] } ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5" - } - ] - } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6" - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt4/step5/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt4/step5/show_ip_route.ref index 0ef5d1bc3f82..709ce185e18e 100644 --- a/tests/topotests/isis_tilfa_topo1/rt4/step5/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt4/step5/show_ip_route.ref @@ -258,82 +258,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true, - "labels":[ - 16030 - ] - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true, - "labels":[ - 16030 - ] - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -424,58 +348,6 @@ ] } ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "active":true - } - ] - } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt4/step6/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt4/step6/show_ip_route.ref index 89e556edd372..afe705aeb4bc 100644 --- a/tests/topotests/isis_tilfa_topo1/rt4/step6/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt4/step6/show_ip_route.ref @@ -258,82 +258,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true, - "labels":[ - 30030 - ] - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true, - "labels":[ - 30030 - ] - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -424,58 +348,6 @@ ] } ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "active":true - } - ] - } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt4/step7/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt4/step7/show_ip_route.ref index f90e7f4f57a2..8a1d68b99c07 100644 --- a/tests/topotests/isis_tilfa_topo1/rt4/step7/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt4/step7/show_ip_route.ref @@ -252,82 +252,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true, - "labels":[ - 30030 - ] - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true, - "labels":[ - 30030 - ] - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -418,58 +342,6 @@ ] } ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "active":true - } - ] - } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt4/step8/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt4/step8/show_ip_route.ref index 89e556edd372..afe705aeb4bc 100644 --- a/tests/topotests/isis_tilfa_topo1/rt4/step8/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt4/step8/show_ip_route.ref @@ -258,82 +258,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true, - "labels":[ - 30030 - ] - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true, - "labels":[ - 30030 - ] - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -424,58 +348,6 @@ ] } ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "active":true - } - ] - } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt4/step9/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt4/step9/show_ip_route.ref index 1a084c77425a..7dd4f835b3ed 100644 --- a/tests/topotests/isis_tilfa_topo1/rt4/step9/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt4/step9/show_ip_route.ref @@ -258,82 +258,6 @@ ] } ], - "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true, - "labels":[ - 30030 - ] - } - ] - } - ], - "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.2.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"eth-rt2-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true, - "labels":[ - 30030 - ] - } - ] - } - ], "10.0.4.0\/24":[ { "prefix":"10.0.4.0\/24", @@ -424,58 +348,6 @@ ] } ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "active":true - } - ] - } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true - } - ] - } - ], "10.0.8.0\/24":[ { "prefix":"10.0.8.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt5/step1/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt5/step1/show_ip_route.ref index 93740e22e0c7..d99d419c4d21 100644 --- a/tests/topotests/isis_tilfa_topo1/rt5/step1/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt5/step1/show_ip_route.ref @@ -348,108 +348,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true, - "labels":[ - 16020 - ] - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true, - "labels":[ - 16020 - ] - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "active":true - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -476,31 +374,5 @@ } ] } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true - } - ] - } ] } diff --git a/tests/topotests/isis_tilfa_topo1/rt5/step10/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt5/step10/show_ip_route.ref index ff8ace25be5d..d3391bb10c06 100644 --- a/tests/topotests/isis_tilfa_topo1/rt5/step10/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt5/step10/show_ip_route.ref @@ -334,108 +334,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true, - "labels":[ - 16020 - ] - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true, - "labels":[ - 16020 - ] - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "active":true - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", diff --git a/tests/topotests/isis_tilfa_topo1/rt5/step2/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt5/step2/show_ip_route.ref index 93740e22e0c7..d99d419c4d21 100644 --- a/tests/topotests/isis_tilfa_topo1/rt5/step2/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt5/step2/show_ip_route.ref @@ -348,108 +348,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true, - "labels":[ - 16020 - ] - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true, - "labels":[ - 16020 - ] - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "active":true - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -476,31 +374,5 @@ } ] } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true - } - ] - } ] } diff --git a/tests/topotests/isis_tilfa_topo1/rt5/step3/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt5/step3/show_ip_route.ref index 93740e22e0c7..d99d419c4d21 100644 --- a/tests/topotests/isis_tilfa_topo1/rt5/step3/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt5/step3/show_ip_route.ref @@ -348,108 +348,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true, - "labels":[ - 16020 - ] - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true, - "labels":[ - 16020 - ] - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "active":true - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -476,31 +374,5 @@ } ] } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true - } - ] - } ] } diff --git a/tests/topotests/isis_tilfa_topo1/rt5/step4/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt5/step4/show_ip_route.ref index b5bd8c7a5c98..5740688b8979 100644 --- a/tests/topotests/isis_tilfa_topo1/rt5/step4/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt5/step4/show_ip_route.ref @@ -315,74 +315,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1" - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2" - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "active":true - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -409,31 +341,5 @@ } ] } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true - } - ] - } ] } diff --git a/tests/topotests/isis_tilfa_topo1/rt5/step5/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt5/step5/show_ip_route.ref index 93740e22e0c7..d99d419c4d21 100644 --- a/tests/topotests/isis_tilfa_topo1/rt5/step5/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt5/step5/show_ip_route.ref @@ -348,108 +348,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true, - "labels":[ - 16020 - ] - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true, - "labels":[ - 16020 - ] - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "active":true - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -476,31 +374,5 @@ } ] } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true - } - ] - } ] } diff --git a/tests/topotests/isis_tilfa_topo1/rt5/step6/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt5/step6/show_ip_route.ref index 93740e22e0c7..d99d419c4d21 100644 --- a/tests/topotests/isis_tilfa_topo1/rt5/step6/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt5/step6/show_ip_route.ref @@ -348,108 +348,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true, - "labels":[ - 16020 - ] - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true, - "labels":[ - 16020 - ] - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "active":true - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -476,31 +374,5 @@ } ] } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true - } - ] - } ] } diff --git a/tests/topotests/isis_tilfa_topo1/rt5/step7/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt5/step7/show_ip_route.ref index 93740e22e0c7..d99d419c4d21 100644 --- a/tests/topotests/isis_tilfa_topo1/rt5/step7/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt5/step7/show_ip_route.ref @@ -348,108 +348,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true, - "labels":[ - 16020 - ] - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true, - "labels":[ - 16020 - ] - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "active":true - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -476,31 +374,5 @@ } ] } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true - } - ] - } ] } diff --git a/tests/topotests/isis_tilfa_topo1/rt5/step8/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt5/step8/show_ip_route.ref index 93740e22e0c7..d99d419c4d21 100644 --- a/tests/topotests/isis_tilfa_topo1/rt5/step8/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt5/step8/show_ip_route.ref @@ -348,108 +348,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true, - "labels":[ - 16020 - ] - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true, - "labels":[ - 16020 - ] - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "active":true - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -476,31 +374,5 @@ } ] } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true - } - ] - } ] } diff --git a/tests/topotests/isis_tilfa_topo1/rt5/step9/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt5/step9/show_ip_route.ref index 93740e22e0c7..d99d419c4d21 100644 --- a/tests/topotests/isis_tilfa_topo1/rt5/step9/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt5/step9/show_ip_route.ref @@ -348,108 +348,6 @@ ] } ], - "10.0.4.0\/24":[ - { - "prefix":"10.0.4.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "active":true, - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true, - "labels":[ - 16020 - ] - } - ] - } - ], - "10.0.5.0\/24":[ - { - "prefix":"10.0.5.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.4.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-1", - "active":true, - "backupIndex":[ - 0 - ] - }, - { - "ip":"10.0.5.3", - "afi":"ipv4", - "interfaceName":"eth-rt3-2", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true, - "labels":[ - 16020 - ] - } - ] - } - ], - "10.0.6.0\/24":[ - { - "prefix":"10.0.6.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "active":true - } - ] - } - ], "10.0.7.0\/24":[ { "prefix":"10.0.7.0\/24", @@ -476,31 +374,5 @@ } ] } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.6", - "afi":"ipv4", - "interfaceName":"eth-rt6", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.6.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true - } - ] - } ] } diff --git a/tests/topotests/isis_tilfa_topo1/rt6/step1/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt6/step1/show_ip_route.ref index b9b43c413927..3f7b9ceac70e 100644 --- a/tests/topotests/isis_tilfa_topo1/rt6/step1/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt6/step1/show_ip_route.ref @@ -357,57 +357,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true - } - ] - } ] } diff --git a/tests/topotests/isis_tilfa_topo1/rt6/step10/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt6/step10/show_ip_route.ref index 822e24b3b0ca..5107b3dce5d4 100644 --- a/tests/topotests/isis_tilfa_topo1/rt6/step10/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt6/step10/show_ip_route.ref @@ -307,48 +307,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":30, - "nexthops":[ - { - "fib":true, - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true - } - ] - } ] } diff --git a/tests/topotests/isis_tilfa_topo1/rt6/step2/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt6/step2/show_ip_route.ref index b9b43c413927..3f7b9ceac70e 100644 --- a/tests/topotests/isis_tilfa_topo1/rt6/step2/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt6/step2/show_ip_route.ref @@ -357,57 +357,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true - } - ] - } ] } diff --git a/tests/topotests/isis_tilfa_topo1/rt6/step3/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt6/step3/show_ip_route.ref index b9b43c413927..3f7b9ceac70e 100644 --- a/tests/topotests/isis_tilfa_topo1/rt6/step3/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt6/step3/show_ip_route.ref @@ -357,57 +357,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true - } - ] - } ] } diff --git a/tests/topotests/isis_tilfa_topo1/rt6/step4/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt6/step4/show_ip_route.ref index d34a28ee0f00..4c2fbb380170 100644 --- a/tests/topotests/isis_tilfa_topo1/rt6/step4/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt6/step4/show_ip_route.ref @@ -339,57 +339,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true - } - ] - } ] } diff --git a/tests/topotests/isis_tilfa_topo1/rt6/step5/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt6/step5/show_ip_route.ref index b9b43c413927..3f7b9ceac70e 100644 --- a/tests/topotests/isis_tilfa_topo1/rt6/step5/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt6/step5/show_ip_route.ref @@ -357,57 +357,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true - } - ] - } ] } diff --git a/tests/topotests/isis_tilfa_topo1/rt6/step6/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt6/step6/show_ip_route.ref index ca39251e4ac1..55c8f01a3f7d 100644 --- a/tests/topotests/isis_tilfa_topo1/rt6/step6/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt6/step6/show_ip_route.ref @@ -357,57 +357,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true - } - ] - } ] } diff --git a/tests/topotests/isis_tilfa_topo1/rt6/step7/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt6/step7/show_ip_route.ref index ee47c1aa9305..49be68cc7637 100644 --- a/tests/topotests/isis_tilfa_topo1/rt6/step7/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt6/step7/show_ip_route.ref @@ -351,57 +351,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true - } - ] - } ] } diff --git a/tests/topotests/isis_tilfa_topo1/rt6/step8/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt6/step8/show_ip_route.ref index ca39251e4ac1..55c8f01a3f7d 100644 --- a/tests/topotests/isis_tilfa_topo1/rt6/step8/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt6/step8/show_ip_route.ref @@ -357,57 +357,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true - } - ] - } ] } diff --git a/tests/topotests/isis_tilfa_topo1/rt6/step9/show_ip_route.ref b/tests/topotests/isis_tilfa_topo1/rt6/step9/show_ip_route.ref index 879d595c884b..1f67703e4b46 100644 --- a/tests/topotests/isis_tilfa_topo1/rt6/step9/show_ip_route.ref +++ b/tests/topotests/isis_tilfa_topo1/rt6/step9/show_ip_route.ref @@ -357,57 +357,5 @@ } ] } - ], - "10.0.7.0\/24":[ - { - "prefix":"10.0.7.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true - } - ] - } - ], - "10.0.8.0\/24":[ - { - "prefix":"10.0.8.0\/24", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.8.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "backupIndex":[ - 0 - ] - } - ], - "backupNexthops":[ - { - "ip":"10.0.7.4", - "afi":"ipv4", - "interfaceName":"eth-rt4", - "active":true - } - ] - } ] } diff --git a/tests/topotests/isis_topo1/r1/r1_topology.json b/tests/topotests/isis_topo1/r1/r1_topology.json index 6b3374cc4d6f..83c69f822edf 100644 --- a/tests/topotests/isis_topo1/r1/r1_topology.json +++ b/tests/topotests/isis_topo1/r1/r1_topology.json @@ -22,7 +22,7 @@ { "metric": 0, "parent": "r1(4)", - "type": "IP internal", + "type": "IP TE", "vertex": "10.0.20.0/24" }, { @@ -41,14 +41,6 @@ "type": "IP TE", "vertex": "10.0.10.0/24" }, - { - "interface": "r1-eth0", - "metric": 10, - "nextHop": "r3", - "parent": "r3(4)", - "type": "IP TE", - "vertex": "10.0.20.0/24" - }, { "interface": "r1-eth0", "metric": 10, diff --git a/tests/topotests/isis_topo1/r2/r2_topology.json b/tests/topotests/isis_topo1/r2/r2_topology.json index 8720bc1cac2c..e578a56f87ec 100644 --- a/tests/topotests/isis_topo1/r2/r2_topology.json +++ b/tests/topotests/isis_topo1/r2/r2_topology.json @@ -22,7 +22,7 @@ { "metric": 0, "parent": "r2(4)", - "type": "IP internal", + "type": "IP TE", "vertex": "10.0.21.0/24" }, { @@ -41,14 +41,6 @@ "type": "IP TE", "vertex": "10.0.11.0/24" }, - { - "interface": "r2-eth0", - "metric": 10, - "nextHop": "r4", - "parent": "r4(4)", - "type": "IP TE", - "vertex": "10.0.21.0/24" - }, { "interface": "r2-eth0", "metric": 10, diff --git a/tests/topotests/isis_topo1/r3/r3_topology.json b/tests/topotests/isis_topo1/r3/r3_topology.json index 568b6dfeede8..7b5c69aeb84f 100644 --- a/tests/topotests/isis_topo1/r3/r3_topology.json +++ b/tests/topotests/isis_topo1/r3/r3_topology.json @@ -10,7 +10,7 @@ { "metric": 0, "parent": "r3(4)", - "type": "IP internal", + "type": "IP TE", "vertex": "10.0.10.0/24" }, { @@ -21,14 +21,6 @@ "type": "TE-IS", "vertex": "r5" }, - { - "interface": "r3-eth1", - "metric": 10, - "nextHop": "r5", - "parent": "r5(4)", - "type": "IP TE", - "vertex": "10.0.10.0/24" - }, { "interface": "r3-eth1", "metric": 10, @@ -136,7 +128,7 @@ { "metric": 0, "parent": "r3(4)", - "type": "IP internal", + "type": "IP TE", "vertex": "10.0.20.0/24" }, { @@ -147,14 +139,6 @@ "type": "TE-IS", "vertex": "r1" }, - { - "interface": "r3-eth0", - "metric": 10, - "nextHop": "r1", - "parent": "r1(4)", - "type": "IP TE", - "vertex": "10.0.20.0/24" - }, { "interface": "r3-eth0", "metric": 10, diff --git a/tests/topotests/isis_topo1/r4/r4_topology.json b/tests/topotests/isis_topo1/r4/r4_topology.json index 9a53955cc969..0cbd0c95c550 100644 --- a/tests/topotests/isis_topo1/r4/r4_topology.json +++ b/tests/topotests/isis_topo1/r4/r4_topology.json @@ -10,7 +10,7 @@ { "metric": 0, "parent": "r4(4)", - "type": "IP internal", + "type": "IP TE", "vertex": "10.0.11.0/24" }, { @@ -29,14 +29,6 @@ "type": "IP TE", "vertex": "10.0.10.0/24" }, - { - "interface": "r4-eth1", - "metric": 10, - "nextHop": "r5", - "parent": "r5(4)", - "type": "IP TE", - "vertex": "10.0.11.0/24" - }, { "interface": "r4-eth1", "metric": 10, @@ -136,7 +128,7 @@ { "metric": 0, "parent": "r4(4)", - "type": "IP internal", + "type": "IP TE", "vertex": "10.0.21.0/24" }, { @@ -147,14 +139,6 @@ "type": "TE-IS", "vertex": "r2" }, - { - "interface": "r4-eth0", - "metric": 10, - "nextHop": "r2", - "parent": "r2(4)", - "type": "IP TE", - "vertex": "10.0.21.0/24" - }, { "interface": "r4-eth0", "metric": 10, diff --git a/tests/topotests/isis_topo1/r5/r5_topology.json b/tests/topotests/isis_topo1/r5/r5_topology.json index 64590d8eb267..ee512e51cb47 100644 --- a/tests/topotests/isis_topo1/r5/r5_topology.json +++ b/tests/topotests/isis_topo1/r5/r5_topology.json @@ -10,13 +10,13 @@ { "metric": 0, "parent": "r5(4)", - "type": "IP internal", + "type": "IP TE", "vertex": "10.0.10.0/24" }, { "metric": 0, "parent": "r5(4)", - "type": "IP internal", + "type": "IP TE", "vertex": "10.0.11.0/24" }, { @@ -35,14 +35,6 @@ "type": "TE-IS", "vertex": "r4" }, - { - "interface": "r5-eth0", - "metric": 10, - "nextHop": "r3", - "parent": "r3(4)", - "type": "IP TE", - "vertex": "10.0.10.0/24" - }, { "interface": "r5-eth0", "metric": 10, @@ -59,14 +51,6 @@ "type": "IP TE", "vertex": "10.254.0.3/32" }, - { - "interface": "r5-eth1", - "metric": 10, - "nextHop": "r4", - "parent": "r4(4)", - "type": "IP TE", - "vertex": "10.0.11.0/24" - }, { "interface": "r5-eth1", "metric": 10, diff --git a/tests/topotests/isis_topo1_vrf/r1/r1_topology.json b/tests/topotests/isis_topo1_vrf/r1/r1_topology.json index da537c552bfa..59ee167f8afe 100644 --- a/tests/topotests/isis_topo1_vrf/r1/r1_topology.json +++ b/tests/topotests/isis_topo1_vrf/r1/r1_topology.json @@ -22,7 +22,7 @@ { "metric": 0, "parent": "r1(4)", - "type": "IP internal", + "type": "IP TE", "vertex": "10.0.20.0/24" }, { @@ -40,14 +40,6 @@ "parent": "r3(4)", "type": "IP TE", "vertex": "10.0.10.0/24" - }, - { - "interface": "r1-eth0", - "metric": 10, - "nextHop": "r3", - "parent": "r3(4)", - "type": "IP TE", - "vertex": "10.0.20.0/24" } ], "ipv6-paths": [ diff --git a/tests/topotests/isis_topo1_vrf/r2/r2_topology.json b/tests/topotests/isis_topo1_vrf/r2/r2_topology.json index bf965659bea5..651fe3e0332c 100644 --- a/tests/topotests/isis_topo1_vrf/r2/r2_topology.json +++ b/tests/topotests/isis_topo1_vrf/r2/r2_topology.json @@ -22,7 +22,7 @@ { "metric": 0, "parent": "r2(4)", - "type": "IP internal", + "type": "IP TE", "vertex": "10.0.21.0/24" }, { @@ -40,14 +40,6 @@ "parent": "r4(4)", "type": "IP TE", "vertex": "10.0.11.0/24" - }, - { - "interface": "r2-eth0", - "metric": 10, - "nextHop": "r4", - "parent": "r4(4)", - "type": "IP TE", - "vertex": "10.0.21.0/24" } ], "ipv6-paths": [ diff --git a/tests/topotests/isis_topo1_vrf/r3/r3_topology.json b/tests/topotests/isis_topo1_vrf/r3/r3_topology.json index 94592b50a72a..5928eaec578a 100644 --- a/tests/topotests/isis_topo1_vrf/r3/r3_topology.json +++ b/tests/topotests/isis_topo1_vrf/r3/r3_topology.json @@ -10,7 +10,7 @@ { "metric": 0, "parent": "r3(4)", - "type": "IP internal", + "type": "IP TE", "vertex": "10.0.10.0/24" }, { @@ -21,14 +21,6 @@ "type": "TE-IS", "vertex": "r5" }, - { - "interface": "r3-eth1", - "metric": 10, - "nextHop": "r5", - "parent": "r5(4)", - "type": "IP TE", - "vertex": "10.0.10.0/24" - }, { "interface": "r3-eth1", "metric": 10, @@ -104,7 +96,7 @@ { "metric": 0, "parent": "r3(4)", - "type": "IP internal", + "type": "IP TE", "vertex": "10.0.20.0/24" }, { @@ -114,14 +106,6 @@ "parent": "r3(4)", "type": "TE-IS", "vertex": "r1" - }, - { - "interface": "r3-eth0", - "metric": 10, - "nextHop": "r1", - "parent": "r1(4)", - "type": "IP TE", - "vertex": "10.0.20.0/24" } ], "ipv6-paths": [ diff --git a/tests/topotests/isis_topo1_vrf/r4/r4_topology.json b/tests/topotests/isis_topo1_vrf/r4/r4_topology.json index b8295e87b9cc..eb234bc70eb4 100644 --- a/tests/topotests/isis_topo1_vrf/r4/r4_topology.json +++ b/tests/topotests/isis_topo1_vrf/r4/r4_topology.json @@ -10,7 +10,7 @@ { "metric": 0, "parent": "r4(4)", - "type": "IP internal", + "type": "IP TE", "vertex": "10.0.11.0/24" }, { @@ -29,14 +29,6 @@ "type": "IP TE", "vertex": "10.0.10.0/24" }, - { - "interface": "r4-eth1", - "metric": 10, - "nextHop": "r5", - "parent": "r5(4)", - "type": "IP TE", - "vertex": "10.0.11.0/24" - }, { "interface": "r4-eth1", "metric": 20, @@ -104,7 +96,7 @@ { "metric": 0, "parent": "r4(4)", - "type": "IP internal", + "type": "IP TE", "vertex": "10.0.21.0/24" }, { @@ -114,14 +106,6 @@ "parent": "r4(4)", "type": "TE-IS", "vertex": "r2" - }, - { - "interface": "r4-eth0", - "metric": 10, - "nextHop": "r2", - "parent": "r2(4)", - "type": "IP TE", - "vertex": "10.0.21.0/24" } ], "ipv6-paths": [ diff --git a/tests/topotests/isis_topo1_vrf/r5/r5_topology.json b/tests/topotests/isis_topo1_vrf/r5/r5_topology.json index 8b5159cbfbd2..8900b4dedf4e 100644 --- a/tests/topotests/isis_topo1_vrf/r5/r5_topology.json +++ b/tests/topotests/isis_topo1_vrf/r5/r5_topology.json @@ -10,13 +10,13 @@ { "metric": 0, "parent": "r5(4)", - "type": "IP internal", + "type": "IP TE", "vertex": "10.0.10.0/24" }, { "metric": 0, "parent": "r5(4)", - "type": "IP internal", + "type": "IP TE", "vertex": "10.0.11.0/24" }, { @@ -35,14 +35,6 @@ "type": "TE-IS", "vertex": "r4" }, - { - "interface": "r5-eth0", - "metric": 10, - "nextHop": "r3", - "parent": "r3(4)", - "type": "IP TE", - "vertex": "10.0.10.0/24" - }, { "interface": "r5-eth0", "metric": 10, @@ -51,14 +43,6 @@ "type": "IP TE", "vertex": "10.0.20.0/24" }, - { - "interface": "r5-eth1", - "metric": 10, - "nextHop": "r4", - "parent": "r4(4)", - "type": "IP TE", - "vertex": "10.0.11.0/24" - }, { "interface": "r5-eth1", "metric": 10, diff --git a/tests/topotests/ldp_snmp/r1/show_ip_route.ref b/tests/topotests/ldp_snmp/r1/show_ip_route.ref index b1a55ba103b7..ac2eacb4690c 100644 --- a/tests/topotests/ldp_snmp/r1/show_ip_route.ref +++ b/tests/topotests/ldp_snmp/r1/show_ip_route.ref @@ -51,19 +51,6 @@ } ], "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":10, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"r1-eth1" - } - ] - }, { "prefix":"10.0.1.0\/24", "protocol":"connected", @@ -79,19 +66,6 @@ } ], "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":10, - "nexthops":[ - { - "ip":"10.0.2.3", - "afi":"ipv4", - "interfaceName":"r1-eth2" - } - ] - }, { "prefix":"10.0.2.0\/24", "protocol":"connected", diff --git a/tests/topotests/ldp_snmp/r2/show_ip_route.ref b/tests/topotests/ldp_snmp/r2/show_ip_route.ref index 04f141aba4d8..2607124af860 100644 --- a/tests/topotests/ldp_snmp/r2/show_ip_route.ref +++ b/tests/topotests/ldp_snmp/r2/show_ip_route.ref @@ -51,19 +51,6 @@ } ], "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":10, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"r2-eth1" - } - ] - }, { "prefix":"10.0.1.0\/24", "protocol":"connected", @@ -104,19 +91,6 @@ } ], "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":10, - "nexthops":[ - { - "ip":"10.0.3.3", - "afi":"ipv4", - "interfaceName":"r2-eth2" - } - ] - }, { "prefix":"10.0.3.0\/24", "protocol":"connected", diff --git a/tests/topotests/ldp_snmp/r3/show_ip_route.ref b/tests/topotests/ldp_snmp/r3/show_ip_route.ref index 22504046ed51..11caff08f532 100644 --- a/tests/topotests/ldp_snmp/r3/show_ip_route.ref +++ b/tests/topotests/ldp_snmp/r3/show_ip_route.ref @@ -76,19 +76,6 @@ } ], "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":10, - "nexthops":[ - { - "ip":"10.0.2.1", - "afi":"ipv4", - "interfaceName":"r3-eth1" - } - ] - }, { "prefix":"10.0.2.0\/24", "protocol":"connected", @@ -104,19 +91,6 @@ } ], "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":10, - "nexthops":[ - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"r3-eth2" - } - ] - }, { "prefix":"10.0.3.0\/24", "protocol":"connected", diff --git a/tests/topotests/ldp_sync_isis_topo1/r1/show_ip_route.ref b/tests/topotests/ldp_sync_isis_topo1/r1/show_ip_route.ref index b1a55ba103b7..ac2eacb4690c 100644 --- a/tests/topotests/ldp_sync_isis_topo1/r1/show_ip_route.ref +++ b/tests/topotests/ldp_sync_isis_topo1/r1/show_ip_route.ref @@ -51,19 +51,6 @@ } ], "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":10, - "nexthops":[ - { - "ip":"10.0.1.2", - "afi":"ipv4", - "interfaceName":"r1-eth1" - } - ] - }, { "prefix":"10.0.1.0\/24", "protocol":"connected", @@ -79,19 +66,6 @@ } ], "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":10, - "nexthops":[ - { - "ip":"10.0.2.3", - "afi":"ipv4", - "interfaceName":"r1-eth2" - } - ] - }, { "prefix":"10.0.2.0\/24", "protocol":"connected", diff --git a/tests/topotests/ldp_sync_isis_topo1/r2/show_ip_route.ref b/tests/topotests/ldp_sync_isis_topo1/r2/show_ip_route.ref index 04f141aba4d8..2607124af860 100644 --- a/tests/topotests/ldp_sync_isis_topo1/r2/show_ip_route.ref +++ b/tests/topotests/ldp_sync_isis_topo1/r2/show_ip_route.ref @@ -51,19 +51,6 @@ } ], "10.0.1.0\/24":[ - { - "prefix":"10.0.1.0\/24", - "protocol":"isis", - "distance":115, - "metric":10, - "nexthops":[ - { - "ip":"10.0.1.1", - "afi":"ipv4", - "interfaceName":"r2-eth1" - } - ] - }, { "prefix":"10.0.1.0\/24", "protocol":"connected", @@ -104,19 +91,6 @@ } ], "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":10, - "nexthops":[ - { - "ip":"10.0.3.3", - "afi":"ipv4", - "interfaceName":"r2-eth2" - } - ] - }, { "prefix":"10.0.3.0\/24", "protocol":"connected", diff --git a/tests/topotests/ldp_sync_isis_topo1/r3/show_ip_route.ref b/tests/topotests/ldp_sync_isis_topo1/r3/show_ip_route.ref index 22504046ed51..11caff08f532 100644 --- a/tests/topotests/ldp_sync_isis_topo1/r3/show_ip_route.ref +++ b/tests/topotests/ldp_sync_isis_topo1/r3/show_ip_route.ref @@ -76,19 +76,6 @@ } ], "10.0.2.0\/24":[ - { - "prefix":"10.0.2.0\/24", - "protocol":"isis", - "distance":115, - "metric":10, - "nexthops":[ - { - "ip":"10.0.2.1", - "afi":"ipv4", - "interfaceName":"r3-eth1" - } - ] - }, { "prefix":"10.0.2.0\/24", "protocol":"connected", @@ -104,19 +91,6 @@ } ], "10.0.3.0\/24":[ - { - "prefix":"10.0.3.0\/24", - "protocol":"isis", - "distance":115, - "metric":10, - "nexthops":[ - { - "ip":"10.0.3.2", - "afi":"ipv4", - "interfaceName":"r3-eth2" - } - ] - }, { "prefix":"10.0.3.0\/24", "protocol":"connected", From fb250d67aae8515b302b2d8a0c34fa160221f94b Mon Sep 17 00:00:00 2001 From: zhou-run Date: Fri, 2 Aug 2024 10:12:48 +0800 Subject: [PATCH 2/2] Update show_ip_route.ref sr r4s1 Signed-off-by: zhou-run --- .../isis_sr_topo1/rt4/step1/show_ip_route.ref | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/tests/topotests/isis_sr_topo1/rt4/step1/show_ip_route.ref b/tests/topotests/isis_sr_topo1/rt4/step1/show_ip_route.ref index 506c04b94c91..c6d200b280c8 100644 --- a/tests/topotests/isis_sr_topo1/rt4/step1/show_ip_route.ref +++ b/tests/topotests/isis_sr_topo1/rt4/step1/show_ip_route.ref @@ -247,24 +247,5 @@ } ] } - ], - "10.10.10.10\/32":[ - { - "prefix":"10.10.10.10\/32", - "protocol":"isis", - "distance":115, - "metric":20, - "nexthops":[ - { - "ip":"10.0.6.5", - "afi":"ipv4", - "interfaceName":"eth-rt5", - "active":true, - "labels":[ - 16100 - ] - } - ] - } ] }