Advertisement
NameL3ss

Untitled

Jun 6th, 2015
384
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. cambiar nombre host
  2. ingresar a configuracion global como root
  3. configure terminal
  4. hostname nombrehost
  5. exit
  6.  
  7. poner pass al acceso de usuario normal
  8. configuracion global
  9. configure terminal
  10. line console 0
  11. password tucontraseña
  12. login
  13. exit
  14.  
  15. pass al modo root
  16. enable
  17. configure terminal
  18. enable password tucontraseña
  19. exit
  20.  
  21. pass encriptada al modo root
  22. enable
  23. configure terminal
  24. enable secret tucontraseña
  25. exit
  26.  
  27. encriptar contraseña de consola y de root
  28. enable
  29. configure terminal
  30. service password-encryption
  31. exit
  32.  
  33. configurar mensaje de inicio
  34. enable
  35. configure terminal
  36. banner motd "tu mensaje"
  37. exit
  38.  
  39. configurar IP router
  40. enable
  41. configure terminal
  42. interface (gigabit ethernet o fastethernet)
  43. description "Interface 0"
  44. ip address 192.168.1.X 255.255.255.0
  45. no shutdown
  46. exit
  47.  
  48. configurar Vlan switch
  49. enable
  50. configure terminal
  51. inteface vlan 1 (0234 etc)
  52. description "Vlan1"
  53. ip address ip + mac
  54. no shutdown
  55. exit
  56. ip default-gateway +(gateway)
  57.  
  58.  
  59. guardar configuracion
  60. enable
  61. copy running-config startup-config
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement