Add more nd_print_trunc() calls

Update the output of some tests accordingly.
This commit is contained in:
Francois-Xavier Le Bail 2018-05-06 10:33:07 +02:00
parent 14cab26a1c
commit 00ecef01d7
38 changed files with 543 additions and 548 deletions

View File

@ -60,6 +60,6 @@ ah_print(netdissect_options *ndo, const u_char *bp)
return sizeof(struct ah) + sumlen;
trunc:
ND_PRINT("[|AH]");
nd_print_trunc(ndo);
return -1;
}

View File

@ -403,5 +403,5 @@ bfd_print(netdissect_options *ndo, const u_char *pptr,
return;
trunc:
ND_PRINT("[|BFD]");
nd_print_trunc(ndo);
}

View File

@ -2595,7 +2595,7 @@ bgp_capabilities_print(netdissect_options *ndo,
return;
trunc:
ND_PRINT("[|BGP]");
nd_print_trunc(ndo);
}
static void
@ -2666,7 +2666,7 @@ bgp_open_print(netdissect_options *ndo,
}
return;
trunc:
ND_PRINT("[|BGP]");
nd_print_trunc(ndo);
}
static void
@ -2854,7 +2854,7 @@ bgp_update_print(netdissect_options *ndo,
}
return;
trunc:
ND_PRINT("[|BGP]");
nd_print_trunc(ndo);
}
static void
@ -2972,7 +2972,7 @@ bgp_notification_print(netdissect_options *ndo,
return;
trunc:
ND_PRINT("[|BGP]");
nd_print_trunc(ndo);
}
static void
@ -3004,7 +3004,7 @@ bgp_route_refresh_print(netdissect_options *ndo,
return;
trunc:
ND_PRINT("[|BGP]");
nd_print_trunc(ndo);
}
static int
@ -3047,7 +3047,7 @@ bgp_pdu_print(netdissect_options *ndo,
}
return 1;
trunc:
ND_PRINT("[|BGP]");
nd_print_trunc(ndo);
return 0;
}
@ -3093,7 +3093,7 @@ bgp_print(netdissect_options *ndo,
bgp_header = (const struct bgp *)p;
if (start != p)
ND_PRINT(" [|BGP]");
nd_print_trunc(ndo);
hlen = EXTRACT_BE_U_2(bgp_header->bgp_len);
if (hlen < BGP_SIZE) {
@ -3119,5 +3119,5 @@ bgp_print(netdissect_options *ndo,
return;
trunc:
ND_PRINT(" [|BGP]");
nd_print_trunc(ndo);
}

View File

@ -296,5 +296,5 @@ eap_print(netdissect_options *ndo,
return;
trunc:
ND_PRINT("\n\t[|EAP]");
nd_print_trunc(ndo);
}

View File

@ -687,7 +687,7 @@ esp_print(netdissect_options *ndo,
ep = ndo->ndo_snapend;
if ((const u_char *)(esp + 1) >= ep) {
ND_PRINT("[|ESP]");
nd_print_trunc(ndo);
goto fail;
}
ND_PRINT("ESP(spi=0x%08x", EXTRACT_BE_U_4(esp->esp_spi));

View File

@ -857,7 +857,7 @@ hncp_print_rec(netdissect_options *ndo,
return;
trunc:
ND_PRINT("%s", "[|hncp]");
nd_print_trunc(ndo);
return;
invalid:

View File

@ -187,7 +187,7 @@ hbhopt_print(netdissect_options *ndo, const u_char *bp)
return(hbhlen);
trunc:
ND_PRINT("[|HBH]");
nd_print_trunc(ndo);
return(-1);
}
@ -210,6 +210,6 @@ dstopt_print(netdissect_options *ndo, const u_char *bp)
return(dstoptlen);
trunc:
ND_PRINT("[|DSTOPT]");
nd_print_trunc(ndo);
return(-1);
}

View File

@ -65,6 +65,6 @@ ipcomp_print(netdissect_options *ndo, const u_char *bp)
return;
trunc:
ND_PRINT("[|IPCOMP]");
nd_print_trunc(ndo);
return;
}

View File

@ -1663,5 +1663,5 @@ lldp_print(netdissect_options *ndo,
}
return;
trunc:
ND_PRINT("\n\t[|LLDP]");
nd_print_trunc(ndo);
}

