Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. ROUTEREK,SWITCHEK--------
  2. ena
  3. conf t
  4. security passwords min-length 10
  5. enable secret Privileged
  6. service password-encryption
  7. line con 0
  8. password ConsoleLine
  9. login
  10. exit
  11. line vty 0 15
  12. password TelnetLines
  13. login
  14. exit
  15.  
  16.  
  17. MISKOLCSW--------------------
  18. ConsoleLine
  19. ena
  20. Privileged
  21. conf t
  22. vlan 15
  23. name 15
  24. int fa0/1
  25. switchport mode access
  26. switchport access vlan 15
  27. switchport mode trunk
  28. exit
  29.  
  30. vlan 25
  31. name 25
  32. int fa0/2
  33. switchport mode access
  34. switchport access vlan 25
  35. switchport mode trunk
  36. exit
  37.  
  38. vlan 35
  39. name 35
  40. int fa0/3
  41. switchport mode access
  42. switchport access vlan 35
  43. switchport mode trunk
  44. exit
  45.  
  46. vlan 45
  47. name 45
  48. int fa0/4
  49. switchport mode access
  50. switchport access vlan 45
  51. switchport mode trunk
  52. exit
  53.  
  54. vlan 99
  55. name Nativ&Menedzsment
  56. int fa0/5
  57. switchport mode access
  58. switchport access vlan 99
  59. switchport mode trunk
  60. switchport trunk native vlan 99
  61. exit
  62.  
  63. int range fa0/6-24
  64. shutdown
  65.  
  66. MISKOLCROUTER----------------------
  67. int g0/0.15
  68. encapsulation dot1q 15
  69. ip address 192.168.15.1 255.255.255.0
  70. no shutdown
  71. exit
  72.  
  73. int g0/0.25
  74. encapsulation dot1q 25
  75. ip address 192.168.25.1 255.255.255.0
  76. no shutdown
  77. exit
  78.  
  79. int g0/0.35
  80. encapsulation dot1q 35
  81. ip address 192.168.35.1 255.255.255.0
  82. no shutdown
  83. exit
  84.  
  85. int g0/0.45
  86. encapsulation dot1q 45
  87. ip address 192.168.45.1 255.255.255.0
  88. no shutdown
  89. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement