Advertisement
Networking101

Untitled

Mar 26th, 2019
597
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. To configure the devices you double click on them. Each device interface was accordingly configured from the CLI tab in the menu. The enable command is used to enable privileged execution mode. The configure terminal command was used to gain access to the hostname command which is used to set the hostname of the router or switch. A password was enabled using the enable password passhere command after config line mode was enabled using the command line console 0. The login command is needed next to ensure that the user is prompted for password on connecting to console. The line vty 0 command is used just like the line console 0 command. It’s used for enabling passwords for remote sessions where console is for sessions connected via physical serial cable from a desktop or laptop computer.
  2.  
  3. The enable password command should be replaced with the newer command because it offer encryption. The newer command is enable secret passwordhere. The enable secret password overrides the enable password. The running configuration was presented using the show running-config command. The commands entered are all listed here. The running config shows the enable secret as an encrypted string. While it is encrypted in the running config the enable and console passwords are still plain text so the command service password-encryption must be executed. The clock was then set with the clock set command and the motd banner was set with the banner motd “MOTD MESSAGE HERE” command. As the configuration of the switch is finished the running configuration file needs to be saved to NVRAM so that the config is still present after a reboot of the switch.
  4.  
  5. The configuration of the router is identical to the switch.
  6.  
  7.  
  8. Set the hostname
  9. Assign console password
  10. Enable login
  11. Assign VTY password
  12. Enable login
  13. Enable MOTD Banner
  14. Enable secret password
  15. Encrypt all plain text passwords
  16. Set the router clock
  17. Select VLAN 1 interface
  18. Apply IP address to VLAN 1 interface
  19. No shutdown command to enable an interface (shutdown to disable)
  20. Select g0/0 Gigabit interface
  21. Apply IP address to g0/0 interface
  22. No shutdown to enable g0/0 interface
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement