CSCI342-Summary Commands Skills Exam
CSCI342-Summary Commands Skills Exam
For Routers:
3. Enable Secret password: Encrypted, limits access to the privileged EXEC mode. It is same
as enable password but this password is encrypted using MD5 encryption hash algorithm.
R1(config)# enable secret xxxxx (where xxxxx is the Enable Secret’s Password)
4. Setup Banner Messages: Banners can be an important part of the legal process in the event
that someone is prosecuted for breaking into a device.
R1(config)# banner motd #Unauthorized access to this device is prohibited!#
5. Setup Console password: Limits device access using the console connection.
R1(config)# Line con 0
R1(config-line)# password xxxxx (where xxxxx is the Console line’s Password)
R1(config-line)# login
R1(config-line)# exit
7. Configuring Interfaces: Each interface must have an IP address and subnet mask to route
IP packets
R1(config)# int G0/1
R1(config-if)# ip address xxx.xxx.xxx.xxx xxx.xxx.xxx.xxx
R1(config-if)# description XXXXXXXXXXXXXXXXXX
R1(config-if)# no shut
R1(config-if)# exit
8. Encrypt Plain Text Passwords: Prevent all passwords from being viewed in clear text in
device configuration files.
R1(config)# service password-encryption
R1(config)# exit
This study source was downloaded by 100000860301767 from CourseHero.com on 11-27-2023 12:09:18 GMT -06:00
For Switches:
2. Enable Secret password: Encrypted, limits access to the privileged EXEC mode. It is same
as enable password but this password is encrypted using MD5 encryption hash algorithm.
S1(config)# enable secret xxxxx (where xxxxx is the Secret’s Password)
3. Setup Console password: Limits device access using the console connection.
S1(config)# line con 0
S1(config-line)# password xxxxx (where xxxxx is the Console line’s Password)
S1(config-line)# login
S1(config-line)# exit
7. Saving the Configuration: Saving the running configuration to the startup configuration in
NVRAM preserves the changes as the new startup configuration. To save your
configuration changes in the switch, write:
S1#copy running-config startup-config
For PCs:
Testing:
1. All PCs can ping all other PCs using ipv4 addresses (C:\>ping xxx.xxx.xxx.xxx)
2. All PC can telnet to the switches using ipv4 addresses (C:\>telnet xxx.xxx.xxx.xxx)
This study source was downloaded by 100000860301767 from CourseHero.com on 11-27-2023 12:09:18 GMT -06:00