View File

@ -247,5 +247,5 @@ mpcp_print(netdissect_options *ndo, const u_char *pptr, u_int length)
return;
trunc:
ND_PRINT("\n\t[|MPCP]");
nd_print_trunc(ndo);
}

View File

@ -211,5 +211,5 @@ mpls_print(netdissect_options *ndo, const u_char *bp, u_int length)
return;
trunc:
ND_PRINT("[|MPLS]");
nd_print_trunc(ndo);
}

View File

@ -71,5 +71,5 @@ otv_print(netdissect_options *ndo, const u_char *bp, u_int len)
return;
trunc:
ND_PRINT(" [|OTV]");
nd_print_trunc(ndo);
}

View File

@ -428,7 +428,7 @@ pgm_print(netdissect_options *ndo,
* make sure there's enough for the first option header
*/
if (!ND_TTEST_LEN(bp, PGM_MIN_OPT_LEN)) {
ND_PRINT("[|OPT]");
nd_print_trunc(ndo);
return;
}
@ -463,7 +463,7 @@ pgm_print(netdissect_options *ndo,
return;
}
if (!ND_TTEST_2(bp)) {
ND_PRINT(" [|OPT]");
nd_print_trunc(ndo);
return;
}
opt_type = EXTRACT_U_1(bp);
@ -480,7 +480,7 @@ pgm_print(netdissect_options *ndo,
return;
}
if (!ND_TTEST_LEN(bp, opt_len - 2)) {
ND_PRINT(" [|OPT]");
nd_print_trunc(ndo);
return;
}
@ -840,7 +840,7 @@ pgm_print(netdissect_options *ndo,
return;
trunc:
ND_PRINT("[|pgm]");
nd_print_trunc(ndo);
if (ch != '\0')
ND_PRINT(">");
}

View File

@ -971,5 +971,5 @@ sflow_print(netdissect_options *ndo,
return;
trunc:
ND_PRINT("[|SFLOW]");
nd_print_trunc(ndo);
}

View File

@ -208,5 +208,5 @@ vqp_print(netdissect_options *ndo, const u_char *pptr, u_int len)
}
return;
trunc:
ND_PRINT("\n\t[|VQP]");
nd_print_trunc(ndo);
}

View File

