Alex9090

Untitled

Jan 8th, 2018
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. enable
  2. configure terminal
  3. hostname SW1
  4. no ip domain lookup
  5. service password-encryption
  6. enable secret cisco12345
  7. enable password cisco54321
  8. banner motd!!
  9. line console 0
  10. password ciscoconpass
  11. login
  12. logging synchronous
  13. exec-timeout 15 10
  14. exit
  15. line vty 0 15
  16. password ciscovtypass
  17. login
  18. logging synchronous
  19. exec-timeout 20 15
  20. exit
  21. copy running-config startup-config
  22.  
  23. SSH
  24. enable
  25. CLOCK SET 16:00:00 8 JAN 2018
  26. configure terminal
  27. ip domain name cti-fmi.ro
  28. username admin privilege 15 secret adminpass1
  29. line vty 0 15
  30. transport input ssh
  31. login local
  32. exit
  33. crypto key generate rsa
  34. 1024
  35.  
  36. ip default-gateway
  37.  
  38. interface VLAN1
  39. ip address *nu DG*
  40.  
  41.  
  42. ROUTER
  43.  
  44. enable
  45. configure terminal
  46. hostname R1
  47. no ip domain lookup
  48. service password-encryption
  49. security password min-length 10
  50. login block-for 120 attempts 3 within 10
  51. enable secret cisco12345
  52. enable password cisco54321
  53. banner motd
  54. banner login
  55. line console 0
  56. password ciscoconpass
  57. login
  58. logging synchronous
  59. exec-timeout 15 10
  60. exit
  61. line vty 0 15
  62. password ciscovtypass
  63. login
  64. logging synchronous
  65. exec-timeout 20 15
  66. exit
  67. copy running-config startup-config
  68.  
  69.  
  70. ssh
  71. enable
  72. CLOCK SET 10:00:00 8 JAN 2018
  73. configure terminal
  74. ip domain name cti-fmi.ro
  75. username admin privilege 15 secret adminpass1
  76. line vty 0 15
  77. transport input ssh
  78. login local
  79. exit
  80. crypto key generate rsa
  81. 1024
Add Comment
Please, Sign In to add comment