dcb_ets.out 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923
  1. IP6 (hlim 1, next-header Options (0) payload length: 36) fe80::a00:27ff:fe46:e884 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 1 group record(s) [gaddr ff02::1:ff00:0 to_ex { }]
  2. IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328)
  3. 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xd60c7466, secs 13, Flags [none] (0x0000)
  4. Client-Ethernet-Address 08:00:27:46:e8:84
  5. Vendor-rfc1048 Extensions
  6. Magic Cookie 0x63825363
  7. DHCP-Message Option 53, length 1: Discover
  8. Parameter-Request Option 55, length 17:
  9. Subnet-Mask, BR, Time-Zone, Classless-Static-Route
  10. Domain-Name, Domain-Name-Server, Hostname, YD
  11. YS, NTP, MTU, Option 119
  12. Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
  13. NTP
  14. LLDP, length 135
  15. Chassis ID TLV (1), length 7
  16. Subtype MAC address (4): 08:00:27:0d:f1:3c
  17. 0x0000: 0408 0027 0df1 3c
  18. Port ID TLV (2), length 7
  19. Subtype MAC address (3): 08:00:27:0d:f1:3c
  20. 0x0000: 0308 0027 0df1 3c
  21. Time to Live TLV (3), length 2: TTL 120s
  22. 0x0000: 0078
  23. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  24. Port VLAN Id Subtype (1)
  25. port vlan id (PVID): 1
  26. 0x0000: 0080 c201 0001
  27. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  28. Port and Protocol VLAN ID Subtype (2)
  29. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  30. 0x0000: 0080 c202 0200 00
  31. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  32. VLAN name Subtype (3)
  33. vlan id (VID): 1
  34. vlan name: default
  35. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  36. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  37. Protocol Identity Subtype (4)
  38. protocol identity:
  39. 0x0000: 0080 c204 0800 0042 4203 0000 00
  40. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  41. ETS Configuration Subtype (9)
  42. Willing:0, CBS:0, RES:0, Max TCs:0
  43. Priority Assignment Table
  44. Priority : 0 1 2 3 4 5 6 7
  45. Value : 15 4 1 1 15 4 1 4
  46. TC Bandwidth Table
  47. TC% : 0 1 2 3 4 5 6 7
  48. Value : 0 50 0 0 50 0 0 0
  49. TSA Assignment Table
  50. Traffic Class: 0 1 2 3 4 5 6 7
  51. Value : 0 2 0 0 2 0 0 0
  52. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  53. 0x0010: 0000 0200 0002 0000 00
  54. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  55. ETS Recommendation Subtype (10)
  56. RES: 0
  57. Priority Assignment Table
  58. Priority : 0 1 2 3 4 5 6 7
  59. Value : 15 4 1 1 15 4 1 4
  60. TC Bandwidth Table
  61. TC% : 0 1 2 3 4 5 6 7
  62. Value : 0 50 0 0 50 0 0 0
  63. TSA Assignment Table
  64. Traffic Class: 0 1 2 3 4 5 6 7
  65. Value : 0 2 0 0 2 0 0 0
  66. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  67. 0x0010: 0000 0200 0002 0000 00
  68. End TLV (0), length 0
  69. IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328)
  70. 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xd60c7466, secs 24, Flags [none] (0x0000)
  71. Client-Ethernet-Address 08:00:27:46:e8:84
  72. Vendor-rfc1048 Extensions
  73. Magic Cookie 0x63825363
  74. DHCP-Message Option 53, length 1: Discover
  75. Parameter-Request Option 55, length 17:
  76. Subnet-Mask, BR, Time-Zone, Classless-Static-Route
  77. Domain-Name, Domain-Name-Server, Hostname, YD
  78. YS, NTP, MTU, Option 119
  79. Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
  80. NTP
  81. IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328)
  82. 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xd60c7466, secs 36, Flags [none] (0x0000)
  83. Client-Ethernet-Address 08:00:27:46:e8:84
  84. Vendor-rfc1048 Extensions
  85. Magic Cookie 0x63825363
  86. DHCP-Message Option 53, length 1: Discover
  87. Parameter-Request Option 55, length 17:
  88. Subnet-Mask, BR, Time-Zone, Classless-Static-Route
  89. Domain-Name, Domain-Name-Server, Hostname, YD
  90. YS, NTP, MTU, Option 119
  91. Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
  92. NTP
  93. IP6 (hlim 1, next-header Options (0) payload length: 76) :: > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 3 group record(s) [gaddr ff02::1:ff46:e884 to_ex { }] [gaddr ff02::2 to_ex { }] [gaddr ff02::202 to_ex { }]
  94. IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328)
  95. 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0x3c41e764, Flags [none] (0x0000)
  96. Client-Ethernet-Address 08:00:27:46:e8:84
  97. Vendor-rfc1048 Extensions
  98. Magic Cookie 0x63825363
  99. DHCP-Message Option 53, length 1: Discover
  100. Parameter-Request Option 55, length 17:
  101. Subnet-Mask, BR, Time-Zone, Classless-Static-Route
  102. Domain-Name, Domain-Name-Server, Hostname, YD
  103. YS, NTP, MTU, Option 119
  104. Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
  105. NTP
  106. IP6 (hlim 255, next-header ICMPv6 (58) payload length: 24) :: > ff02::1:ff46:e884: [icmp6 sum ok] ICMP6, neighbor solicitation, length 24, who has fe80::a00:27ff:fe46:e884
  107. IP6 (hlim 255, next-header ICMPv6 (58) payload length: 16) fe80::a00:27ff:fe46:e884 > ff02::2: [icmp6 sum ok] ICMP6, router solicitation, length 16
  108. source link-address option (1), length 8 (1): 08:00:27:46:e8:84
  109. 0x0000: 0800 2746 e884
  110. IP6 (hlim 1, next-header Options (0) payload length: 96) fe80::a00:27ff:fe46:e884 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 4 group record(s) [gaddr ff02::1:ff00:0 to_ex { }] [gaddr ff02::1:ff46:e884 to_ex { }] [gaddr ff02::2 to_ex { }] [gaddr ff02::202 to_ex { }]
  111. LLDP, length 135
  112. Chassis ID TLV (1), length 7
  113. Subtype MAC address (4): 08:00:27:0d:f1:3c
  114. 0x0000: 0408 0027 0df1 3c
  115. Port ID TLV (2), length 7
  116. Subtype MAC address (3): 08:00:27:0d:f1:3c
  117. 0x0000: 0308 0027 0df1 3c
  118. Time to Live TLV (3), length 2: TTL 120s
  119. 0x0000: 0078
  120. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  121. Port VLAN Id Subtype (1)
  122. port vlan id (PVID): 1
  123. 0x0000: 0080 c201 0001
  124. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  125. Port and Protocol VLAN ID Subtype (2)
  126. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  127. 0x0000: 0080 c202 0200 00
  128. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  129. VLAN name Subtype (3)
  130. vlan id (VID): 1
  131. vlan name: default
  132. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  133. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  134. Protocol Identity Subtype (4)
  135. protocol identity:
  136. 0x0000: 0080 c204 0800 0042 4203 0000 00
  137. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  138. ETS Configuration Subtype (9)
  139. Willing:0, CBS:0, RES:0, Max TCs:0
  140. Priority Assignment Table
  141. Priority : 0 1 2 3 4 5 6 7
  142. Value : 15 4 1 1 15 4 1 4
  143. TC Bandwidth Table
  144. TC% : 0 1 2 3 4 5 6 7
  145. Value : 0 50 0 0 50 0 0 0
  146. TSA Assignment Table
  147. Traffic Class: 0 1 2 3 4 5 6 7
  148. Value : 0 2 0 0 2 0 0 0
  149. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  150. 0x0010: 0000 0200 0002 0000 00
  151. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  152. ETS Recommendation Subtype (10)
  153. RES: 0
  154. Priority Assignment Table
  155. Priority : 0 1 2 3 4 5 6 7
  156. Value : 15 4 1 1 15 4 1 4
  157. TC Bandwidth Table
  158. TC% : 0 1 2 3 4 5 6 7
  159. Value : 0 50 0 0 50 0 0 0
  160. TSA Assignment Table
  161. Traffic Class: 0 1 2 3 4 5 6 7
  162. Value : 0 2 0 0 2 0 0 0
  163. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  164. 0x0010: 0000 0200 0002 0000 00
  165. End TLV (0), length 0
  166. IP6 (hlim 1, next-header Options (0) payload length: 76) :: > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 3 group record(s) [gaddr ff02::1:ff42:ba59 to_ex { }] [gaddr ff02::2 to_ex { }] [gaddr ff02::202 to_ex { }]
  167. IP6 (hlim 255, next-header ICMPv6 (58) payload length: 24) :: > ff02::1:ff42:ba59: [icmp6 sum ok] ICMP6, neighbor solicitation, length 24, who has fe80::a00:27ff:fe42:ba59
  168. IP6 (hlim 1, next-header Options (0) payload length: 96) fe80::a00:27ff:fe42:ba59 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 4 group record(s) [gaddr ff02::1:ff00:0 to_ex { }] [gaddr ff02::1:ff42:ba59 to_ex { }] [gaddr ff02::2 to_ex { }] [gaddr ff02::202 to_ex { }]
  169. IP6 (hlim 1, next-header Options (0) payload length: 36) fe80::a00:27ff:fe46:e884 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 1 group record(s) [gaddr ff02::1:ff00:0 to_ex { }]
  170. IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328)
  171. 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0x3c41e764, secs 8, Flags [none] (0x0000)
  172. Client-Ethernet-Address 08:00:27:46:e8:84
  173. Vendor-rfc1048 Extensions
  174. Magic Cookie 0x63825363
  175. DHCP-Message Option 53, length 1: Discover
  176. Parameter-Request Option 55, length 17:
  177. Subnet-Mask, BR, Time-Zone, Classless-Static-Route
  178. Domain-Name, Domain-Name-Server, Hostname, YD
  179. YS, NTP, MTU, Option 119
  180. Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
  181. NTP
  182. IP6 (hlim 1, next-header Options (0) payload length: 36) fe80::a00:27ff:fe42:ba59 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 1 group record(s) [gaddr ff02::1:ff00:0 to_ex { }]
  183. IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328)
  184. 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0x3c41e764, secs 20, Flags [none] (0x0000)
  185. Client-Ethernet-Address 08:00:27:46:e8:84
  186. Vendor-rfc1048 Extensions
  187. Magic Cookie 0x63825363
  188. DHCP-Message Option 53, length 1: Discover
  189. Parameter-Request Option 55, length 17:
  190. Subnet-Mask, BR, Time-Zone, Classless-Static-Route
  191. Domain-Name, Domain-Name-Server, Hostname, YD
  192. YS, NTP, MTU, Option 119
  193. Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
  194. NTP
  195. LLDP, length 135
  196. Chassis ID TLV (1), length 7
  197. Subtype MAC address (4): 08:00:27:0d:f1:3c
  198. 0x0000: 0408 0027 0df1 3c
  199. Port ID TLV (2), length 7
  200. Subtype MAC address (3): 08:00:27:0d:f1:3c
  201. 0x0000: 0308 0027 0df1 3c
  202. Time to Live TLV (3), length 2: TTL 120s
  203. 0x0000: 0078
  204. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  205. Port VLAN Id Subtype (1)
  206. port vlan id (PVID): 1
  207. 0x0000: 0080 c201 0001
  208. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  209. Port and Protocol VLAN ID Subtype (2)
  210. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  211. 0x0000: 0080 c202 0200 00
  212. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  213. VLAN name Subtype (3)
  214. vlan id (VID): 1
  215. vlan name: default
  216. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  217. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  218. Protocol Identity Subtype (4)
  219. protocol identity:
  220. 0x0000: 0080 c204 0800 0042 4203 0000 00
  221. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  222. ETS Configuration Subtype (9)
  223. Willing:0, CBS:0, RES:0, Max TCs:0
  224. Priority Assignment Table
  225. Priority : 0 1 2 3 4 5 6 7
  226. Value : 15 4 1 1 15 4 1 4
  227. TC Bandwidth Table
  228. TC% : 0 1 2 3 4 5 6 7
  229. Value : 0 50 0 0 50 0 0 0
  230. TSA Assignment Table
  231. Traffic Class: 0 1 2 3 4 5 6 7
  232. Value : 0 2 0 0 2 0 0 0
  233. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  234. 0x0010: 0000 0200 0002 0000 00
  235. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  236. ETS Recommendation Subtype (10)
  237. RES: 0
  238. Priority Assignment Table
  239. Priority : 0 1 2 3 4 5 6 7
  240. Value : 15 4 1 1 15 4 1 4
  241. TC Bandwidth Table
  242. TC% : 0 1 2 3 4 5 6 7
  243. Value : 0 50 0 0 50 0 0 0
  244. TSA Assignment Table
  245. Traffic Class: 0 1 2 3 4 5 6 7
  246. Value : 0 2 0 0 2 0 0 0
  247. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  248. 0x0010: 0000 0200 0002 0000 00
  249. End TLV (0), length 0
  250. IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328)
  251. 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0x3c41e764, secs 41, Flags [none] (0x0000)
  252. Client-Ethernet-Address 08:00:27:46:e8:84
  253. Vendor-rfc1048 Extensions
  254. Magic Cookie 0x63825363
  255. DHCP-Message Option 53, length 1: Discover
  256. Parameter-Request Option 55, length 17:
  257. Subnet-Mask, BR, Time-Zone, Classless-Static-Route
  258. Domain-Name, Domain-Name-Server, Hostname, YD
  259. YS, NTP, MTU, Option 119
  260. Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
  261. NTP
  262. IP6 (hlim 1, next-header Options (0) payload length: 76) :: > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 3 group record(s) [gaddr ff02::1:ff46:e884 to_ex { }] [gaddr ff02::2 to_ex { }] [gaddr ff02::202 to_ex { }]
  263. IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328)
  264. 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xc1fb0d77, Flags [none] (0x0000)
  265. Client-Ethernet-Address 08:00:27:46:e8:84
  266. Vendor-rfc1048 Extensions
  267. Magic Cookie 0x63825363
  268. DHCP-Message Option 53, length 1: Discover
  269. Parameter-Request Option 55, length 17:
  270. Subnet-Mask, BR, Time-Zone, Classless-Static-Route
  271. Domain-Name, Domain-Name-Server, Hostname, YD
  272. YS, NTP, MTU, Option 119
  273. Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
  274. NTP
  275. IP6 (hlim 255, next-header ICMPv6 (58) payload length: 24) :: > ff02::1:ff46:e884: [icmp6 sum ok] ICMP6, neighbor solicitation, length 24, who has fe80::a00:27ff:fe46:e884
  276. IP6 (hlim 255, next-header ICMPv6 (58) payload length: 16) fe80::a00:27ff:fe46:e884 > ff02::2: [icmp6 sum ok] ICMP6, router solicitation, length 16
  277. source link-address option (1), length 8 (1): 08:00:27:46:e8:84
  278. 0x0000: 0800 2746 e884
  279. IP6 (hlim 1, next-header Options (0) payload length: 96) fe80::a00:27ff:fe46:e884 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 4 group record(s) [gaddr ff02::1:ff00:0 to_ex { }] [gaddr ff02::1:ff46:e884 to_ex { }] [gaddr ff02::2 to_ex { }] [gaddr ff02::202 to_ex { }]
  280. IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328)
  281. 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xc1fb0d77, secs 3, Flags [none] (0x0000)
  282. Client-Ethernet-Address 08:00:27:46:e8:84
  283. Vendor-rfc1048 Extensions
  284. Magic Cookie 0x63825363
  285. DHCP-Message Option 53, length 1: Discover
  286. Parameter-Request Option 55, length 17:
  287. Subnet-Mask, BR, Time-Zone, Classless-Static-Route
  288. Domain-Name, Domain-Name-Server, Hostname, YD
  289. YS, NTP, MTU, Option 119
  290. Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
  291. NTP
  292. IP6 (hlim 1, next-header Options (0) payload length: 36) fe80::a00:27ff:fe46:e884 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 1 group record(s) [gaddr ff02::1:ff00:0 to_ex { }]
  293. LLDP, length 135
  294. Chassis ID TLV (1), length 7
  295. Subtype MAC address (4): 08:00:27:42:ba:59
  296. 0x0000: 0408 0027 42ba 59
  297. Port ID TLV (2), length 7
  298. Subtype MAC address (3): 08:00:27:42:ba:59
  299. 0x0000: 0308 0027 42ba 59
  300. Time to Live TLV (3), length 2: TTL 120s
  301. 0x0000: 0078
  302. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  303. Port VLAN Id Subtype (1)
  304. port vlan id (PVID): 1
  305. 0x0000: 0080 c201 0001
  306. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  307. Port and Protocol VLAN ID Subtype (2)
  308. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  309. 0x0000: 0080 c202 0200 00
  310. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  311. VLAN name Subtype (3)
  312. vlan id (VID): 1
  313. vlan name: default
  314. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  315. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  316. Protocol Identity Subtype (4)
  317. protocol identity:
  318. 0x0000: 0080 c204 0800 0042 4203 0000 00
  319. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  320. ETS Configuration Subtype (9)
  321. Willing:0, CBS:0, RES:0, Max TCs:0
  322. Priority Assignment Table
  323. Priority : 0 1 2 3 4 5 6 7
  324. Value : 15 15 15 15 15 15 15 15
  325. TC Bandwidth Table
  326. TC% : 0 1 2 3 4 5 6 7
  327. Value : 0 0 0 0 0 0 0 0
  328. TSA Assignment Table
  329. Traffic Class: 0 1 2 3 4 5 6 7
  330. Value : 0 0 0 0 0 0 0 0
  331. 0x0000: 0080 c209 00ff ffff ff00 0000 0000 0000
  332. 0x0010: 0000 0000 0000 0000 00
  333. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  334. ETS Recommendation Subtype (10)
  335. RES: 0
  336. Priority Assignment Table
  337. Priority : 0 1 2 3 4 5 6 7
  338. Value : 15 15 15 15 15 15 15 15
  339. TC Bandwidth Table
  340. TC% : 0 1 2 3 4 5 6 7
  341. Value : 0 0 0 0 0 0 0 0
  342. TSA Assignment Table
  343. Traffic Class: 0 1 2 3 4 5 6 7
  344. Value : 0 0 0 0 0 0 0 0
  345. 0x0000: 0080 c20a 00ff ffff ff00 0000 0000 0000
  346. 0x0010: 0000 0000 0000 0000 00
  347. End TLV (0), length 0
  348. LLDP, length 135
  349. Chassis ID TLV (1), length 7
  350. Subtype MAC address (4): 08:00:27:42:ba:59
  351. 0x0000: 0408 0027 42ba 59
  352. Port ID TLV (2), length 7
  353. Subtype MAC address (3): 08:00:27:42:ba:59
  354. 0x0000: 0308 0027 42ba 59
  355. Time to Live TLV (3), length 2: TTL 120s
  356. 0x0000: 0078
  357. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  358. Port VLAN Id Subtype (1)
  359. port vlan id (PVID): 1
  360. 0x0000: 0080 c201 0001
  361. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  362. Port and Protocol VLAN ID Subtype (2)
  363. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  364. 0x0000: 0080 c202 0200 00
  365. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  366. VLAN name Subtype (3)
  367. vlan id (VID): 1
  368. vlan name: default
  369. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  370. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  371. Protocol Identity Subtype (4)
  372. protocol identity:
  373. 0x0000: 0080 c204 0800 0042 4203 0000 00
  374. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  375. ETS Configuration Subtype (9)
  376. Willing:0, CBS:0, RES:0, Max TCs:0
  377. Priority Assignment Table
  378. Priority : 0 1 2 3 4 5 6 7
  379. Value : 15 15 15 15 15 15 15 15
  380. TC Bandwidth Table
  381. TC% : 0 1 2 3 4 5 6 7
  382. Value : 0 0 0 0 0 0 0 0
  383. TSA Assignment Table
  384. Traffic Class: 0 1 2 3 4 5 6 7
  385. Value : 0 0 0 0 0 0 0 0
  386. 0x0000: 0080 c209 00ff ffff ff00 0000 0000 0000
  387. 0x0010: 0000 0000 0000 0000 00
  388. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  389. ETS Recommendation Subtype (10)
  390. RES: 0
  391. Priority Assignment Table
  392. Priority : 0 1 2 3 4 5 6 7
  393. Value : 15 15 15 15 15 15 15 15
  394. TC Bandwidth Table
  395. TC% : 0 1 2 3 4 5 6 7
  396. Value : 0 0 0 0 0 0 0 0
  397. TSA Assignment Table
  398. Traffic Class: 0 1 2 3 4 5 6 7
  399. Value : 0 0 0 0 0 0 0 0
  400. 0x0000: 0080 c20a 00ff ffff ff00 0000 0000 0000
  401. 0x0010: 0000 0000 0000 0000 00
  402. End TLV (0), length 0
  403. IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328)
  404. 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xc1fb0d77, secs 11, Flags [none] (0x0000)
  405. Client-Ethernet-Address 08:00:27:46:e8:84
  406. Vendor-rfc1048 Extensions
  407. Magic Cookie 0x63825363
  408. DHCP-Message Option 53, length 1: Discover
  409. Parameter-Request Option 55, length 17:
  410. Subnet-Mask, BR, Time-Zone, Classless-Static-Route
  411. Domain-Name, Domain-Name-Server, Hostname, YD
  412. YS, NTP, MTU, Option 119
  413. Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
  414. NTP
  415. LLDP, length 135
  416. Chassis ID TLV (1), length 7
  417. Subtype MAC address (4): 08:00:27:0d:f1:3c
  418. 0x0000: 0408 0027 0df1 3c
  419. Port ID TLV (2), length 7
  420. Subtype MAC address (3): 08:00:27:0d:f1:3c
  421. 0x0000: 0308 0027 0df1 3c
  422. Time to Live TLV (3), length 2: TTL 120s
  423. 0x0000: 0078
  424. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  425. Port VLAN Id Subtype (1)
  426. port vlan id (PVID): 1
  427. 0x0000: 0080 c201 0001
  428. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  429. Port and Protocol VLAN ID Subtype (2)
  430. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  431. 0x0000: 0080 c202 0200 00
  432. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  433. VLAN name Subtype (3)
  434. vlan id (VID): 1
  435. vlan name: default
  436. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  437. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  438. Protocol Identity Subtype (4)
  439. protocol identity:
  440. 0x0000: 0080 c204 0800 0042 4203 0000 00
  441. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  442. ETS Configuration Subtype (9)
  443. Willing:0, CBS:0, RES:0, Max TCs:0
  444. Priority Assignment Table
  445. Priority : 0 1 2 3 4 5 6 7
  446. Value : 15 4 1 1 15 4 1 4
  447. TC Bandwidth Table
  448. TC% : 0 1 2 3 4 5 6 7
  449. Value : 0 50 0 0 50 0 0 0
  450. TSA Assignment Table
  451. Traffic Class: 0 1 2 3 4 5 6 7
  452. Value : 0 2 0 0 2 0 0 0
  453. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  454. 0x0010: 0000 0200 0002 0000 00
  455. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  456. ETS Recommendation Subtype (10)
  457. RES: 0
  458. Priority Assignment Table
  459. Priority : 0 1 2 3 4 5 6 7
  460. Value : 15 4 1 1 15 4 1 4
  461. TC Bandwidth Table
  462. TC% : 0 1 2 3 4 5 6 7
  463. Value : 0 50 0 0 50 0 0 0
  464. TSA Assignment Table
  465. Traffic Class: 0 1 2 3 4 5 6 7
  466. Value : 0 2 0 0 2 0 0 0
  467. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  468. 0x0010: 0000 0200 0002 0000 00
  469. End TLV (0), length 0
  470. LLDP, length 135
  471. Chassis ID TLV (1), length 7
  472. Subtype MAC address (4): 08:00:27:0d:f1:3c
  473. 0x0000: 0408 0027 0df1 3c
  474. Port ID TLV (2), length 7
  475. Subtype MAC address (3): 08:00:27:0d:f1:3c
  476. 0x0000: 0308 0027 0df1 3c
  477. Time to Live TLV (3), length 2: TTL 120s
  478. 0x0000: 0078
  479. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  480. Port VLAN Id Subtype (1)
  481. port vlan id (PVID): 1
  482. 0x0000: 0080 c201 0001
  483. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  484. Port and Protocol VLAN ID Subtype (2)
  485. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  486. 0x0000: 0080 c202 0200 00
  487. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  488. VLAN name Subtype (3)
  489. vlan id (VID): 1
  490. vlan name: default
  491. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  492. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  493. Protocol Identity Subtype (4)
  494. protocol identity:
  495. 0x0000: 0080 c204 0800 0042 4203 0000 00
  496. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  497. ETS Configuration Subtype (9)
  498. Willing:0, CBS:0, RES:0, Max TCs:0
  499. Priority Assignment Table
  500. Priority : 0 1 2 3 4 5 6 7
  501. Value : 15 4 1 1 15 4 1 4
  502. TC Bandwidth Table
  503. TC% : 0 1 2 3 4 5 6 7
  504. Value : 0 50 0 0 50 0 0 0
  505. TSA Assignment Table
  506. Traffic Class: 0 1 2 3 4 5 6 7
  507. Value : 0 2 0 0 2 0 0 0
  508. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  509. 0x0010: 0000 0200 0002 0000 00
  510. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  511. ETS Recommendation Subtype (10)
  512. RES: 0
  513. Priority Assignment Table
  514. Priority : 0 1 2 3 4 5 6 7
  515. Value : 15 4 1 1 15 4 1 4
  516. TC Bandwidth Table
  517. TC% : 0 1 2 3 4 5 6 7
  518. Value : 0 50 0 0 50 0 0 0
  519. TSA Assignment Table
  520. Traffic Class: 0 1 2 3 4 5 6 7
  521. Value : 0 2 0 0 2 0 0 0
  522. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  523. 0x0010: 0000 0200 0002 0000 00
  524. End TLV (0), length 0
  525. IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328)
  526. 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xc1fb0d77, secs 23, Flags [none] (0x0000)
  527. Client-Ethernet-Address 08:00:27:46:e8:84
  528. Vendor-rfc1048 Extensions
  529. Magic Cookie 0x63825363
  530. DHCP-Message Option 53, length 1: Discover
  531. Parameter-Request Option 55, length 17:
  532. Subnet-Mask, BR, Time-Zone, Classless-Static-Route
  533. Domain-Name, Domain-Name-Server, Hostname, YD
  534. YS, NTP, MTU, Option 119
  535. Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
  536. NTP
  537. IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328)
  538. 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xc1fb0d77, secs 36, Flags [none] (0x0000)
  539. Client-Ethernet-Address 08:00:27:46:e8:84
  540. Vendor-rfc1048 Extensions
  541. Magic Cookie 0x63825363
  542. DHCP-Message Option 53, length 1: Discover
  543. Parameter-Request Option 55, length 17:
  544. Subnet-Mask, BR, Time-Zone, Classless-Static-Route
  545. Domain-Name, Domain-Name-Server, Hostname, YD
  546. YS, NTP, MTU, Option 119
  547. Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
  548. NTP
  549. LLDP, length 135
  550. Chassis ID TLV (1), length 7
  551. Subtype MAC address (4): 08:00:27:42:ba:59
  552. 0x0000: 0408 0027 42ba 59
  553. Port ID TLV (2), length 7
  554. Subtype MAC address (3): 08:00:27:42:ba:59
  555. 0x0000: 0308 0027 42ba 59
  556. Time to Live TLV (3), length 2: TTL 120s
  557. 0x0000: 0078
  558. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  559. Port VLAN Id Subtype (1)
  560. port vlan id (PVID): 1
  561. 0x0000: 0080 c201 0001
  562. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  563. Port and Protocol VLAN ID Subtype (2)
  564. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  565. 0x0000: 0080 c202 0200 00
  566. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  567. VLAN name Subtype (3)
  568. vlan id (VID): 1
  569. vlan name: default
  570. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  571. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  572. Protocol Identity Subtype (4)
  573. protocol identity:
  574. 0x0000: 0080 c204 0800 0042 4203 0000 00
  575. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  576. ETS Configuration Subtype (9)
  577. Willing:0, CBS:0, RES:0, Max TCs:0
  578. Priority Assignment Table
  579. Priority : 0 1 2 3 4 5 6 7
  580. Value : 15 1 15 15 15 1 15 1
  581. TC Bandwidth Table
  582. TC% : 0 1 2 3 4 5 6 7
  583. Value : 0 0 0 0 0 0 0 0
  584. TSA Assignment Table
  585. Traffic Class: 0 1 2 3 4 5 6 7
  586. Value : 0 0 0 0 0 0 0 0
  587. 0x0000: 0080 c209 00f1 fff1 f100 0000 0000 0000
  588. 0x0010: 0000 0000 0000 0000 00
  589. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  590. ETS Recommendation Subtype (10)
  591. RES: 0
  592. Priority Assignment Table
  593. Priority : 0 1 2 3 4 5 6 7
  594. Value : 15 1 15 15 15 1 15 1
  595. TC Bandwidth Table
  596. TC% : 0 1 2 3 4 5 6 7
  597. Value : 0 0 0 0 0 0 0 0
  598. TSA Assignment Table
  599. Traffic Class: 0 1 2 3 4 5 6 7
  600. Value : 0 0 0 0 0 0 0 0
  601. 0x0000: 0080 c20a 00f1 fff1 f100 0000 0000 0000
  602. 0x0010: 0000 0000 0000 0000 00
  603. End TLV (0), length 0
  604. LLDP, length 135
  605. Chassis ID TLV (1), length 7
  606. Subtype MAC address (4): 08:00:27:42:ba:59
  607. 0x0000: 0408 0027 42ba 59
  608. Port ID TLV (2), length 7
  609. Subtype MAC address (3): 08:00:27:42:ba:59
  610. 0x0000: 0308 0027 42ba 59
  611. Time to Live TLV (3), length 2: TTL 120s
  612. 0x0000: 0078
  613. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  614. Port VLAN Id Subtype (1)
  615. port vlan id (PVID): 1
  616. 0x0000: 0080 c201 0001
  617. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  618. Port and Protocol VLAN ID Subtype (2)
  619. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  620. 0x0000: 0080 c202 0200 00
  621. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  622. VLAN name Subtype (3)
  623. vlan id (VID): 1
  624. vlan name: default
  625. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  626. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  627. Protocol Identity Subtype (4)
  628. protocol identity:
  629. 0x0000: 0080 c204 0800 0042 4203 0000 00
  630. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  631. ETS Configuration Subtype (9)
  632. Willing:0, CBS:0, RES:0, Max TCs:0
  633. Priority Assignment Table
  634. Priority : 0 1 2 3 4 5 6 7
  635. Value : 15 1 15 15 15 1 15 1
  636. TC Bandwidth Table
  637. TC% : 0 1 2 3 4 5 6 7
  638. Value : 0 0 0 0 0 0 0 0
  639. TSA Assignment Table
  640. Traffic Class: 0 1 2 3 4 5 6 7
  641. Value : 0 0 0 0 0 0 0 0
  642. 0x0000: 0080 c209 00f1 fff1 f100 0000 0000 0000
  643. 0x0010: 0000 0000 0000 0000 00
  644. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  645. ETS Recommendation Subtype (10)
  646. RES: 0
  647. Priority Assignment Table
  648. Priority : 0 1 2 3 4 5 6 7
  649. Value : 15 1 15 15 15 1 15 1
  650. TC Bandwidth Table
  651. TC% : 0 1 2 3 4 5 6 7
  652. Value : 0 0 0 0 0 0 0 0
  653. TSA Assignment Table
  654. Traffic Class: 0 1 2 3 4 5 6 7
  655. Value : 0 0 0 0 0 0 0 0
  656. 0x0000: 0080 c20a 00f1 fff1 f100 0000 0000 0000
  657. 0x0010: 0000 0000 0000 0000 00
  658. End TLV (0), length 0
  659. LLDP, length 135
  660. Chassis ID TLV (1), length 7
  661. Subtype MAC address (4): 08:00:27:0d:f1:3c
  662. 0x0000: 0408 0027 0df1 3c
  663. Port ID TLV (2), length 7
  664. Subtype MAC address (3): 08:00:27:0d:f1:3c
  665. 0x0000: 0308 0027 0df1 3c
  666. Time to Live TLV (3), length 2: TTL 120s
  667. 0x0000: 0078
  668. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  669. Port VLAN Id Subtype (1)
  670. port vlan id (PVID): 1
  671. 0x0000: 0080 c201 0001
  672. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  673. Port and Protocol VLAN ID Subtype (2)
  674. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  675. 0x0000: 0080 c202 0200 00
  676. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  677. VLAN name Subtype (3)
  678. vlan id (VID): 1
  679. vlan name: default
  680. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  681. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  682. Protocol Identity Subtype (4)
  683. protocol identity:
  684. 0x0000: 0080 c204 0800 0042 4203 0000 00
  685. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  686. ETS Configuration Subtype (9)
  687. Willing:0, CBS:0, RES:0, Max TCs:0
  688. Priority Assignment Table
  689. Priority : 0 1 2 3 4 5 6 7
  690. Value : 15 4 1 1 15 4 1 4
  691. TC Bandwidth Table
  692. TC% : 0 1 2 3 4 5 6 7
  693. Value : 0 50 0 0 50 0 0 0
  694. TSA Assignment Table
  695. Traffic Class: 0 1 2 3 4 5 6 7
  696. Value : 0 2 0 0 2 0 0 0
  697. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  698. 0x0010: 0000 0200 0002 0000 00
  699. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  700. ETS Recommendation Subtype (10)
  701. RES: 0
  702. Priority Assignment Table
  703. Priority : 0 1 2 3 4 5 6 7
  704. Value : 15 4 1 1 15 4 1 4
  705. TC Bandwidth Table
  706. TC% : 0 1 2 3 4 5 6 7
  707. Value : 0 50 0 0 50 0 0 0
  708. TSA Assignment Table
  709. Traffic Class: 0 1 2 3 4 5 6 7
  710. Value : 0 2 0 0 2 0 0 0
  711. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  712. 0x0010: 0000 0200 0002 0000 00
  713. End TLV (0), length 0
  714. LLDP, length 135
  715. Chassis ID TLV (1), length 7
  716. Subtype MAC address (4): 08:00:27:0d:f1:3c
  717. 0x0000: 0408 0027 0df1 3c
  718. Port ID TLV (2), length 7
  719. Subtype MAC address (3): 08:00:27:0d:f1:3c
  720. 0x0000: 0308 0027 0df1 3c
  721. Time to Live TLV (3), length 2: TTL 120s
  722. 0x0000: 0078
  723. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  724. Port VLAN Id Subtype (1)
  725. port vlan id (PVID): 1
  726. 0x0000: 0080 c201 0001
  727. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  728. Port and Protocol VLAN ID Subtype (2)
  729. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  730. 0x0000: 0080 c202 0200 00
  731. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  732. VLAN name Subtype (3)
  733. vlan id (VID): 1
  734. vlan name: default
  735. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  736. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  737. Protocol Identity Subtype (4)
  738. protocol identity:
  739. 0x0000: 0080 c204 0800 0042 4203 0000 00
  740. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  741. ETS Configuration Subtype (9)
  742. Willing:0, CBS:0, RES:0, Max TCs:0
  743. Priority Assignment Table
  744. Priority : 0 1 2 3 4 5 6 7
  745. Value : 15 4 1 1 15 4 1 4
  746. TC Bandwidth Table
  747. TC% : 0 1 2 3 4 5 6 7
  748. Value : 0 50 0 0 50 0 0 0
  749. TSA Assignment Table
  750. Traffic Class: 0 1 2 3 4 5 6 7
  751. Value : 0 2 0 0 2 0 0 0
  752. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  753. 0x0010: 0000 0200 0002 0000 00
  754. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  755. ETS Recommendation Subtype (10)
  756. RES: 0
  757. Priority Assignment Table
  758. Priority : 0 1 2 3 4 5 6 7
  759. Value : 15 4 1 1 15 4 1 4
  760. TC Bandwidth Table
  761. TC% : 0 1 2 3 4 5 6 7
  762. Value : 0 50 0 0 50 0 0 0
  763. TSA Assignment Table
  764. Traffic Class: 0 1 2 3 4 5 6 7
  765. Value : 0 2 0 0 2 0 0 0
  766. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  767. 0x0010: 0000 0200 0002 0000 00
  768. End TLV (0), length 0
  769. IP6 (hlim 1, next-header Options (0) payload length: 76) :: > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 3 group record(s) [gaddr ff02::1:ff46:e884 to_ex { }] [gaddr ff02::2 to_ex { }] [gaddr ff02::202 to_ex { }]
  770. IP6 (hlim 255, next-header ICMPv6 (58) payload length: 24) :: > ff02::1:ff46:e884: [icmp6 sum ok] ICMP6, neighbor solicitation, length 24, who has fe80::a00:27ff:fe46:e884
  771. IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328)
  772. 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xf0059f6c, Flags [none] (0x0000)
  773. Client-Ethernet-Address 08:00:27:46:e8:84
  774. Vendor-rfc1048 Extensions
  775. Magic Cookie 0x63825363
  776. DHCP-Message Option 53, length 1: Discover
  777. Parameter-Request Option 55, length 17:
  778. Subnet-Mask, BR, Time-Zone, Classless-Static-Route
  779. Domain-Name, Domain-Name-Server, Hostname, YD
  780. YS, NTP, MTU, Option 119
  781. Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
  782. NTP
  783. IP6 (hlim 255, next-header ICMPv6 (58) payload length: 16) fe80::a00:27ff:fe46:e884 > ff02::2: [icmp6 sum ok] ICMP6, router solicitation, length 16
  784. source link-address option (1), length 8 (1): 08:00:27:46:e8:84
  785. 0x0000: 0800 2746 e884
  786. IP6 (hlim 1, next-header Options (0) payload length: 96) fe80::a00:27ff:fe46:e884 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 4 group record(s) [gaddr ff02::1:ff00:0 to_ex { }] [gaddr ff02::1:ff46:e884 to_ex { }] [gaddr ff02::2 to_ex { }] [gaddr ff02::202 to_ex { }]
  787. IP6 (hlim 1, next-header Options (0) payload length: 36) fe80::a00:27ff:fe46:e884 > ff02::16: HBH (rtalert: 0x0000) (padn) [icmp6 sum ok] ICMP6, multicast listener report v2, 1 group record(s) [gaddr ff02::1:ff00:0 to_ex { }]
  788. IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328)
  789. 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xf0059f6c, secs 5, Flags [none] (0x0000)
  790. Client-Ethernet-Address 08:00:27:46:e8:84
  791. Vendor-rfc1048 Extensions
  792. Magic Cookie 0x63825363
  793. DHCP-Message Option 53, length 1: Discover
  794. Parameter-Request Option 55, length 17:
  795. Subnet-Mask, BR, Time-Zone, Classless-Static-Route
  796. Domain-Name, Domain-Name-Server, Hostname, YD
  797. YS, NTP, MTU, Option 119
  798. Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
  799. NTP
  800. IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328)
  801. 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xf0059f6c, secs 17, Flags [none] (0x0000)
  802. Client-Ethernet-Address 08:00:27:46:e8:84
  803. Vendor-rfc1048 Extensions
  804. Magic Cookie 0x63825363
  805. DHCP-Message Option 53, length 1: Discover
  806. Parameter-Request Option 55, length 17:
  807. Subnet-Mask, BR, Time-Zone, Classless-Static-Route
  808. Domain-Name, Domain-Name-Server, Hostname, YD
  809. YS, NTP, MTU, Option 119
  810. Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
  811. NTP
  812. LLDP, length 135
  813. Chassis ID TLV (1), length 7
  814. Subtype MAC address (4): 08:00:27:42:ba:59
  815. 0x0000: 0408 0027 42ba 59
  816. Port ID TLV (2), length 7
  817. Subtype MAC address (3): 08:00:27:42:ba:59
  818. 0x0000: 0308 0027 42ba 59
  819. Time to Live TLV (3), length 2: TTL 120s
  820. 0x0000: 0078
  821. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  822. Port VLAN Id Subtype (1)
  823. port vlan id (PVID): 1
  824. 0x0000: 0080 c201 0001
  825. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  826. Port and Protocol VLAN ID Subtype (2)
  827. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  828. 0x0000: 0080 c202 0200 00
  829. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  830. VLAN name Subtype (3)
  831. vlan id (VID): 1
  832. vlan name: default
  833. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  834. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  835. Protocol Identity Subtype (4)
  836. protocol identity:
  837. 0x0000: 0080 c204 0800 0042 4203 0000 00
  838. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  839. ETS Configuration Subtype (9)
  840. Willing:0, CBS:0, RES:0, Max TCs:0
  841. Priority Assignment Table
  842. Priority : 0 1 2 3 4 5 6 7
  843. Value : 15 15 15 15 15 15 15 15
  844. TC Bandwidth Table
  845. TC% : 0 1 2 3 4 5 6 7
  846. Value : 0 0 0 0 0 0 0 0
  847. TSA Assignment Table
  848. Traffic Class: 0 1 2 3 4 5 6 7
  849. Value : 0 0 0 0 0 0 0 0
  850. 0x0000: 0080 c209 00ff ffff ff00 0000 0000 0000
  851. 0x0010: 0000 0000 0000 0000 00
  852. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  853. ETS Recommendation Subtype (10)
  854. RES: 0
  855. Priority Assignment Table
  856. Priority : 0 1 2 3 4 5 6 7
  857. Value : 15 15 15 15 15 15 15 15
  858. TC Bandwidth Table
  859. TC% : 0 1 2 3 4 5 6 7
  860. Value : 0 0 0 0 0 0 0 0
  861. TSA Assignment Table
  862. Traffic Class: 0 1 2 3 4 5 6 7
  863. Value : 0 0 0 0 0 0 0 0
  864. 0x0000: 0080 c20a 00ff ffff ff00 0000 0000 0000
  865. 0x0010: 0000 0000 0000 0000 00
  866. End TLV (0), length 0
  867. LLDP, length 135
  868. Chassis ID TLV (1), length 7
  869. Subtype MAC address (4): 08:00:27:42:ba:59
  870. 0x0000: 0408 0027 42ba 59
  871. Port ID TLV (2), length 7
  872. Subtype MAC address (3): 08:00:27:42:ba:59
  873. 0x0000: 0308 0027 42ba 59
  874. Time to Live TLV (3), length 2: TTL 120s
  875. 0x0000: 0078
  876. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  877. Port VLAN Id Subtype (1)
  878. port vlan id (PVID): 1
  879. 0x0000: 0080 c201 0001
  880. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  881. Port and Protocol VLAN ID Subtype (2)
  882. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  883. 0x0000: 0080 c202 0200 00
  884. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  885. VLAN name Subtype (3)
  886. vlan id (VID): 1
  887. vlan name: default
  888. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  889. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  890. Protocol Identity Subtype (4)
  891. protocol identity:
  892. 0x0000: 0080 c204 0800 0042 4203 0000 00
  893. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  894. ETS Configuration Subtype (9)
  895. Willing:0, CBS:0, RES:0, Max TCs:0
  896. Priority Assignment Table
  897. Priority : 0 1 2 3 4 5 6 7
  898. Value : 15 15 15 15 15 15 15 15
  899. TC Bandwidth Table
  900. TC% : 0 1 2 3 4 5 6 7
  901. Value : 0 0 0 0 0 0 0 0
  902. TSA Assignment Table
  903. Traffic Class: 0 1 2 3 4 5 6 7
  904. Value : 0 0 0 0 0 0 0 0
  905. 0x0000: 0080 c209 00ff ffff ff00 0000 0000 0000
  906. 0x0010: 0000 0000 0000 0000 00
  907. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  908. ETS Recommendation Subtype (10)
  909. RES: 0
  910. Priority Assignment Table
  911. Priority : 0 1 2 3 4 5 6 7
  912. Value : 15 15 15 15 15 15 15 15
  913. TC Bandwidth Table
  914. TC% : 0 1 2 3 4 5 6 7
  915. Value : 0 0 0 0 0 0 0 0
  916. TSA Assignment Table
  917. Traffic Class: 0 1 2 3 4 5 6 7
  918. Value : 0 0 0 0 0 0 0 0
  919. 0x0000: 0080 c20a 00ff ffff ff00 0000 0000 0000
  920. 0x0010: 0000 0000 0000 0000 00
  921. End TLV (0), length 0
  922. LLDP, length 135
  923. Chassis ID TLV (1), length 7
  924. Subtype MAC address (4): 08:00:27:0d:f1:3c
  925. 0x0000: 0408 0027 0df1 3c
  926. Port ID TLV (2), length 7
  927. Subtype MAC address (3): 08:00:27:0d:f1:3c
  928. 0x0000: 0308 0027 0df1 3c
  929. Time to Live TLV (3), length 2: TTL 120s
  930. 0x0000: 0078
  931. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  932. Port VLAN Id Subtype (1)
  933. port vlan id (PVID): 1
  934. 0x0000: 0080 c201 0001
  935. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  936. Port and Protocol VLAN ID Subtype (2)
  937. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  938. 0x0000: 0080 c202 0200 00
  939. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  940. VLAN name Subtype (3)
  941. vlan id (VID): 1
  942. vlan name: default
  943. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  944. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  945. Protocol Identity Subtype (4)
  946. protocol identity:
  947. 0x0000: 0080 c204 0800 0042 4203 0000 00
  948. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  949. ETS Configuration Subtype (9)
  950. Willing:0, CBS:0, RES:0, Max TCs:0
  951. Priority Assignment Table
  952. Priority : 0 1 2 3 4 5 6 7
  953. Value : 15 4 1 1 15 4 1 4
  954. TC Bandwidth Table
  955. TC% : 0 1 2 3 4 5 6 7
  956. Value : 0 50 0 0 50 0 0 0
  957. TSA Assignment Table
  958. Traffic Class: 0 1 2 3 4 5 6 7
  959. Value : 0 2 0 0 2 0 0 0
  960. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  961. 0x0010: 0000 0200 0002 0000 00
  962. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  963. ETS Recommendation Subtype (10)
  964. RES: 0
  965. Priority Assignment Table
  966. Priority : 0 1 2 3 4 5 6 7
  967. Value : 15 4 1 1 15 4 1 4
  968. TC Bandwidth Table
  969. TC% : 0 1 2 3 4 5 6 7
  970. Value : 0 50 0 0 50 0 0 0
  971. TSA Assignment Table
  972. Traffic Class: 0 1 2 3 4 5 6 7
  973. Value : 0 2 0 0 2 0 0 0
  974. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  975. 0x0010: 0000 0200 0002 0000 00
  976. End TLV (0), length 0
  977. LLDP, length 135
  978. Chassis ID TLV (1), length 7
  979. Subtype MAC address (4): 08:00:27:0d:f1:3c
  980. 0x0000: 0408 0027 0df1 3c
  981. Port ID TLV (2), length 7
  982. Subtype MAC address (3): 08:00:27:0d:f1:3c
  983. 0x0000: 0308 0027 0df1 3c
  984. Time to Live TLV (3), length 2: TTL 120s
  985. 0x0000: 0078
  986. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  987. Port VLAN Id Subtype (1)
  988. port vlan id (PVID): 1
  989. 0x0000: 0080 c201 0001
  990. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  991. Port and Protocol VLAN ID Subtype (2)
  992. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  993. 0x0000: 0080 c202 0200 00
  994. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  995. VLAN name Subtype (3)
  996. vlan id (VID): 1
  997. vlan name: default
  998. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  999. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  1000. Protocol Identity Subtype (4)
  1001. protocol identity:
  1002. 0x0000: 0080 c204 0800 0042 4203 0000 00
  1003. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1004. ETS Configuration Subtype (9)
  1005. Willing:0, CBS:0, RES:0, Max TCs:0
  1006. Priority Assignment Table
  1007. Priority : 0 1 2 3 4 5 6 7
  1008. Value : 15 4 1 1 15 4 1 4
  1009. TC Bandwidth Table
  1010. TC% : 0 1 2 3 4 5 6 7
  1011. Value : 0 50 0 0 50 0 0 0
  1012. TSA Assignment Table
  1013. Traffic Class: 0 1 2 3 4 5 6 7
  1014. Value : 0 2 0 0 2 0 0 0
  1015. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  1016. 0x0010: 0000 0200 0002 0000 00
  1017. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1018. ETS Recommendation Subtype (10)
  1019. RES: 0
  1020. Priority Assignment Table
  1021. Priority : 0 1 2 3 4 5 6 7
  1022. Value : 15 4 1 1 15 4 1 4
  1023. TC Bandwidth Table
  1024. TC% : 0 1 2 3 4 5 6 7
  1025. Value : 0 50 0 0 50 0 0 0
  1026. TSA Assignment Table
  1027. Traffic Class: 0 1 2 3 4 5 6 7
  1028. Value : 0 2 0 0 2 0 0 0
  1029. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  1030. 0x0010: 0000 0200 0002 0000 00
  1031. End TLV (0), length 0
  1032. IP (tos 0x10, ttl 128, id 0, offset 0, flags [none], proto UDP (17), length 328)
  1033. 0.0.0.0.68 > 255.255.255.255.67: [udp sum ok] BOOTP/DHCP, Request from 08:00:27:46:e8:84, length 300, xid 0xf0059f6c, secs 36, Flags [none] (0x0000)
  1034. Client-Ethernet-Address 08:00:27:46:e8:84
  1035. Vendor-rfc1048 Extensions
  1036. Magic Cookie 0x63825363
  1037. DHCP-Message Option 53, length 1: Discover
  1038. Parameter-Request Option 55, length 17:
  1039. Subnet-Mask, BR, Time-Zone, Classless-Static-Route
  1040. Domain-Name, Domain-Name-Server, Hostname, YD
  1041. YS, NTP, MTU, Option 119
  1042. Default-Gateway, Classless-Static-Route, Classless-Static-Route-Microsoft, Option 252
  1043. NTP
  1044. LLDP, length 135
  1045. Chassis ID TLV (1), length 7
  1046. Subtype MAC address (4): 08:00:27:42:ba:59
  1047. 0x0000: 0408 0027 42ba 59
  1048. Port ID TLV (2), length 7
  1049. Subtype MAC address (3): 08:00:27:42:ba:59
  1050. 0x0000: 0308 0027 42ba 59
  1051. Time to Live TLV (3), length 2: TTL 120s
  1052. 0x0000: 0078
  1053. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  1054. Port VLAN Id Subtype (1)
  1055. port vlan id (PVID): 1
  1056. 0x0000: 0080 c201 0001
  1057. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  1058. Port and Protocol VLAN ID Subtype (2)
  1059. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  1060. 0x0000: 0080 c202 0200 00
  1061. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  1062. VLAN name Subtype (3)
  1063. vlan id (VID): 1
  1064. vlan name: default
  1065. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  1066. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  1067. Protocol Identity Subtype (4)
  1068. protocol identity:
  1069. 0x0000: 0080 c204 0800 0042 4203 0000 00
  1070. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1071. ETS Configuration Subtype (9)
  1072. Willing:0, CBS:0, RES:0, Max TCs:0
  1073. Priority Assignment Table
  1074. Priority : 0 1 2 3 4 5 6 7
  1075. Value : 15 15 1 1 15 15 1 15
  1076. TC Bandwidth Table
  1077. TC% : 0 1 2 3 4 5 6 7
  1078. Value : 0 0 0 0 0 0 0 0
  1079. TSA Assignment Table
  1080. Traffic Class: 0 1 2 3 4 5 6 7
  1081. Value : 0 0 0 0 0 0 0 0
  1082. 0x0000: 0080 c209 00ff 11ff 1f00 0000 0000 0000
  1083. 0x0010: 0000 0000 0000 0000 00
  1084. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1085. ETS Recommendation Subtype (10)
  1086. RES: 0
  1087. Priority Assignment Table
  1088. Priority : 0 1 2 3 4 5 6 7
  1089. Value : 15 15 1 1 15 15 1 15
  1090. TC Bandwidth Table
  1091. TC% : 0 1 2 3 4 5 6 7
  1092. Value : 0 0 0 0 0 0 0 0
  1093. TSA Assignment Table
  1094. Traffic Class: 0 1 2 3 4 5 6 7
  1095. Value : 0 0 0 0 0 0 0 0
  1096. 0x0000: 0080 c20a 00ff 11ff 1f00 0000 0000 0000
  1097. 0x0010: 0000 0000 0000 0000 00
  1098. End TLV (0), length 0
  1099. LLDP, length 135
  1100. Chassis ID TLV (1), length 7
  1101. Subtype MAC address (4): 08:00:27:42:ba:59
  1102. 0x0000: 0408 0027 42ba 59
  1103. Port ID TLV (2), length 7
  1104. Subtype MAC address (3): 08:00:27:42:ba:59
  1105. 0x0000: 0308 0027 42ba 59
  1106. Time to Live TLV (3), length 2: TTL 120s
  1107. 0x0000: 0078
  1108. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  1109. Port VLAN Id Subtype (1)
  1110. port vlan id (PVID): 1
  1111. 0x0000: 0080 c201 0001
  1112. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  1113. Port and Protocol VLAN ID Subtype (2)
  1114. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  1115. 0x0000: 0080 c202 0200 00
  1116. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  1117. VLAN name Subtype (3)
  1118. vlan id (VID): 1
  1119. vlan name: default
  1120. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  1121. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  1122. Protocol Identity Subtype (4)
  1123. protocol identity:
  1124. 0x0000: 0080 c204 0800 0042 4203 0000 00
  1125. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1126. ETS Configuration Subtype (9)
  1127. Willing:0, CBS:0, RES:0, Max TCs:0
  1128. Priority Assignment Table
  1129. Priority : 0 1 2 3 4 5 6 7
  1130. Value : 15 15 1 1 15 15 1 15
  1131. TC Bandwidth Table
  1132. TC% : 0 1 2 3 4 5 6 7
  1133. Value : 0 0 0 0 0 0 0 0
  1134. TSA Assignment Table
  1135. Traffic Class: 0 1 2 3 4 5 6 7
  1136. Value : 0 0 0 0 0 0 0 0
  1137. 0x0000: 0080 c209 00ff 11ff 1f00 0000 0000 0000
  1138. 0x0010: 0000 0000 0000 0000 00
  1139. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1140. ETS Recommendation Subtype (10)
  1141. RES: 0
  1142. Priority Assignment Table
  1143. Priority : 0 1 2 3 4 5 6 7
  1144. Value : 15 15 1 1 15 15 1 15
  1145. TC Bandwidth Table
  1146. TC% : 0 1 2 3 4 5 6 7
  1147. Value : 0 0 0 0 0 0 0 0
  1148. TSA Assignment Table
  1149. Traffic Class: 0 1 2 3 4 5 6 7
  1150. Value : 0 0 0 0 0 0 0 0
  1151. 0x0000: 0080 c20a 00ff 11ff 1f00 0000 0000 0000
  1152. 0x0010: 0000 0000 0000 0000 00
  1153. End TLV (0), length 0
  1154. LLDP, length 135
  1155. Chassis ID TLV (1), length 7
  1156. Subtype MAC address (4): 08:00:27:0d:f1:3c
  1157. 0x0000: 0408 0027 0df1 3c
  1158. Port ID TLV (2), length 7
  1159. Subtype MAC address (3): 08:00:27:0d:f1:3c
  1160. 0x0000: 0308 0027 0df1 3c
  1161. Time to Live TLV (3), length 2: TTL 120s
  1162. 0x0000: 0078
  1163. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  1164. Port VLAN Id Subtype (1)
  1165. port vlan id (PVID): 1
  1166. 0x0000: 0080 c201 0001
  1167. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  1168. Port and Protocol VLAN ID Subtype (2)
  1169. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  1170. 0x0000: 0080 c202 0200 00
  1171. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  1172. VLAN name Subtype (3)
  1173. vlan id (VID): 1
  1174. vlan name: default
  1175. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  1176. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  1177. Protocol Identity Subtype (4)
  1178. protocol identity:
  1179. 0x0000: 0080 c204 0800 0042 4203 0000 00
  1180. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1181. ETS Configuration Subtype (9)
  1182. Willing:0, CBS:0, RES:0, Max TCs:0
  1183. Priority Assignment Table
  1184. Priority : 0 1 2 3 4 5 6 7
  1185. Value : 15 4 1 1 15 4 1 4
  1186. TC Bandwidth Table
  1187. TC% : 0 1 2 3 4 5 6 7
  1188. Value : 0 50 0 0 50 0 0 0
  1189. TSA Assignment Table
  1190. Traffic Class: 0 1 2 3 4 5 6 7
  1191. Value : 0 2 0 0 2 0 0 0
  1192. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  1193. 0x0010: 0000 0200 0002 0000 00
  1194. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1195. ETS Recommendation Subtype (10)
  1196. RES: 0
  1197. Priority Assignment Table
  1198. Priority : 0 1 2 3 4 5 6 7
  1199. Value : 15 4 1 1 15 4 1 4
  1200. TC Bandwidth Table
  1201. TC% : 0 1 2 3 4 5 6 7
  1202. Value : 0 50 0 0 50 0 0 0
  1203. TSA Assignment Table
  1204. Traffic Class: 0 1 2 3 4 5 6 7
  1205. Value : 0 2 0 0 2 0 0 0
  1206. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  1207. 0x0010: 0000 0200 0002 0000 00
  1208. End TLV (0), length 0
  1209. LLDP, length 135
  1210. Chassis ID TLV (1), length 7
  1211. Subtype MAC address (4): 08:00:27:0d:f1:3c
  1212. 0x0000: 0408 0027 0df1 3c
  1213. Port ID TLV (2), length 7
  1214. Subtype MAC address (3): 08:00:27:0d:f1:3c
  1215. 0x0000: 0308 0027 0df1 3c
  1216. Time to Live TLV (3), length 2: TTL 120s
  1217. 0x0000: 0078
  1218. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  1219. Port VLAN Id Subtype (1)
  1220. port vlan id (PVID): 1
  1221. 0x0000: 0080 c201 0001
  1222. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  1223. Port and Protocol VLAN ID Subtype (2)
  1224. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  1225. 0x0000: 0080 c202 0200 00
  1226. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  1227. VLAN name Subtype (3)
  1228. vlan id (VID): 1
  1229. vlan name: default
  1230. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  1231. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  1232. Protocol Identity Subtype (4)
  1233. protocol identity:
  1234. 0x0000: 0080 c204 0800 0042 4203 0000 00
  1235. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1236. ETS Configuration Subtype (9)
  1237. Willing:0, CBS:0, RES:0, Max TCs:0
  1238. Priority Assignment Table
  1239. Priority : 0 1 2 3 4 5 6 7
  1240. Value : 15 4 1 1 15 4 1 4
  1241. TC Bandwidth Table
  1242. TC% : 0 1 2 3 4 5 6 7
  1243. Value : 0 50 0 0 50 0 0 0
  1244. TSA Assignment Table
  1245. Traffic Class: 0 1 2 3 4 5 6 7
  1246. Value : 0 2 0 0 2 0 0 0
  1247. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  1248. 0x0010: 0000 0200 0002 0000 00
  1249. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1250. ETS Recommendation Subtype (10)
  1251. RES: 0
  1252. Priority Assignment Table
  1253. Priority : 0 1 2 3 4 5 6 7
  1254. Value : 15 4 1 1 15 4 1 4
  1255. TC Bandwidth Table
  1256. TC% : 0 1 2 3 4 5 6 7
  1257. Value : 0 50 0 0 50 0 0 0
  1258. TSA Assignment Table
  1259. Traffic Class: 0 1 2 3 4 5 6 7
  1260. Value : 0 2 0 0 2 0 0 0
  1261. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  1262. 0x0010: 0000 0200 0002 0000 00
  1263. End TLV (0), length 0
  1264. LLDP, length 135
  1265. Chassis ID TLV (1), length 7
  1266. Subtype MAC address (4): 08:00:27:42:ba:59
  1267. 0x0000: 0408 0027 42ba 59
  1268. Port ID TLV (2), length 7
  1269. Subtype MAC address (3): 08:00:27:42:ba:59
  1270. 0x0000: 0308 0027 42ba 59
  1271. Time to Live TLV (3), length 2: TTL 120s
  1272. 0x0000: 0078
  1273. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  1274. Port VLAN Id Subtype (1)
  1275. port vlan id (PVID): 1
  1276. 0x0000: 0080 c201 0001
  1277. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  1278. Port and Protocol VLAN ID Subtype (2)
  1279. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  1280. 0x0000: 0080 c202 0200 00
  1281. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  1282. VLAN name Subtype (3)
  1283. vlan id (VID): 1
  1284. vlan name: default
  1285. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  1286. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  1287. Protocol Identity Subtype (4)
  1288. protocol identity:
  1289. 0x0000: 0080 c204 0800 0042 4203 0000 00
  1290. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1291. ETS Configuration Subtype (9)
  1292. Willing:0, CBS:0, RES:0, Max TCs:0
  1293. Priority Assignment Table
  1294. Priority : 0 1 2 3 4 5 6 7
  1295. Value : 15 4 1 1 15 4 1 4
  1296. TC Bandwidth Table
  1297. TC% : 0 1 2 3 4 5 6 7
  1298. Value : 0 50 0 0 50 0 0 0
  1299. TSA Assignment Table
  1300. Traffic Class: 0 1 2 3 4 5 6 7
  1301. Value : 0 2 0 0 2 0 0 0
  1302. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  1303. 0x0010: 0000 0200 0002 0000 00
  1304. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1305. ETS Recommendation Subtype (10)
  1306. RES: 0
  1307. Priority Assignment Table
  1308. Priority : 0 1 2 3 4 5 6 7
  1309. Value : 15 4 1 1 15 4 1 4
  1310. TC Bandwidth Table
  1311. TC% : 0 1 2 3 4 5 6 7
  1312. Value : 0 50 0 0 50 0 0 0
  1313. TSA Assignment Table
  1314. Traffic Class: 0 1 2 3 4 5 6 7
  1315. Value : 0 2 0 0 2 0 0 0
  1316. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  1317. 0x0010: 0000 0200 0002 0000 00
  1318. End TLV (0), length 0
  1319. LLDP, length 135
  1320. Chassis ID TLV (1), length 7
  1321. Subtype MAC address (4): 08:00:27:42:ba:59
  1322. 0x0000: 0408 0027 42ba 59
  1323. Port ID TLV (2), length 7
  1324. Subtype MAC address (3): 08:00:27:42:ba:59
  1325. 0x0000: 0308 0027 42ba 59
  1326. Time to Live TLV (3), length 2: TTL 120s
  1327. 0x0000: 0078
  1328. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  1329. Port VLAN Id Subtype (1)
  1330. port vlan id (PVID): 1
  1331. 0x0000: 0080 c201 0001
  1332. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  1333. Port and Protocol VLAN ID Subtype (2)
  1334. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  1335. 0x0000: 0080 c202 0200 00
  1336. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  1337. VLAN name Subtype (3)
  1338. vlan id (VID): 1
  1339. vlan name: default
  1340. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  1341. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  1342. Protocol Identity Subtype (4)
  1343. protocol identity:
  1344. 0x0000: 0080 c204 0800 0042 4203 0000 00
  1345. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1346. ETS Configuration Subtype (9)
  1347. Willing:0, CBS:0, RES:0, Max TCs:0
  1348. Priority Assignment Table
  1349. Priority : 0 1 2 3 4 5 6 7
  1350. Value : 15 4 1 1 15 4 1 4
  1351. TC Bandwidth Table
  1352. TC% : 0 1 2 3 4 5 6 7
  1353. Value : 0 50 0 0 50 0 0 0
  1354. TSA Assignment Table
  1355. Traffic Class: 0 1 2 3 4 5 6 7
  1356. Value : 0 2 0 0 2 0 0 0
  1357. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  1358. 0x0010: 0000 0200 0002 0000 00
  1359. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1360. ETS Recommendation Subtype (10)
  1361. RES: 0
  1362. Priority Assignment Table
  1363. Priority : 0 1 2 3 4 5 6 7
  1364. Value : 15 4 1 1 15 4 1 4
  1365. TC Bandwidth Table
  1366. TC% : 0 1 2 3 4 5 6 7
  1367. Value : 0 50 0 0 50 0 0 0
  1368. TSA Assignment Table
  1369. Traffic Class: 0 1 2 3 4 5 6 7
  1370. Value : 0 2 0 0 2 0 0 0
  1371. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  1372. 0x0010: 0000 0200 0002 0000 00
  1373. End TLV (0), length 0
  1374. LLDP, length 135
  1375. Chassis ID TLV (1), length 7
  1376. Subtype MAC address (4): 08:00:27:0d:f1:3c
  1377. 0x0000: 0408 0027 0df1 3c
  1378. Port ID TLV (2), length 7
  1379. Subtype MAC address (3): 08:00:27:0d:f1:3c
  1380. 0x0000: 0308 0027 0df1 3c
  1381. Time to Live TLV (3), length 2: TTL 120s
  1382. 0x0000: 0078
  1383. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  1384. Port VLAN Id Subtype (1)
  1385. port vlan id (PVID): 1
  1386. 0x0000: 0080 c201 0001
  1387. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  1388. Port and Protocol VLAN ID Subtype (2)
  1389. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  1390. 0x0000: 0080 c202 0200 00
  1391. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  1392. VLAN name Subtype (3)
  1393. vlan id (VID): 1
  1394. vlan name: default
  1395. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  1396. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  1397. Protocol Identity Subtype (4)
  1398. protocol identity:
  1399. 0x0000: 0080 c204 0800 0042 4203 0000 00
  1400. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1401. ETS Configuration Subtype (9)
  1402. Willing:0, CBS:0, RES:0, Max TCs:0
  1403. Priority Assignment Table
  1404. Priority : 0 1 2 3 4 5 6 7
  1405. Value : 15 4 1 1 15 4 1 4
  1406. TC Bandwidth Table
  1407. TC% : 0 1 2 3 4 5 6 7
  1408. Value : 0 50 0 0 50 0 0 0
  1409. TSA Assignment Table
  1410. Traffic Class: 0 1 2 3 4 5 6 7
  1411. Value : 0 2 0 0 2 0 0 0
  1412. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  1413. 0x0010: 0000 0200 0002 0000 00
  1414. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1415. ETS Recommendation Subtype (10)
  1416. RES: 0
  1417. Priority Assignment Table
  1418. Priority : 0 1 2 3 4 5 6 7
  1419. Value : 15 4 1 1 15 4 1 4
  1420. TC Bandwidth Table
  1421. TC% : 0 1 2 3 4 5 6 7
  1422. Value : 0 50 0 0 50 0 0 0
  1423. TSA Assignment Table
  1424. Traffic Class: 0 1 2 3 4 5 6 7
  1425. Value : 0 2 0 0 2 0 0 0
  1426. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  1427. 0x0010: 0000 0200 0002 0000 00
  1428. End TLV (0), length 0
  1429. LLDP, length 135
  1430. Chassis ID TLV (1), length 7
  1431. Subtype MAC address (4): 08:00:27:0d:f1:3c
  1432. 0x0000: 0408 0027 0df1 3c
  1433. Port ID TLV (2), length 7
  1434. Subtype MAC address (3): 08:00:27:0d:f1:3c
  1435. 0x0000: 0308 0027 0df1 3c
  1436. Time to Live TLV (3), length 2: TTL 120s
  1437. 0x0000: 0078
  1438. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  1439. Port VLAN Id Subtype (1)
  1440. port vlan id (PVID): 1
  1441. 0x0000: 0080 c201 0001
  1442. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  1443. Port and Protocol VLAN ID Subtype (2)
  1444. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  1445. 0x0000: 0080 c202 0200 00
  1446. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  1447. VLAN name Subtype (3)
  1448. vlan id (VID): 1
  1449. vlan name: default
  1450. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  1451. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  1452. Protocol Identity Subtype (4)
  1453. protocol identity:
  1454. 0x0000: 0080 c204 0800 0042 4203 0000 00
  1455. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1456. ETS Configuration Subtype (9)
  1457. Willing:0, CBS:0, RES:0, Max TCs:0
  1458. Priority Assignment Table
  1459. Priority : 0 1 2 3 4 5 6 7
  1460. Value : 15 4 1 1 15 4 1 4
  1461. TC Bandwidth Table
  1462. TC% : 0 1 2 3 4 5 6 7
  1463. Value : 0 50 0 0 50 0 0 0
  1464. TSA Assignment Table
  1465. Traffic Class: 0 1 2 3 4 5 6 7
  1466. Value : 0 2 0 0 2 0 0 0
  1467. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  1468. 0x0010: 0000 0200 0002 0000 00
  1469. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1470. ETS Recommendation Subtype (10)
  1471. RES: 0
  1472. Priority Assignment Table
  1473. Priority : 0 1 2 3 4 5 6 7
  1474. Value : 15 4 1 1 15 4 1 4
  1475. TC Bandwidth Table
  1476. TC% : 0 1 2 3 4 5 6 7
  1477. Value : 0 50 0 0 50 0 0 0
  1478. TSA Assignment Table
  1479. Traffic Class: 0 1 2 3 4 5 6 7
  1480. Value : 0 2 0 0 2 0 0 0
  1481. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  1482. 0x0010: 0000 0200 0002 0000 00
  1483. End TLV (0), length 0
  1484. LLDP, length 135
  1485. Chassis ID TLV (1), length 7
  1486. Subtype MAC address (4): 08:00:27:42:ba:59
  1487. 0x0000: 0408 0027 42ba 59
  1488. Port ID TLV (2), length 7
  1489. Subtype MAC address (3): 08:00:27:42:ba:59
  1490. 0x0000: 0308 0027 42ba 59
  1491. Time to Live TLV (3), length 2: TTL 120s
  1492. 0x0000: 0078
  1493. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  1494. Port VLAN Id Subtype (1)
  1495. port vlan id (PVID): 1
  1496. 0x0000: 0080 c201 0001
  1497. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  1498. Port and Protocol VLAN ID Subtype (2)
  1499. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  1500. 0x0000: 0080 c202 0200 00
  1501. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  1502. VLAN name Subtype (3)
  1503. vlan id (VID): 1
  1504. vlan name: default
  1505. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  1506. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  1507. Protocol Identity Subtype (4)
  1508. protocol identity:
  1509. 0x0000: 0080 c204 0800 0042 4203 0000 00
  1510. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1511. ETS Configuration Subtype (9)
  1512. Willing:0, CBS:0, RES:0, Max TCs:0
  1513. Priority Assignment Table
  1514. Priority : 0 1 2 3 4 5 6 7
  1515. Value : 15 4 1 1 15 4 1 4
  1516. TC Bandwidth Table
  1517. TC% : 0 1 2 3 4 5 6 7
  1518. Value : 0 50 0 0 50 0 0 0
  1519. TSA Assignment Table
  1520. Traffic Class: 0 1 2 3 4 5 6 7
  1521. Value : 0 2 0 0 2 0 0 0
  1522. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  1523. 0x0010: 0000 0200 0002 0000 00
  1524. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1525. ETS Recommendation Subtype (10)
  1526. RES: 0
  1527. Priority Assignment Table
  1528. Priority : 0 1 2 3 4 5 6 7
  1529. Value : 15 4 1 1 15 4 1 4
  1530. TC Bandwidth Table
  1531. TC% : 0 1 2 3 4 5 6 7
  1532. Value : 0 50 0 0 50 0 0 0
  1533. TSA Assignment Table
  1534. Traffic Class: 0 1 2 3 4 5 6 7
  1535. Value : 0 2 0 0 2 0 0 0
  1536. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  1537. 0x0010: 0000 0200 0002 0000 00
  1538. End TLV (0), length 0
  1539. LLDP, length 135
  1540. Chassis ID TLV (1), length 7
  1541. Subtype MAC address (4): 08:00:27:42:ba:59
  1542. 0x0000: 0408 0027 42ba 59
  1543. Port ID TLV (2), length 7
  1544. Subtype MAC address (3): 08:00:27:42:ba:59
  1545. 0x0000: 0308 0027 42ba 59
  1546. Time to Live TLV (3), length 2: TTL 120s
  1547. 0x0000: 0078
  1548. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  1549. Port VLAN Id Subtype (1)
  1550. port vlan id (PVID): 1
  1551. 0x0000: 0080 c201 0001
  1552. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  1553. Port and Protocol VLAN ID Subtype (2)
  1554. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  1555. 0x0000: 0080 c202 0200 00
  1556. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  1557. VLAN name Subtype (3)
  1558. vlan id (VID): 1
  1559. vlan name: default
  1560. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  1561. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  1562. Protocol Identity Subtype (4)
  1563. protocol identity:
  1564. 0x0000: 0080 c204 0800 0042 4203 0000 00
  1565. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1566. ETS Configuration Subtype (9)
  1567. Willing:0, CBS:0, RES:0, Max TCs:0
  1568. Priority Assignment Table
  1569. Priority : 0 1 2 3 4 5 6 7
  1570. Value : 15 4 1 1 15 4 1 4
  1571. TC Bandwidth Table
  1572. TC% : 0 1 2 3 4 5 6 7
  1573. Value : 0 50 0 0 50 0 0 0
  1574. TSA Assignment Table
  1575. Traffic Class: 0 1 2 3 4 5 6 7
  1576. Value : 0 2 0 0 2 0 0 0
  1577. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  1578. 0x0010: 0000 0200 0002 0000 00
  1579. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1580. ETS Recommendation Subtype (10)
  1581. RES: 0
  1582. Priority Assignment Table
  1583. Priority : 0 1 2 3 4 5 6 7
  1584. Value : 15 4 1 1 15 4 1 4
  1585. TC Bandwidth Table
  1586. TC% : 0 1 2 3 4 5 6 7
  1587. Value : 0 50 0 0 50 0 0 0
  1588. TSA Assignment Table
  1589. Traffic Class: 0 1 2 3 4 5 6 7
  1590. Value : 0 2 0 0 2 0 0 0
  1591. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  1592. 0x0010: 0000 0200 0002 0000 00
  1593. End TLV (0), length 0
  1594. LLDP, length 135
  1595. Chassis ID TLV (1), length 7
  1596. Subtype MAC address (4): 08:00:27:0d:f1:3c
  1597. 0x0000: 0408 0027 0df1 3c
  1598. Port ID TLV (2), length 7
  1599. Subtype MAC address (3): 08:00:27:0d:f1:3c
  1600. 0x0000: 0308 0027 0df1 3c
  1601. Time to Live TLV (3), length 2: TTL 120s
  1602. 0x0000: 0078
  1603. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  1604. Port VLAN Id Subtype (1)
  1605. port vlan id (PVID): 1
  1606. 0x0000: 0080 c201 0001
  1607. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  1608. Port and Protocol VLAN ID Subtype (2)
  1609. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  1610. 0x0000: 0080 c202 0200 00
  1611. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  1612. VLAN name Subtype (3)
  1613. vlan id (VID): 1
  1614. vlan name: default
  1615. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  1616. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  1617. Protocol Identity Subtype (4)
  1618. protocol identity:
  1619. 0x0000: 0080 c204 0800 0042 4203 0000 00
  1620. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1621. ETS Configuration Subtype (9)
  1622. Willing:0, CBS:0, RES:0, Max TCs:0
  1623. Priority Assignment Table
  1624. Priority : 0 1 2 3 4 5 6 7
  1625. Value : 15 4 1 1 15 4 1 4
  1626. TC Bandwidth Table
  1627. TC% : 0 1 2 3 4 5 6 7
  1628. Value : 0 50 0 0 50 0 0 0
  1629. TSA Assignment Table
  1630. Traffic Class: 0 1 2 3 4 5 6 7
  1631. Value : 0 2 0 0 2 0 0 0
  1632. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  1633. 0x0010: 0000 0200 0002 0000 00
  1634. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1635. ETS Recommendation Subtype (10)
  1636. RES: 0
  1637. Priority Assignment Table
  1638. Priority : 0 1 2 3 4 5 6 7
  1639. Value : 15 4 1 1 15 4 1 4
  1640. TC Bandwidth Table
  1641. TC% : 0 1 2 3 4 5 6 7
  1642. Value : 0 50 0 0 50 0 0 0
  1643. TSA Assignment Table
  1644. Traffic Class: 0 1 2 3 4 5 6 7
  1645. Value : 0 2 0 0 2 0 0 0
  1646. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  1647. 0x0010: 0000 0200 0002 0000 00
  1648. End TLV (0), length 0
  1649. LLDP, length 135
  1650. Chassis ID TLV (1), length 7
  1651. Subtype MAC address (4): 08:00:27:0d:f1:3c
  1652. 0x0000: 0408 0027 0df1 3c
  1653. Port ID TLV (2), length 7
  1654. Subtype MAC address (3): 08:00:27:0d:f1:3c
  1655. 0x0000: 0308 0027 0df1 3c
  1656. Time to Live TLV (3), length 2: TTL 120s
  1657. 0x0000: 0078
  1658. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  1659. Port VLAN Id Subtype (1)
  1660. port vlan id (PVID): 1
  1661. 0x0000: 0080 c201 0001
  1662. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  1663. Port and Protocol VLAN ID Subtype (2)
  1664. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  1665. 0x0000: 0080 c202 0200 00
  1666. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  1667. VLAN name Subtype (3)
  1668. vlan id (VID): 1
  1669. vlan name: default
  1670. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  1671. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  1672. Protocol Identity Subtype (4)
  1673. protocol identity:
  1674. 0x0000: 0080 c204 0800 0042 4203 0000 00
  1675. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1676. ETS Configuration Subtype (9)
  1677. Willing:0, CBS:0, RES:0, Max TCs:0
  1678. Priority Assignment Table
  1679. Priority : 0 1 2 3 4 5 6 7
  1680. Value : 15 4 1 1 15 4 1 4
  1681. TC Bandwidth Table
  1682. TC% : 0 1 2 3 4 5 6 7
  1683. Value : 0 50 0 0 50 0 0 0
  1684. TSA Assignment Table
  1685. Traffic Class: 0 1 2 3 4 5 6 7
  1686. Value : 0 2 0 0 2 0 0 0
  1687. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  1688. 0x0010: 0000 0200 0002 0000 00
  1689. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1690. ETS Recommendation Subtype (10)
  1691. RES: 0
  1692. Priority Assignment Table
  1693. Priority : 0 1 2 3 4 5 6 7
  1694. Value : 15 4 1 1 15 4 1 4
  1695. TC Bandwidth Table
  1696. TC% : 0 1 2 3 4 5 6 7
  1697. Value : 0 50 0 0 50 0 0 0
  1698. TSA Assignment Table
  1699. Traffic Class: 0 1 2 3 4 5 6 7
  1700. Value : 0 2 0 0 2 0 0 0
  1701. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  1702. 0x0010: 0000 0200 0002 0000 00
  1703. End TLV (0), length 0
  1704. LLDP, length 135
  1705. Chassis ID TLV (1), length 7
  1706. Subtype MAC address (4): 08:00:27:42:ba:59
  1707. 0x0000: 0408 0027 42ba 59
  1708. Port ID TLV (2), length 7
  1709. Subtype MAC address (3): 08:00:27:42:ba:59
  1710. 0x0000: 0308 0027 42ba 59
  1711. Time to Live TLV (3), length 2: TTL 120s
  1712. 0x0000: 0078
  1713. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  1714. Port VLAN Id Subtype (1)
  1715. port vlan id (PVID): 1
  1716. 0x0000: 0080 c201 0001
  1717. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  1718. Port and Protocol VLAN ID Subtype (2)
  1719. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  1720. 0x0000: 0080 c202 0200 00
  1721. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  1722. VLAN name Subtype (3)
  1723. vlan id (VID): 1
  1724. vlan name: default
  1725. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  1726. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  1727. Protocol Identity Subtype (4)
  1728. protocol identity:
  1729. 0x0000: 0080 c204 0800 0042 4203 0000 00
  1730. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1731. ETS Configuration Subtype (9)
  1732. Willing:0, CBS:0, RES:0, Max TCs:0
  1733. Priority Assignment Table
  1734. Priority : 0 1 2 3 4 5 6 7
  1735. Value : 15 4 1 1 15 4 1 4
  1736. TC Bandwidth Table
  1737. TC% : 0 1 2 3 4 5 6 7
  1738. Value : 0 50 0 0 50 0 0 0
  1739. TSA Assignment Table
  1740. Traffic Class: 0 1 2 3 4 5 6 7
  1741. Value : 0 2 0 0 2 0 0 0
  1742. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  1743. 0x0010: 0000 0200 0002 0000 00
  1744. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1745. ETS Recommendation Subtype (10)
  1746. RES: 0
  1747. Priority Assignment Table
  1748. Priority : 0 1 2 3 4 5 6 7
  1749. Value : 15 4 1 1 15 4 1 4
  1750. TC Bandwidth Table
  1751. TC% : 0 1 2 3 4 5 6 7
  1752. Value : 0 50 0 0 50 0 0 0
  1753. TSA Assignment Table
  1754. Traffic Class: 0 1 2 3 4 5 6 7
  1755. Value : 0 2 0 0 2 0 0 0
  1756. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  1757. 0x0010: 0000 0200 0002 0000 00
  1758. End TLV (0), length 0
  1759. LLDP, length 135
  1760. Chassis ID TLV (1), length 7
  1761. Subtype MAC address (4): 08:00:27:42:ba:59
  1762. 0x0000: 0408 0027 42ba 59
  1763. Port ID TLV (2), length 7
  1764. Subtype MAC address (3): 08:00:27:42:ba:59
  1765. 0x0000: 0308 0027 42ba 59
  1766. Time to Live TLV (3), length 2: TTL 120s
  1767. 0x0000: 0078
  1768. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  1769. Port VLAN Id Subtype (1)
  1770. port vlan id (PVID): 1
  1771. 0x0000: 0080 c201 0001
  1772. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  1773. Port and Protocol VLAN ID Subtype (2)
  1774. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  1775. 0x0000: 0080 c202 0200 00
  1776. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  1777. VLAN name Subtype (3)
  1778. vlan id (VID): 1
  1779. vlan name: default
  1780. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  1781. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  1782. Protocol Identity Subtype (4)
  1783. protocol identity:
  1784. 0x0000: 0080 c204 0800 0042 4203 0000 00
  1785. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1786. ETS Configuration Subtype (9)
  1787. Willing:0, CBS:0, RES:0, Max TCs:0
  1788. Priority Assignment Table
  1789. Priority : 0 1 2 3 4 5 6 7
  1790. Value : 15 4 1 1 15 4 1 4
  1791. TC Bandwidth Table
  1792. TC% : 0 1 2 3 4 5 6 7
  1793. Value : 0 50 0 0 50 0 0 0
  1794. TSA Assignment Table
  1795. Traffic Class: 0 1 2 3 4 5 6 7
  1796. Value : 0 2 0 0 2 0 0 0
  1797. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  1798. 0x0010: 0000 0200 0002 0000 00
  1799. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1800. ETS Recommendation Subtype (10)
  1801. RES: 0
  1802. Priority Assignment Table
  1803. Priority : 0 1 2 3 4 5 6 7
  1804. Value : 15 4 1 1 15 4 1 4
  1805. TC Bandwidth Table
  1806. TC% : 0 1 2 3 4 5 6 7
  1807. Value : 0 50 0 0 50 0 0 0
  1808. TSA Assignment Table
  1809. Traffic Class: 0 1 2 3 4 5 6 7
  1810. Value : 0 2 0 0 2 0 0 0
  1811. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  1812. 0x0010: 0000 0200 0002 0000 00
  1813. End TLV (0), length 0
  1814. LLDP, length 135
  1815. Chassis ID TLV (1), length 7
  1816. Subtype MAC address (4): 08:00:27:0d:f1:3c
  1817. 0x0000: 0408 0027 0df1 3c
  1818. Port ID TLV (2), length 7
  1819. Subtype MAC address (3): 08:00:27:0d:f1:3c
  1820. 0x0000: 0308 0027 0df1 3c
  1821. Time to Live TLV (3), length 2: TTL 120s
  1822. 0x0000: 0078
  1823. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  1824. Port VLAN Id Subtype (1)
  1825. port vlan id (PVID): 1
  1826. 0x0000: 0080 c201 0001
  1827. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  1828. Port and Protocol VLAN ID Subtype (2)
  1829. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  1830. 0x0000: 0080 c202 0200 00
  1831. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  1832. VLAN name Subtype (3)
  1833. vlan id (VID): 1
  1834. vlan name: default
  1835. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  1836. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  1837. Protocol Identity Subtype (4)
  1838. protocol identity:
  1839. 0x0000: 0080 c204 0800 0042 4203 0000 00
  1840. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1841. ETS Configuration Subtype (9)
  1842. Willing:0, CBS:0, RES:0, Max TCs:0
  1843. Priority Assignment Table
  1844. Priority : 0 1 2 3 4 5 6 7
  1845. Value : 15 4 1 1 15 4 1 4
  1846. TC Bandwidth Table
  1847. TC% : 0 1 2 3 4 5 6 7
  1848. Value : 0 50 0 0 50 0 0 0
  1849. TSA Assignment Table
  1850. Traffic Class: 0 1 2 3 4 5 6 7
  1851. Value : 0 2 0 0 2 0 0 0
  1852. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  1853. 0x0010: 0000 0200 0002 0000 00
  1854. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1855. ETS Recommendation Subtype (10)
  1856. RES: 0
  1857. Priority Assignment Table
  1858. Priority : 0 1 2 3 4 5 6 7
  1859. Value : 15 4 1 1 15 4 1 4
  1860. TC Bandwidth Table
  1861. TC% : 0 1 2 3 4 5 6 7
  1862. Value : 0 50 0 0 50 0 0 0
  1863. TSA Assignment Table
  1864. Traffic Class: 0 1 2 3 4 5 6 7
  1865. Value : 0 2 0 0 2 0 0 0
  1866. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  1867. 0x0010: 0000 0200 0002 0000 00
  1868. End TLV (0), length 0
  1869. LLDP, length 135
  1870. Chassis ID TLV (1), length 7
  1871. Subtype MAC address (4): 08:00:27:0d:f1:3c
  1872. 0x0000: 0408 0027 0df1 3c
  1873. Port ID TLV (2), length 7
  1874. Subtype MAC address (3): 08:00:27:0d:f1:3c
  1875. 0x0000: 0308 0027 0df1 3c
  1876. Time to Live TLV (3), length 2: TTL 120s
  1877. 0x0000: 0078
  1878. Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2)
  1879. Port VLAN Id Subtype (1)
  1880. port vlan id (PVID): 1
  1881. 0x0000: 0080 c201 0001
  1882. Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2)
  1883. Port and Protocol VLAN ID Subtype (2)
  1884. port and protocol vlan id (PPVID): 0, flags [supported] (0x02)
  1885. 0x0000: 0080 c202 0200 00
  1886. Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2)
  1887. VLAN name Subtype (3)
  1888. vlan id (VID): 1
  1889. vlan name: default
  1890. 0x0000: 0080 c203 0001 0764 6566 6175 6c74
  1891. Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2)
  1892. Protocol Identity Subtype (4)
  1893. protocol identity:
  1894. 0x0000: 0080 c204 0800 0042 4203 0000 00
  1895. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1896. ETS Configuration Subtype (9)
  1897. Willing:0, CBS:0, RES:0, Max TCs:0
  1898. Priority Assignment Table
  1899. Priority : 0 1 2 3 4 5 6 7
  1900. Value : 15 4 1 1 15 4 1 4
  1901. TC Bandwidth Table
  1902. TC% : 0 1 2 3 4 5 6 7
  1903. Value : 0 50 0 0 50 0 0 0
  1904. TSA Assignment Table
  1905. Traffic Class: 0 1 2 3 4 5 6 7
  1906. Value : 0 2 0 0 2 0 0 0
  1907. 0x0000: 0080 c209 00f4 11f4 1400 3200 0032 0000
  1908. 0x0010: 0000 0200 0002 0000 00
  1909. Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2)
  1910. ETS Recommendation Subtype (10)
  1911. RES: 0
  1912. Priority Assignment Table
  1913. Priority : 0 1 2 3 4 5 6 7
  1914. Value : 15 4 1 1 15 4 1 4
  1915. TC Bandwidth Table
  1916. TC% : 0 1 2 3 4 5 6 7
  1917. Value : 0 50 0 0 50 0 0 0
  1918. TSA Assignment Table
  1919. Traffic Class: 0 1 2 3 4 5 6 7
  1920. Value : 0 2 0 0 2 0 0 0
  1921. 0x0000: 0080 c20a 00f4 11f4 1400 3200 0032 0000
  1922. 0x0010: 0000 0200 0002 0000 00
  1923. End TLV (0), length 0