Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. show ip route
  2. show arp
  3. ping
  4. trace
  5.  
  6. DHCP:
  7. <no> ip dhcp pool <name>
  8. default-router <ip>
  9. network <network ip>
  10.  
  11. VLAN:
  12. CREATE/DELETE:
  13. <no> vlan <number> name <name>
  14. CONFIGURE IF:
  15. interface <if>
  16. <no> switchport access vlan <nr>
  17.  
  18.  
  19. SPANNING TREE:
  20. set spantree <cmds>
  21. set spantree root <vlan_id>
  22. set spantree priority <priority_nr>
  23. show spantree <vlan_id>
  24. show spantree summary
  25. show spantree statistics
  26. show spantree blockedports
  27.  
  28. PROTOCOLS
  29. router <protocol>
  30. router rip/bgp/eigrp/ospf/...
  31.  
  32. NATTING
  33. STATIC
  34. ip nat inside source statis <local_ip> <global_ip>
  35. interface <if>
  36. ip nat inside
  37. interface <if>
  38. ip nat outside
  39. DYNAMIC
  40. ip nat pool <name> <start_ip> <end_ip> (netmask <netmask>)
  41. ip nat inside source pool <name>
  42. interface <if>
  43. ip nat inside
  44. interface <if>
  45. ip nat outside
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement