]> The Tcpdump Group git mirrors - tcpdump/commitdiff
Add more nd_print_trunc() calls
authorFrancois-Xavier Le Bail <[email protected]>
Sun, 6 May 2018 08:33:07 +0000 (10:33 +0200)
committerFrancois-Xavier Le Bail <[email protected]>
Sun, 6 May 2018 09:26:45 +0000 (11:26 +0200)
Update the output of some tests accordingly.

38 files changed:
print-ah.c
print-bfd.c
print-bgp.c
print-eap.c
print-esp.c
print-hncp.c
print-ip6opts.c
print-ipcomp.c
print-lldp.c
print-mpcp.c
print-mpls.c
print-otv.c
print-pgm.c
print-sflow.c
print-vqp.c
tests/bgp-aigp-oobr-nossl.out
tests/bgp-aigp-oobr-ssl.out
tests/bgp-as-path-oobr-nossl.out
tests/bgp-as-path-oobr-ssl.out
tests/bgp_infloop-v.out
tests/bgp_mvpn_6_and_7.out
tests/bgp_pmsi_tunnel-oobr.out
tests/bgp_vpn_rt-oobr.out
tests/eap_extract_read2_asan.out
tests/hncp_dhcpv6data-oobr.out
tests/hoobr_safeputs.out
tests/ipcomp-heapoverflow.out
tests/ipv6-next-header-oobr-2.out
tests/ipv6hdr-heapoverflow-v.out
tests/ipv6hdr-heapoverflow.out
tests/lldp_8023_mtu-oobr.out
tests/lldp_mgmt_addr_tlv_asan.out
tests/mpls-label-heapoverflow.out
tests/otv-heapoverflow-1.out
tests/pgm_group_addr_asan.out
tests/pgm_opts_asan.out
tests/tok2str-oobr-1.out
tests/vqp-oobr.out

index ec94cc1446afec29a3778bb45a53064a4316443c..75baea2ed85577c33f7989d5a56021d1b012a104 100644 (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;
 }
index 38cbd374e2b1c0074b554afd383e2cbeb792e60d..d5f9a075ba4479007cbfc3bf7abf11ffad6253ac 100644 (file)
@@ -403,5 +403,5 @@ bfd_print(netdissect_options *ndo, const u_char *pptr,
         return;
 
 trunc:
-        ND_PRINT("[|BFD]");
+        nd_print_trunc(ndo);
 }
index fe4004d6b2455a6aff2051cbb7f0929b993ab1a5..dae65303e95a63188ec43e705cc7ace2267324c7 100644 (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);
 }
index 6225e9f25d073c8acfb2e4eeb8fb1af3b5d88fc3..797224d645fbdfcd3101c1586f756727bc01d706 100644 (file)
@@ -296,5 +296,5 @@ eap_print(netdissect_options *ndo,
     return;
 
  trunc:
-    ND_PRINT("\n\t[|EAP]");
+    nd_print_trunc(ndo);
 }
index 04b1e25f60913baa0ff8085d1282161351ec18ca..511ee8a325c14a06aaafbcd35b9e527eddb9e846 100644 (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));
index 13064678da76c1c3553ebdfc9736c46edcb33a52..7a3a6f72a8d859bfeb9fccb7c085eb12f6b4f066 100644 (file)
@@ -857,7 +857,7 @@ hncp_print_rec(netdissect_options *ndo,
     return;
 
  trunc:
-    ND_PRINT("%s", "[|hncp]");
+    nd_print_trunc(ndo);
     return;
 
  invalid:
index 3152388387f0b4e2600f5f8f2f755114c5e4ccc4..35e8763001f044021539daddede07f08168d610f 100644 (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);
 }
index e0aefcbbc74806da753e68d880eabe57853140de..9897dac73f7bbca7245e32f190d7958c533dcccc 100644 (file)
@@ -65,6 +65,6 @@ ipcomp_print(netdissect_options *ndo, const u_char *bp)
        return;
 
 trunc:
-       ND_PRINT("[|IPCOMP]");
+       nd_print_trunc(ndo);
        return;
 }
index a200228e4e790e80796b5669c8e2c4420ab0ea00..ee814fcc35ba15eb72556cf785885319b99d155e 100644 (file)
@@ -1663,5 +1663,5 @@ lldp_print(netdissect_options *ndo,
     }
     return;
  trunc:
-    ND_PRINT("\n\t[|LLDP]");
+    nd_print_trunc(ndo);
 }
index 89c1e7b9cd29469cb5a6eb7b43967297b36e7a86..ebfe74a6ccdaa34a8534cf36e48a3e2d213b2f79 100644 (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);
 }
index 3d2a2645cfddff9a94139ce5992ef7247db8ce5d..e45f2826ffb33db9c9fd063ba2adba14a4240de9 100644 (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);
 }
index beda42e71a89447e6c58ebec0ba49df8124ef586..f382cdd2f59bca3758dded99379e378014d63dd5 100644 (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);
 }
index fdab66f825f07a60a2570c99e5826569d8f1a5fb..5b464a8d4bfb55b34dc4d1d7c9a0dc8276edb0fa 100644 (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(">");
 }
index 5bef503213803c7a492113c7cef3bfbb93448151..78aaafb6138770d07f700a7759201afd1d7e5e57 100644 (file)
@@ -971,5 +971,5 @@ sflow_print(netdissect_options *ndo,
     return;
 
  trunc:
-    ND_PRINT("[|SFLOW]");
+    nd_print_trunc(ndo);
 }
index 3e8e011c876b43891b97b61622dd416edfd21147..0c481452ea675091674298757ddae3ee0b326ada 100644 (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);
 }
index 2232c3ca4de086456df7db9a7bb085570e0c1c4f..1ac81012ae1d3c3188a9ec6d312e8d6a2a818be1 100644 (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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
index 9e557f67831a62f5971ab50f554afa4427f098ce..cc6314c3c35cd1939f8b755a174924fbcfe78154 100644 (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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
            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
index a551f4aa546c57327db829c6d049f1b5eaf91481..f7b7d46205140df6b401bf78a9bd690dffe2bfb3 100644 (file)
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  8074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40[|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 106
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
          AS Path (2), length: 0, Flags [T]: empty
-         Attribute Set (128), length: 3, Flags [O]: [|BGP] [|BGP]
+         Attribute Set (128), length: 3, Flags [O]:  [|bgp] [|bgp]
        Update Message (2), length: 172
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0010:  0074 0040 2100 0049 8a00 0002 62ac 1121
            0x0020:  20
 00:18:74:2e:00:00 > 00:19:07:a8:fc:00, ethertype IPv4 (0x0800), length 897: (tos 0xc0, ttl 254, id 697, offset 0, flags [none], proto TCP (6), length 883)
-    172.17.0.0.179 > 172.17.0.3.50651: Flags [P.], cksum 0xe2ab (correct), seq 1216:2035, ack 1, win 31761, options [md5 0b82e9255cf2e845365aae9b7e70555e,eol], length 819: BGP [|BGP]
+    172.17.0.0.179 > 172.17.0.3.50651: Flags [P.], cksum 0xe2ab (correct), seq 1216:2035, ack 1, win 31761, options [md5 0b82e9255cf2e845365aae9b7e70555e,eol], length 819: BGP [|bgp]
        Update Message (2), length: 105
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0040:  0074 0040 4100 0049 8a00 0002 80ac 1122
            0x0050:  10
        Update Message (2), length: 202
-         Origin (1), length: 29442, Flags [PE+9]:  [path attrs too short] [|BGP]
+         Origin (1), length: 29442, Flags [PE+9]:  [path attrs too short] [|bgp]
        Update Message (2), length: 106
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            no AFI 257 / SAFI 128 decoder
            0x0000:  0101 800c 0000 5b00 0000 0000 ac11 0005
            0x0010:  0074 0040 0100 0049 8a00 0003 2aac 111e
-           0x0020:  c0 [|BGP]
+           0x0020:  c0 [|bgp]
 [|BGP Update]
 00:18:74:2e:00:61 > 00:19:07:a8:fc:00, ethertype IPv4 (0x0800), length 1293: (tos 0xc0, ttl 254, id 698, offset 0, flags [none], proto TCP (6), length 1279)
     172.17.0.0.179 > 172.17.0.3.50651: Flags [.], cksum 0x2643 (incorrect -> 0x7d5b), seq 1998:3213, ack 1, win 31761, options [md5 4acfb1877b3726db7a34342ce97845fb,eol], length 1215: BGP
 [|BGP Update]
 00:18:74:2e:00:00 > 00:19:07:a8:fc:00, ethertype IPv4 (0x0800), length 65549: (tos 0xc0, ttl 254, id 699, offset 0, flags [none], proto TCP (6), length 65521, bad cksum 5e07 (->c65)!)
-    172.17.0.0.179 > 172.17.85.3.50651: Flags [P.], cksum 0x2e84 (incorrect -> 0x75f7), seq 2419283368:2419348825, ack 1593006533, win 31761, options [md5 d044dbb15adad00232bad51aa84a6f4c,eol], length 65457: BGP [|BGP]
+    172.17.0.0.179 > 172.17.85.3.50651: Flags [P.], cksum 0x2e84 (incorrect -> 0x75f7), seq 2419283368:2419348825, ack 1593006533, win 31761, options [md5 d044dbb15adad00232bad51aa84a6f4c,eol], length 65457: BGP [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  498a 0000 028a ac11 6930 7400 4051 0000
            0x0060:  498a 0000 028a ac11 c057 7400 4051 0000
            0x0070:  498a 0000 028a ac11 c090 7200 40a1 0000
-           0x0080:  49 [|BGP]
+           0x0080:  49 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  6930 7400 4051 0000 498a 0000 028a ac11
            0x0060:  c057 7400 4051 0000 498a 0000 028a ac11
            0x0070:  c090 7200 40a1 0000 498a 0000 028a ac11
-           0x0080:  1e [|BGP]
+           0x0080:  1e [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
 [|BGP Update]
index b71a1a98899bfa9da21af0a8db55f96f66548456..fd1b9894ec2bd3d00a84c23f89a4d25473c31e7e 100644 (file)
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  8074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40[|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 106
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
          AS Path (2), length: 0, Flags [T]: empty
-         Attribute Set (128), length: 3, Flags [O]: [|BGP] [|BGP]
+         Attribute Set (128), length: 3, Flags [O]:  [|bgp] [|bgp]
        Update Message (2), length: 172
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0010:  0074 0040 2100 0049 8a00 0002 62ac 1121
            0x0020:  20
 00:18:74:2e:00:00 > 00:19:07:a8:fc:00, ethertype IPv4 (0x0800), length 897: (tos 0xc0, ttl 254, id 697, offset 0, flags [none], proto TCP (6), length 883)
-    172.17.0.0.179 > 172.17.0.3.50651: Flags [P.], cksum 0xe2ab (correct), seq 1216:2035, ack 1, win 31761, options [md5 shared secret not supplied with -M, can't check - 0b82e9255cf2e845365aae9b7e70555e,eol], length 819: BGP [|BGP]
+    172.17.0.0.179 > 172.17.0.3.50651: Flags [P.], cksum 0xe2ab (correct), seq 1216:2035, ack 1, win 31761, options [md5 shared secret not supplied with -M, can't check - 0b82e9255cf2e845365aae9b7e70555e,eol], length 819: BGP [|bgp]
        Update Message (2), length: 105
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0040:  0074 0040 4100 0049 8a00 0002 80ac 1122
            0x0050:  10
        Update Message (2), length: 202
-         Origin (1), length: 29442, Flags [PE+9]:  [path attrs too short] [|BGP]
+         Origin (1), length: 29442, Flags [PE+9]:  [path attrs too short] [|bgp]
        Update Message (2), length: 106
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            no AFI 257 / SAFI 128 decoder
            0x0000:  0101 800c 0000 5b00 0000 0000 ac11 0005
            0x0010:  0074 0040 0100 0049 8a00 0003 2aac 111e
-           0x0020:  c0 [|BGP]
+           0x0020:  c0 [|bgp]
 [|BGP Update]
 00:18:74:2e:00:61 > 00:19:07:a8:fc:00, ethertype IPv4 (0x0800), length 1293: (tos 0xc0, ttl 254, id 698, offset 0, flags [none], proto TCP (6), length 1279)
     172.17.0.0.179 > 172.17.0.3.50651: Flags [.], cksum 0x2643 (incorrect -> 0x7d5b), seq 1998:3213, ack 1, win 31761, options [md5 shared secret not supplied with -M, can't check - 4acfb1877b3726db7a34342ce97845fb,eol], length 1215: BGP
 [|BGP Update]
 00:18:74:2e:00:00 > 00:19:07:a8:fc:00, ethertype IPv4 (0x0800), length 65549: (tos 0xc0, ttl 254, id 699, offset 0, flags [none], proto TCP (6), length 65521, bad cksum 5e07 (->c65)!)
-    172.17.0.0.179 > 172.17.85.3.50651: Flags [P.], cksum 0x2e84 (incorrect -> 0x75f7), seq 2419283368:2419348825, ack 1593006533, win 31761, options [md5 shared secret not supplied with -M, can't check - d044dbb15adad00232bad51aa84a6f4c,eol], length 65457: BGP [|BGP]
+    172.17.0.0.179 > 172.17.85.3.50651: Flags [P.], cksum 0x2e84 (incorrect -> 0x75f7), seq 2419283368:2419348825, ack 1593006533, win 31761, options [md5 shared secret not supplied with -M, can't check - d044dbb15adad00232bad51aa84a6f4c,eol], length 65457: BGP [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  498a 0000 028a ac11 6930 7400 4051 0000
            0x0060:  498a 0000 028a ac11 c057 7400 4051 0000
            0x0070:  498a 0000 028a ac11 c090 7200 40a1 0000
-           0x0080:  49 [|BGP]
+           0x0080:  49 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  6930 7400 4051 0000 498a 0000 028a ac11
            0x0060:  c057 7400 4051 0000 498a 0000 028a ac11
            0x0070:  c090 7200 40a1 0000 498a 0000 028a ac11
-           0x0080:  1e [|BGP]
+           0x0080:  1e [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0050:  3074 0040 5100 0049 8a00 0002 8aac 11c0
            0x0060:  5774 0040 5100 0049 8a00 0002 8aac 11c0
            0x0070:  9072 0040 a100 0049 8a00 0002 8aac 111e
-           0x0080:  40 [|BGP]
+           0x0080:  40 [|bgp]
        Update Message (2), length: 154
          Origin (1), length: 1, Flags [T]: Incomplete
            0x0000:  02
            0x0000:  0000 0000
          Local Preference (5), length: 4, Flags [T]: 100
            0x0000:  0000 0064
-         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|BGP]
+         Extended Community (16), length: 2048, Flags [TE+3]:  [path attrs too short] [|bgp]
 [|BGP Update]
index d79a6aaf47d1eef4c82e02e374ca51aa3b5886d6..83090cae5dd688b6b55c974e73ec14c8b8cc14f1 100644 (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]
index ca3c461ae4557d3399be441b54cc171a11755d5d..54e7d7faeca1753ec3eca2586d377af0a8547d3e 100644 (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]
index 947f856ce3945b50d905275af0b755597c5b0316..cd3de0cb068416fec823f3577bc33967425eeda5 100644 (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]
index a1f5968e529f0a601f2751b87604d7886ee15d53..c2b2cb76d42a7606669b0d104dc685ff09c659c8 100644 (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]
index da96d48045ac4f5ac4a2e88e5915623f81cba3d3..ca01c3ea4a1baf14c8f0e5aa6cad1ad13b1c64ce 100644 (file)
@@ -1,2 +1 @@
-EAP packet (0) v155, len 0
-       [|EAP]
+EAP packet (0) v155, len 0 [|eap]
index 376502d90586d4c64c7474ed199f97d5af212cc9..b69225279f0cfea398cd49c9ce593ceb2b6e7141 100644 (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]
index b968b1b325b0d5058b0976343d0904ee7db7ae2a..e95d6dd248f33e1b16dab2264c4d47de61f1c91f 100644 (file)
@@ -1,2 +1 @@
-LLDP, length 262130: 0000000000
-       [|LLDP]
+LLDP, length 262130: 0000000000 [|lldp]
index c158cdf51758b0fdecb921d31f055d208dd780d8..1f3ca72d904c8410f72c71210bd3832014660721 100644 (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]
index 911d2ae232f16512bcfaa6e78a5bbb2d44aa02f1..8c19fa0cafd19f399bdb1d222c3daf220cd20b6d 100644 (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]
index 4e3730a1d9f09471bc0aab9f0ce9b8286e174897..d95d06d7becc4a02d4ce3b6ecb1c8339321494b3 100644 (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]
index f9bc97e86f0e29573c1734fdff5626d42005a846..bdd20aa8ed5704f834dead3935271358fead0084 100644 (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]
index 53b1d102584bcc7ebd0abbea2c2709be3cce31d8..ac004110ade887333ed06fcc2eae87da00a26a4d 100644 (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]
index eaa3d3cbc37d89da67c4f782e10e9cac66d1c6a8..6ade3511d29790f122d3eaa1599f8fb34279ffc4 100644 (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                                       .
index 1419cacfcb41c25b566b342667e3d5ac78835ef1..5a0b8334dec8a1afa76d7ecfedc08192d01d0db4 100644 (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]
index 4bef9dda7c4fdcdf5fb2b8343ebe656963981bbc..767d6065acbb0fdb8ef1bbc3821991d4618f5ed2 100644 (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]
index a09d9b2ac4101577f923c905d76bc99be032c293..d3291623189b8224e8c3d25c5b73cb4eccd8429d 100644 (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]
index cc0607a45719c47dcc9a571f3c1c06cc74fd4a75..d075bbc7537d94a7ae48b1c0916f8ad35c8cea0d 100644 (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]
index f9a9bb3dd9d81eb1500fd84076c0b234a7b16da3..736291f0ee66823637c6b7722f60799c012ea4b4 100644 (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]
index 3b1f71e36617d84d96adff90412906e475429724..a85d1053b20bf09d4715a6f88bfc3102214ba65b 100644 (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]