Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2017
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. # Configuración Taller 3.4.1.2
  2.  
  3. ## S3
  4.  
  5. ```bash
  6. enable
  7. conf t
  8. int vlan 88
  9. ip add 172.31.88.4 255.255.255.0
  10. no sh
  11. exit
  12. ip default-gateway 172.31.88.1
  13. vlan 10
  14. name Sales
  15. vlan 20
  16. name Production
  17. vlan 30
  18. name Marketing
  19. vlan 88
  20. name Management
  21. vlan 99
  22. name Native
  23. int r f0/7-12
  24. switchport mode access
  25. switchport access vlan 10
  26. nt r f0/13-20
  27. switchport mode access
  28. switchport access vlan 20
  29. int r f0/1-6
  30. switchport mode access
  31. switchport access vlan 30
  32. int g 0/2
  33. switchport mode trunk
  34. switchport trunk native vlan 99
  35. switchport nonegotiate
  36. switchport trunk allowed vlan 10, 20, 30, 88, 99
  37. exit
  38. enable secret itsasecret
  39. line console 0
  40. pass letmein
  41. login
  42. line vty 0 4
  43. pass c1$c0
  44. login
  45. exit
  46. service password encryption
  47. banner motd +Authorized Access only!!+
  48. int r f 0/1-5
  49. shutdown
  50. int r f 0/7-10
  51. shutdown
  52. int r f 0/12-17
  53. shutdown
  54. int r f 0/19-24
  55. shutdown
  56. int g 0/1
  57. shutdown
  58.  
  59. int f 0/6
  60. switchport port-security
  61. switchport port-security maximum 2
  62. switchport port-security mac-addres sticky
  63. switchport port-security violation restrict
  64.  
  65.  
  66. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement