Guest User

Untitled

a guest
Oct 23rd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.26 KB | None | 0 0
  1. LineSwitch5510
  2. -------------------
  3. Model : Ethernet Routing Switch 5510-48T
  4.  
  5. Most important things to check on switch's are :
  6. * port description nor reason to make sure you working on the right port
  7. * port vlan's to add or remove a port
  8. * port state and status { status is what have been forced by the user }
  9. * port speed, make sure you're not confusing the current port speed and supported speed
  10. *
  11.  
  12. Method of productivity :
  13.  
  14. 1 - first note all the ports to be issued. then list them all in a one shot with :
  15. ex : config ethernet 3/5,3/15,4/13,4/8,2/1,2/5,3/2 info
  16. 2 - Make sure they are all down and the names are correct.
  17. 3 - make a count based on the task list.
  18.  
  19.  
  20. ---Show Commands :
  21. ------------------
  22. global show command :
  23. show interfaces [2,13]
  24. -
  25. show ports vlan & description (name) :
  26. show vlan interface info [19]
  27. -
  28. Check port configuration :
  29. show interfaces [2,13]
  30. -
  31. Check port state :
  32. show interfaces [2,13]
  33. -
  34. Check port status :
  35. show interfaces [2,13]
  36. -
  37. check port speed :
  38. show interfaces [2,13]
  39. -
  40. show vlan id :
  41. show vlan vid {vlandID}
  42. -
  43. show port interface MAC@ :
  44. show mac-address-table port [18,13]
  45. -
  46. show port ip :
  47. show ports info ip port 3/5
  48.  
  49.  
  50. ---Config commands :
  51. --------------------
  52. global show command :
  53. config ethernet 3/5 ethernet info
  54.  
  55. configure link state :
  56. config ethernet 3/5 state <disable | enable>
  57.  
  58. configure speed duplex :
  59. config ethernet 3/5 auto-negotiate <disable | enable>
  60. configure name (description) :
  61.  
  62. config ethernet 3/5 name <name>
  63.  
  64. configure duplex mode :
  65. config ethernet 3/5 duplex enable | disable >
  66.  
  67. configure flow control :
  68. config ethernet 3/5 tx-flow-control <enable | disable >
  69.  
  70. configure default vlan id :
  71. config ethernet 3/5 default-vlan-id <vid>
  72.  
  73. remove port from a vlan :
  74. config vlan 129 ports remove 3/5 member portmember
  75.  
  76. add port from a vlan :
  77. config vlan 129 ports add 3/5 member portmember
  78.  
  79. Exemple of sequence for de-configuring ports :
  80. -------------------------------------------
  81. config ethernet 3/5,3/15,4/13,4/8,2/1,3/2,2/5 auto-negotiate enable
  82. config ethernet 3/5,3/15,4/13,4/8,2/1,3/2,2/5 tx-flow-control disable
  83. config ethernet 3/5,3/15,4/13,4/8,2/1,3/2,2/5 name libre
  84. config vlan 129 ports remove 3/5,3/15,4/13,4/8,2/1,3/2,2/5
  85.  
  86. check them all with :
  87. config ethernet 3/5,3/15,4/13,4/8,2/1,3/2,2/5 info
  88.  
  89. Coming soon for configuring port : ...
Add Comment
Please, Sign In to add comment