@ -22,7 +22,7 @@
RD: 18826:610 (= 0.0.2.98), 172.17.33.32/28, label:1026 (bottom)
0x0000: 0001 800c 0000 0000 0001 0000 ac11 0005
0x0010: 0074 0040 2100 0049 8a00 0002 62ac 1121
0x0020: 20 [|BGP]
0x0020: 20 [|bgp]
Update Message (2), length: 105
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -84,7 +84,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP]
Unknown TLV (172), length 4352 [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -171,7 +171,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -258,7 +258,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -345,7 +345,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -432,7 +432,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -519,7 +519,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -606,7 +606,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -693,7 +693,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -780,7 +780,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -867,7 +867,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -954,7 +954,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1041,7 +1041,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1128,7 +1128,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1215,7 +1215,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1302,7 +1302,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1389,7 +1389,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1476,7 +1476,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1563,7 +1563,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1650,7 +1650,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1737,7 +1737,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1824,7 +1824,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1911,7 +1911,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1998,7 +1998,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2085,7 +2085,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2172,7 +2172,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2259,7 +2259,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2346,7 +2346,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2433,7 +2433,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2520,7 +2520,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2607,7 +2607,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2694,7 +2694,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2781,7 +2781,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2868,7 +2868,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2955,7 +2955,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3042,7 +3042,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3129,7 +3129,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3216,7 +3216,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3303,7 +3303,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3390,7 +3390,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3477,7 +3477,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3564,7 +3564,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3651,7 +3651,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3738,7 +3738,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3825,7 +3825,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3912,7 +3912,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3999,7 +3999,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4086,7 +4086,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4173,7 +4173,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4260,7 +4260,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4347,7 +4347,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4434,7 +4434,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4521,7 +4521,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4608,7 +4608,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4695,7 +4695,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4782,7 +4782,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4869,7 +4869,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4956,7 +4956,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5043,7 +5043,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5130,7 +5130,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5217,7 +5217,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5304,7 +5304,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5391,7 +5391,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5478,7 +5478,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5565,7 +5565,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5652,7 +5652,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5739,7 +5739,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5826,7 +5826,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5913,7 +5913,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6000,7 +6000,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6087,7 +6087,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6174,7 +6174,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6261,7 +6261,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6348,7 +6348,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6435,7 +6435,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6522,7 +6522,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6609,7 +6609,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6696,7 +6696,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6783,7 +6783,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6870,7 +6870,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6957,7 +6957,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7044,7 +7044,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7131,7 +7131,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7218,7 +7218,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7305,7 +7305,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7392,7 +7392,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7479,7 +7479,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7566,7 +7566,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7653,7 +7653,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7740,7 +7740,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7827,7 +7827,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7914,7 +7914,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8001,7 +8001,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8088,7 +8088,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8175,7 +8175,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8262,7 +8262,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8349,7 +8349,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8436,7 +8436,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8523,7 +8523,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8610,7 +8610,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8697,7 +8697,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8784,7 +8784,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8871,7 +8871,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8957,7 +8957,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -9044,7 +9044,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -9131,7 +9131,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -9218,7 +9218,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -9305,7 +9305,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -9392,7 +9392,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -9479,7 +9479,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -9566,7 +9566,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -9653,7 +9653,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -9740,7 +9740,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02

View File

@ -22,7 +22,7 @@
RD: 18826:610 (= 0.0.2.98), 172.17.33.32/28, label:1026 (bottom)
0x0000: 0001 800c 0000 0000 0001 0000 ac11 0005
0x0010: 0074 0040 2100 0049 8a00 0002 62ac 1121
0x0020: 20 [|BGP]
0x0020: 20 [|bgp]
Update Message (2), length: 105
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -84,7 +84,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP]
Unknown TLV (172), length 4352 [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -171,7 +171,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -258,7 +258,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -345,7 +345,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -432,7 +432,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -519,7 +519,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -606,7 +606,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -693,7 +693,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -780,7 +780,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -867,7 +867,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -954,7 +954,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1041,7 +1041,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1128,7 +1128,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1215,7 +1215,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1302,7 +1302,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1389,7 +1389,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1476,7 +1476,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1563,7 +1563,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1650,7 +1650,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1737,7 +1737,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1824,7 +1824,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1911,7 +1911,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -1998,7 +1998,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2085,7 +2085,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2172,7 +2172,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2259,7 +2259,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2346,7 +2346,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2433,7 +2433,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2520,7 +2520,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2607,7 +2607,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2694,7 +2694,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2781,7 +2781,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2868,7 +2868,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -2955,7 +2955,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3042,7 +3042,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3129,7 +3129,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3216,7 +3216,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3303,7 +3303,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3390,7 +3390,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3477,7 +3477,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3564,7 +3564,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3651,7 +3651,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3738,7 +3738,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3825,7 +3825,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3912,7 +3912,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -3999,7 +3999,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4086,7 +4086,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4173,7 +4173,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4260,7 +4260,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4347,7 +4347,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4434,7 +4434,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4521,7 +4521,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4608,7 +4608,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4695,7 +4695,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4782,7 +4782,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4869,7 +4869,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -4956,7 +4956,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5043,7 +5043,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5130,7 +5130,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5217,7 +5217,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5304,7 +5304,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5391,7 +5391,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5478,7 +5478,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5565,7 +5565,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5652,7 +5652,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5739,7 +5739,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5826,7 +5826,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -5913,7 +5913,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6000,7 +6000,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6087,7 +6087,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6174,7 +6174,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6261,7 +6261,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6348,7 +6348,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6435,7 +6435,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6522,7 +6522,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6609,7 +6609,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6696,7 +6696,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6783,7 +6783,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6870,7 +6870,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -6957,7 +6957,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7044,7 +7044,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7131,7 +7131,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7218,7 +7218,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7305,7 +7305,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7392,7 +7392,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7479,7 +7479,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7566,7 +7566,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7653,7 +7653,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7740,7 +7740,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7827,7 +7827,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -7914,7 +7914,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8001,7 +8001,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8088,7 +8088,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8175,7 +8175,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8262,7 +8262,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8349,7 +8349,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8436,7 +8436,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8523,7 +8523,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8610,7 +8610,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8697,7 +8697,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8784,7 +8784,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8871,7 +8871,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -8957,7 +8957,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -9044,7 +9044,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -9131,7 +9131,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -9218,7 +9218,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -9305,7 +9305,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -9392,7 +9392,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -9479,7 +9479,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -9566,7 +9566,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -9653,7 +9653,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02
@ -9740,7 +9740,7 @@
target (0x0002), Flags [none]: 18826:2698 (= 0.0.10.138)
0x0000: 0002 498a 0000 0a8a
Accumulated IGP Metric (26), length: 4, Flags [O]:
Unknown TLV (172), length 4352[|BGP] [|BGP]
Unknown TLV (172), length 4352 [|bgp] [|bgp]
Update Message (2), length: 106
Origin (1), length: 1, Flags [T]: Incomplete
0x0000: 02

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,15 +1,15 @@
IP (tos 0x0, ttl 128, id 1467, offset 0, flags [DF], proto TCP (6), length 74)
196.59.48.65.14214 > 192.168.1.1.179: Flags [P.], cksum 0xbec1 (correct), seq 2470159403:2470159437, ack 160570221, win 8192, length 34: BGP
Update Message (2), length: 19[|BGP]
Update Message (2), length: 19 [|bgp]
IP (tos 0x0, ttl 64, id 39449, offset 0, flags [DF], proto TCP (6), length 74)
235.101.90.12.60082 > 192.168.1.1.179: Flags [P.], cksum 0x742d (correct), seq 1978178:1978212, ack 2473062416, win 4096, length 34: BGP
Update Message (2), length: 19[|BGP]
Update Message (2), length: 19 [|bgp]
IP (tos 0x0, ttl 128, id 43331, offset 0, flags [DF], proto TCP (6), length 74)
179.110.109.87.40936 > 192.168.1.1.179: Flags [P.], cksum 0xd82d (correct), seq 3014673177:3014673211, ack 1498443316, win 4096, length 34: BGP
Update Message (2), length: 19[|BGP]
Update Message (2), length: 19 [|bgp]
IP (tos 0x0, ttl 64, id 51082, offset 0, flags [DF], proto TCP (6), length 74)
114.227.144.98.32757 > 192.168.1.1.179: Flags [P.], cksum 0xb456 (correct), seq 1117364848:1117364882, ack 3778435416, win 4096, length 34: BGP
Update Message (2), length: 19[|BGP]
Update Message (2), length: 19 [|bgp]
IP (tos 0x0, ttl 64, id 51082, offset 0, flags [DF], proto TCP (6), length 74)
114.227.144.98.32757 > 192.168.1.1.179: Flags [P.], cksum 0xb456 (correct), seq 0:34, ack 1, win 4096, length 34: BGP
Update Message (2), length: 19[|BGP]
Update Message (2), length: 19 [|bgp]

View File

@ -6,4 +6,4 @@ IP (tos 0xc, ttl 254, id 21263, offset 0, flags [rsvd], proto TCP (6), length 51
Attribute Set (128), length: 7, Flags [OTPE+f]:
Origin AS: 148
Multi-Protocol Reach NLRI (14), length: 71, Flags [T+6]: [path attr too short]
Origin (1), length: 5invalid len[|BGP]
Origin (1), length: 5invalid len [|bgp]

View File

@ -6,4 +6,4 @@ IP (tos 0x0, ttl 254, id 40207, offset 0, flags [+, DF, rsvd], proto TCP (6), le
Attribute Set (128), length: 7, Flags [OTPE+f]:
Origin AS: 4067
Origin (1), length: 1: [path attr too short]
Origin (1), length: 19, Flags [+1]: [|BGP]
Origin (1), length: 19, Flags [+1]: [|bgp]

View File

@ -6,12 +6,12 @@ IP (tos 0xc, ttl 254, id 21263, offset 0, flags [rsvd], proto TCP (6), length 60
Attribute Set (128), length: 7, Flags [OTPE+f]:
Origin AS: 0
Multi-Protocol Unreach NLRI (15), length: 227, Flags [T+6]: [path attr too short]
AS Path (2), length: 5invalid len[|BGP] [|BGP]
Update Message (2), length: 45[|BGP] [|BGP]
AS Path (2), length: 5invalid len [|bgp] [|bgp]
Update Message (2), length: 45 [|bgp] [|bgp]
Update Message (2), length: 45
Withdrawn routes:
255.112.0.0/12
Attribute Set (128), length: 7, Flags [OTPE+f]:
Origin AS: 0
Multi-Protocol Reach NLRI (14), length: 227, Flags [T+6]: [path attr too short]
Origin (1), length: 132[|BGP]
Origin (1), length: 132 [|bgp]

View File

@ -1,2 +1 @@
EAP packet (0) v155, len 0
[|EAP]
EAP packet (0) v155, len 0 [|eap]

View File

@ -4,4 +4,4 @@ IP6 (flowlabel 0x01cc3, hlim 234, next-header UDP (17) payload length: 11025) 40
Unknown (4)
Unknown (4)
SNTP-servers (61956) (invalid)
[|hncp]
[|hncp]

View File

@ -1,2 +1 @@
LLDP, length 262130: 0000000000
[|LLDP]
LLDP, length 262130: 0000000000 [|lldp]

View File

@ -1,2 +1,2 @@
IP (tos 0x30, ttl 48, id 12336, offset 0, flags [none], proto Compressed IP (108), length 12336, bad cksum 3030 (->6942)!)
48.48.48.48 > 48.48.48.48: [|IPCOMP]
48.48.48.48 > 48.48.48.48: [|ipcomp]

View File

@ -1 +1 @@
IP6 3030:3030:3030:3030:3030:3030:3030:3030 > 3030:3030:3030:3030:3030:3030:3030:3030: HBH [|AH]
IP6 3030:3030:3030:3030:3030:3030:3030:3030 > 3030:3030:3030:3030:3030:3030:3030:3030: HBH [|ah]

View File

@ -1 +1 @@
IP6 (class 0x33, flowlabel 0x03030, hlim 48, next-header Options (0) payload length: 12336) 3030:3030:3030:3030:3030:3030:3030:3030 > 3030:3030:3030:3030:3030:3030:3030:3030: HBH [trunc] [|HBH]
IP6 (class 0x33, flowlabel 0x03030, hlim 48, next-header Options (0) payload length: 12336) 3030:3030:3030:3030:3030:3030:3030:3030 > 3030:3030:3030:3030:3030:3030:3030:3030: HBH [trunc] [|hbhopt]

View File

@ -1 +1 @@
IP6 3030:3030:3030:3030:3030:3030:3030:3030 > 3030:3030:3030:3030:3030:3030:3030:3030: HBH [|HBH]
IP6 3030:3030:3030:3030:3030:3030:3030:3030 > 3030:3030:3030:3030:3030:3030:3030:3030: HBH [|hbhopt]

View File

@ -1,4 +1,3 @@
LLDP, length 262130
Organization specific TLV (127), length 4: OUI IEEE 802.3 Private (0x00120f)
Max frame size Subtype (4)
[|LLDP]
Max frame size Subtype (4) [|lldp]

View File

@ -1,8 +1,7 @@
LLDP, length 262130
Management Address TLV (8), length 15
Management Address length 6, AFI Reserved (0), no AF printer !
Unknown Interface Numbering (10): 666137427
[|LLDP]
Unknown Interface Numbering (10): 666137427 [|lldp]
00:00:00:a0:d4:c3 > 06:04:e8:03:00:02, ethertype Unknown (0xb2a1), length 262144:
0x0000: 0200 efff e5ff 804f 006e 0026 0000 0000 .......O.n.&....
0x0010: 01 .

View File

@ -1,2 +1,2 @@
MPLS (label 197379, exp 0, ttl 48)
(label 197387, exp 5, [S], ttl 48)[|MPLS]
(label 197387, exp 5, [S], ttl 48) [|mpls]

View File

@ -7,4 +7,4 @@ IP 192.168.0.24.47808 > 192.168.0.134.47808: UDP, length 31
IP 192.168.0.18.47808 > 192.168.0.255.47808: UDP, length 24
IP 192.168.0.24.40896 > 192.168.0.134.47808: UDP, length 30
IP 192.168.0.24.47808 > 192.168.0.255.47808: UDP, length 20
IP 192.168.0.9.37123 > 97.34.1.224.8472: OTV, flags [I] (0x9d), overlay 12124160, [|OTV]
IP 192.168.0.9.37123 > 97.34.1.224.8472: OTV, flags [I] (0x9d), overlay 12124160, [|otv]

View File

@ -1,2 +1,2 @@
IP (tos 0x41,ECT(1), id 40256, offset 0, flags [none], proto PGM (113), length 768, options (unknown 89 [bad length 232]), bad cksum 5959 (->5afd)!)
89.121.89.107 > 89.89.89.89: 89.121.89.107.32322 > 89.89.89.89.500: PGM, length 24818 0x00ff7f010347 [|pgm]
89.121.89.107 > 89.89.89.89: 89.121.89.107.32322 > 89.89.89.89.500: PGM, length 24818 0x00ff7f010347 [|pgm]

View File

@ -1,2 +1,2 @@
IP (tos 0x41,ECT(1), id 0, offset 0, flags [none], proto PGM (113), length 32639, options (unknown 89 [bad length 232]), bad cksum 5959 (->9eb9)!)
128.121.89.107 > 89.89.16.63: 128.121.89.107.4 > 89.89.16.63.225: PGM, length 0 0x3414eb1f0022 UNKNOWN type 0x1f OPTS LEN 225 OPT_1F [13] OPT_06 [26] PATH_NLA [4] [|OPT]
128.121.89.107 > 89.89.16.63: 128.121.89.107.4 > 89.89.16.63.225: PGM, length 0 0x3414eb1f0022 UNKNOWN type 0x1f OPTS LEN 225 OPT_1F [13] OPT_06 [26] PATH_NLA [4] [|pgm]

View File

@ -57,4 +57,4 @@
Update Message (2), length: 30
Unknown Attribute (0), length: 3, Flags [+f]:
no Attribute 0 decoder
0x0000: 0001 05[|BGP]
0x0000: 0001 05 [|bgp]

View File

@ -1,4 +1,3 @@
IP (tos 0x0, ttl 17, id 40207, offset 0, flags [+, DF, rsvd], proto UDP (17), length 46, bad cksum 8f04 (->f897)!)
0.0.128.20.1589 > 12.251.167.8.62720:
VQPv1, unknown (127) Message, error-code unknown (31) (31), seq 0x80f90000, items 27, length 18
[|VQP]
VQPv1, unknown (127) Message, error-code unknown (31) (31), seq 0x80f90000, items 27, length 18 [|vqp]