Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1.  
  2. en > admin mode
  3.  
  4. conf t > configure mode
  5.  
  6. ######changing hostname#####
  7.  
  8. hostname MY-KUL-01
  9.  
  10. copy running-config startup-config
  11.  
  12. ####to reboot###
  13. reload
  14.  
  15. ###### no ip domain lookup#####
  16. conf t
  17.  
  18. no ip domian-lookup
  19.  
  20. ##############################
  21.  
  22. to review the configuration
  23.  
  24. sh run << under enable mode
  25.  
  26. do sh run if under config t mode
  27.  
  28.  
  29. ################### enabling password for exec mode ( admin mode)######
  30.  
  31. en
  32. conf t
  33. enable secret desmond
  34. exit
  35. #######################################################################
  36.  
  37. putting up a banner
  38.  
  39. MY01-KUL-TIME# conf t
  40. Enter configuration commands, one per line. End with CNTL/Z.
  41. MY01-KUL-TIME(config)#banner motd &
  42.  
  43. Enter TEXT message. End with the character '&'.
  44. ###############################################################
  45. YOU ARE ENTERING A SECURE ROUTER NETWORK
  46. KINDLY DISCONNECT IF YOU ARE NOT A VALID USER
  47. VIOLATORS SHALL BE PROSECUTED
  48. SURVIVORS SHALL BE KILLED!!!!
  49. ##############################################################
  50. &
  51.  
  52.  
  53. #################################password for console access################
  54.  
  55. conf t
  56. line console 0
  57. password desmond
  58. login
  59. exit
  60. ############################################################################
  61.  
  62. password for telnet access
  63.  
  64. conf t
  65.  
  66. line vty 0 4
  67. password desmond
  68. login
  69. exit
  70.  
  71. ###############################################################################
  72.  
  73. password encryption
  74.  
  75. conf t
  76.  
  77. service password-encryption
  78.  
  79. ############################################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement