mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-05-03 08:46:07 +00:00
isisd: fix the TI-LFA repair paths to preserve the original Prefix-SID
When computing backup nexthops for routes that contain a Prefix-SID, the original Prefix-SID label should be present at the end of backup label stacks (after the repair labels). This commit fixes that oversight in the original TI-LFA code. The SPF unit tests and TI-LFA topotes were also updated accordingly. Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
This commit is contained in:
parent
d47d6089e0
commit
4c75f7c773
@ -291,25 +291,30 @@ tilfa_compute_label_stack(struct lspdb_head *lspdb,
|
||||
label_stack->num_labels = listcount(repair_list);
|
||||
|
||||
for (ALL_LIST_ELEMENTS_RO(repair_list, node, sid)) {
|
||||
const uint8_t *target_node;
|
||||
struct isis_sr_block *srgb;
|
||||
mpls_label_t label;
|
||||
|
||||
switch (sid->type) {
|
||||
case TILFA_SID_PREFIX:
|
||||
srgb = isis_sr_find_srgb(lspdb, sadj->id);
|
||||
if (sid->value.index.remote)
|
||||
target_node = sid->value.index.remote_sysid;
|
||||
else
|
||||
target_node = sadj->id;
|
||||
srgb = isis_sr_find_srgb(lspdb, target_node);
|
||||
if (!srgb) {
|
||||
zlog_warn("%s: SRGB not found for node %s",
|
||||
__func__,
|
||||
print_sys_hostname(sadj->id));
|
||||
print_sys_hostname(target_node));
|
||||
goto error;
|
||||
}
|
||||
|
||||
/* Check if the SID index falls inside the SRGB. */
|
||||
if (sid->value.index >= srgb->range_size) {
|
||||
if (sid->value.index.value >= srgb->range_size) {
|
||||
flog_warn(
|
||||
EC_ISIS_SID_OVERFLOW,
|
||||
"%s: SID index %u falls outside remote SRGB range",
|
||||
__func__, sid->value.index);
|
||||
__func__, sid->value.index.value);
|
||||
goto error;
|
||||
}
|
||||
|
||||
@ -317,7 +322,7 @@ tilfa_compute_label_stack(struct lspdb_head *lspdb,
|
||||
* Prefix-SID: map SID index to label value within the
|
||||
* SRGB.
|
||||
*/
|
||||
label = srgb->lower_bound + sid->value.index;
|
||||
label = srgb->lower_bound + sid->value.index.value;
|
||||
break;
|
||||
case TILFA_SID_ADJ:
|
||||
/* Adj-SID: absolute label value can be used directly */
|
||||
@ -429,7 +434,8 @@ static int tilfa_build_repair_list(struct isis_spftree *spftree_pc,
|
||||
struct listnode *node;
|
||||
bool is_pnode, is_qnode;
|
||||
char buf[VID2STR_BUFFER];
|
||||
struct isis_tilfa_sid sid_qnode, sid_pnode;
|
||||
struct isis_tilfa_sid sid_dest = {}, sid_qnode = {}, sid_pnode = {};
|
||||
uint32_t sid_index;
|
||||
mpls_label_t label_qnode;
|
||||
|
||||
if (IS_DEBUG_TILFA) {
|
||||
@ -438,6 +444,24 @@ static int tilfa_build_repair_list(struct isis_spftree *spftree_pc,
|
||||
vtype2string(vertex->type), buf);
|
||||
}
|
||||
|
||||
/* Push original Prefix-SID label when necessary. */
|
||||
if (VTYPE_IP(vertex->type) && vertex->N.ip.sr.present) {
|
||||
pvertex = listnode_head(vertex->parents);
|
||||
assert(pvertex);
|
||||
|
||||
sid_index = vertex->N.ip.sr.sid.value;
|
||||
if (IS_DEBUG_TILFA)
|
||||
zlog_debug(
|
||||
"ISIS-TI-LFA: pushing Prefix-SID to %pFX (index %u)",
|
||||
&vertex->N.ip.p.dest, sid_index);
|
||||
sid_dest.type = TILFA_SID_PREFIX;
|
||||
sid_dest.value.index.value = sid_index;
|
||||
sid_dest.value.index.remote = true;
|
||||
memcpy(sid_dest.value.index.remote_sysid, pvertex->N.id,
|
||||
sizeof(sid_dest.value.index.remote_sysid));
|
||||
listnode_add_head(repair_list, &sid_dest);
|
||||
}
|
||||
|
||||
if (!vertex_child)
|
||||
goto parents;
|
||||
if (vertex->type != VTYPE_NONPSEUDO_IS
|
||||
@ -475,8 +499,6 @@ static int tilfa_build_repair_list(struct isis_spftree *spftree_pc,
|
||||
|
||||
/* Push Prefix-SID label when necessary. */
|
||||
if (is_pnode) {
|
||||
uint32_t sid_index;
|
||||
|
||||
/* The same P-node can't be used more than once. */
|
||||
if (isis_spf_node_find(used_pnodes, vertex->N.id)) {
|
||||
if (IS_DEBUG_TILFA)
|
||||
@ -504,10 +526,10 @@ static int tilfa_build_repair_list(struct isis_spftree *spftree_pc,
|
||||
|
||||
if (IS_DEBUG_TILFA)
|
||||
zlog_debug(
|
||||
"ISIS-TI-LFA: pushing Prefix-SID to %s (index %u)",
|
||||
"ISIS-TI-LFA: pushing Node-SID to %s (index %u)",
|
||||
print_sys_hostname(vertex->N.id), sid_index);
|
||||
sid_pnode.type = TILFA_SID_PREFIX;
|
||||
sid_pnode.value.index = sid_index;
|
||||
sid_pnode.value.index.value = sid_index;
|
||||
listnode_add_head(repair_list, &sid_pnode);
|
||||
|
||||
/* Apply repair list. */
|
||||
|
@ -28,7 +28,11 @@ enum isis_tilfa_sid_type {
|
||||
struct isis_tilfa_sid {
|
||||
enum isis_tilfa_sid_type type;
|
||||
union {
|
||||
uint32_t index;
|
||||
struct {
|
||||
uint32_t value;
|
||||
bool remote;
|
||||
uint8_t remote_sysid[ISIS_SYS_ID_LEN];
|
||||
} index;
|
||||
mpls_label_t label;
|
||||
} value;
|
||||
};
|
||||
|
@ -753,10 +753,10 @@ rt2 TE-IS 50 rt3 - rt4(4)
|
||||
|
||||
IS-IS L1 IPv4 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------
|
||||
10.0.255.2/32 60 - rt3 16060
|
||||
10.0.255.4/32 50 - rt3 16060
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
--------------------------------------------------------
|
||||
10.0.255.2/32 60 - rt3 16060/16020
|
||||
10.0.255.4/32 50 - rt3 16060/16040
|
||||
|
||||
P-space (self):
|
||||
rt3
|
||||
@ -789,10 +789,10 @@ rt2 TE-IS 50 rt3 - rt4(4)
|
||||
|
||||
IS-IS L1 IPv6 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-------------------------------------------------------
|
||||
2001:db8::2/128 60 - rt3 16061
|
||||
2001:db8::4/128 50 - rt3 16061
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
----------------------------------------------------------
|
||||
2001:db8::2/128 60 - rt3 16061/16021
|
||||
2001:db8::4/128 50 - rt3 16061/16041
|
||||
|
||||
test# test isis topology 2 root rt1 ti-lfa system-id rt3
|
||||
P-space (self):
|
||||
@ -839,9 +839,9 @@ rt3 TE-IS 50 rt5 - rt5(4)
|
||||
|
||||
IS-IS L1 IPv4 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------
|
||||
10.0.255.3/32 60 - rt5 16050/18
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------------
|
||||
10.0.255.3/32 60 - rt5 16050/18/16030
|
||||
|
||||
P-space (self):
|
||||
rt2
|
||||
@ -887,9 +887,9 @@ rt3 TE-IS 50 rt5 - rt5(4)
|
||||
|
||||
IS-IS L1 IPv6 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-------------------------------------------------------
|
||||
2001:db8::3/128 60 - rt5 16051/19
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-------------------------------------------------------------
|
||||
2001:db8::3/128 60 - rt5 16051/19/16031
|
||||
|
||||
test# test isis topology 2 root rt1 ti-lfa system-id rt1 pseudonode-id 1
|
||||
P-space (self):
|
||||
@ -927,11 +927,11 @@ rt5 TE-IS 65 rt2 - rt1(2)
|
||||
|
||||
IS-IS L1 IPv4 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------
|
||||
10.0.255.4/32 65 - rt2 16020/18
|
||||
10.0.255.5/32 75 - rt2 16020/18
|
||||
10.0.255.6/32 75 - rt2 16020/18
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------------
|
||||
10.0.255.4/32 65 - rt2 16020/18/16040
|
||||
10.0.255.5/32 75 - rt2 16020/18/16050
|
||||
10.0.255.6/32 75 - rt2 16020/18/16060
|
||||
|
||||
P-space (self):
|
||||
rt2
|
||||
@ -968,11 +968,11 @@ rt5 TE-IS 65 rt2 - rt1(2)
|
||||
|
||||
IS-IS L1 IPv6 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-------------------------------------------------------
|
||||
2001:db8::4/128 65 - rt2 16021/19
|
||||
2001:db8::5/128 75 - rt2 16021/19
|
||||
2001:db8::6/128 75 - rt2 16021/19
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-------------------------------------------------------------
|
||||
2001:db8::4/128 65 - rt2 16021/19/16041
|
||||
2001:db8::5/128 75 - rt2 16021/19/16051
|
||||
2001:db8::6/128 75 - rt2 16021/19/16061
|
||||
|
||||
test# test isis topology 2 root rt5 ti-lfa system-id rt1 pseudonode-id 1
|
||||
P-space (self):
|
||||
@ -1013,11 +1013,11 @@ rt2 TE-IS 45 rt6 - rt1(4)
|
||||
|
||||
IS-IS L1 IPv4 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------
|
||||
10.0.255.1/32 40 - rt6 16040
|
||||
10.0.255.2/32 55 - rt6 16040
|
||||
10.0.255.4/32 30 - rt6 16040
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
--------------------------------------------------------
|
||||
10.0.255.1/32 40 - rt6 16040/16010
|
||||
10.0.255.2/32 55 - rt6 16040/16020
|
||||
10.0.255.4/32 30 - rt6 16040
|
||||
|
||||
P-space (self):
|
||||
rt6
|
||||
@ -1057,11 +1057,11 @@ rt2 TE-IS 45 rt6 - rt1(4)
|
||||
|
||||
IS-IS L1 IPv6 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-------------------------------------------------------
|
||||
2001:db8::1/128 40 - rt6 16041
|
||||
2001:db8::2/128 55 - rt6 16041
|
||||
2001:db8::4/128 30 - rt6 16041
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
----------------------------------------------------------
|
||||
2001:db8::1/128 40 - rt6 16041/16011
|
||||
2001:db8::2/128 55 - rt6 16041/16021
|
||||
2001:db8::4/128 30 - rt6 16041
|
||||
|
||||
test# test isis topology 3 root rt5 ti-lfa system-id rt4 ipv4-only
|
||||
P-space (self):
|
||||
@ -1197,12 +1197,12 @@ rt2 TE-IS 90 rt3 - rt4(4)
|
||||
|
||||
IS-IS L1 IPv4 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------
|
||||
10.0.255.2/32 100 - rt3 16050/17
|
||||
10.0.255.4/32 90 - rt3 16050/17
|
||||
10.0.255.6/32 80 - rt3 16050/17
|
||||
10.0.255.8/32 90 - rt3 16050/17
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------------
|
||||
10.0.255.2/32 100 - rt3 16050/17/16020
|
||||
10.0.255.4/32 90 - rt3 16050/17/16040
|
||||
10.0.255.6/32 80 - rt3 16050/17/16060
|
||||
10.0.255.8/32 90 - rt3 16050/17/16080
|
||||
|
||||
test# test isis topology 4 root rt4 ti-lfa system-id rt6 ipv4-only
|
||||
P-space (self):
|
||||
@ -1244,10 +1244,10 @@ rt8 TE-IS 100 rt2 - rt6(4)
|
||||
|
||||
IS-IS L1 IPv4 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------
|
||||
10.0.255.6/32 100 - rt2 16050/17
|
||||
10.0.255.8/32 110 - rt2 16050/17
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------------
|
||||
10.0.255.6/32 100 - rt2 16050/17/16060
|
||||
10.0.255.8/32 110 - rt2 16050/17/16080
|
||||
|
||||
test# test isis topology 5 root rt1 ti-lfa system-id rt2 ipv4-only
|
||||
P-space (self):
|
||||
@ -1288,11 +1288,11 @@ rt2 TE-IS 70 rt3 - rt4(4)
|
||||
|
||||
IS-IS L1 IPv4 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------
|
||||
10.0.255.2/32 80 - rt3 16080
|
||||
10.0.255.4/32 70 - rt3 16080
|
||||
10.0.255.6/32 60 - rt3 16080
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
--------------------------------------------------------
|
||||
10.0.255.2/32 80 - rt3 16080/16020
|
||||
10.0.255.4/32 70 - rt3 16080/16040
|
||||
10.0.255.6/32 60 - rt3 16080/16060
|
||||
|
||||
test# test isis topology 6 root rt4 ti-lfa system-id rt3 ipv4-only
|
||||
P-space (self):
|
||||
@ -1338,9 +1338,9 @@ rt7 TE-IS 30 rt6 - rt5(4)
|
||||
|
||||
IS-IS L1 IPv4 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------
|
||||
10.0.255.3/32 40 - rt2 16010
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
--------------------------------------------------------
|
||||
10.0.255.3/32 40 - rt2 16010/16030
|
||||
|
||||
test# test isis topology 7 root rt11 ti-lfa system-id rt8 ipv4-only
|
||||
P-space (self):
|
||||
@ -1399,16 +1399,16 @@ rt3 TE-IS 60 rt12 - rt6(4)
|
||||
|
||||
IS-IS L1 IPv4 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------
|
||||
10.0.255.1/32 60 - rt10 16010
|
||||
10.0.255.2/32 60 - rt12 16090
|
||||
10.0.255.3/32 70 - rt12 16090
|
||||
10.0.255.4/32 50 - rt10 16040
|
||||
10.0.255.5/32 50 - rt12 16090
|
||||
10.0.255.6/32 60 - rt12 16090
|
||||
10.0.255.7/32 40 - rt10 16070
|
||||
10.0.255.8/32 40 - rt12 16090
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
--------------------------------------------------------
|
||||
10.0.255.1/32 60 - rt10 16010
|
||||
10.0.255.2/32 60 - rt12 16090/16020
|
||||
10.0.255.3/32 70 - rt12 16090/16030
|
||||
10.0.255.4/32 50 - rt10 16040
|
||||
10.0.255.5/32 50 - rt12 16090/16050
|
||||
10.0.255.6/32 60 - rt12 16090/16060
|
||||
10.0.255.7/32 40 - rt10 16070
|
||||
10.0.255.8/32 40 - rt12 16090/16080
|
||||
|
||||
test# test isis topology 7 root rt6 ti-lfa system-id rt5 ipv4-only
|
||||
P-space (self):
|
||||
@ -1479,19 +1479,19 @@ rt10 TE-IS 60 rt9 - rt11(4)
|
||||
|
||||
IS-IS L1 IPv4 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
------------------------------------------------------
|
||||
10.0.255.1/32 60 - rt3 16020
|
||||
10.0.255.4/32 50 - rt3 16020
|
||||
10.0.255.5/32 40 - rt3 16020
|
||||
10.0.255.7/32 60 - rt9 16070
|
||||
- rt3 16070
|
||||
10.0.255.8/32 50 - rt9 16080
|
||||
- rt3 16080
|
||||
10.0.255.10/32 70 - rt9 16100
|
||||
- rt3 16100
|
||||
10.0.255.11/32 60 - rt9 16110
|
||||
- rt3 16110
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
---------------------------------------------------------
|
||||
10.0.255.1/32 60 - rt3 16020/16010
|
||||
10.0.255.4/32 50 - rt3 16020/16040
|
||||
10.0.255.5/32 40 - rt3 16020/16050
|
||||
10.0.255.7/32 60 - rt9 16070
|
||||
- rt3 16070
|
||||
10.0.255.8/32 50 - rt9 16080
|
||||
- rt3 16080
|
||||
10.0.255.10/32 70 - rt9 16100
|
||||
- rt3 16100
|
||||
10.0.255.11/32 60 - rt9 16110
|
||||
- rt3 16110
|
||||
|
||||
test# test isis topology 8 root rt2 ti-lfa system-id rt1 ipv4-only
|
||||
P-space (self):
|
||||
@ -1553,12 +1553,12 @@ rt1 TE-IS 90 rt5 - rt4(4)
|
||||
|
||||
IS-IS L1 IPv4 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
------------------------------------------------------
|
||||
10.0.255.1/32 100 - rt5 16110/17
|
||||
10.0.255.4/32 90 - rt5 16110/17
|
||||
10.0.255.7/32 80 - rt5 16110/17
|
||||
10.0.255.10/32 70 - rt5 16110/17
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
------------------------------------------------------------
|
||||
10.0.255.1/32 100 - rt5 16110/17/16010
|
||||
10.0.255.4/32 90 - rt5 16110/17/16040
|
||||
10.0.255.7/32 80 - rt5 16110/17/16070
|
||||
10.0.255.10/32 70 - rt5 16110/17/16100
|
||||
|
||||
test# test isis topology 8 root rt2 ti-lfa system-id rt5 ipv4-only
|
||||
P-space (self):
|
||||
@ -1616,13 +1616,13 @@ rt12 TE-IS 60 rt3 - rt9(4)
|
||||
|
||||
IS-IS L1 IPv4 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
------------------------------------------------------
|
||||
10.0.255.5/32 40 - rt3 16060
|
||||
10.0.255.8/32 50 - rt3 16060
|
||||
10.0.255.9/32 60 - rt3 16060
|
||||
10.0.255.11/32 60 - rt3 16060
|
||||
10.0.255.12/32 70 - rt3 16060
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
---------------------------------------------------------
|
||||
10.0.255.5/32 40 - rt3 16060/16050
|
||||
10.0.255.8/32 50 - rt3 16060/16080
|
||||
10.0.255.9/32 60 - rt3 16060/16090
|
||||
10.0.255.11/32 60 - rt3 16060/16110
|
||||
10.0.255.12/32 70 - rt3 16060/16120
|
||||
|
||||
test# test isis topology 9 root rt1 ti-lfa system-id rt3
|
||||
P-space (self):
|
||||
@ -1672,9 +1672,9 @@ rt3 TE-IS 120 rt2 - rt4(4)
|
||||
|
||||
IS-IS L1 IPv4 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------
|
||||
10.0.255.3/32 130 - rt2 16040/18
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------------
|
||||
10.0.255.3/32 130 - rt2 16040/18/16030
|
||||
|
||||
P-space (self):
|
||||
rt2
|
||||
@ -1723,9 +1723,9 @@ rt3 TE-IS 120 rt2 - rt4(4)
|
||||
|
||||
IS-IS L1 IPv6 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-------------------------------------------------------
|
||||
2001:db8::3/128 130 - rt2 16041/19
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-------------------------------------------------------------
|
||||
2001:db8::3/128 130 - rt2 16041/19/16031
|
||||
|
||||
test# test isis topology 9 root rt1 ti-lfa system-id rt2
|
||||
P-space (self):
|
||||
@ -1769,15 +1769,15 @@ rt8 TE-IS 140 rt3 - rt4(4)
|
||||
|
||||
IS-IS L1 IPv4 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------
|
||||
10.0.255.2/32 130 - rt3 16030/18
|
||||
10.0.255.4/32 120 - rt3 16030/18
|
||||
10.0.255.5/32 130 - rt3 16030/18
|
||||
10.0.255.6/32 150 - rt3 16030/18
|
||||
10.0.255.7/32 150 - rt3 16030/18
|
||||
10.0.255.8/32 150 - rt3 16030/18
|
||||
10.0.255.9/32 140 - rt3 16030/18
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------------
|
||||
10.0.255.2/32 130 - rt3 16030/18/16020
|
||||
10.0.255.4/32 120 - rt3 16030/18/16040
|
||||
10.0.255.5/32 130 - rt3 16030/18/16050
|
||||
10.0.255.6/32 150 - rt3 16030/18/16060
|
||||
10.0.255.7/32 150 - rt3 16030/18/16070
|
||||
10.0.255.8/32 150 - rt3 16030/18/16080
|
||||
10.0.255.9/32 140 - rt3 16030/18/16090
|
||||
|
||||
P-space (self):
|
||||
rt3
|
||||
@ -1820,15 +1820,15 @@ rt8 TE-IS 140 rt3 - rt4(4)
|
||||
|
||||
IS-IS L1 IPv6 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-------------------------------------------------------
|
||||
2001:db8::2/128 130 - rt3 16031/19
|
||||
2001:db8::4/128 120 - rt3 16031/19
|
||||
2001:db8::5/128 130 - rt3 16031/19
|
||||
2001:db8::6/128 150 - rt3 16031/19
|
||||
2001:db8::7/128 150 - rt3 16031/19
|
||||
2001:db8::8/128 150 - rt3 16031/19
|
||||
2001:db8::9/128 140 - rt3 16031/19
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-------------------------------------------------------------
|
||||
2001:db8::2/128 130 - rt3 16031/19/16021
|
||||
2001:db8::4/128 120 - rt3 16031/19/16041
|
||||
2001:db8::5/128 130 - rt3 16031/19/16051
|
||||
2001:db8::6/128 150 - rt3 16031/19/16061
|
||||
2001:db8::7/128 150 - rt3 16031/19/16071
|
||||
2001:db8::8/128 150 - rt3 16031/19/16081
|
||||
2001:db8::9/128 140 - rt3 16031/19/16091
|
||||
|
||||
test# test isis topology 9 root rt9 ti-lfa system-id rt5
|
||||
P-space (self):
|
||||
@ -1895,23 +1895,23 @@ rt3 TE-IS 70 rt6 - rt1(4)
|
||||
|
||||
IS-IS L1 IPv4 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------
|
||||
10.0.255.1/32 70 - rt6 16060/16
|
||||
- rt7 16070/16
|
||||
- rt8 16080/16
|
||||
10.0.255.2/32 60 - rt6 16060/16
|
||||
- rt7 16070/16
|
||||
- rt8 16080/16
|
||||
10.0.255.3/32 80 - rt6 16060/16
|
||||
- rt7 16070/16
|
||||
- rt8 16080/16
|
||||
10.0.255.4/32 50 - rt6 16060/16
|
||||
- rt7 16070/16
|
||||
- rt8 16080/16
|
||||
10.0.255.5/32 60 - rt6 16060/16
|
||||
- rt7 16070/16
|
||||
- rt8 16080/16
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------------
|
||||
10.0.255.1/32 70 - rt6 16060/16/16010
|
||||
- rt7 16070/16/16010
|
||||
- rt8 16080/16/16010
|
||||
10.0.255.2/32 60 - rt6 16060/16/16020
|
||||
- rt7 16070/16/16020
|
||||
- rt8 16080/16/16020
|
||||
10.0.255.3/32 80 - rt6 16060/16/16030
|
||||
- rt7 16070/16/16030
|
||||
- rt8 16080/16/16030
|
||||
10.0.255.4/32 50 - rt6 16060/16/16040
|
||||
- rt7 16070/16/16040
|
||||
- rt8 16080/16/16040
|
||||
10.0.255.5/32 60 - rt6 16060/16/16050
|
||||
- rt7 16070/16/16050
|
||||
- rt8 16080/16/16050
|
||||
|
||||
P-space (self):
|
||||
rt6
|
||||
@ -1977,23 +1977,23 @@ rt3 TE-IS 70 rt6 - rt1(4)
|
||||
|
||||
IS-IS L1 IPv6 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-------------------------------------------------------
|
||||
2001:db8::1/128 70 - rt6 16061/17
|
||||
- rt7 16071/17
|
||||
- rt8 16081/17
|
||||
2001:db8::2/128 60 - rt6 16061/17
|
||||
- rt7 16071/17
|
||||
- rt8 16081/17
|
||||
2001:db8::3/128 80 - rt6 16061/17
|
||||
- rt7 16071/17
|
||||
- rt8 16081/17
|
||||
2001:db8::4/128 50 - rt6 16061/17
|
||||
- rt7 16071/17
|
||||
- rt8 16081/17
|
||||
2001:db8::5/128 60 - rt6 16061/17
|
||||
- rt7 16071/17
|
||||
- rt8 16081/17
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-------------------------------------------------------------
|
||||
2001:db8::1/128 70 - rt6 16061/17/16011
|
||||
- rt7 16071/17/16011
|
||||
- rt8 16081/17/16011
|
||||
2001:db8::2/128 60 - rt6 16061/17/16021
|
||||
- rt7 16071/17/16021
|
||||
- rt8 16081/17/16021
|
||||
2001:db8::3/128 80 - rt6 16061/17/16031
|
||||
- rt7 16071/17/16031
|
||||
- rt8 16081/17/16031
|
||||
2001:db8::4/128 50 - rt6 16061/17/16041
|
||||
- rt7 16071/17/16041
|
||||
- rt8 16081/17/16041
|
||||
2001:db8::5/128 60 - rt6 16061/17/16051
|
||||
- rt7 16071/17/16051
|
||||
- rt8 16081/17/16051
|
||||
|
||||
test# test isis topology 9 root rt9 ti-lfa system-id rt8
|
||||
P-space (self):
|
||||
@ -2044,9 +2044,9 @@ rt3 TE-IS 50 rt5 - rt1(4)
|
||||
|
||||
IS-IS L1 IPv4 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------
|
||||
10.0.255.8/32 60 - rt5 16040/26
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------------
|
||||
10.0.255.8/32 60 - rt5 16040/26/16080
|
||||
|
||||
P-space (self):
|
||||
rt1
|
||||
@ -2096,9 +2096,9 @@ rt3 TE-IS 50 rt5 - rt1(4)
|
||||
|
||||
IS-IS L1 IPv6 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-------------------------------------------------------
|
||||
2001:db8::8/128 60 - rt5 16041/27
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-------------------------------------------------------------
|
||||
2001:db8::8/128 60 - rt5 16041/27/16081
|
||||
|
||||
test# test isis topology 10 root rt1 ti-lfa system-id rt2
|
||||
P-space (self):
|
||||
@ -2147,14 +2147,14 @@ rt2 TE-IS 100 rt3 - rt5(4)
|
||||
|
||||
IS-IS L1 IPv4 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------
|
||||
10.0.255.2/32 110 - rt3 20060/18
|
||||
- rt4 16070/18
|
||||
10.0.255.5/32 100 - rt3 20060/18
|
||||
- rt4 16070/18
|
||||
10.0.255.8/32 90 - rt3 20060/18
|
||||
- rt4 16070/18
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------------
|
||||
10.0.255.2/32 110 - rt3 20060/18/16020
|
||||
- rt4 16070/18/16020
|
||||
10.0.255.5/32 100 - rt3 20060/18/16050
|
||||
- rt4 16070/18/16050
|
||||
10.0.255.8/32 90 - rt3 20060/18/16080
|
||||
- rt4 16070/18/16080
|
||||
|
||||
P-space (self):
|
||||
rt3
|
||||
@ -2202,14 +2202,14 @@ rt2 TE-IS 100 rt3 - rt5(4)
|
||||
|
||||
IS-IS L1 IPv6 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-------------------------------------------------------
|
||||
2001:db8::2/128 110 - rt3 20061/19
|
||||
- rt4 16071/19
|
||||
2001:db8::5/128 100 - rt3 20061/19
|
||||
- rt4 16071/19
|
||||
2001:db8::8/128 90 - rt3 20061/19
|
||||
- rt4 16071/19
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-------------------------------------------------------------
|
||||
2001:db8::2/128 110 - rt3 20061/19/16021
|
||||
- rt4 16071/19/16021
|
||||
2001:db8::5/128 100 - rt3 20061/19/16051
|
||||
- rt4 16071/19/16051
|
||||
2001:db8::8/128 90 - rt3 20061/19/16081
|
||||
- rt4 16071/19/16081
|
||||
|
||||
test# test isis topology 10 root rt1 ti-lfa system-id rt4
|
||||
P-space (self):
|
||||
@ -2253,10 +2253,10 @@ rt4 TE-IS 90 rt2 - rt7(4)
|
||||
|
||||
IS-IS L1 IPv4 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------
|
||||
10.0.255.4/32 100 - rt2 16080/20
|
||||
10.0.255.7/32 90 - rt2 16080/20
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------------
|
||||
10.0.255.4/32 100 - rt2 16080/20/16040
|
||||
10.0.255.7/32 90 - rt2 16080/20/16070
|
||||
|
||||
P-space (self):
|
||||
rt2
|
||||
@ -2299,10 +2299,10 @@ rt4 TE-IS 90 rt2 - rt7(4)
|
||||
|
||||
IS-IS L1 IPv6 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-------------------------------------------------------
|
||||
2001:db8::4/128 100 - rt2 16081/21
|
||||
2001:db8::7/128 90 - rt2 16081/21
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-------------------------------------------------------------
|
||||
2001:db8::4/128 100 - rt2 16081/21/16041
|
||||
2001:db8::7/128 90 - rt2 16081/21/16071
|
||||
|
||||
test# test isis topology 11 root rt2 ti-lfa system-id rt4
|
||||
P-space (self):
|
||||
@ -2347,7 +2347,7 @@ IS-IS L1 IPv4 routing table:
|
||||
----------------------------------------------------------
|
||||
10.0.255.1/32 60 - rt1 implicit-null
|
||||
10.0.255.3/32 60 - rt3 implicit-null
|
||||
10.0.255.4/32 80 - rt3 16050
|
||||
10.0.255.4/32 80 - rt3 16050/16040
|
||||
10.0.255.5/32 70 - rt3 16050
|
||||
10.0.255.6/32 80 - rt3 16060
|
||||
|
||||
@ -2393,7 +2393,7 @@ IS-IS L1 IPv6 routing table:
|
||||
------------------------------------------------------------
|
||||
2001:db8::1/128 60 - rt1 implicit-null
|
||||
2001:db8::3/128 60 - rt3 implicit-null
|
||||
2001:db8::4/128 80 - rt3 16051
|
||||
2001:db8::4/128 80 - rt3 16051/16041
|
||||
2001:db8::5/128 70 - rt3 16051
|
||||
2001:db8::6/128 80 - rt3 16061
|
||||
|
||||
@ -2440,12 +2440,12 @@ rt3 TE-IS 740 rt2 - rt5(4)
|
||||
|
||||
IS-IS L1 IPv4 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------------
|
||||
10.0.255.3/32 750 - rt2 16080/17/16/16
|
||||
10.0.255.5/32 350 - rt2 16080/17/16
|
||||
10.0.255.7/32 150 - rt2 16080/17
|
||||
10.0.255.9/32 160 - rt2 16080/17/18
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------------------
|
||||
10.0.255.3/32 750 - rt2 16080/17/16/16/16030
|
||||
10.0.255.5/32 350 - rt2 16080/17/16/16050
|
||||
10.0.255.7/32 150 - rt2 16080/17/16070
|
||||
10.0.255.9/32 160 - rt2 16080/17/18/16090
|
||||
|
||||
test# test isis topology 13 root rt1 ti-lfa system-id rt3 ipv4-only
|
||||
P-space (self):
|
||||
@ -2482,12 +2482,12 @@ rt7 TE-IS 50 rt2 - rt5(4)
|
||||
|
||||
IS-IS L1 IPv4 routing table:
|
||||
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
-----------------------------------------------------
|
||||
10.0.255.3/32 40 - rt2 16040
|
||||
10.0.255.5/32 50 - rt2 16040
|
||||
10.0.255.6/32 50 - rt2 16040
|
||||
10.0.255.7/32 60 - rt2 16040
|
||||
Prefix Metric Interface Nexthop Label(s)
|
||||
--------------------------------------------------------
|
||||
10.0.255.3/32 40 - rt2 16040/16030
|
||||
10.0.255.5/32 50 - rt2 16040/16050
|
||||
10.0.255.6/32 50 - rt2 16040/16060
|
||||
10.0.255.7/32 60 - rt2 16040/16070
|
||||
|
||||
test#
|
||||
end.
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt1/step3/show_ip_route.ref 2020-08-31 22:42:48.831561460 -0300
|
||||
+++ rt1/step4/show_ip_route.ref 2020-08-31 22:42:48.831561460 -0300
|
||||
--- rt1/step3/show_ip_route.ref 2020-09-25 17:48:05.062911204 -0300
|
||||
+++ rt1/step4/show_ip_route.ref 2020-09-25 17:49:01.563647190 -0300
|
||||
@@ -60,10 +60,7 @@
|
||||
"ip":"10.0.1.2",
|
||||
"afi":"ipv4",
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt1/step3/show_ipv6_route.ref 2020-08-31 22:42:48.831561460 -0300
|
||||
+++ rt1/step4/show_ipv6_route.ref 2020-08-31 22:42:48.831561460 -0300
|
||||
--- rt1/step3/show_ipv6_route.ref 2020-09-25 17:48:06.358928078 -0300
|
||||
+++ rt1/step4/show_ipv6_route.ref 2020-09-25 17:49:02.791663194 -0300
|
||||
@@ -57,10 +57,7 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt1/step3/show_mpls_table.ref 2020-08-31 22:42:48.831561460 -0300
|
||||
+++ rt1/step4/show_mpls_table.ref 2020-08-31 22:42:48.831561460 -0300
|
||||
--- rt1/step3/show_mpls_table.ref 2020-09-25 17:48:03.782894539 -0300
|
||||
+++ rt1/step4/show_mpls_table.ref 2020-09-25 17:49:00.343631290 -0300
|
||||
@@ -47,30 +47,6 @@
|
||||
}
|
||||
]
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt1/step4/show_ip_route.ref 2020-08-31 22:42:48.831561460 -0300
|
||||
+++ rt1/step5/show_ip_route.ref 2020-08-31 22:42:48.831561460 -0300
|
||||
--- rt1/step4/show_ip_route.ref 2020-09-25 17:49:01.563647190 -0300
|
||||
+++ rt1/step5/show_ip_route.ref 2020-09-25 17:50:12.144567593 -0300
|
||||
@@ -60,7 +60,10 @@
|
||||
"ip":"10.0.1.2",
|
||||
"afi":"ipv4",
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt1/step4/show_ipv6_route.ref 2020-08-31 22:42:48.831561460 -0300
|
||||
+++ rt1/step5/show_ipv6_route.ref 2020-08-31 22:42:48.831561460 -0300
|
||||
--- rt1/step4/show_ipv6_route.ref 2020-09-25 17:49:02.791663194 -0300
|
||||
+++ rt1/step5/show_ipv6_route.ref 2020-09-25 17:50:13.428584346 -0300
|
||||
@@ -57,7 +57,10 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt1/step4/show_mpls_table.ref 2020-08-31 22:42:48.831561460 -0300
|
||||
+++ rt1/step5/show_mpls_table.ref 2020-08-31 22:42:48.831561460 -0300
|
||||
--- rt1/step4/show_mpls_table.ref 2020-09-25 17:49:00.343631290 -0300
|
||||
+++ rt1/step5/show_mpls_table.ref 2020-09-25 17:50:10.868550944 -0300
|
||||
@@ -47,6 +47,30 @@
|
||||
}
|
||||
]
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt1/step6/show_ip_route.ref 2020-08-31 22:42:48.831561460 -0300
|
||||
+++ rt1/step7/show_ip_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
--- rt1/step6/show_ip_route.ref 2020-09-25 17:51:15.105389461 -0300
|
||||
+++ rt1/step7/show_ip_route.ref 2020-09-25 17:52:02.014002243 -0300
|
||||
@@ -83,10 +83,7 @@
|
||||
"ip":"10.0.1.3",
|
||||
"afi":"ipv4",
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt1/step6/show_ipv6_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt1/step7/show_ipv6_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
--- rt1/step6/show_ipv6_route.ref 2020-09-25 17:51:16.345405655 -0300
|
||||
+++ rt1/step7/show_ipv6_route.ref 2020-09-25 17:52:03.230018133 -0300
|
||||
@@ -79,10 +79,7 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt1/step6/show_mpls_table.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt1/step7/show_mpls_table.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
--- rt1/step6/show_mpls_table.ref 2020-09-25 17:51:13.861373215 -0300
|
||||
+++ rt1/step7/show_mpls_table.ref 2020-09-25 17:52:00.769985988 -0300
|
||||
@@ -71,30 +71,6 @@
|
||||
}
|
||||
]
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt1/step7/show_ip_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt1/step8/show_ip_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
--- rt1/step7/show_ip_route.ref 2020-09-25 17:52:02.014002243 -0300
|
||||
+++ rt1/step8/show_ip_route.ref 2020-09-25 17:53:20.003021800 -0300
|
||||
@@ -83,7 +83,10 @@
|
||||
"ip":"10.0.1.3",
|
||||
"afi":"ipv4",
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt1/step7/show_ipv6_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt1/step8/show_ipv6_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
--- rt1/step7/show_ipv6_route.ref 2020-09-25 17:52:03.230018133 -0300
|
||||
+++ rt1/step8/show_ipv6_route.ref 2020-09-25 17:53:21.239037966 -0300
|
||||
@@ -79,7 +79,10 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt1/step7/show_mpls_table.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt1/step8/show_mpls_table.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
--- rt1/step7/show_mpls_table.ref 2020-09-25 17:52:00.769985988 -0300
|
||||
+++ rt1/step8/show_mpls_table.ref 2020-09-25 17:53:18.671004379 -0300
|
||||
@@ -71,6 +71,30 @@
|
||||
}
|
||||
]
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt1/step8/show_ip_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt1/step9/show_ip_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
--- rt1/step8/show_ip_route.ref 2020-09-25 17:53:20.003021800 -0300
|
||||
+++ rt1/step9/show_ip_route.ref 2020-09-25 17:54:37.700038367 -0300
|
||||
@@ -85,7 +85,7 @@
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt1/step8/show_ipv6_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt1/step9/show_ipv6_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
--- rt1/step8/show_ipv6_route.ref 2020-09-25 17:53:21.239037966 -0300
|
||||
+++ rt1/step9/show_ipv6_route.ref 2020-09-25 17:54:38.912054230 -0300
|
||||
@@ -81,7 +81,7 @@
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt1/step8/show_mpls_table.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt1/step9/show_mpls_table.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
--- rt1/step8/show_mpls_table.ref 2020-09-25 17:53:18.671004379 -0300
|
||||
+++ rt1/step9/show_mpls_table.ref 2020-09-25 17:54:36.428021718 -0300
|
||||
@@ -71,30 +71,6 @@
|
||||
}
|
||||
]
|
||||
|
@ -31,7 +31,8 @@
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16050
|
||||
16050,
|
||||
16010
|
||||
]
|
||||
},
|
||||
{
|
||||
@ -40,7 +41,8 @@
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16050
|
||||
16050,
|
||||
16010
|
||||
]
|
||||
}
|
||||
]
|
||||
@ -78,7 +80,8 @@
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16050
|
||||
16050,
|
||||
16030
|
||||
]
|
||||
},
|
||||
{
|
||||
@ -87,7 +90,8 @@
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16050
|
||||
16050,
|
||||
16030
|
||||
]
|
||||
}
|
||||
]
|
||||
@ -109,6 +113,9 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@ -119,10 +126,25 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.1.3",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16050,
|
||||
16040
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
@ -185,6 +207,9 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
16060
|
||||
]
|
||||
@ -195,10 +220,21 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
16060
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.1.3",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
@ -233,13 +269,19 @@
|
||||
"ip":"10.0.2.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true
|
||||
"active":true,
|
||||
"labels":[
|
||||
16050
|
||||
]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.3.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true
|
||||
"active":true,
|
||||
"labels":[
|
||||
16050
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -254,13 +296,30 @@
|
||||
{
|
||||
"ip":"10.0.2.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-1"
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.3.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.1.3",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16050
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -276,12 +335,29 @@
|
||||
"ip":"10.0.2.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.3.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-2"
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.1.3",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16050
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -377,13 +453,27 @@
|
||||
"ip":"10.0.2.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"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
|
||||
}
|
||||
]
|
||||
@ -404,14 +494,31 @@
|
||||
"ip":"10.0.2.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"ip":"10.0.3.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.1.3",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16050
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -29,7 +29,8 @@
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16051
|
||||
16051,
|
||||
16011
|
||||
]
|
||||
},
|
||||
{
|
||||
@ -37,7 +38,8 @@
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16051
|
||||
16051,
|
||||
16011
|
||||
]
|
||||
}
|
||||
]
|
||||
@ -73,7 +75,8 @@
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16051
|
||||
16051,
|
||||
16031
|
||||
]
|
||||
},
|
||||
{
|
||||
@ -81,7 +84,8 @@
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16051
|
||||
16051,
|
||||
16031
|
||||
]
|
||||
}
|
||||
]
|
||||
@ -100,8 +104,11 @@
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@ -109,12 +116,26 @@
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16051,
|
||||
16041
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
@ -128,15 +149,6 @@
|
||||
"metric":30,
|
||||
"installed":true,
|
||||
"nexthops":[
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16051
|
||||
]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
@ -154,6 +166,15 @@
|
||||
"labels":[
|
||||
16051
|
||||
]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16051
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -171,8 +192,11 @@
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
16061
|
||||
]
|
||||
@ -180,12 +204,22 @@
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
16061
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
@ -119,13 +119,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.3.4"
|
||||
"nexthop":"10.0.3.4",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.2.4"
|
||||
"nexthop":"10.0.2.4",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16050,
|
||||
"nexthop":"10.0.1.3"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -137,13 +150,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
"interface":"eth-rt4-2"
|
||||
"interface":"eth-rt4-2",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
"interface":"eth-rt4-1"
|
||||
"interface":"eth-rt4-1",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16051,
|
||||
"interface":"eth-sw1"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -203,13 +229,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16060,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.3.4"
|
||||
"nexthop":"10.0.3.4",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16060,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.2.4"
|
||||
"nexthop":"10.0.2.4",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"nexthop":"10.0.1.3"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -221,13 +260,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16061,
|
||||
"installed":true,
|
||||
"interface":"eth-rt4-2"
|
||||
"interface":"eth-rt4-2",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16061,
|
||||
"installed":true,
|
||||
"interface":"eth-rt4-1"
|
||||
"interface":"eth-rt4-1",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"interface":"eth-sw1"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt2/step1/show_ip_route.ref 2020-08-31 15:36:25.999825589 -0300
|
||||
+++ rt2/step2/show_ip_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
@@ -15,34 +15,10 @@
|
||||
--- rt2/step1/show_ip_route.ref 2020-09-25 17:46:27.537642781 -0300
|
||||
+++ rt2/step2/show_ip_route.ref 2020-09-25 17:46:57.306029668 -0300
|
||||
@@ -15,36 +15,10 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -20,7 +20,8 @@
|
||||
- "interfaceName":"eth-rt4-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16050
|
||||
- 16050,
|
||||
- 16010
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
@ -29,13 +30,14 @@
|
||||
- "interfaceName":"eth-rt4-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16050
|
||||
- 16050,
|
||||
- 16010
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -62,34 +38,10 @@
|
||||
@@ -64,36 +38,10 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -55,7 +57,8 @@
|
||||
- "interfaceName":"eth-rt4-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16050
|
||||
- 16050,
|
||||
- 16030
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
@ -64,13 +67,14 @@
|
||||
- "interfaceName":"eth-rt4-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16050
|
||||
- 16050,
|
||||
- 16030
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -212,34 +164,12 @@
|
||||
@@ -248,40 +196,12 @@
|
||||
{
|
||||
"ip":"10.0.1.1",
|
||||
"afi":"ipv4",
|
||||
@ -96,18 +100,24 @@
|
||||
- "ip":"10.0.2.4",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-rt4-1",
|
||||
- "active":true
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16050
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
- "ip":"10.0.3.4",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-rt4-2",
|
||||
- "active":true
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16050
|
||||
- ]
|
||||
+ "interfaceName":"eth-sw1"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -301,24 +231,6 @@
|
||||
@@ -377,24 +297,6 @@
|
||||
"ip":"10.0.1.3",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
@ -132,7 +142,7 @@
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
@@ -339,24 +251,6 @@
|
||||
@@ -415,24 +317,6 @@
|
||||
"ip":"10.0.1.3",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt2/step1/show_ipv6_route.ref 2020-08-31 15:36:25.999825589 -0300
|
||||
+++ rt2/step2/show_ipv6_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
@@ -14,32 +14,10 @@
|
||||
--- rt2/step1/show_ipv6_route.ref 2020-09-25 17:46:28.865660035 -0300
|
||||
+++ rt2/step2/show_ipv6_route.ref 2020-09-25 17:46:58.514045373 -0300
|
||||
@@ -14,34 +14,10 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -19,7 +19,8 @@
|
||||
- "interfaceName":"eth-rt4-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16051
|
||||
- 16051,
|
||||
- 16011
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
@ -27,13 +28,14 @@
|
||||
- "interfaceName":"eth-rt4-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16051
|
||||
- 16051,
|
||||
- 16011
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -58,32 +36,10 @@
|
||||
@@ -60,34 +36,10 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -52,7 +54,8 @@
|
||||
- "interfaceName":"eth-rt4-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16051
|
||||
- 16051,
|
||||
- 16031
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
@ -60,7 +63,8 @@
|
||||
- "interfaceName":"eth-rt4-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16051
|
||||
- 16051,
|
||||
- 16031
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt2/step1/show_mpls_table.ref 2020-08-31 15:36:25.999825589 -0300
|
||||
+++ rt2/step2/show_mpls_table.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
--- rt2/step1/show_mpls_table.ref 2020-09-25 17:46:26.261626203 -0300
|
||||
+++ rt2/step2/show_mpls_table.ref 2020-09-25 17:46:56.086013807 -0300
|
||||
@@ -7,23 +7,7 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt2/step2/show_ip_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt2/step3/show_ip_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
@@ -15,10 +15,34 @@
|
||||
--- rt2/step2/show_ip_route.ref 2020-09-25 17:46:57.306029668 -0300
|
||||
+++ rt2/step3/show_ip_route.ref 2020-09-25 17:48:05.274913964 -0300
|
||||
@@ -15,10 +15,36 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -20,7 +20,8 @@
|
||||
+ "interfaceName":"eth-rt4-1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050
|
||||
+ 16050,
|
||||
+ 16010
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
@ -29,13 +30,14 @@
|
||||
+ "interfaceName":"eth-rt4-2",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050
|
||||
+ 16050,
|
||||
+ 16010
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -38,10 +62,34 @@
|
||||
@@ -38,10 +64,36 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -55,7 +57,8 @@
|
||||
+ "interfaceName":"eth-rt4-1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050
|
||||
+ 16050,
|
||||
+ 16030
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
@ -64,13 +67,14 @@
|
||||
+ "interfaceName":"eth-rt4-2",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050
|
||||
+ 16050,
|
||||
+ 16030
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -164,12 +212,34 @@
|
||||
@@ -196,12 +248,40 @@
|
||||
{
|
||||
"ip":"10.0.1.1",
|
||||
"afi":"ipv4",
|
||||
@ -97,17 +101,23 @@
|
||||
+ "ip":"10.0.2.4",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt4-1",
|
||||
+ "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
+ "ip":"10.0.3.4",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt4-2",
|
||||
+ "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -231,6 +301,24 @@
|
||||
@@ -297,6 +377,24 @@
|
||||
"ip":"10.0.1.3",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
@ -132,7 +142,7 @@
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
@@ -251,6 +339,24 @@
|
||||
@@ -317,6 +415,24 @@
|
||||
"ip":"10.0.1.3",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt2/step2/show_ipv6_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt2/step3/show_ipv6_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
@@ -14,10 +14,32 @@
|
||||
--- rt2/step2/show_ipv6_route.ref 2020-09-25 17:46:58.514045373 -0300
|
||||
+++ rt2/step3/show_ipv6_route.ref 2020-09-25 17:48:06.570930838 -0300
|
||||
@@ -14,10 +14,34 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -19,7 +19,8 @@
|
||||
+ "interfaceName":"eth-rt4-1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16051
|
||||
+ 16051,
|
||||
+ 16011
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
@ -27,13 +28,14 @@
|
||||
+ "interfaceName":"eth-rt4-2",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16051
|
||||
+ 16051,
|
||||
+ 16011
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -36,10 +58,32 @@
|
||||
@@ -36,10 +60,34 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -52,7 +54,8 @@
|
||||
+ "interfaceName":"eth-rt4-1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16051
|
||||
+ 16051,
|
||||
+ 16031
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
@ -60,7 +63,8 @@
|
||||
+ "interfaceName":"eth-rt4-2",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16051
|
||||
+ 16051,
|
||||
+ 16031
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt2/step2/show_mpls_table.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt2/step3/show_mpls_table.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
--- rt2/step2/show_mpls_table.ref 2020-09-25 17:46:56.086013807 -0300
|
||||
+++ rt2/step3/show_mpls_table.ref 2020-09-25 17:48:03.994897300 -0300
|
||||
@@ -7,7 +7,23 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt2/step3/show_ip_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt2/step4/show_ip_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
@@ -15,34 +15,10 @@
|
||||
--- rt2/step3/show_ip_route.ref 2020-09-25 17:48:05.274913964 -0300
|
||||
+++ rt2/step4/show_ip_route.ref 2020-09-25 17:49:01.763649797 -0300
|
||||
@@ -15,36 +15,10 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -20,7 +20,8 @@
|
||||
- "interfaceName":"eth-rt4-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16050
|
||||
- 16050,
|
||||
- 16010
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
@ -29,13 +30,14 @@
|
||||
- "interfaceName":"eth-rt4-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16050
|
||||
- 16050,
|
||||
- 16010
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -62,34 +38,10 @@
|
||||
@@ -64,36 +38,10 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -55,7 +57,8 @@
|
||||
- "interfaceName":"eth-rt4-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16050
|
||||
- 16050,
|
||||
- 16030
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
@ -64,19 +67,50 @@
|
||||
- "interfaceName":"eth-rt4-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16050
|
||||
- 16050,
|
||||
- 16030
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -108,20 +60,14 @@
|
||||
@@ -115,9 +63,6 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
- ],
|
||||
- "labels":[
|
||||
- 3
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -128,9 +73,6 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
- ],
|
||||
- "labels":[
|
||||
- 3
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -141,8 +83,7 @@
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16050,
|
||||
- 16040
|
||||
+ 16050
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -173,20 +114,14 @@
|
||||
"ip":"10.0.2.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 3
|
||||
- 16050
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
@ -87,54 +121,33 @@
|
||||
"interfaceName":"eth-rt4-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 3
|
||||
- 16050
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -153,7 +99,7 @@
|
||||
"interfaceName":"eth-rt4-1",
|
||||
@@ -209,9 +144,6 @@
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16050
|
||||
+ 3
|
||||
"backupIndex":[
|
||||
0
|
||||
- ],
|
||||
- "labels":[
|
||||
- 16060
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -163,7 +109,7 @@
|
||||
"interfaceName":"eth-rt4-2",
|
||||
@@ -222,9 +154,6 @@
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16050
|
||||
+ 3
|
||||
"backupIndex":[
|
||||
0
|
||||
- ],
|
||||
- "labels":[
|
||||
- 16060
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -184,20 +130,14 @@
|
||||
"ip":"10.0.2.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16060
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"ip":"10.0.3.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16060
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -212,34 +152,12 @@
|
||||
],
|
||||
@@ -248,40 +177,12 @@
|
||||
{
|
||||
"ip":"10.0.1.1",
|
||||
"afi":"ipv4",
|
||||
@ -160,13 +173,19 @@
|
||||
- "ip":"10.0.2.4",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-rt4-1",
|
||||
- "active":true
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16050
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
- "ip":"10.0.3.4",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-rt4-2",
|
||||
- "active":true
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16050
|
||||
- ]
|
||||
+ "interfaceName":"eth-sw1"
|
||||
}
|
||||
]
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt2/step3/show_ipv6_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt2/step4/show_ipv6_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
@@ -14,32 +14,10 @@
|
||||
--- rt2/step3/show_ipv6_route.ref 2020-09-25 17:48:06.570930838 -0300
|
||||
+++ rt2/step4/show_ipv6_route.ref 2020-09-25 17:49:02.995665853 -0300
|
||||
@@ -14,34 +14,10 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -19,7 +19,8 @@
|
||||
- "interfaceName":"eth-rt4-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16051
|
||||
- 16051,
|
||||
- 16011
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
@ -27,13 +28,14 @@
|
||||
- "interfaceName":"eth-rt4-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16051
|
||||
- 16051,
|
||||
- 16011
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -58,32 +36,10 @@
|
||||
@@ -60,34 +36,10 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -52,7 +54,8 @@
|
||||
- "interfaceName":"eth-rt4-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16051
|
||||
- 16051,
|
||||
- 16031
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
@ -60,71 +63,82 @@
|
||||
- "interfaceName":"eth-rt4-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16051
|
||||
- 16051,
|
||||
- 16031
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -101,19 +57,13 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
- "active":true,
|
||||
@@ -108,9 +60,6 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
- ],
|
||||
- "labels":[
|
||||
- 3
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -120,9 +69,6 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
- ],
|
||||
- "labels":[
|
||||
- 3
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -132,8 +78,7 @@
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16051,
|
||||
- 16041
|
||||
+ 16051
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -162,19 +107,13 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16051
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 3
|
||||
- 16051
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -134,7 +84,7 @@
|
||||
"interfaceName":"eth-rt4-1",
|
||||
@@ -196,9 +135,6 @@
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16051
|
||||
+ 3
|
||||
"backupIndex":[
|
||||
0
|
||||
- ],
|
||||
- "labels":[
|
||||
- 16061
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -152,7 +102,7 @@
|
||||
"interfaceName":"eth-rt4-2",
|
||||
@@ -208,9 +144,6 @@
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16051
|
||||
+ 3
|
||||
"backupIndex":[
|
||||
0
|
||||
- ],
|
||||
- "labels":[
|
||||
- 16061
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -172,19 +122,13 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16061
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16061
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt2/step3/show_mpls_table.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt2/step4/show_mpls_table.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
--- rt2/step3/show_mpls_table.ref 2020-09-25 17:48:03.994897300 -0300
|
||||
+++ rt2/step4/show_mpls_table.ref 2020-09-25 17:49:00.551634001 -0300
|
||||
@@ -7,23 +7,7 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
@ -75,7 +75,7 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -91,59 +43,7 @@
|
||||
@@ -91,84 +43,6 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
@ -107,13 +107,26 @@
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "installed":true,
|
||||
- "nexthop":"10.0.3.4"
|
||||
- "nexthop":"10.0.3.4",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "installed":true,
|
||||
- "nexthop":"10.0.2.4"
|
||||
- "nexthop":"10.0.2.4",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- }
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16050,
|
||||
- "nexthop":"10.0.1.3"
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
@ -125,88 +138,63 @@
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "installed":true,
|
||||
- "interface":"eth-rt4-2"
|
||||
- "interface":"eth-rt4-2",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "installed":true,
|
||||
- "interface":"eth-rt4-1"
|
||||
+ "interface":"eth-sw1"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -153,13 +53,13 @@
|
||||
"nexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16050,
|
||||
+ "outLabel":3,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.3.4"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16050,
|
||||
+ "outLabel":3,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.2.4"
|
||||
},
|
||||
@@ -177,13 +77,13 @@
|
||||
"nexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "interface":"eth-rt4-1",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- }
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16051,
|
||||
+ "outLabel":3,
|
||||
"installed":true,
|
||||
"interface":"eth-rt4-2"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16051,
|
||||
+ "outLabel":3,
|
||||
"installed":true,
|
||||
"interface":"eth-rt4-1"
|
||||
},
|
||||
@@ -194,41 +94,5 @@
|
||||
"interface":"eth-sw1"
|
||||
}
|
||||
]
|
||||
- },
|
||||
- "16060":{
|
||||
- "inLabel":16060,
|
||||
- "installed":true,
|
||||
- "nexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16060,
|
||||
- "installed":true,
|
||||
@@ -181,18 +55,6 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16050,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.3.4"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16060,
|
||||
- "outLabel":16050,
|
||||
- "installed":true,
|
||||
- "nexthop":"10.0.2.4"
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
- "16061":{
|
||||
- "inLabel":16061,
|
||||
- "installed":true,
|
||||
- "nexthops":[
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16061,
|
||||
- "outLabel":16050,
|
||||
- "installed":true,
|
||||
"nexthop":"10.0.1.3"
|
||||
}
|
||||
]
|
||||
@@ -204,18 +66,6 @@
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16051,
|
||||
- "installed":true,
|
||||
- "interface":"eth-rt4-2"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16061,
|
||||
- "outLabel":16051,
|
||||
- "installed":true,
|
||||
- "interface":"eth-rt4-1"
|
||||
- }
|
||||
- ]
|
||||
}
|
||||
}
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16051,
|
||||
"installed":true,
|
||||
"interface":"eth-sw1"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt2/step4/show_ip_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt2/step5/show_ip_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
@@ -15,10 +15,34 @@
|
||||
--- rt2/step4/show_ip_route.ref 2020-09-25 17:49:01.763649797 -0300
|
||||
+++ rt2/step5/show_ip_route.ref 2020-09-25 17:50:12.360570411 -0300
|
||||
@@ -15,10 +15,36 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -20,7 +20,8 @@
|
||||
+ "interfaceName":"eth-rt4-1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050
|
||||
+ 16050,
|
||||
+ 16010
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
@ -29,13 +30,14 @@
|
||||
+ "interfaceName":"eth-rt4-2",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050
|
||||
+ 16050,
|
||||
+ 16010
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -38,10 +62,34 @@
|
||||
@@ -38,10 +64,36 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -55,7 +57,8 @@
|
||||
+ "interfaceName":"eth-rt4-1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050
|
||||
+ 16050,
|
||||
+ 16030
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
@ -64,20 +67,51 @@
|
||||
+ "interfaceName":"eth-rt4-2",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050
|
||||
+ 16050,
|
||||
+ 16030
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -60,14 +108,20 @@
|
||||
@@ -63,6 +115,9 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
+ ],
|
||||
+ "labels":[
|
||||
+ 3
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -73,6 +128,9 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
+ ],
|
||||
+ "labels":[
|
||||
+ 3
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -83,7 +141,8 @@
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16050
|
||||
+ 16050,
|
||||
+ 16040
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -114,14 +173,20 @@
|
||||
"ip":"10.0.2.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ 16050
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
@ -88,53 +122,32 @@
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ 16050
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -99,7 +153,7 @@
|
||||
"interfaceName":"eth-rt4-1",
|
||||
@@ -144,6 +209,9 @@
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 3
|
||||
+ 16050
|
||||
"backupIndex":[
|
||||
0
|
||||
+ ],
|
||||
+ "labels":[
|
||||
+ 16060
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -109,7 +163,7 @@
|
||||
"interfaceName":"eth-rt4-2",
|
||||
@@ -154,6 +222,9 @@
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 3
|
||||
+ 16050
|
||||
"backupIndex":[
|
||||
0
|
||||
+ ],
|
||||
+ "labels":[
|
||||
+ 16060
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -130,14 +184,20 @@
|
||||
"ip":"10.0.2.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16060
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"ip":"10.0.3.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16060
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -152,12 +212,34 @@
|
||||
],
|
||||
@@ -177,12 +248,40 @@
|
||||
{
|
||||
"ip":"10.0.1.1",
|
||||
"afi":"ipv4",
|
||||
@ -161,13 +174,19 @@
|
||||
+ "ip":"10.0.2.4",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt4-1",
|
||||
+ "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
+ "ip":"10.0.3.4",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt4-2",
|
||||
+ "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt2/step4/show_ipv6_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt2/step5/show_ipv6_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
@@ -14,10 +14,32 @@
|
||||
--- rt2/step4/show_ipv6_route.ref 2020-09-25 17:49:02.995665853 -0300
|
||||
+++ rt2/step5/show_ipv6_route.ref 2020-09-25 17:50:13.636587060 -0300
|
||||
@@ -14,10 +14,34 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -19,7 +19,8 @@
|
||||
+ "interfaceName":"eth-rt4-1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16051
|
||||
+ 16051,
|
||||
+ 16011
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
@ -27,13 +28,14 @@
|
||||
+ "interfaceName":"eth-rt4-2",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16051
|
||||
+ 16051,
|
||||
+ 16011
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -36,10 +58,32 @@
|
||||
@@ -36,10 +60,34 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -52,7 +54,8 @@
|
||||
+ "interfaceName":"eth-rt4-1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16051
|
||||
+ 16051,
|
||||
+ 16031
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
@ -60,71 +63,82 @@
|
||||
+ "interfaceName":"eth-rt4-2",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16051
|
||||
+ 16051,
|
||||
+ 16031
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -57,13 +101,19 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
@@ -60,6 +108,9 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
+ ],
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ ]
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -69,6 +120,9 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
+ ],
|
||||
+ "labels":[
|
||||
+ 3
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -78,7 +132,8 @@
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16051
|
||||
+ 16051,
|
||||
+ 16041
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -107,13 +162,19 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ 16051
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16051
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -84,7 +134,7 @@
|
||||
"interfaceName":"eth-rt4-1",
|
||||
@@ -135,6 +196,9 @@
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 3
|
||||
+ 16051
|
||||
"backupIndex":[
|
||||
0
|
||||
+ ],
|
||||
+ "labels":[
|
||||
+ 16061
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -102,7 +152,7 @@
|
||||
"interfaceName":"eth-rt4-2",
|
||||
@@ -144,6 +208,9 @@
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 3
|
||||
+ 16051
|
||||
"backupIndex":[
|
||||
0
|
||||
+ ],
|
||||
+ "labels":[
|
||||
+ 16061
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -122,13 +172,19 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16061
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16061
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt2/step4/show_mpls_table.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt2/step5/show_mpls_table.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
--- rt2/step4/show_mpls_table.ref 2020-09-25 17:49:00.551634001 -0300
|
||||
+++ rt2/step5/show_mpls_table.ref 2020-09-25 17:50:11.068553553 -0300
|
||||
@@ -7,7 +7,23 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
@ -75,11 +75,10 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -43,12 +91,28 @@
|
||||
@@ -43,6 +91,84 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "interface":"eth-sw1"
|
||||
+ "interface":"eth-sw1",
|
||||
+ "backupIndex":[
|
||||
+ 0,
|
||||
@ -97,20 +96,37 @@
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16051,
|
||||
+ "interface":"eth-rt4-2"
|
||||
}
|
||||
]
|
||||
},
|
||||
- "16050":{
|
||||
- "inLabel":16050,
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
+ "16040":{
|
||||
+ "inLabel":16040,
|
||||
"installed":true,
|
||||
"nexthops":[
|
||||
{
|
||||
@@ -62,6 +126,42 @@
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.2.4"
|
||||
+ "installed":true,
|
||||
+ "nexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":3,
|
||||
+ "installed":true,
|
||||
+ "nexthop":"10.0.3.4",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":3,
|
||||
+ "installed":true,
|
||||
+ "nexthop":"10.0.2.4",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16050,
|
||||
+ "nexthop":"10.0.1.3"
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
@ -122,89 +138,63 @@
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":3,
|
||||
+ "installed":true,
|
||||
+ "interface":"eth-rt4-2"
|
||||
+ "interface":"eth-rt4-2",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":3,
|
||||
+ "installed":true,
|
||||
+ "interface":"eth-rt4-1"
|
||||
+ "interface":"eth-rt4-1",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
+ "16050":{
|
||||
+ "inLabel":16050,
|
||||
+ "installed":true,
|
||||
+ "nexthops":[
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16050,
|
||||
+ "installed":true,
|
||||
+ "nexthop":"10.0.3.4"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16050,
|
||||
+ "installed":true,
|
||||
+ "nexthop":"10.0.2.4"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
@@ -77,13 +177,13 @@
|
||||
"nexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
+ "outLabel":16051,
|
||||
"installed":true,
|
||||
"interface":"eth-rt4-2"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
+ "outLabel":16051,
|
||||
"installed":true,
|
||||
"interface":"eth-rt4-1"
|
||||
},
|
||||
@@ -94,5 +194,41 @@
|
||||
"interface":"eth-sw1"
|
||||
}
|
||||
]
|
||||
+ },
|
||||
+ "16060":{
|
||||
+ "inLabel":16060,
|
||||
+ "installed":true,
|
||||
+ "nexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16060,
|
||||
+ "installed":true,
|
||||
@@ -55,6 +181,18 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16050,
|
||||
"installed":true,
|
||||
+ "nexthop":"10.0.3.4"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16060,
|
||||
+ "outLabel":16050,
|
||||
+ "installed":true,
|
||||
+ "nexthop":"10.0.2.4"
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
+ "16061":{
|
||||
+ "inLabel":16061,
|
||||
+ "installed":true,
|
||||
+ "nexthops":[
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16061,
|
||||
+ "outLabel":16050,
|
||||
+ "installed":true,
|
||||
"nexthop":"10.0.1.3"
|
||||
}
|
||||
]
|
||||
@@ -66,6 +204,18 @@
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16051,
|
||||
+ "installed":true,
|
||||
+ "interface":"eth-rt4-2"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16061,
|
||||
+ "outLabel":16051,
|
||||
+ "installed":true,
|
||||
+ "interface":"eth-rt4-1"
|
||||
+ }
|
||||
+ ]
|
||||
}
|
||||
}
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16051,
|
||||
"installed":true,
|
||||
"interface":"eth-sw1"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt2/step6/show_ip_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt2/step7/show_ip_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
@@ -15,34 +15,10 @@
|
||||
--- rt2/step6/show_ip_route.ref 2020-09-25 17:51:15.313392177 -0300
|
||||
+++ rt2/step7/show_ip_route.ref 2020-09-25 17:52:02.210004805 -0300
|
||||
@@ -15,36 +15,10 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -20,7 +20,8 @@
|
||||
- "interfaceName":"eth-rt4-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16050
|
||||
- 16050,
|
||||
- 16010
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
@ -29,13 +30,14 @@
|
||||
- "interfaceName":"eth-rt4-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16050
|
||||
- 16050,
|
||||
- 16010
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -62,34 +38,10 @@
|
||||
@@ -64,36 +38,10 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -55,7 +57,8 @@
|
||||
- "interfaceName":"eth-rt4-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16050
|
||||
- 16050,
|
||||
- 16030
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
@ -64,13 +67,50 @@
|
||||
- "interfaceName":"eth-rt4-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16050
|
||||
- 16050,
|
||||
- 16030
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -141,30 +93,21 @@
|
||||
@@ -113,9 +61,6 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@@ -126,25 +71,10 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "ip":"10.0.1.3",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-sw1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16050,
|
||||
- 16040
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -163,30 +93,21 @@
|
||||
"ip":"10.0.1.3",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
@ -104,7 +144,7 @@
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -212,34 +155,12 @@
|
||||
@@ -248,40 +169,12 @@
|
||||
{
|
||||
"ip":"10.0.1.1",
|
||||
"afi":"ipv4",
|
||||
@ -130,14 +170,119 @@
|
||||
- "ip":"10.0.2.4",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-rt4-1",
|
||||
- "active":true
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16050
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
- "ip":"10.0.3.4",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-rt4-2",
|
||||
- "active":true
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16050
|
||||
- ]
|
||||
+ "interfaceName":"eth-sw1"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -296,30 +189,13 @@
|
||||
{
|
||||
"ip":"10.0.2.4",
|
||||
"afi":"ipv4",
|
||||
- "interfaceName":"eth-rt4-1",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
+ "interfaceName":"eth-rt4-1"
|
||||
},
|
||||
{
|
||||
"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
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -335,29 +211,12 @@
|
||||
"ip":"10.0.2.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
- "active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
"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
|
||||
- ]
|
||||
+ "interfaceName":"eth-rt4-2"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -494,31 +353,14 @@
|
||||
"ip":"10.0.2.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
- "active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"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
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt2/step6/show_ipv6_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt2/step7/show_ipv6_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
@@ -14,32 +14,10 @@
|
||||
--- rt2/step6/show_ipv6_route.ref 2020-09-25 17:51:16.549408319 -0300
|
||||
+++ rt2/step7/show_ipv6_route.ref 2020-09-25 17:52:03.438020851 -0300
|
||||
@@ -14,34 +14,10 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -19,7 +19,8 @@
|
||||
- "interfaceName":"eth-rt4-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16051
|
||||
- 16051,
|
||||
- 16011
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
@ -27,13 +28,14 @@
|
||||
- "interfaceName":"eth-rt4-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16051
|
||||
- 16051,
|
||||
- 16011
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -58,32 +36,10 @@
|
||||
@@ -60,34 +36,10 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -52,7 +54,8 @@
|
||||
- "interfaceName":"eth-rt4-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16051
|
||||
- 16051,
|
||||
- 16031
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
@ -60,23 +63,49 @@
|
||||
- "interfaceName":"eth-rt4-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16051
|
||||
- 16051,
|
||||
- 16031
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -132,28 +88,19 @@
|
||||
"fib":true,
|
||||
@@ -106,9 +58,6 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@@ -118,24 +67,10 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "afi":"ipv6",
|
||||
- "interfaceName":"eth-sw1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16051
|
||||
- 16051,
|
||||
- 16041
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -153,28 +88,19 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
@ -94,6 +123,16 @@
|
||||
- "labels":[
|
||||
- 16051
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16051
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt2/step6/show_mpls_table.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt2/step7/show_mpls_table.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
--- rt2/step6/show_mpls_table.ref 2020-09-25 17:51:14.073375985 -0300
|
||||
+++ rt2/step7/show_mpls_table.ref 2020-09-25 17:52:00.973988653 -0300
|
||||
@@ -7,23 +7,7 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
@ -100,10 +100,62 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -147,54 +83,6 @@
|
||||
@@ -119,26 +55,13 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.3.4",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
+ "nexthop":"10.0.3.4"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.2.4",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- }
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16050,
|
||||
- "nexthop":"10.0.1.3"
|
||||
+ "nexthop":"10.0.2.4"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -150,74 +73,13 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt4-2",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "installed":true,
|
||||
- "interface":"eth-rt4-1",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- }
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16051,
|
||||
- "interface":"eth-sw1"
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
- "16050":{
|
||||
- "inLabel":16050,
|
||||
- "installed":true,
|
||||
@ -136,22 +188,20 @@
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16051,
|
||||
- "installed":true,
|
||||
- "interface":"eth-rt4-2"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
"interface":"eth-rt4-2"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16051,
|
||||
- "installed":true,
|
||||
- "interface":"eth-rt4-1"
|
||||
+ "outLabel":3,
|
||||
"installed":true,
|
||||
"interface":"eth-rt4-1"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16051,
|
||||
- "installed":true,
|
||||
- "interface":"eth-sw1"
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
"16060":{
|
||||
"inLabel":16060,
|
||||
"installed":true,
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt2/step7/show_ip_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt2/step8/show_ip_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
@@ -15,10 +15,34 @@
|
||||
--- rt2/step7/show_ip_route.ref 2020-09-25 17:52:02.210004805 -0300
|
||||
+++ rt2/step8/show_ip_route.ref 2020-09-25 17:53:20.207024469 -0300
|
||||
@@ -15,10 +15,36 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -20,7 +20,8 @@
|
||||
+ "interfaceName":"eth-rt4-1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050
|
||||
+ 16050,
|
||||
+ 16010
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
@ -29,13 +30,14 @@
|
||||
+ "interfaceName":"eth-rt4-2",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050
|
||||
+ 16050,
|
||||
+ 16010
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -38,10 +62,34 @@
|
||||
@@ -38,10 +64,36 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -55,7 +57,8 @@
|
||||
+ "interfaceName":"eth-rt4-1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050
|
||||
+ 16050,
|
||||
+ 16030
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
@ -64,13 +67,50 @@
|
||||
+ "interfaceName":"eth-rt4-2",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050
|
||||
+ 16050,
|
||||
+ 16030
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -93,21 +141,30 @@
|
||||
@@ -61,6 +113,9 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@@ -71,10 +126,25 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "ip":"10.0.1.3",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-sw1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050,
|
||||
+ 16040
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -93,21 +163,30 @@
|
||||
"ip":"10.0.1.3",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
@ -104,7 +144,7 @@
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -155,12 +212,34 @@
|
||||
@@ -169,12 +248,40 @@
|
||||
{
|
||||
"ip":"10.0.1.1",
|
||||
"afi":"ipv4",
|
||||
@ -131,13 +171,118 @@
|
||||
+ "ip":"10.0.2.4",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt4-1",
|
||||
+ "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
+ "ip":"10.0.3.4",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt4-2",
|
||||
+ "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -189,13 +296,30 @@
|
||||
{
|
||||
"ip":"10.0.2.4",
|
||||
"afi":"ipv4",
|
||||
- "interfaceName":"eth-rt4-1"
|
||||
+ "interfaceName":"eth-rt4-1",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.3.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "ip":"10.0.1.3",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-sw1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -211,12 +335,29 @@
|
||||
"ip":"10.0.2.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.3.4",
|
||||
"afi":"ipv4",
|
||||
- "interfaceName":"eth-rt4-2"
|
||||
+ "interfaceName":"eth-rt4-2",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "ip":"10.0.1.3",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-sw1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -353,14 +494,31 @@
|
||||
"ip":"10.0.2.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"ip":"10.0.3.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "ip":"10.0.1.3",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-sw1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16050
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt2/step7/show_ipv6_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt2/step8/show_ipv6_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
@@ -14,10 +14,32 @@
|
||||
--- rt2/step7/show_ipv6_route.ref 2020-09-25 17:52:03.438020851 -0300
|
||||
+++ rt2/step8/show_ipv6_route.ref 2020-09-25 17:53:21.443040633 -0300
|
||||
@@ -14,10 +14,34 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -19,7 +19,8 @@
|
||||
+ "interfaceName":"eth-rt4-1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16051
|
||||
+ 16051,
|
||||
+ 16011
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
@ -27,13 +28,14 @@
|
||||
+ "interfaceName":"eth-rt4-2",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16051
|
||||
+ 16051,
|
||||
+ 16011
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -36,10 +58,32 @@
|
||||
@@ -36,10 +60,34 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -52,7 +54,8 @@
|
||||
+ "interfaceName":"eth-rt4-1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16051
|
||||
+ 16051,
|
||||
+ 16031
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
@ -60,23 +63,49 @@
|
||||
+ "interfaceName":"eth-rt4-2",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16051
|
||||
+ 16051,
|
||||
+ 16031
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -88,19 +132,28 @@
|
||||
"fib":true,
|
||||
@@ -58,6 +106,9 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@@ -67,10 +118,24 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
- "active":true
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "afi":"ipv6",
|
||||
+ "interfaceName":"eth-sw1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16051
|
||||
+ 16051,
|
||||
+ 16041
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -88,19 +153,28 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
@ -94,6 +123,16 @@
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16051
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4-1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16051
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt2/step7/show_mpls_table.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt2/step8/show_mpls_table.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
--- rt2/step7/show_mpls_table.ref 2020-09-25 17:52:00.973988653 -0300
|
||||
+++ rt2/step8/show_mpls_table.ref 2020-09-25 17:53:18.923007676 -0300
|
||||
@@ -7,7 +7,23 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
@ -100,10 +100,63 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -83,6 +147,54 @@
|
||||
@@ -55,13 +119,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.3.4"
|
||||
+ "nexthop":"10.0.3.4",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.2.4"
|
||||
+ "nexthop":"10.0.2.4",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16050,
|
||||
+ "nexthop":"10.0.1.3"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -73,13 +150,74 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt4-2"
|
||||
+ "interface":"eth-rt4-2",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
+ "interface":"eth-rt4-1",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16051,
|
||||
+ "interface":"eth-sw1"
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
+ "16050":{
|
||||
+ "inLabel":16050,
|
||||
+ "installed":true,
|
||||
@ -142,16 +195,13 @@
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16051,
|
||||
+ "installed":true,
|
||||
+ "interface":"eth-rt4-1"
|
||||
"interface":"eth-rt4-1"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16051,
|
||||
+ "installed":true,
|
||||
+ "interface":"eth-sw1"
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
"16060":{
|
||||
"inLabel":16060,
|
||||
"installed":true,
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -1,42 +1,51 @@
|
||||
--- rt2/step8/show_ip_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt2/step9/show_ip_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
--- rt2/step8/show_ip_route.ref 2020-09-25 17:53:20.207024469 -0300
|
||||
+++ rt2/step9/show_ip_route.ref 2020-09-25 17:54:37.908041089 -0300
|
||||
@@ -31,7 +31,7 @@
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16050
|
||||
+ 16500
|
||||
- 16050,
|
||||
+ 16500,
|
||||
16010
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -40,7 +40,7 @@
|
||||
@@ -41,7 +41,7 @@
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16050
|
||||
+ 16500
|
||||
- 16050,
|
||||
+ 16500,
|
||||
16010
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -78,7 +78,7 @@
|
||||
@@ -80,7 +80,7 @@
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16050
|
||||
+ 16500
|
||||
- 16050,
|
||||
+ 16500,
|
||||
16030
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -87,7 +87,7 @@
|
||||
@@ -90,7 +90,7 @@
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16050
|
||||
+ 16500
|
||||
- 16050,
|
||||
+ 16500,
|
||||
16030
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -143,7 +143,7 @@
|
||||
@@ -141,7 +141,7 @@
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16050,
|
||||
+ 16500,
|
||||
16040
|
||||
]
|
||||
}
|
||||
@@ -165,7 +165,7 @@
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
@ -45,7 +54,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -153,7 +153,7 @@
|
||||
@@ -175,7 +175,7 @@
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
@ -54,7 +63,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -163,7 +163,7 @@
|
||||
@@ -185,7 +185,7 @@
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
@ -63,3 +72,48 @@
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -271,7 +271,7 @@
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16050
|
||||
+ 16500
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -280,7 +280,7 @@
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16050
|
||||
+ 16500
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -318,7 +318,7 @@
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16050
|
||||
+ 16500
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -356,7 +356,7 @@
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16050
|
||||
+ 16500
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -517,7 +517,7 @@
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16050
|
||||
+ 16500
|
||||
]
|
||||
}
|
||||
]
|
||||
|
@ -1,51 +1,51 @@
|
||||
--- rt2/step8/show_ipv6_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt2/step9/show_ipv6_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
--- rt2/step8/show_ipv6_route.ref 2020-09-25 17:53:21.443040633 -0300
|
||||
+++ rt2/step9/show_ipv6_route.ref 2020-09-25 17:54:39.112056848 -0300
|
||||
@@ -29,7 +29,7 @@
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16051
|
||||
+ 16501
|
||||
- 16051,
|
||||
+ 16501,
|
||||
16011
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -37,7 +37,7 @@
|
||||
@@ -38,7 +38,7 @@
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16051
|
||||
+ 16501
|
||||
- 16051,
|
||||
+ 16501,
|
||||
16011
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -73,7 +73,7 @@
|
||||
@@ -75,7 +75,7 @@
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16051
|
||||
+ 16501
|
||||
- 16051,
|
||||
+ 16501,
|
||||
16031
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -81,7 +81,7 @@
|
||||
@@ -84,7 +84,7 @@
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16051
|
||||
+ 16501
|
||||
- 16051,
|
||||
+ 16501,
|
||||
16031
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -134,7 +134,7 @@
|
||||
"interfaceName":"eth-rt4-1",
|
||||
@@ -132,7 +132,7 @@
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16051
|
||||
+ 16501
|
||||
- 16051,
|
||||
+ 16501,
|
||||
16041
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -143,7 +143,7 @@
|
||||
}
|
||||
@@ -155,7 +155,7 @@
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
@ -54,11 +54,20 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -152,7 +152,7 @@
|
||||
@@ -164,7 +164,7 @@
|
||||
"interfaceName":"eth-rt4-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16051
|
||||
+ 16501
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -173,7 +173,7 @@
|
||||
"interfaceName":"eth-rt4-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16051
|
||||
+ 16501
|
||||
]
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt2/step8/show_mpls_table.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt2/step9/show_mpls_table.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
--- rt2/step8/show_mpls_table.ref 2020-09-25 17:53:18.923007676 -0300
|
||||
+++ rt2/step9/show_mpls_table.ref 2020-09-25 17:54:36.640024493 -0300
|
||||
@@ -17,12 +17,12 @@
|
||||
"backupNexthops":[
|
||||
{
|
||||
@ -60,119 +60,123 @@
|
||||
"interface":"eth-rt4-2"
|
||||
}
|
||||
]
|
||||
@@ -147,87 +147,87 @@
|
||||
@@ -137,7 +137,7 @@
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16050,
|
||||
+ "outLabel":16500,
|
||||
"nexthop":"10.0.1.3"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -168,55 +168,7 @@
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16051,
|
||||
- "interface":"eth-sw1"
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
- "16050":{
|
||||
- "inLabel":16050,
|
||||
+ "16060":{
|
||||
+ "inLabel":16060,
|
||||
"installed":true,
|
||||
"nexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "installed":true,
|
||||
- "nexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16050,
|
||||
+ "outLabel":16060,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.3.4"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "installed":true,
|
||||
- "nexthop":"10.0.3.4"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16050,
|
||||
+ "outLabel":16060,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.2.4"
|
||||
- "installed":true,
|
||||
- "nexthop":"10.0.2.4"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16050,
|
||||
- "installed":true,
|
||||
- "nexthop":"10.0.1.3"
|
||||
}
|
||||
]
|
||||
},
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
- "16051":{
|
||||
- "inLabel":16051,
|
||||
+ "16061":{
|
||||
+ "inLabel":16061,
|
||||
"installed":true,
|
||||
"nexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "installed":true,
|
||||
- "nexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16051,
|
||||
+ "outLabel":16061,
|
||||
"installed":true,
|
||||
"interface":"eth-rt4-2"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16051,
|
||||
+ "outLabel":16061,
|
||||
"installed":true,
|
||||
"interface":"eth-rt4-1"
|
||||
- "installed":true,
|
||||
- "interface":"eth-rt4-2"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16051,
|
||||
- "installed":true,
|
||||
- "interface":"eth-sw1"
|
||||
- "interface":"eth-rt4-1"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16051,
|
||||
- "installed":true,
|
||||
+ "outLabel":16501,
|
||||
"interface":"eth-sw1"
|
||||
}
|
||||
]
|
||||
},
|
||||
- "16060":{
|
||||
- "inLabel":16060,
|
||||
@@ -282,5 +234,53 @@
|
||||
"interface":"eth-sw1"
|
||||
}
|
||||
]
|
||||
+ },
|
||||
+ "16500":{
|
||||
+ "inLabel":16500,
|
||||
"installed":true,
|
||||
"nexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16060,
|
||||
+ "installed":true,
|
||||
+ "nexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16500,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.3.4"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16060,
|
||||
+ "installed":true,
|
||||
+ "nexthop":"10.0.3.4"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16500,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.2.4"
|
||||
+ "installed":true,
|
||||
+ "nexthop":"10.0.2.4"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16500,
|
||||
+ "installed":true,
|
||||
+ "nexthop":"10.0.1.3"
|
||||
}
|
||||
]
|
||||
},
|
||||
- "16061":{
|
||||
- "inLabel":16061,
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
+ "16501":{
|
||||
+ "inLabel":16501,
|
||||
"installed":true,
|
||||
"nexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16061,
|
||||
+ "installed":true,
|
||||
+ "nexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16501,
|
||||
"installed":true,
|
||||
"interface":"eth-rt4-2"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16061,
|
||||
+ "installed":true,
|
||||
+ "interface":"eth-rt4-2"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16501,
|
||||
"installed":true,
|
||||
"interface":"eth-rt4-1"
|
||||
+ "installed":true,
|
||||
+ "interface":"eth-rt4-1"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16501,
|
||||
+ "installed":true,
|
||||
+ "interface":"eth-sw1"
|
||||
}
|
||||
]
|
||||
+ }
|
||||
+ ]
|
||||
}
|
||||
}
|
||||
|
@ -25,22 +25,24 @@
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.5.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16040
|
||||
]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.4.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16040
|
||||
16040,
|
||||
16010
|
||||
]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.5.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16040,
|
||||
16010
|
||||
]
|
||||
}
|
||||
]
|
||||
@ -72,22 +74,24 @@
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.5.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16040
|
||||
]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.4.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16040
|
||||
16040,
|
||||
16020
|
||||
]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.5.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16040,
|
||||
16020
|
||||
]
|
||||
}
|
||||
]
|
||||
@ -152,6 +156,9 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@ -162,10 +169,25 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.1.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16040,
|
||||
16050
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
@ -185,6 +207,9 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
16060
|
||||
]
|
||||
@ -195,10 +220,21 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
16060
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.1.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
@ -229,17 +265,23 @@
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.5.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true
|
||||
},
|
||||
{
|
||||
"ip":"10.0.4.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true
|
||||
"active":true,
|
||||
"labels":[
|
||||
16040
|
||||
]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.5.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16040
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -267,17 +309,17 @@
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.5.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true
|
||||
},
|
||||
{
|
||||
"ip":"10.0.4.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true
|
||||
},
|
||||
{
|
||||
"ip":"10.0.5.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -305,17 +347,17 @@
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.5.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true
|
||||
},
|
||||
{
|
||||
"ip":"10.0.4.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true
|
||||
},
|
||||
{
|
||||
"ip":"10.0.5.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -330,13 +372,30 @@
|
||||
{
|
||||
"ip":"10.0.4.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-1"
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.5.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.1.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16040
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -352,12 +411,29 @@
|
||||
"ip":"10.0.4.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.5.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-2"
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.1.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16040
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -377,13 +453,27 @@
|
||||
"ip":"10.0.4.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"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
|
||||
}
|
||||
]
|
||||
@ -438,14 +528,31 @@
|
||||
"ip":"10.0.4.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"ip":"10.0.5.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.1.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16040
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -26,18 +26,20 @@
|
||||
"backupNexthops":[
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16041
|
||||
16041,
|
||||
16011
|
||||
]
|
||||
},
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16041
|
||||
16041,
|
||||
16011
|
||||
]
|
||||
}
|
||||
]
|
||||
@ -70,18 +72,20 @@
|
||||
"backupNexthops":[
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16041
|
||||
16041,
|
||||
16021
|
||||
]
|
||||
},
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16041
|
||||
16041,
|
||||
16021
|
||||
]
|
||||
}
|
||||
]
|
||||
@ -97,6 +101,15 @@
|
||||
"metric":30,
|
||||
"installed":true,
|
||||
"nexthops":[
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16041
|
||||
]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
@ -114,15 +127,6 @@
|
||||
"labels":[
|
||||
16041
|
||||
]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16041
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -142,6 +146,9 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@ -151,10 +158,24 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16041,
|
||||
16051
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
@ -173,6 +194,9 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
16061
|
||||
]
|
||||
@ -182,10 +206,20 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
16061
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
@ -18,12 +18,12 @@
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16040,
|
||||
"nexthop":"10.0.5.5"
|
||||
"nexthop":"10.0.4.5"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16040,
|
||||
"nexthop":"10.0.4.5"
|
||||
"nexthop":"10.0.5.5"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -46,12 +46,12 @@
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16041,
|
||||
"interface":"eth-rt5-2"
|
||||
"interface":"eth-rt5-1"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16041,
|
||||
"interface":"eth-rt5-1"
|
||||
"interface":"eth-rt5-2"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -74,12 +74,12 @@
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16040,
|
||||
"nexthop":"10.0.5.5"
|
||||
"nexthop":"10.0.4.5"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16040,
|
||||
"nexthop":"10.0.4.5"
|
||||
"nexthop":"10.0.5.5"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -102,12 +102,12 @@
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16041,
|
||||
"interface":"eth-rt5-2"
|
||||
"interface":"eth-rt5-1"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16041,
|
||||
"interface":"eth-rt5-1"
|
||||
"interface":"eth-rt5-2"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -119,7 +119,7 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16040,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.1.2"
|
||||
"nexthop":"10.0.5.5"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
@ -131,7 +131,7 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16040,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.5.5"
|
||||
"nexthop":"10.0.1.2"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -143,7 +143,7 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16041,
|
||||
"installed":true,
|
||||
"interface":"eth-sw1"
|
||||
"interface":"eth-rt5-2"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
@ -155,7 +155,7 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16041,
|
||||
"installed":true,
|
||||
"interface":"eth-rt5-2"
|
||||
"interface":"eth-sw1"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -167,13 +167,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.4.5"
|
||||
"nexthop":"10.0.5.5",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.5.5"
|
||||
"nexthop":"10.0.4.5",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16040,
|
||||
"nexthop":"10.0.1.2"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -185,13 +198,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
"interface":"eth-rt5-1"
|
||||
"interface":"eth-rt5-2",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
"interface":"eth-rt5-2"
|
||||
"interface":"eth-rt5-1",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16041,
|
||||
"interface":"eth-sw1"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -203,13 +229,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16060,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.4.5"
|
||||
"nexthop":"10.0.5.5",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16060,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.5.5"
|
||||
"nexthop":"10.0.4.5",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"nexthop":"10.0.1.2"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -221,13 +260,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16061,
|
||||
"installed":true,
|
||||
"interface":"eth-rt5-1"
|
||||
"interface":"eth-rt5-2",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16061,
|
||||
"installed":true,
|
||||
"interface":"eth-rt5-2"
|
||||
"interface":"eth-rt5-1",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"interface":"eth-sw1"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt3/step3/show_ip_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt3/step4/show_ip_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -15,34 +15,10 @@
|
||||
--- rt3/step3/show_ip_route.ref 2020-09-25 17:48:05.506916984 -0300
|
||||
+++ rt3/step4/show_ip_route.ref 2020-09-25 17:49:01.963652403 -0300
|
||||
@@ -15,36 +15,10 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -15,27 +15,29 @@
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "ip":"10.0.5.5",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-rt5-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16040
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
- "ip":"10.0.4.5",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-rt5-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16040
|
||||
- 16040,
|
||||
- 16010
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
- "ip":"10.0.5.5",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-rt5-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16040,
|
||||
- 16010
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -62,34 +38,10 @@
|
||||
@@ -64,36 +38,10 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -50,27 +52,29 @@
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "ip":"10.0.5.5",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-rt5-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16040
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
- "ip":"10.0.4.5",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-rt5-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16040
|
||||
- 16040,
|
||||
- 16020
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
- "ip":"10.0.5.5",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-rt5-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16040,
|
||||
- 16020
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -108,30 +60,21 @@
|
||||
@@ -112,30 +60,21 @@
|
||||
"ip":"10.0.1.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
@ -104,7 +108,43 @@
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -212,34 +155,12 @@
|
||||
@@ -156,9 +95,6 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@@ -169,25 +105,10 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "ip":"10.0.1.2",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-sw1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16040,
|
||||
- 16050
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -248,40 +169,12 @@
|
||||
{
|
||||
"ip":"10.0.1.1",
|
||||
"afi":"ipv4",
|
||||
@ -127,17 +167,122 @@
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "ip":"10.0.5.5",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-rt5-2",
|
||||
- "active":true
|
||||
- },
|
||||
- {
|
||||
- "ip":"10.0.4.5",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-rt5-1",
|
||||
- "active":true
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16040
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
- "ip":"10.0.5.5",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-rt5-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16040
|
||||
- ]
|
||||
+ "interfaceName":"eth-sw1"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -372,30 +265,13 @@
|
||||
{
|
||||
"ip":"10.0.4.5",
|
||||
"afi":"ipv4",
|
||||
- "interfaceName":"eth-rt5-1",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
+ "interfaceName":"eth-rt5-1"
|
||||
},
|
||||
{
|
||||
"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
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -411,29 +287,12 @@
|
||||
"ip":"10.0.4.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
- "active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
"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
|
||||
- ]
|
||||
+ "interfaceName":"eth-rt5-2"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -528,31 +387,14 @@
|
||||
"ip":"10.0.4.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
- "active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"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
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt3/step3/show_ipv6_route.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt3/step4/show_ipv6_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -14,32 +14,10 @@
|
||||
--- rt3/step3/show_ipv6_route.ref 2020-09-25 17:48:06.790933702 -0300
|
||||
+++ rt3/step4/show_ipv6_route.ref 2020-09-25 17:49:03.199668512 -0300
|
||||
@@ -14,34 +14,10 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -16,24 +16,26 @@
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "afi":"ipv6",
|
||||
- "interfaceName":"eth-rt5-2",
|
||||
- "interfaceName":"eth-rt5-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16041
|
||||
- 16041,
|
||||
- 16011
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
- "afi":"ipv6",
|
||||
- "interfaceName":"eth-rt5-1",
|
||||
- "interfaceName":"eth-rt5-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16041
|
||||
- 16041,
|
||||
- 16011
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -58,32 +36,10 @@
|
||||
@@ -60,34 +36,10 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -49,24 +51,36 @@
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "afi":"ipv6",
|
||||
- "interfaceName":"eth-rt5-2",
|
||||
- "interfaceName":"eth-rt5-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16041
|
||||
- 16041,
|
||||
- 16021
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
- "afi":"ipv6",
|
||||
- "interfaceName":"eth-rt5-1",
|
||||
- "interfaceName":"eth-rt5-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16041
|
||||
- 16041,
|
||||
- 16021
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -101,28 +57,19 @@
|
||||
@@ -105,28 +57,19 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16041
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
@ -84,17 +98,42 @@
|
||||
- "labels":[
|
||||
- 16041
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16041
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -146,9 +89,6 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@@ -158,24 +98,10 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "afi":"ipv6",
|
||||
- "interfaceName":"eth-sw1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16041,
|
||||
- 16051
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt3/step3/show_mpls_table.ref 2020-08-31 22:42:48.835561429 -0300
|
||||
+++ rt3/step4/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
--- rt3/step3/show_mpls_table.ref 2020-09-25 17:48:04.214900164 -0300
|
||||
+++ rt3/step4/show_mpls_table.ref 2020-09-25 17:49:00.759636711 -0300
|
||||
@@ -7,23 +7,7 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
@ -15,12 +15,12 @@
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16040,
|
||||
- "nexthop":"10.0.5.5"
|
||||
- "nexthop":"10.0.4.5"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16040,
|
||||
- "nexthop":"10.0.4.5"
|
||||
- "nexthop":"10.0.5.5"
|
||||
+ "nexthop":"10.0.1.1"
|
||||
}
|
||||
]
|
||||
@ -40,12 +40,12 @@
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16041,
|
||||
- "interface":"eth-rt5-2"
|
||||
- "interface":"eth-rt5-1"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16041,
|
||||
- "interface":"eth-rt5-1"
|
||||
- "interface":"eth-rt5-2"
|
||||
+ "interface":"eth-sw1"
|
||||
}
|
||||
]
|
||||
@ -65,17 +65,17 @@
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16040,
|
||||
- "nexthop":"10.0.5.5"
|
||||
- "nexthop":"10.0.4.5"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16040,
|
||||
- "nexthop":"10.0.4.5"
|
||||
- "nexthop":"10.0.5.5"
|
||||
+ "nexthop":"10.0.1.2"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -91,71 +43,7 @@
|
||||
@@ -91,70 +43,6 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
@ -90,12 +90,12 @@
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16041,
|
||||
- "interface":"eth-rt5-2"
|
||||
- "interface":"eth-rt5-1"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16041,
|
||||
- "interface":"eth-rt5-1"
|
||||
- "interface":"eth-rt5-2"
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
@ -107,7 +107,7 @@
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16040,
|
||||
- "installed":true,
|
||||
- "nexthop":"10.0.1.2"
|
||||
- "nexthop":"10.0.5.5"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
@ -119,7 +119,7 @@
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16040,
|
||||
- "installed":true,
|
||||
- "nexthop":"10.0.5.5"
|
||||
- "nexthop":"10.0.1.2"
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
@ -131,7 +131,7 @@
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16041,
|
||||
- "installed":true,
|
||||
"interface":"eth-sw1"
|
||||
- "interface":"eth-rt5-2"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
@ -143,7 +143,64 @@
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16041,
|
||||
- "installed":true,
|
||||
- "interface":"eth-rt5-2"
|
||||
"interface":"eth-sw1"
|
||||
}
|
||||
]
|
||||
@@ -167,26 +55,13 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.5.5",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
+ "nexthop":"10.0.5.5"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.4.5",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- }
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16040,
|
||||
- "nexthop":"10.0.1.2"
|
||||
+ "nexthop":"10.0.4.5"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -198,26 +73,13 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt5-2",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
+ "interface":"eth-rt5-2"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt5-1",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- }
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16041,
|
||||
- "interface":"eth-sw1"
|
||||
+ "interface":"eth-rt5-1"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt3/step4/show_ip_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt3/step5/show_ip_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -15,10 +15,34 @@
|
||||
--- rt3/step4/show_ip_route.ref 2020-09-25 17:49:01.963652403 -0300
|
||||
+++ rt3/step5/show_ip_route.ref 2020-09-25 17:50:12.592573438 -0300
|
||||
@@ -15,10 +15,36 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -15,27 +15,29 @@
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "ip":"10.0.5.5",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt5-2",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16040
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
+ "ip":"10.0.4.5",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt5-1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16040
|
||||
+ 16040,
|
||||
+ 16010
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
+ "ip":"10.0.5.5",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt5-2",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16040,
|
||||
+ 16010
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -38,10 +62,34 @@
|
||||
@@ -38,10 +64,36 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -50,27 +52,29 @@
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "ip":"10.0.5.5",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt5-2",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16040
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
+ "ip":"10.0.4.5",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt5-1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16040
|
||||
+ 16040,
|
||||
+ 16020
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
+ "ip":"10.0.5.5",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt5-2",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16040,
|
||||
+ 16020
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -60,21 +108,30 @@
|
||||
@@ -60,21 +112,30 @@
|
||||
"ip":"10.0.1.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-sw1",
|
||||
@ -104,7 +108,43 @@
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -155,12 +212,34 @@
|
||||
@@ -95,6 +156,9 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@@ -105,10 +169,25 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "ip":"10.0.1.2",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-sw1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16040,
|
||||
+ 16050
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -169,12 +248,40 @@
|
||||
{
|
||||
"ip":"10.0.1.1",
|
||||
"afi":"ipv4",
|
||||
@ -128,16 +168,121 @@
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "ip":"10.0.5.5",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt5-2",
|
||||
+ "active":true
|
||||
+ },
|
||||
+ {
|
||||
+ "ip":"10.0.4.5",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt5-1",
|
||||
+ "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16040
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
+ "ip":"10.0.5.5",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt5-2",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16040
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -265,13 +372,30 @@
|
||||
{
|
||||
"ip":"10.0.4.5",
|
||||
"afi":"ipv4",
|
||||
- "interfaceName":"eth-rt5-1"
|
||||
+ "interfaceName":"eth-rt5-1",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.5.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "ip":"10.0.1.2",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-sw1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16040
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -287,12 +411,29 @@
|
||||
"ip":"10.0.4.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.5.5",
|
||||
"afi":"ipv4",
|
||||
- "interfaceName":"eth-rt5-2"
|
||||
+ "interfaceName":"eth-rt5-2",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "ip":"10.0.1.2",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-sw1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16040
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -387,14 +528,31 @@
|
||||
"ip":"10.0.4.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"ip":"10.0.5.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "ip":"10.0.1.2",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-sw1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16040
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt3/step4/show_ipv6_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt3/step5/show_ipv6_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -14,10 +14,32 @@
|
||||
--- rt3/step4/show_ipv6_route.ref 2020-09-25 17:49:03.199668512 -0300
|
||||
+++ rt3/step5/show_ipv6_route.ref 2020-09-25 17:50:13.840589722 -0300
|
||||
@@ -14,10 +14,34 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -16,24 +16,26 @@
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "afi":"ipv6",
|
||||
+ "interfaceName":"eth-rt5-2",
|
||||
+ "interfaceName":"eth-rt5-1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16041
|
||||
+ 16041,
|
||||
+ 16011
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
+ "afi":"ipv6",
|
||||
+ "interfaceName":"eth-rt5-1",
|
||||
+ "interfaceName":"eth-rt5-2",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16041
|
||||
+ 16041,
|
||||
+ 16011
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -36,10 +58,32 @@
|
||||
@@ -36,10 +60,34 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
@ -49,24 +51,36 @@
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "afi":"ipv6",
|
||||
+ "interfaceName":"eth-rt5-2",
|
||||
+ "interfaceName":"eth-rt5-1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16041
|
||||
+ 16041,
|
||||
+ 16021
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
+ "afi":"ipv6",
|
||||
+ "interfaceName":"eth-rt5-1",
|
||||
+ "interfaceName":"eth-rt5-2",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16041
|
||||
+ 16041,
|
||||
+ 16021
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -57,19 +101,28 @@
|
||||
@@ -57,19 +105,28 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16041
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
@ -84,17 +98,42 @@
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16041
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-sw1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16041
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -89,6 +146,9 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@@ -98,10 +158,24 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "afi":"ipv6",
|
||||
+ "interfaceName":"eth-sw1",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16041,
|
||||
+ 16051
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt3/step4/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt3/step5/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
--- rt3/step4/show_mpls_table.ref 2020-09-25 17:49:00.759636711 -0300
|
||||
+++ rt3/step5/show_mpls_table.ref 2020-09-25 17:50:11.280556320 -0300
|
||||
@@ -7,7 +7,23 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
@ -16,12 +16,12 @@
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16040,
|
||||
+ "nexthop":"10.0.5.5"
|
||||
+ "nexthop":"10.0.4.5"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16040,
|
||||
+ "nexthop":"10.0.4.5"
|
||||
+ "nexthop":"10.0.5.5"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -41,12 +41,12 @@
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16041,
|
||||
+ "interface":"eth-rt5-2"
|
||||
+ "interface":"eth-rt5-1"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16041,
|
||||
+ "interface":"eth-rt5-1"
|
||||
+ "interface":"eth-rt5-2"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -66,12 +66,12 @@
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16040,
|
||||
+ "nexthop":"10.0.5.5"
|
||||
+ "nexthop":"10.0.4.5"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16040,
|
||||
+ "nexthop":"10.0.4.5"
|
||||
+ "nexthop":"10.0.5.5"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -90,12 +90,12 @@
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16041,
|
||||
+ "interface":"eth-rt5-2"
|
||||
+ "interface":"eth-rt5-1"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16041,
|
||||
+ "interface":"eth-rt5-1"
|
||||
+ "interface":"eth-rt5-2"
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
@ -107,13 +107,13 @@
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16040,
|
||||
+ "installed":true,
|
||||
+ "nexthop":"10.0.4.5"
|
||||
+ "nexthop":"10.0.5.5"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16040,
|
||||
+ "installed":true,
|
||||
+ "nexthop":"10.0.5.5"
|
||||
+ "nexthop":"10.0.4.5"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
@ -131,13 +131,13 @@
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16041,
|
||||
+ "installed":true,
|
||||
+ "interface":"eth-rt5-1"
|
||||
+ "interface":"eth-rt5-2"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16041,
|
||||
+ "installed":true,
|
||||
+ "interface":"eth-rt5-2"
|
||||
+ "interface":"eth-rt5-1"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
@ -146,3 +146,61 @@
|
||||
"interface":"eth-sw1"
|
||||
}
|
||||
]
|
||||
@@ -55,13 +167,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.5.5"
|
||||
+ "nexthop":"10.0.5.5",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.4.5"
|
||||
+ "nexthop":"10.0.4.5",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16040,
|
||||
+ "nexthop":"10.0.1.2"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -73,13 +198,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt5-2"
|
||||
+ "interface":"eth-rt5-2",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt5-1"
|
||||
+ "interface":"eth-rt5-1",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16041,
|
||||
+ "interface":"eth-sw1"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -1,42 +1,42 @@
|
||||
--- rt3/step5/show_ip_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt3/step6/show_ip_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
--- rt3/step5/show_ip_route.ref 2020-09-25 17:50:12.592573438 -0300
|
||||
+++ rt3/step6/show_ip_route.ref 2020-09-25 17:51:15.521394894 -0300
|
||||
@@ -31,7 +31,7 @@
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16040
|
||||
+ 30040
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -40,7 +40,7 @@
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16040
|
||||
+ 30040
|
||||
- 16040,
|
||||
+ 30040,
|
||||
16010
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -78,7 +78,7 @@
|
||||
},
|
||||
@@ -41,7 +41,7 @@
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16040
|
||||
+ 30040
|
||||
- 16040,
|
||||
+ 30040,
|
||||
16010
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -87,7 +87,7 @@
|
||||
}
|
||||
@@ -80,7 +80,7 @@
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16040
|
||||
+ 30040
|
||||
- 16040,
|
||||
+ 30040,
|
||||
16020
|
||||
]
|
||||
},
|
||||
@@ -90,7 +90,7 @@
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16040,
|
||||
+ 30040,
|
||||
16020
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -120,7 +120,7 @@
|
||||
@@ -124,7 +124,7 @@
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
@ -45,7 +45,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -130,7 +130,7 @@
|
||||
@@ -134,7 +134,7 @@
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
@ -54,21 +54,48 @@
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -186,7 +186,7 @@
|
||||
"interfaceName":"eth-rt5-1",
|
||||
@@ -185,7 +185,7 @@
|
||||
"active":true,
|
||||
"labels":[
|
||||
16040,
|
||||
- 16050
|
||||
+ 30050
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -211,7 +211,7 @@
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
- 16060
|
||||
+ 30060
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -196,7 +196,7 @@
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
@@ -224,7 +224,7 @@
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
- 16060
|
||||
+ 30060
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -271,7 +271,7 @@
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16040
|
||||
+ 30040
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -280,7 +280,7 @@
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16040
|
||||
+ 30040
|
||||
]
|
||||
}
|
||||
]
|
||||
|
@ -1,6 +1,42 @@
|
||||
--- rt3/step5/show_ipv6_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt3/step6/show_ipv6_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
--- rt3/step5/show_ipv6_route.ref 2020-09-25 17:50:13.840589722 -0300
|
||||
+++ rt3/step6/show_ipv6_route.ref 2020-09-25 17:51:16.757411035 -0300
|
||||
@@ -29,7 +29,7 @@
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16041,
|
||||
+ 30041,
|
||||
16011
|
||||
]
|
||||
},
|
||||
@@ -38,7 +38,7 @@
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16041,
|
||||
+ 30041,
|
||||
16011
|
||||
]
|
||||
}
|
||||
@@ -75,7 +75,7 @@
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16041,
|
||||
+ 30041,
|
||||
16021
|
||||
]
|
||||
},
|
||||
@@ -84,7 +84,7 @@
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16041,
|
||||
+ 30041,
|
||||
16021
|
||||
]
|
||||
}
|
||||
@@ -116,7 +116,7 @@
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
@ -9,7 +45,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -37,7 +37,7 @@
|
||||
@@ -125,7 +125,7 @@
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
@ -18,57 +54,30 @@
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -73,7 +73,7 @@
|
||||
"interfaceName":"eth-rt5-2",
|
||||
@@ -173,7 +173,7 @@
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16041
|
||||
+ 30041
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -81,7 +81,7 @@
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16041
|
||||
+ 30041
|
||||
16041,
|
||||
- 16051
|
||||
+ 30051
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -103,7 +103,7 @@
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16041
|
||||
+ 30041
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -112,7 +112,7 @@
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16041
|
||||
+ 30041
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -174,7 +174,7 @@
|
||||
"interfaceName":"eth-rt5-2",
|
||||
"active":true,
|
||||
@@ -198,7 +198,7 @@
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
- 16061
|
||||
+ 30061
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -183,7 +183,7 @@
|
||||
"interfaceName":"eth-rt5-1",
|
||||
"active":true,
|
||||
@@ -210,7 +210,7 @@
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
- 16061
|
||||
+ 30061
|
||||
]
|
||||
}
|
||||
]
|
||||
],
|
||||
|
@ -1,18 +1,18 @@
|
||||
--- rt3/step5/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt3/step6/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
--- rt3/step5/show_mpls_table.ref 2020-09-25 17:50:11.280556320 -0300
|
||||
+++ rt3/step6/show_mpls_table.ref 2020-09-25 17:51:14.281378700 -0300
|
||||
@@ -17,12 +17,12 @@
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16040,
|
||||
+ "outLabel":30040,
|
||||
"nexthop":"10.0.5.5"
|
||||
"nexthop":"10.0.4.5"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16040,
|
||||
+ "outLabel":30040,
|
||||
"nexthop":"10.0.4.5"
|
||||
"nexthop":"10.0.5.5"
|
||||
}
|
||||
]
|
||||
@@ -45,12 +45,12 @@
|
||||
@ -21,13 +21,13 @@
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16041,
|
||||
+ "outLabel":30041,
|
||||
"interface":"eth-rt5-2"
|
||||
"interface":"eth-rt5-1"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16041,
|
||||
+ "outLabel":30041,
|
||||
"interface":"eth-rt5-1"
|
||||
"interface":"eth-rt5-2"
|
||||
}
|
||||
]
|
||||
@@ -73,12 +73,12 @@
|
||||
@ -36,13 +36,13 @@
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16040,
|
||||
+ "outLabel":30040,
|
||||
"nexthop":"10.0.5.5"
|
||||
"nexthop":"10.0.4.5"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16040,
|
||||
+ "outLabel":30040,
|
||||
"nexthop":"10.0.4.5"
|
||||
"nexthop":"10.0.5.5"
|
||||
}
|
||||
]
|
||||
@@ -101,12 +101,12 @@
|
||||
@ -51,13 +51,13 @@
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16041,
|
||||
+ "outLabel":30041,
|
||||
"interface":"eth-rt5-2"
|
||||
"interface":"eth-rt5-1"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16041,
|
||||
+ "outLabel":30041,
|
||||
"interface":"eth-rt5-1"
|
||||
"interface":"eth-rt5-2"
|
||||
}
|
||||
]
|
||||
@@ -117,13 +117,13 @@
|
||||
@ -67,14 +67,14 @@
|
||||
- "outLabel":16040,
|
||||
+ "outLabel":30040,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.4.5"
|
||||
"nexthop":"10.0.5.5"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16040,
|
||||
+ "outLabel":30040,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.5.5"
|
||||
"nexthop":"10.0.4.5"
|
||||
},
|
||||
@@ -141,13 +141,13 @@
|
||||
"nexthops":[
|
||||
@ -83,44 +83,48 @@
|
||||
- "outLabel":16041,
|
||||
+ "outLabel":30041,
|
||||
"installed":true,
|
||||
"interface":"eth-rt5-1"
|
||||
"interface":"eth-rt5-2"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16041,
|
||||
+ "outLabel":30041,
|
||||
"installed":true,
|
||||
"interface":"eth-rt5-2"
|
||||
},
|
||||
@@ -201,13 +201,13 @@
|
||||
"nexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16060,
|
||||
+ "outLabel":30060,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.4.5"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16060,
|
||||
+ "outLabel":30060,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.5.5"
|
||||
}
|
||||
@@ -219,13 +219,13 @@
|
||||
"nexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16061,
|
||||
+ "outLabel":30061,
|
||||
"installed":true,
|
||||
"interface":"eth-rt5-1"
|
||||
},
|
||||
@@ -227,7 +227,7 @@
|
||||
"nexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16060,
|
||||
+ "outLabel":30060,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.5.5",
|
||||
"backupIndex":[
|
||||
@@ -236,7 +236,7 @@
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16060,
|
||||
+ "outLabel":30060,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.4.5",
|
||||
"backupIndex":[
|
||||
@@ -258,7 +258,7 @@
|
||||
"nexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16061,
|
||||
+ "outLabel":30061,
|
||||
"installed":true,
|
||||
"interface":"eth-rt5-2"
|
||||
}
|
||||
"interface":"eth-rt5-2",
|
||||
"backupIndex":[
|
||||
@@ -267,7 +267,7 @@
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16061,
|
||||
+ "outLabel":30061,
|
||||
"installed":true,
|
||||
"interface":"eth-rt5-1",
|
||||
"backupIndex":[
|
||||
|
@ -1,25 +1,32 @@
|
||||
--- rt3/step6/show_ip_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt3/step7/show_ip_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -151,20 +151,14 @@
|
||||
"ip":"10.0.4.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
- "active":true,
|
||||
--- rt3/step6/show_ip_route.ref 2020-09-25 17:51:15.521394894 -0300
|
||||
+++ rt3/step7/show_ip_route.ref 2020-09-25 17:52:02.414007470 -0300
|
||||
@@ -158,9 +158,6 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
- ],
|
||||
- "labels":[
|
||||
- 3
|
||||
- ]
|
||||
+ "active":true
|
||||
]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"ip":"10.0.5.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
- "active":true,
|
||||
@@ -171,9 +168,6 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
- ],
|
||||
- "labels":[
|
||||
- 3
|
||||
- ]
|
||||
+ "active":true
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -184,8 +178,7 @@
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16040,
|
||||
- 30050
|
||||
+ 16040
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,24 +1,32 @@
|
||||
--- rt3/step6/show_ipv6_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt3/step7/show_ipv6_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -141,19 +141,13 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
- "active":true,
|
||||
--- rt3/step6/show_ipv6_route.ref 2020-09-25 17:51:16.757411035 -0300
|
||||
+++ rt3/step7/show_ipv6_route.ref 2020-09-25 17:52:03.650023622 -0300
|
||||
@@ -148,9 +148,6 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
- ],
|
||||
- "labels":[
|
||||
- 3
|
||||
- ]
|
||||
+ "active":true
|
||||
]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
- "active":true,
|
||||
@@ -160,9 +157,6 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
- ],
|
||||
- "labels":[
|
||||
- 3
|
||||
- ]
|
||||
+ "active":true
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -172,8 +166,7 @@
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16041,
|
||||
- 30051
|
||||
+ 16041
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt3/step6/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt3/step7/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -159,42 +159,6 @@
|
||||
--- rt3/step6/show_mpls_table.ref 2020-09-25 17:51:14.281378700 -0300
|
||||
+++ rt3/step7/show_mpls_table.ref 2020-09-25 17:52:01.181991371 -0300
|
||||
@@ -159,68 +159,6 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -12,13 +12,26 @@
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "installed":true,
|
||||
- "nexthop":"10.0.4.5"
|
||||
- "nexthop":"10.0.5.5",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "installed":true,
|
||||
- "nexthop":"10.0.5.5"
|
||||
- "nexthop":"10.0.4.5",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- }
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16040,
|
||||
- "nexthop":"10.0.1.2"
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
@ -30,13 +43,26 @@
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "installed":true,
|
||||
- "interface":"eth-rt5-1"
|
||||
- "interface":"eth-rt5-2",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "installed":true,
|
||||
- "interface":"eth-rt5-2"
|
||||
- "interface":"eth-rt5-1",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- }
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16041,
|
||||
- "interface":"eth-sw1"
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
|
@ -1,25 +1,32 @@
|
||||
--- rt3/step7/show_ip_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt3/step8/show_ip_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -151,14 +151,20 @@
|
||||
"ip":"10.0.4.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
--- rt3/step7/show_ip_route.ref 2020-09-25 17:52:02.414007470 -0300
|
||||
+++ rt3/step8/show_ip_route.ref 2020-09-25 17:53:20.419027241 -0300
|
||||
@@ -158,6 +158,9 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
+ ],
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ ]
|
||||
]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"ip":"10.0.5.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
@@ -168,6 +171,9 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
+ ],
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ ]
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -178,7 +184,8 @@
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16040
|
||||
+ 16040,
|
||||
+ 30050
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,24 +1,32 @@
|
||||
--- rt3/step7/show_ipv6_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt3/step8/show_ipv6_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -141,13 +141,19 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5-2",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
--- rt3/step7/show_ipv6_route.ref 2020-09-25 17:52:03.650023622 -0300
|
||||
+++ rt3/step8/show_ipv6_route.ref 2020-09-25 17:53:21.643043250 -0300
|
||||
@@ -148,6 +148,9 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
+ ],
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ ]
|
||||
]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5-1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
@@ -157,6 +160,9 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
+ ],
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ ]
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -166,7 +172,8 @@
|
||||
"interfaceName":"eth-sw1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16041
|
||||
+ 16041,
|
||||
+ 30051
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt3/step7/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt3/step8/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -159,6 +159,42 @@
|
||||
--- rt3/step7/show_mpls_table.ref 2020-09-25 17:52:01.181991371 -0300
|
||||
+++ rt3/step8/show_mpls_table.ref 2020-09-25 17:53:19.135010448 -0300
|
||||
@@ -159,6 +159,68 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -12,13 +12,26 @@
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":3,
|
||||
+ "installed":true,
|
||||
+ "nexthop":"10.0.4.5"
|
||||
+ "nexthop":"10.0.5.5",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":3,
|
||||
+ "installed":true,
|
||||
+ "nexthop":"10.0.5.5"
|
||||
+ "nexthop":"10.0.4.5",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16040,
|
||||
+ "nexthop":"10.0.1.2"
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
@ -30,13 +43,26 @@
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":3,
|
||||
+ "installed":true,
|
||||
+ "interface":"eth-rt5-1"
|
||||
+ "interface":"eth-rt5-2",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":3,
|
||||
+ "installed":true,
|
||||
+ "interface":"eth-rt5-2"
|
||||
+ "interface":"eth-rt5-1",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16041,
|
||||
+ "interface":"eth-sw1"
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
|
@ -0,0 +1,11 @@
|
||||
--- rt3/step8/show_ip_route.ref 2020-09-25 17:53:20.419027241 -0300
|
||||
+++ rt3/step9/show_ip_route.ref 2020-09-25 17:54:38.112043759 -0300
|
||||
@@ -185,7 +185,7 @@
|
||||
"active":true,
|
||||
"labels":[
|
||||
16040,
|
||||
- 30050
|
||||
+ 30500
|
||||
]
|
||||
}
|
||||
]
|
@ -0,0 +1,11 @@
|
||||
--- rt3/step8/show_ipv6_route.ref 2020-09-25 17:53:21.643043250 -0300
|
||||
+++ rt3/step9/show_ipv6_route.ref 2020-09-25 17:54:39.320059571 -0300
|
||||
@@ -173,7 +173,7 @@
|
||||
"active":true,
|
||||
"labels":[
|
||||
16041,
|
||||
- 30051
|
||||
+ 30501
|
||||
]
|
||||
}
|
||||
]
|
@ -1,6 +1,6 @@
|
||||
--- rt3/step8/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt3/step9/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -159,73 +159,73 @@
|
||||
--- rt3/step8/show_mpls_table.ref 2020-09-25 17:53:19.135010448 -0300
|
||||
+++ rt3/step9/show_mpls_table.ref 2020-09-25 17:54:36.852027268 -0300
|
||||
@@ -159,13 +159,13 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -15,14 +15,24 @@
|
||||
- "outLabel":3,
|
||||
+ "outLabel":30060,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.4.5"
|
||||
"nexthop":"10.0.5.5",
|
||||
"backupIndex":[
|
||||
@@ -174,7 +174,7 @@
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
+ "outLabel":30060,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.5.5"
|
||||
"nexthop":"10.0.4.5",
|
||||
"backupIndex":[
|
||||
@@ -185,18 +185,18 @@
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16040,
|
||||
+ "outLabel":3,
|
||||
"nexthop":"10.0.1.2"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -37,14 +47,24 @@
|
||||
- "outLabel":3,
|
||||
+ "outLabel":30061,
|
||||
"installed":true,
|
||||
"interface":"eth-rt5-1"
|
||||
"interface":"eth-rt5-2",
|
||||
"backupIndex":[
|
||||
@@ -205,7 +205,7 @@
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
+ "outLabel":30061,
|
||||
"installed":true,
|
||||
"interface":"eth-rt5-2"
|
||||
"interface":"eth-rt5-1",
|
||||
"backupIndex":[
|
||||
@@ -216,18 +216,18 @@
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16041,
|
||||
+ "outLabel":3,
|
||||
"interface":"eth-sw1"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -59,14 +79,24 @@
|
||||
- "outLabel":30060,
|
||||
+ "outLabel":3,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.4.5"
|
||||
"nexthop":"10.0.5.5",
|
||||
"backupIndex":[
|
||||
@@ -236,7 +236,7 @@
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":30060,
|
||||
+ "outLabel":3,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.5.5"
|
||||
"nexthop":"10.0.4.5",
|
||||
"backupIndex":[
|
||||
@@ -247,18 +247,18 @@
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
+ "outLabel":16040,
|
||||
"nexthop":"10.0.1.2"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -81,12 +111,23 @@
|
||||
- "outLabel":30061,
|
||||
+ "outLabel":3,
|
||||
"installed":true,
|
||||
"interface":"eth-rt5-1"
|
||||
"interface":"eth-rt5-2",
|
||||
"backupIndex":[
|
||||
@@ -267,7 +267,7 @@
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":30061,
|
||||
+ "outLabel":3,
|
||||
"installed":true,
|
||||
"interface":"eth-rt5-2"
|
||||
"interface":"eth-rt5-1",
|
||||
"backupIndex":[
|
||||
@@ -278,7 +278,7 @@
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
+ "outLabel":16041,
|
||||
"interface":"eth-sw1"
|
||||
}
|
||||
]
|
||||
|
@ -15,6 +15,9 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
16010
|
||||
]
|
||||
@ -25,10 +28,21 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
16010
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.6.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
@ -48,6 +62,9 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@ -58,10 +75,25 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.6.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16030,
|
||||
16020
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
@ -137,10 +169,7 @@
|
||||
"ip":"10.0.7.6",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt6",
|
||||
"active":true,
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -174,10 +203,7 @@
|
||||
"ip":"10.0.6.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true,
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -197,13 +223,27 @@
|
||||
"ip":"10.0.2.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
"active":true
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"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
|
||||
}
|
||||
]
|
||||
@ -219,13 +259,30 @@
|
||||
{
|
||||
"ip":"10.0.2.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-1"
|
||||
"interfaceName":"eth-rt2-1",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.3.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
"active":true
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.6.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16030
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -241,12 +298,29 @@
|
||||
"ip":"10.0.2.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
"active":true
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.3.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-2"
|
||||
"interfaceName":"eth-rt2-2",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.6.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16030
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -12,8 +12,11 @@
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
16011
|
||||
]
|
||||
@ -21,12 +24,22 @@
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
16011
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
@ -43,8 +56,11 @@
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@ -52,12 +68,26 @@
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16031,
|
||||
16021
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
@ -74,7 +104,7 @@
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16031
|
||||
@ -92,7 +122,7 @@
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16031
|
||||
@ -128,10 +158,7 @@
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt6",
|
||||
"active":true,
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -163,10 +190,7 @@
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true,
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -7,13 +7,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16010,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.3.2"
|
||||
"nexthop":"10.0.3.2",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16010,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.2.2"
|
||||
"nexthop":"10.0.2.2",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"nexthop":"10.0.6.5"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -25,13 +38,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16011,
|
||||
"installed":true,
|
||||
"interface":"eth-rt2-2"
|
||||
"interface":"eth-rt2-2",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16011,
|
||||
"installed":true,
|
||||
"interface":"eth-rt2-1"
|
||||
"interface":"eth-rt2-1",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"interface":"eth-rt5"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -43,13 +69,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.3.2"
|
||||
"nexthop":"10.0.3.2",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.2.2"
|
||||
"nexthop":"10.0.2.2",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16030,
|
||||
"nexthop":"10.0.6.5"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -61,13 +100,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
"interface":"eth-rt2-2"
|
||||
"interface":"eth-rt2-2",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
"interface":"eth-rt2-1"
|
||||
"interface":"eth-rt2-1",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16031,
|
||||
"interface":"eth-rt5"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -1,121 +1,163 @@
|
||||
--- rt4/step3/show_ip_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt4/step4/show_ip_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -14,20 +14,14 @@
|
||||
"ip":"10.0.2.2",
|
||||
--- rt4/step3/show_ip_route.ref 2020-09-25 17:48:05.722919797 -0300
|
||||
+++ rt4/step4/show_ip_route.ref 2020-09-25 17:49:02.163655010 -0300
|
||||
@@ -15,9 +15,6 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16010
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"ip":"10.0.3.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16010
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -47,20 +41,14 @@
|
||||
"ip":"10.0.2.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 3
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"ip":"10.0.3.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 3
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -80,30 +68,21 @@
|
||||
"ip":"10.0.2.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16030
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"ip":"10.0.3.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16030
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"ip":"10.0.6.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16030
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -123,24 +102,7 @@
|
||||
"ip":"10.0.6.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5",
|
||||
- "active":true,
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
"labels":[
|
||||
16010
|
||||
]
|
||||
@@ -28,21 +25,10 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
"labels":[
|
||||
16010
|
||||
]
|
||||
}
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "ip":"10.0.6.5",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-rt5",
|
||||
- "active":true
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -62,9 +48,6 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@@ -75,25 +58,10 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "ip":"10.0.6.5",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-rt5",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 3
|
||||
- 16030,
|
||||
- 16020
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -156,21 +124,10 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "ip":"10.0.7.6",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-rt6",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 3
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
- "active":true
|
||||
- }
|
||||
]
|
||||
}
|
||||
@@ -160,24 +122,7 @@
|
||||
"ip":"10.0.7.6",
|
||||
],
|
||||
@@ -190,21 +147,10 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt6",
|
||||
- "active":true,
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
- "labels":[
|
||||
- 3
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "ip":"10.0.6.5",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-rt5",
|
||||
- "active":true
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -223,27 +169,13 @@
|
||||
"ip":"10.0.2.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
- "active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"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
|
||||
}
|
||||
]
|
||||
@@ -259,30 +191,13 @@
|
||||
{
|
||||
"ip":"10.0.2.2",
|
||||
"afi":"ipv4",
|
||||
- "interfaceName":"eth-rt2-1",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
+ "interfaceName":"eth-rt2-1"
|
||||
},
|
||||
{
|
||||
"ip":"10.0.3.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
- "active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- }
|
||||
- ],
|
||||
@ -126,13 +168,45 @@
|
||||
- "interfaceName":"eth-rt5",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 3
|
||||
- 16030
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -266,31 +211,6 @@
|
||||
@@ -298,29 +213,12 @@
|
||||
"ip":"10.0.2.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
- "active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
"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
|
||||
- ]
|
||||
+ "interfaceName":"eth-rt2-2"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -340,31 +238,6 @@
|
||||
"ip":"10.0.6.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5",
|
||||
@ -164,7 +238,7 @@
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
@@ -311,31 +231,6 @@
|
||||
@@ -385,31 +258,6 @@
|
||||
"ip":"10.0.6.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5",
|
||||
@ -196,7 +270,7 @@
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
@@ -351,18 +246,7 @@
|
||||
@@ -425,18 +273,7 @@
|
||||
{
|
||||
"ip":"10.0.6.5",
|
||||
"afi":"ipv4",
|
||||
@ -216,7 +290,7 @@
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -377,18 +261,7 @@
|
||||
@@ -451,18 +288,7 @@
|
||||
{
|
||||
"ip":"10.0.7.6",
|
||||
"afi":"ipv4",
|
||||
|
@ -1,118 +1,57 @@
|
||||
--- rt4/step3/show_ipv6_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt4/step4/show_ipv6_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -13,19 +13,13 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16011
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
--- rt4/step3/show_ipv6_route.ref 2020-09-25 17:48:06.998936410 -0300
|
||||
+++ rt4/step4/show_ipv6_route.ref 2020-09-25 17:49:03.399671119 -0300
|
||||
@@ -14,9 +14,6 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16011
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -44,19 +38,13 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 3
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 3
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -75,28 +63,19 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16031
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16031
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16031
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -115,23 +94,7 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5",
|
||||
- "active":true,
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
- "labels":[
|
||||
- 3
|
||||
- ]
|
||||
- }
|
||||
"labels":[
|
||||
16011
|
||||
]
|
||||
@@ -26,20 +23,10 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
"labels":[
|
||||
16011
|
||||
]
|
||||
}
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "afi":"ipv6",
|
||||
- "interfaceName":"eth-rt6",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 3
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
- "interfaceName":"eth-rt5",
|
||||
- "active":true
|
||||
- }
|
||||
]
|
||||
}
|
||||
@@ -150,23 +113,7 @@
|
||||
"fib":true,
|
||||
],
|
||||
@@ -58,9 +45,6 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt6",
|
||||
- "active":true,
|
||||
"interfaceName":"eth-rt2-1",
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
- "labels":[
|
||||
- 3
|
||||
- ]
|
||||
- }
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@@ -70,24 +54,10 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
@ -120,9 +59,52 @@
|
||||
- "interfaceName":"eth-rt5",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 3
|
||||
- 16031,
|
||||
- 16021
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -146,20 +116,10 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "afi":"ipv6",
|
||||
- "interfaceName":"eth-rt6",
|
||||
- "active":true
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -178,20 +138,10 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt6",
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "afi":"ipv6",
|
||||
- "interfaceName":"eth-rt5",
|
||||
- "active":true
|
||||
- }
|
||||
]
|
||||
}
|
||||
]
|
||||
|
@ -1,135 +1,125 @@
|
||||
--- rt4/step3/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt4/step4/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -1,210 +1,2 @@
|
||||
{
|
||||
- "16010":{
|
||||
- "inLabel":16010,
|
||||
- "installed":true,
|
||||
- "nexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16010,
|
||||
- "installed":true,
|
||||
- "nexthop":"10.0.3.2"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16010,
|
||||
- "installed":true,
|
||||
- "nexthop":"10.0.2.2"
|
||||
--- rt4/step3/show_mpls_table.ref 2020-09-25 17:48:04.418902820 -0300
|
||||
+++ rt4/step4/show_mpls_table.ref 2020-09-25 17:49:00.959639319 -0300
|
||||
@@ -7,26 +7,13 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16010,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.3.2",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
+ "nexthop":"10.0.3.2"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16010,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.2.2",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
- "16011":{
|
||||
- "inLabel":16011,
|
||||
- "installed":true,
|
||||
- "nexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16011,
|
||||
- "installed":true,
|
||||
- "interface":"eth-rt2-2"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16011,
|
||||
- "installed":true,
|
||||
- "interface":"eth-rt2-1"
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
- "16020":{
|
||||
- "inLabel":16020,
|
||||
- "installed":true,
|
||||
- "nexthops":[
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "installed":true,
|
||||
- "nexthop":"10.0.3.2"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "installed":true,
|
||||
- "nexthop":"10.0.2.2"
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
- "16021":{
|
||||
- "inLabel":16021,
|
||||
- "installed":true,
|
||||
- "nexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "installed":true,
|
||||
- "interface":"eth-rt2-2"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "installed":true,
|
||||
- "interface":"eth-rt2-1"
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
- "16030":{
|
||||
- "inLabel":16030,
|
||||
- "installed":true,
|
||||
- "nexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16030,
|
||||
- "installed":true,
|
||||
- "nexthop":"10.0.3.2"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16030,
|
||||
- "installed":true,
|
||||
- "nexthop":"10.0.2.2"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16030,
|
||||
- "installed":true,
|
||||
- "nexthop":"10.0.6.5"
|
||||
+ "nexthop":"10.0.2.2"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -38,26 +25,13 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16011,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt2-2",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
+ "interface":"eth-rt2-2"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16011,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt2-1",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
- "16031":{
|
||||
- "inLabel":16031,
|
||||
- "installed":true,
|
||||
- "nexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16031,
|
||||
- "installed":true,
|
||||
- "interface":"eth-rt2-2"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16031,
|
||||
- "installed":true,
|
||||
- "interface":"eth-rt2-1"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16031,
|
||||
- "installed":true,
|
||||
- "interface":"eth-rt5"
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
- "16050":{
|
||||
- "inLabel":16050,
|
||||
- "installed":true,
|
||||
- "nexthops":[
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "installed":true,
|
||||
- "interface":"eth-rt5"
|
||||
+ "interface":"eth-rt2-1"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -69,26 +43,13 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.3.2",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
+ "nexthop":"10.0.3.2"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.2.2",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- }
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16030,
|
||||
- "nexthop":"10.0.6.5"
|
||||
+ "nexthop":"10.0.2.2"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -100,26 +61,13 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt2-2",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
+ "interface":"eth-rt2-2"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt2-1",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- }
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16031,
|
||||
- "interface":"eth-rt5"
|
||||
+ "interface":"eth-rt2-1"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -179,17 +127,7 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.6.5",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
@ -141,17 +131,14 @@
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "nexthop":"10.0.7.6"
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
- "16051":{
|
||||
- "inLabel":16051,
|
||||
- "installed":true,
|
||||
- "nexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "installed":true,
|
||||
+ "nexthop":"10.0.6.5"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -201,17 +139,7 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt5",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
@ -163,17 +150,14 @@
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "interface":"eth-rt6"
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
- "16060":{
|
||||
- "inLabel":16060,
|
||||
- "installed":true,
|
||||
- "nexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "installed":true,
|
||||
+ "interface":"eth-rt5"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -223,17 +151,7 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.7.6",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
@ -185,17 +169,14 @@
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "nexthop":"10.0.6.5"
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
- "16061":{
|
||||
- "inLabel":16061,
|
||||
- "installed":true,
|
||||
- "nexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "installed":true,
|
||||
+ "nexthop":"10.0.7.6"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -245,17 +163,7 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt6",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
@ -207,7 +188,7 @@
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "interface":"eth-rt5"
|
||||
- }
|
||||
- ]
|
||||
- }
|
||||
}
|
||||
+ "interface":"eth-rt6"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,122 +1,164 @@
|
||||
--- rt4/step4/show_ip_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt4/step5/show_ip_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -14,14 +14,20 @@
|
||||
"ip":"10.0.2.2",
|
||||
--- rt4/step4/show_ip_route.ref 2020-09-25 17:49:02.163655010 -0300
|
||||
+++ rt4/step5/show_ip_route.ref 2020-09-25 17:50:12.800576153 -0300
|
||||
@@ -15,6 +15,9 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16010
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"ip":"10.0.3.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16010
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -41,14 +47,20 @@
|
||||
"ip":"10.0.2.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"ip":"10.0.3.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -68,21 +80,30 @@
|
||||
"ip":"10.0.2.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16030
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"ip":"10.0.3.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16030
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"ip":"10.0.6.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16030
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -102,7 +123,24 @@
|
||||
"ip":"10.0.6.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
16010
|
||||
]
|
||||
@@ -25,10 +28,21 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
16010
|
||||
]
|
||||
}
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "ip":"10.0.6.5",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt5",
|
||||
+ "active":true
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -48,6 +62,9 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@@ -58,10 +75,25 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "ip":"10.0.6.5",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt5",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ 16030,
|
||||
+ 16020
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -124,10 +156,21 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "ip":"10.0.7.6",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt6",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ ]
|
||||
}
|
||||
+ "active":true
|
||||
+ }
|
||||
]
|
||||
}
|
||||
@@ -122,7 +160,24 @@
|
||||
"ip":"10.0.7.6",
|
||||
],
|
||||
@@ -147,10 +190,21 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt6",
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "ip":"10.0.6.5",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt5",
|
||||
+ "active":true
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -169,13 +223,27 @@
|
||||
"ip":"10.0.2.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"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
|
||||
}
|
||||
]
|
||||
@@ -191,13 +259,30 @@
|
||||
{
|
||||
"ip":"10.0.2.2",
|
||||
"afi":"ipv4",
|
||||
- "interfaceName":"eth-rt2-1"
|
||||
+ "interfaceName":"eth-rt2-1",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.3.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ ]
|
||||
+ }
|
||||
+ ],
|
||||
@ -127,12 +169,44 @@
|
||||
+ "interfaceName":"eth-rt5",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ 16030
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -211,6 +266,31 @@
|
||||
@@ -213,12 +298,29 @@
|
||||
"ip":"10.0.2.2",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.3.2",
|
||||
"afi":"ipv4",
|
||||
- "interfaceName":"eth-rt2-2"
|
||||
+ "interfaceName":"eth-rt2-2",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "ip":"10.0.6.5",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt5",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16030
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -238,6 +340,31 @@
|
||||
"ip":"10.0.6.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5",
|
||||
@ -164,7 +238,7 @@
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
@@ -231,6 +311,31 @@
|
||||
@@ -258,6 +385,31 @@
|
||||
"ip":"10.0.6.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5",
|
||||
@ -196,7 +270,7 @@
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
@@ -246,7 +351,18 @@
|
||||
@@ -273,7 +425,18 @@
|
||||
{
|
||||
"ip":"10.0.6.5",
|
||||
"afi":"ipv4",
|
||||
@ -216,7 +290,7 @@
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -261,7 +377,18 @@
|
||||
@@ -288,7 +451,18 @@
|
||||
{
|
||||
"ip":"10.0.7.6",
|
||||
"afi":"ipv4",
|
||||
|
@ -1,119 +1,57 @@
|
||||
--- rt4/step4/show_ipv6_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt4/step5/show_ipv6_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -13,13 +13,19 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16011
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
--- rt4/step4/show_ipv6_route.ref 2020-09-25 17:49:03.399671119 -0300
|
||||
+++ rt4/step5/show_ipv6_route.ref 2020-09-25 17:50:14.040592332 -0300
|
||||
@@ -14,6 +14,9 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16011
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -38,13 +44,19 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -63,19 +75,28 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16031
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16031
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16031
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -94,7 +115,23 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ ]
|
||||
+ }
|
||||
"labels":[
|
||||
16011
|
||||
]
|
||||
@@ -23,10 +26,20 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
16011
|
||||
]
|
||||
}
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "afi":"ipv6",
|
||||
+ "interfaceName":"eth-rt6",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ ]
|
||||
}
|
||||
+ "interfaceName":"eth-rt5",
|
||||
+ "active":true
|
||||
+ }
|
||||
]
|
||||
}
|
||||
@@ -113,7 +150,23 @@
|
||||
"fib":true,
|
||||
],
|
||||
@@ -45,6 +58,9 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt6",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
"interfaceName":"eth-rt2-1",
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ ]
|
||||
+ }
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@@ -54,10 +70,24 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt2-2",
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
@ -121,8 +59,52 @@
|
||||
+ "interfaceName":"eth-rt5",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ 16031,
|
||||
+ 16021
|
||||
+ ]
|
||||
}
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -116,10 +146,20 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "afi":"ipv6",
|
||||
+ "interfaceName":"eth-rt6",
|
||||
+ "active":true
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -138,10 +178,20 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt6",
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "afi":"ipv6",
|
||||
+ "interfaceName":"eth-rt5",
|
||||
+ "active":true
|
||||
+ }
|
||||
]
|
||||
}
|
||||
]
|
||||
|
@ -1,135 +1,126 @@
|
||||
--- rt4/step4/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt4/step5/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -1,2 +1,210 @@
|
||||
{
|
||||
+ "16010":{
|
||||
+ "inLabel":16010,
|
||||
+ "installed":true,
|
||||
+ "nexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16010,
|
||||
+ "installed":true,
|
||||
+ "nexthop":"10.0.3.2"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16010,
|
||||
+ "installed":true,
|
||||
+ "nexthop":"10.0.2.2"
|
||||
--- rt4/step4/show_mpls_table.ref 2020-09-25 17:49:00.959639319 -0300
|
||||
+++ rt4/step5/show_mpls_table.ref 2020-09-25 17:50:11.488559034 -0300
|
||||
@@ -7,13 +7,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16010,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.3.2"
|
||||
+ "nexthop":"10.0.3.2",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16010,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.2.2"
|
||||
+ "nexthop":"10.0.2.2",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
+ "16011":{
|
||||
+ "inLabel":16011,
|
||||
+ "installed":true,
|
||||
+ "nexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16011,
|
||||
+ "installed":true,
|
||||
+ "interface":"eth-rt2-2"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16011,
|
||||
+ "installed":true,
|
||||
+ "interface":"eth-rt2-1"
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
+ "16020":{
|
||||
+ "inLabel":16020,
|
||||
+ "installed":true,
|
||||
+ "nexthops":[
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":3,
|
||||
+ "installed":true,
|
||||
+ "nexthop":"10.0.3.2"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":3,
|
||||
+ "installed":true,
|
||||
+ "nexthop":"10.0.2.2"
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
+ "16021":{
|
||||
+ "inLabel":16021,
|
||||
+ "installed":true,
|
||||
+ "nexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":3,
|
||||
+ "installed":true,
|
||||
+ "interface":"eth-rt2-2"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":3,
|
||||
+ "installed":true,
|
||||
+ "interface":"eth-rt2-1"
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
+ "16030":{
|
||||
+ "inLabel":16030,
|
||||
+ "installed":true,
|
||||
+ "nexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16030,
|
||||
+ "installed":true,
|
||||
+ "nexthop":"10.0.3.2"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16030,
|
||||
+ "installed":true,
|
||||
+ "nexthop":"10.0.2.2"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16030,
|
||||
+ "installed":true,
|
||||
+ "nexthop":"10.0.6.5"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -25,13 +38,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16011,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt2-2"
|
||||
+ "interface":"eth-rt2-2",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16011,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt2-1"
|
||||
+ "interface":"eth-rt2-1",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
+ "16031":{
|
||||
+ "inLabel":16031,
|
||||
+ "installed":true,
|
||||
+ "nexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16031,
|
||||
+ "installed":true,
|
||||
+ "interface":"eth-rt2-2"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16031,
|
||||
+ "installed":true,
|
||||
+ "interface":"eth-rt2-1"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16031,
|
||||
+ "installed":true,
|
||||
+ "interface":"eth-rt5"
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
+ "16050":{
|
||||
+ "inLabel":16050,
|
||||
+ "installed":true,
|
||||
+ "nexthops":[
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":3,
|
||||
+ "installed":true,
|
||||
+ "interface":"eth-rt5"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -43,13 +69,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.3.2"
|
||||
+ "nexthop":"10.0.3.2",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.2.2"
|
||||
+ "nexthop":"10.0.2.2",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16030,
|
||||
+ "nexthop":"10.0.6.5"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -61,13 +100,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt2-2"
|
||||
+ "interface":"eth-rt2-2",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt2-1"
|
||||
+ "interface":"eth-rt2-1",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16031,
|
||||
+ "interface":"eth-rt5"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -127,7 +179,17 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.6.5"
|
||||
+ "nexthop":"10.0.6.5",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
@ -141,17 +132,14 @@
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":3,
|
||||
+ "nexthop":"10.0.7.6"
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
+ "16051":{
|
||||
+ "inLabel":16051,
|
||||
+ "installed":true,
|
||||
+ "nexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":3,
|
||||
+ "installed":true,
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -139,7 +201,17 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt5"
|
||||
+ "interface":"eth-rt5",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
@ -163,17 +151,14 @@
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":3,
|
||||
+ "interface":"eth-rt6"
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
+ "16060":{
|
||||
+ "inLabel":16060,
|
||||
+ "installed":true,
|
||||
+ "nexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":3,
|
||||
+ "installed":true,
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -151,7 +223,17 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.7.6"
|
||||
+ "nexthop":"10.0.7.6",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
@ -185,17 +170,14 @@
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":3,
|
||||
+ "nexthop":"10.0.6.5"
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
+ "16061":{
|
||||
+ "inLabel":16061,
|
||||
+ "installed":true,
|
||||
+ "nexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":3,
|
||||
+ "installed":true,
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -163,7 +245,17 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt6"
|
||||
+ "interface":"eth-rt6",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
@ -207,7 +189,6 @@
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":3,
|
||||
+ "interface":"eth-rt5"
|
||||
+ }
|
||||
+ ]
|
||||
+ }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,6 +1,33 @@
|
||||
--- rt4/step5/show_ip_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt4/step6/show_ip_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -102,7 +102,7 @@
|
||||
--- rt4/step5/show_ip_route.ref 2020-09-25 17:50:12.800576153 -0300
|
||||
+++ rt4/step6/show_ip_route.ref 2020-09-25 17:51:15.725397558 -0300
|
||||
@@ -90,7 +90,7 @@
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16030,
|
||||
+ 30030,
|
||||
16020
|
||||
]
|
||||
}
|
||||
@@ -134,7 +134,7 @@
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16030
|
||||
+ 30030
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -281,7 +281,7 @@
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16030
|
||||
+ 30030
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -319,7 +319,7 @@
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true,
|
||||
"labels":[
|
||||
|
@ -1,6 +1,15 @@
|
||||
--- rt4/step5/show_ipv6_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt4/step6/show_ipv6_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -86,7 +86,7 @@
|
||||
--- rt4/step5/show_ipv6_route.ref 2020-09-25 17:50:14.040592332 -0300
|
||||
+++ rt4/step6/show_ipv6_route.ref 2020-09-25 17:51:16.969413804 -0300
|
||||
@@ -84,7 +84,7 @@
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 16031,
|
||||
+ 30031,
|
||||
16021
|
||||
]
|
||||
}
|
||||
@@ -116,7 +116,7 @@
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true,
|
||||
"labels":[
|
||||
|
@ -1,6 +1,24 @@
|
||||
--- rt4/step5/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt4/step6/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -89,7 +89,7 @@
|
||||
--- rt4/step5/show_mpls_table.ref 2020-09-25 17:50:11.488559034 -0300
|
||||
+++ rt4/step6/show_mpls_table.ref 2020-09-25 17:51:14.481381312 -0300
|
||||
@@ -87,7 +87,7 @@
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16030,
|
||||
+ "outLabel":30030,
|
||||
"nexthop":"10.0.6.5"
|
||||
}
|
||||
]
|
||||
@@ -118,7 +118,7 @@
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16031,
|
||||
+ "outLabel":30031,
|
||||
"interface":"eth-rt5"
|
||||
}
|
||||
]
|
||||
@@ -141,7 +141,7 @@
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
@ -9,7 +27,7 @@
|
||||
"installed":true,
|
||||
"nexthop":"10.0.6.5"
|
||||
}
|
||||
@@ -113,7 +113,7 @@
|
||||
@@ -165,7 +165,7 @@
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt4/step6/show_ip_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt4/step7/show_ip_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -126,9 +126,6 @@
|
||||
--- rt4/step6/show_ip_route.ref 2020-09-25 17:51:15.725397558 -0300
|
||||
+++ rt4/step7/show_ip_route.ref 2020-09-25 17:52:02.614010084 -0300
|
||||
@@ -158,9 +158,6 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
@ -10,15 +10,3 @@
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -137,10 +134,7 @@
|
||||
"ip":"10.0.7.6",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt6",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 3
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt4/step6/show_ipv6_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt4/step7/show_ipv6_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -118,9 +118,6 @@
|
||||
--- rt4/step6/show_ipv6_route.ref 2020-09-25 17:51:16.969413804 -0300
|
||||
+++ rt4/step7/show_ipv6_route.ref 2020-09-25 17:52:03.854026287 -0300
|
||||
@@ -148,9 +148,6 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
@ -10,15 +10,3 @@
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -128,10 +125,7 @@
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt6",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 3
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt4/step6/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt4/step7/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -119,50 +119,6 @@
|
||||
--- rt4/step6/show_mpls_table.ref 2020-09-25 17:51:14.481381312 -0300
|
||||
+++ rt4/step7/show_mpls_table.ref 2020-09-25 17:52:01.385994037 -0300
|
||||
@@ -171,50 +171,6 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt4/step7/show_ip_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt4/step8/show_ip_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -126,6 +126,9 @@
|
||||
--- rt4/step7/show_ip_route.ref 2020-09-25 17:52:02.614010084 -0300
|
||||
+++ rt4/step8/show_ip_route.ref 2020-09-25 17:53:20.623029909 -0300
|
||||
@@ -158,6 +158,9 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
@ -10,15 +10,3 @@
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -134,7 +137,10 @@
|
||||
"ip":"10.0.7.6",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt6",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt4/step7/show_ipv6_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt4/step8/show_ipv6_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -118,6 +118,9 @@
|
||||
--- rt4/step7/show_ipv6_route.ref 2020-09-25 17:52:03.854026287 -0300
|
||||
+++ rt4/step8/show_ipv6_route.ref 2020-09-25 17:53:21.843045865 -0300
|
||||
@@ -148,6 +148,9 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
@ -10,15 +10,3 @@
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -125,7 +128,10 @@
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt6",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt4/step7/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt4/step8/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -119,6 +119,50 @@
|
||||
--- rt4/step7/show_mpls_table.ref 2020-09-25 17:52:01.385994037 -0300
|
||||
+++ rt4/step8/show_mpls_table.ref 2020-09-25 17:53:19.371013534 -0300
|
||||
@@ -171,6 +171,50 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- rt4/step8/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt4/step9/show_mpls_table.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
@@ -119,15 +119,15 @@
|
||||
--- rt4/step8/show_mpls_table.ref 2020-09-25 17:53:19.371013534 -0300
|
||||
+++ rt4/step9/show_mpls_table.ref 2020-09-25 17:54:37.064030042 -0300
|
||||
@@ -171,15 +171,15 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -19,7 +19,7 @@
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
@@ -137,19 +137,19 @@
|
||||
@@ -189,19 +189,19 @@
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
@ -43,7 +43,7 @@
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
@@ -159,19 +159,19 @@
|
||||
@@ -211,19 +211,19 @@
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
@ -67,7 +67,7 @@
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
@@ -181,19 +181,19 @@
|
||||
@@ -233,19 +233,19 @@
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
@ -91,7 +91,7 @@
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
@@ -203,7 +203,7 @@
|
||||
@@ -255,7 +255,7 @@
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
|
@ -15,6 +15,9 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt3-1",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
16010
|
||||
]
|
||||
@ -25,10 +28,21 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt3-2",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
16010
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.6.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
@ -91,6 +105,9 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt3-1",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@ -101,10 +118,25 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt3-2",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.6.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16020,
|
||||
16030
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
@ -137,10 +169,7 @@
|
||||
"ip":"10.0.8.6",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt6",
|
||||
"active":true,
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -174,10 +203,7 @@
|
||||
"ip":"10.0.6.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true,
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -197,13 +223,27 @@
|
||||
"ip":"10.0.4.3",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt3-1",
|
||||
"active":true
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"fib":true,
|
||||
"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
|
||||
}
|
||||
]
|
||||
@ -309,13 +349,30 @@
|
||||
{
|
||||
"ip":"10.0.4.3",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt3-1"
|
||||
"interfaceName":"eth-rt3-1",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.5.3",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt3-2",
|
||||
"active":true
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.6.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16020
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -331,12 +388,29 @@
|
||||
"ip":"10.0.4.3",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt3-1",
|
||||
"active":true
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.5.3",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt3-2"
|
||||
"interfaceName":"eth-rt3-2",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"ip":"10.0.6.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16020
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -14,6 +14,9 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt3-1",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
16011
|
||||
]
|
||||
@ -23,10 +26,20 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt3-2",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
16011
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
@ -43,7 +56,7 @@
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt3-1",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16021
|
||||
@ -52,7 +65,7 @@
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4",
|
||||
"interfaceName":"eth-rt3-1",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16021
|
||||
@ -85,6 +98,9 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt3-1",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@ -94,10 +110,24 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt3-2",
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16021,
|
||||
16031
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
@ -128,10 +158,7 @@
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt6",
|
||||
"active":true,
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -163,10 +190,7 @@
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true,
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -7,13 +7,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16010,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.5.3"
|
||||
"nexthop":"10.0.5.3",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16010,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.4.3"
|
||||
"nexthop":"10.0.4.3",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"nexthop":"10.0.6.4"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -25,13 +38,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16011,
|
||||
"installed":true,
|
||||
"interface":"eth-rt3-2"
|
||||
"interface":"eth-rt3-2",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16011,
|
||||
"installed":true,
|
||||
"interface":"eth-rt3-1"
|
||||
"interface":"eth-rt3-1",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"interface":"eth-rt4"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -91,13 +117,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.5.3"
|
||||
"nexthop":"10.0.5.3",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.4.3"
|
||||
"nexthop":"10.0.4.3",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16020,
|
||||
"nexthop":"10.0.6.4"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -109,13 +148,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
"interface":"eth-rt3-2"
|
||||
"interface":"eth-rt3-2",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
"interface":"eth-rt3-1"
|
||||
"interface":"eth-rt3-1",
|
||||
"backupIndex":[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"backupNexthops":[
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16021,
|
||||
"interface":"eth-rt4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -1,15 +1,54 @@
|
||||
--- rt5/step3/show_ip_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt5/step4/show_ip_route.ref 2020-08-31 22:42:48.843561366 -0300
|
||||
@@ -69,7 +69,7 @@
|
||||
--- rt5/step3/show_ip_route.ref 2020-09-25 17:48:05.950922766 -0300
|
||||
+++ rt5/step4/show_ip_route.ref 2020-09-25 17:49:02.363657616 -0300
|
||||
@@ -81,10 +81,7 @@
|
||||
"ip":"10.0.6.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16020
|
||||
+ 3
|
||||
]
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
@@ -126,9 +126,6 @@
|
||||
}
|
||||
@@ -105,9 +102,6 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt3-1",
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@@ -118,25 +112,10 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt3-2",
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "ip":"10.0.6.4",
|
||||
- "afi":"ipv4",
|
||||
- "interfaceName":"eth-rt4",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16020,
|
||||
- 16030
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -158,9 +137,6 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
@ -19,15 +58,68 @@
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -137,10 +134,7 @@
|
||||
"ip":"10.0.8.6",
|
||||
@@ -349,30 +325,13 @@
|
||||
{
|
||||
"ip":"10.0.4.3",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt6",
|
||||
- "interfaceName":"eth-rt3-1",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
+ "interfaceName":"eth-rt3-1"
|
||||
},
|
||||
{
|
||||
"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":[
|
||||
- 3
|
||||
- 16020
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -388,29 +347,12 @@
|
||||
"ip":"10.0.4.3",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt3-1",
|
||||
- "active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
"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
|
||||
- ]
|
||||
+ "interfaceName":"eth-rt3-2"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,15 +1,53 @@
|
||||
--- rt5/step3/show_ipv6_route.ref 2020-08-31 22:42:48.839561398 -0300
|
||||
+++ rt5/step4/show_ipv6_route.ref 2020-08-31 22:42:48.843561366 -0300
|
||||
@@ -55,7 +55,7 @@
|
||||
--- rt5/step3/show_ipv6_route.ref 2020-09-25 17:48:07.218939274 -0300
|
||||
+++ rt5/step4/show_ipv6_route.ref 2020-09-25 17:49:03.599673726 -0300
|
||||
@@ -57,10 +57,7 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16021
|
||||
+ 3
|
||||
]
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
@@ -118,9 +118,6 @@
|
||||
"fib":true,
|
||||
@@ -98,9 +95,6 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt3-1",
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@@ -110,24 +104,10 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt3-2",
|
||||
"active":true,
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "afi":"ipv6",
|
||||
- "interfaceName":"eth-rt4",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16021,
|
||||
- 16031
|
||||
- ]
|
||||
- }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -148,9 +128,6 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
@ -19,15 +57,3 @@
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -128,10 +125,7 @@
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt6",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 3
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,27 +1,88 @@
|
||||
--- rt5/step3/show_mpls_table.ref 2020-08-31 22:42:48.843561366 -0300
|
||||
+++ rt5/step4/show_mpls_table.ref 2020-08-31 22:42:48.843561366 -0300
|
||||
@@ -53,7 +53,7 @@
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
--- rt5/step3/show_mpls_table.ref 2020-09-25 17:48:04.626905528 -0300
|
||||
+++ rt5/step4/show_mpls_table.ref 2020-09-25 17:49:01.159641924 -0300
|
||||
@@ -76,12 +76,6 @@
|
||||
"outLabel":16020,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.4.3"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16020,
|
||||
+ "outLabel":3,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.6.4"
|
||||
}
|
||||
@@ -77,7 +77,7 @@
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16021,
|
||||
+ "outLabel":3,
|
||||
"installed":true,
|
||||
"interface":"eth-rt4"
|
||||
}
|
||||
@@ -119,50 +119,6 @@
|
||||
- "installed":true,
|
||||
- "nexthop":"10.0.6.4"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -100,12 +94,6 @@
|
||||
"outLabel":16021,
|
||||
"installed":true,
|
||||
"interface":"eth-rt3-1"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16021,
|
||||
- "installed":true,
|
||||
- "interface":"eth-rt4"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -117,26 +105,13 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.5.3",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
+ "nexthop":"10.0.5.3"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.4.3",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- }
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16020,
|
||||
- "nexthop":"10.0.6.4"
|
||||
+ "nexthop":"10.0.4.3"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -148,70 +123,13 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt3-2",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
+ "interface":"eth-rt3-2"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt3-1",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- }
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16021,
|
||||
- "interface":"eth-rt4"
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
- "16040":{
|
||||
- "inLabel":16040,
|
||||
- "installed":true,
|
||||
@ -63,9 +124,7 @@
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "interface":"eth-rt6"
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
"16060":{
|
||||
"inLabel":16060,
|
||||
"installed":true,
|
||||
+ "interface":"eth-rt3-1"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -1,15 +1,54 @@
|
||||
--- rt5/step4/show_ip_route.ref 2020-08-31 22:42:48.843561366 -0300
|
||||
+++ rt5/step5/show_ip_route.ref 2020-08-31 22:42:48.843561366 -0300
|
||||
@@ -69,7 +69,7 @@
|
||||
--- rt5/step4/show_ip_route.ref 2020-09-25 17:49:02.363657616 -0300
|
||||
+++ rt5/step5/show_ip_route.ref 2020-09-25 17:50:13.012578918 -0300
|
||||
@@ -81,7 +81,10 @@
|
||||
"ip":"10.0.6.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 3
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16020
|
||||
]
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
@@ -126,6 +126,9 @@
|
||||
}
|
||||
@@ -102,6 +105,9 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt3-1",
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@@ -112,10 +118,25 @@
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt3-2",
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "ip":"10.0.6.4",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt4",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16020,
|
||||
+ 16030
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -137,6 +158,9 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
@ -19,14 +58,67 @@
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -134,7 +137,10 @@
|
||||
"ip":"10.0.8.6",
|
||||
@@ -325,13 +349,30 @@
|
||||
{
|
||||
"ip":"10.0.4.3",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt6",
|
||||
- "interfaceName":"eth-rt3-1"
|
||||
+ "interfaceName":"eth-rt3-1",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.5.3",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt3-2",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "ip":"10.0.6.4",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt4",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ 16020
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -347,12 +388,29 @@
|
||||
"ip":"10.0.4.3",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt3-1",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"ip":"10.0.5.3",
|
||||
"afi":"ipv4",
|
||||
- "interfaceName":"eth-rt3-2"
|
||||
+ "interfaceName":"eth-rt3-2",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "ip":"10.0.6.4",
|
||||
+ "afi":"ipv4",
|
||||
+ "interfaceName":"eth-rt4",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16020
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
|
@ -1,15 +1,53 @@
|
||||
--- rt5/step4/show_ipv6_route.ref 2020-08-31 22:42:48.843561366 -0300
|
||||
+++ rt5/step5/show_ipv6_route.ref 2020-08-31 22:42:48.843561366 -0300
|
||||
@@ -55,7 +55,7 @@
|
||||
--- rt5/step4/show_ipv6_route.ref 2020-09-25 17:49:03.599673726 -0300
|
||||
+++ rt5/step5/show_ipv6_route.ref 2020-09-25 17:50:14.248595046 -0300
|
||||
@@ -57,7 +57,10 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 3
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16021
|
||||
]
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
@@ -118,6 +118,9 @@
|
||||
"fib":true,
|
||||
@@ -95,6 +98,9 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt3-1",
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
@@ -104,10 +110,24 @@
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt3-2",
|
||||
"active":true,
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ],
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
}
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "afi":"ipv6",
|
||||
+ "interfaceName":"eth-rt4",
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16021,
|
||||
+ 16031
|
||||
+ ]
|
||||
+ }
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -128,6 +148,9 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
@ -19,15 +57,3 @@
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -125,7 +128,10 @@
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt6",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,27 +1,89 @@
|
||||
--- rt5/step4/show_mpls_table.ref 2020-08-31 22:42:48.843561366 -0300
|
||||
+++ rt5/step5/show_mpls_table.ref 2020-08-31 22:42:48.843561366 -0300
|
||||
@@ -53,7 +53,7 @@
|
||||
},
|
||||
{
|
||||
--- rt5/step4/show_mpls_table.ref 2020-09-25 17:49:01.159641924 -0300
|
||||
+++ rt5/step5/show_mpls_table.ref 2020-09-25 17:50:11.696561748 -0300
|
||||
@@ -69,6 +69,12 @@
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
"outLabel":16020,
|
||||
"installed":true,
|
||||
+ "nexthop":"10.0.6.4"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16020,
|
||||
+ "installed":true,
|
||||
"nexthop":"10.0.5.3"
|
||||
},
|
||||
{
|
||||
@@ -87,6 +93,12 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16021,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.6.4"
|
||||
}
|
||||
@@ -77,7 +77,7 @@
|
||||
+ "interface":"eth-rt4"
|
||||
+ },
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16021,
|
||||
+ "installed":true,
|
||||
"interface":"eth-rt3-2"
|
||||
},
|
||||
{
|
||||
@@ -105,13 +117,26 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.5.3"
|
||||
+ "nexthop":"10.0.5.3",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
+ "outLabel":16021,
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
"interface":"eth-rt4"
|
||||
}
|
||||
@@ -119,6 +119,50 @@
|
||||
- "nexthop":"10.0.4.3"
|
||||
+ "nexthop":"10.0.4.3",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16020,
|
||||
+ "nexthop":"10.0.6.4"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -123,13 +148,70 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt3-2"
|
||||
+ "interface":"eth-rt3-2",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt3-1"
|
||||
+ "interface":"eth-rt3-1",
|
||||
+ "backupIndex":[
|
||||
+ 0
|
||||
+ ]
|
||||
+ }
|
||||
+ ],
|
||||
+ "backupNexthops":[
|
||||
+ {
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":16021,
|
||||
+ "interface":"eth-rt4"
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
+ "16040":{
|
||||
+ "inLabel":16040,
|
||||
+ "installed":true,
|
||||
@ -63,9 +125,6 @@
|
||||
+ "type":"SR (IS-IS)",
|
||||
+ "outLabel":3,
|
||||
+ "interface":"eth-rt6"
|
||||
+ }
|
||||
+ ]
|
||||
+ },
|
||||
"16060":{
|
||||
"inLabel":16060,
|
||||
"installed":true,
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- rt5/step5/show_mpls_table.ref 2020-08-31 22:42:48.843561366 -0300
|
||||
+++ rt5/step6/show_mpls_table.ref 2020-08-31 22:42:48.843561366 -0300
|
||||
--- rt5/step5/show_mpls_table.ref 2020-09-25 17:50:11.696561748 -0300
|
||||
+++ rt5/step6/show_mpls_table.ref 2020-09-25 17:51:14.685383977 -0300
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
- "16010":{
|
||||
@ -9,7 +9,7 @@
|
||||
"installed":true,
|
||||
"nexthops":[
|
||||
{
|
||||
@@ -17,8 +17,8 @@
|
||||
@@ -30,8 +30,8 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -20,7 +20,7 @@
|
||||
"installed":true,
|
||||
"nexthops":[
|
||||
{
|
||||
@@ -35,8 +35,8 @@
|
||||
@@ -61,56 +61,56 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -31,7 +31,25 @@
|
||||
"installed":true,
|
||||
"nexthops":[
|
||||
{
|
||||
@@ -59,8 +59,8 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16020,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.6.4"
|
||||
+ "nexthop":"10.0.5.3"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16020,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.5.3"
|
||||
+ "nexthop":"10.0.4.3"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16020,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.4.3"
|
||||
+ "nexthop":"10.0.6.4"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -42,7 +60,25 @@
|
||||
"installed":true,
|
||||
"nexthops":[
|
||||
{
|
||||
@@ -83,8 +83,8 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16021,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt4"
|
||||
+ "interface":"eth-rt3-2"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16021,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt3-2"
|
||||
+ "interface":"eth-rt3-1"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16021,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt3-1"
|
||||
+ "interface":"eth-rt4"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -53,7 +89,7 @@
|
||||
"installed":true,
|
||||
"nexthops":[
|
||||
{
|
||||
@@ -101,8 +101,8 @@
|
||||
@@ -140,8 +140,8 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -64,7 +100,7 @@
|
||||
"installed":true,
|
||||
"nexthops":[
|
||||
{
|
||||
@@ -119,8 +119,8 @@
|
||||
@@ -171,8 +171,8 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -75,7 +111,7 @@
|
||||
"installed":true,
|
||||
"nexthops":[
|
||||
{
|
||||
@@ -141,8 +141,8 @@
|
||||
@@ -193,8 +193,8 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -86,7 +122,7 @@
|
||||
"installed":true,
|
||||
"nexthops":[
|
||||
{
|
||||
@@ -163,8 +163,8 @@
|
||||
@@ -215,8 +215,8 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -97,7 +133,7 @@
|
||||
"installed":true,
|
||||
"nexthops":[
|
||||
{
|
||||
@@ -185,8 +185,8 @@
|
||||
@@ -237,8 +237,8 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -61,10 +61,7 @@
|
||||
"ip":"10.0.8.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true,
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -98,10 +95,7 @@
|
||||
"ip":"10.0.7.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true,
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -135,10 +129,7 @@
|
||||
"ip":"10.0.8.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true,
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -172,10 +163,7 @@
|
||||
"ip":"10.0.7.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true,
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -12,7 +12,7 @@
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4",
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16011
|
||||
@ -21,7 +21,7 @@
|
||||
{
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true,
|
||||
"labels":[
|
||||
16011
|
||||
@ -57,10 +57,7 @@
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true,
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -92,10 +89,7 @@
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true,
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -127,10 +121,7 @@
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5",
|
||||
"active":true,
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -162,10 +153,7 @@
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true,
|
||||
"labels":[
|
||||
3
|
||||
]
|
||||
"active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -7,13 +7,13 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16010,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.8.5"
|
||||
"nexthop":"10.0.7.4"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16010,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.7.4"
|
||||
"nexthop":"10.0.8.5"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -25,13 +25,13 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16011,
|
||||
"installed":true,
|
||||
"interface":"eth-rt5"
|
||||
"interface":"eth-rt4"
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16011,
|
||||
"installed":true,
|
||||
"interface":"eth-rt4"
|
||||
"interface":"eth-rt5"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -1,15 +1,18 @@
|
||||
--- rt6/step3/show_ip_route.ref 2020-08-31 22:42:48.843561366 -0300
|
||||
+++ rt6/step4/show_ip_route.ref 2020-08-31 22:42:48.847561334 -0300
|
||||
@@ -16,7 +16,7 @@
|
||||
--- rt6/step3/show_ip_route.ref 2020-09-25 17:48:06.154925422 -0300
|
||||
+++ rt6/step4/show_ip_route.ref 2020-09-25 17:49:02.583660484 -0300
|
||||
@@ -14,10 +14,7 @@
|
||||
"ip":"10.0.7.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16010
|
||||
+ 3
|
||||
]
|
||||
- ]
|
||||
+ "active":true
|
||||
},
|
||||
{
|
||||
@@ -50,9 +50,6 @@
|
||||
"fib":true,
|
||||
@@ -50,9 +47,6 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
@ -19,19 +22,7 @@
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -61,10 +58,7 @@
|
||||
"ip":"10.0.8.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 3
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -124,9 +118,6 @@
|
||||
@@ -118,9 +112,6 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
@ -41,15 +32,3 @@
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -135,10 +126,7 @@
|
||||
"ip":"10.0.8.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 3
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,15 +1,18 @@
|
||||
--- rt6/step3/show_ipv6_route.ref 2020-08-31 22:42:48.843561366 -0300
|
||||
+++ rt6/step4/show_ipv6_route.ref 2020-08-31 22:42:48.847561334 -0300
|
||||
@@ -15,7 +15,7 @@
|
||||
--- rt6/step3/show_ipv6_route.ref 2020-09-25 17:48:07.434942087 -0300
|
||||
+++ rt6/step4/show_ipv6_route.ref 2020-09-25 17:49:03.847676958 -0300
|
||||
@@ -22,10 +22,7 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 16011
|
||||
+ 3
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -47,9 +47,6 @@
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -47,9 +44,6 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
@ -19,19 +22,7 @@
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -57,10 +54,7 @@
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 3
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -117,9 +111,6 @@
|
||||
@@ -111,9 +105,6 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
@ -41,15 +32,3 @@
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -127,10 +118,7 @@
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5",
|
||||
- "active":true,
|
||||
- "labels":[
|
||||
- 3
|
||||
- ]
|
||||
+ "active":true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,70 +1,32 @@
|
||||
--- rt6/step3/show_mpls_table.ref 2020-08-31 22:42:48.843561366 -0300
|
||||
+++ rt6/step4/show_mpls_table.ref 2020-08-31 22:42:48.847561334 -0300
|
||||
@@ -11,7 +11,7 @@
|
||||
},
|
||||
{
|
||||
--- rt6/step3/show_mpls_table.ref 2020-09-25 17:48:04.842908340 -0300
|
||||
+++ rt6/step4/show_mpls_table.ref 2020-09-25 17:49:01.363644584 -0300
|
||||
@@ -7,12 +7,6 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16010,
|
||||
"installed":true,
|
||||
- "nexthop":"10.0.7.4"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16010,
|
||||
+ "outLabel":3,
|
||||
"installed":true,
|
||||
"nexthop":"10.0.7.4"
|
||||
}
|
||||
@@ -29,53 +29,9 @@
|
||||
},
|
||||
{
|
||||
"type":"SR (IS-IS)",
|
||||
- "outLabel":16011,
|
||||
- "installed":true,
|
||||
- "interface":"eth-rt4"
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
- "16020":{
|
||||
- "inLabel":16020,
|
||||
- "installed":true,
|
||||
- "nexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16020,
|
||||
- "installed":true,
|
||||
- "nexthop":"10.0.7.4",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- }
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
"outLabel":3,
|
||||
- "nexthop":"10.0.8.5"
|
||||
- }
|
||||
- ]
|
||||
- },
|
||||
- "16021":{
|
||||
- "inLabel":16021,
|
||||
- "installed":true,
|
||||
- "nexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16021,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt4",
|
||||
- "backupIndex":[
|
||||
- 0
|
||||
- ]
|
||||
- }
|
||||
- ],
|
||||
- "backupNexthops":[
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":3,
|
||||
- "interface":"eth-rt5"
|
||||
+ "interface":"eth-rt4"
|
||||
"nexthop":"10.0.8.5"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -123,50 +79,6 @@
|
||||
@@ -25,12 +19,6 @@
|
||||
"type":"SR (IS-IS)",
|
||||
"outLabel":16011,
|
||||
"installed":true,
|
||||
- "interface":"eth-rt4"
|
||||
- },
|
||||
- {
|
||||
- "type":"SR (IS-IS)",
|
||||
- "outLabel":16011,
|
||||
- "installed":true,
|
||||
"interface":"eth-rt5"
|
||||
}
|
||||
]
|
||||
@@ -123,50 +111,6 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -1,15 +1,18 @@
|
||||
--- rt6/step4/show_ip_route.ref 2020-08-31 22:42:48.847561334 -0300
|
||||
+++ rt6/step5/show_ip_route.ref 2020-08-31 22:42:48.847561334 -0300
|
||||
@@ -16,7 +16,7 @@
|
||||
--- rt6/step4/show_ip_route.ref 2020-09-25 17:49:02.583660484 -0300
|
||||
+++ rt6/step5/show_ip_route.ref 2020-09-25 17:50:13.220581632 -0300
|
||||
@@ -14,7 +14,10 @@
|
||||
"ip":"10.0.7.4",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 3
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16010
|
||||
]
|
||||
+ ]
|
||||
},
|
||||
{
|
||||
@@ -50,6 +50,9 @@
|
||||
"fib":true,
|
||||
@@ -47,6 +50,9 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
@ -19,19 +22,7 @@
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -58,7 +61,10 @@
|
||||
"ip":"10.0.8.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -118,6 +124,9 @@
|
||||
@@ -112,6 +118,9 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
@ -41,15 +32,3 @@
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -126,7 +135,10 @@
|
||||
"ip":"10.0.8.5",
|
||||
"afi":"ipv4",
|
||||
"interfaceName":"eth-rt5",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,15 +1,18 @@
|
||||
--- rt6/step4/show_ipv6_route.ref 2020-08-31 22:42:48.847561334 -0300
|
||||
+++ rt6/step5/show_ipv6_route.ref 2020-08-31 22:42:48.847561334 -0300
|
||||
@@ -15,7 +15,7 @@
|
||||
--- rt6/step4/show_ipv6_route.ref 2020-09-25 17:49:03.847676958 -0300
|
||||
+++ rt6/step5/show_ipv6_route.ref 2020-09-25 17:50:14.456597760 -0300
|
||||
@@ -22,7 +22,10 @@
|
||||
"fib":true,
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt4",
|
||||
"active":true,
|
||||
"labels":[
|
||||
- 3
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 16011
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -47,6 +47,9 @@
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -44,6 +47,9 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
@ -19,19 +22,7 @@
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -54,7 +57,10 @@
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -111,6 +117,9 @@
|
||||
@@ -105,6 +111,9 @@
|
||||
"active":true,
|
||||
"backupIndex":[
|
||||
0
|
||||
@ -41,15 +32,3 @@
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -118,7 +127,10 @@
|
||||
{
|
||||
"afi":"ipv6",
|
||||
"interfaceName":"eth-rt5",
|
||||
- "active":true
|
||||
+ "active":true,
|
||||
+ "labels":[
|
||||
+ 3
|
||||
+ ]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user