4.0 Service-Related Knowledge Flashcards
4.1 Locate and use a text editor such as, Notepad
Notepad++
4.2 Locate and use the Windows command prompt
cmd
4.3 Locate, configure, and use Terminal Emulation ( Tera Term, Putty)
Port 23 for Telnet or 22 for SSH
Use IP address and port number
Username and password if SSH
4.4 Configure networks settings for Ethernet port on laptop (IP address, subnet mask and default gateway) and establish a connection with Ethernet ports on Cisco equipment using correct cable
Network connections > Properties > IPv4 > Properties > Set to whatever
Use console cable, on device manager check which com port you are using, enter that port when trying to connect through Putty
4.5 Make a physical connection from laptop to Cisco console port
Use console cable can be Cisco cable or USB mini-B to USB
4.6 Connect, configure, and verify operation status of a device interface
Enter global configuration mode by typing configure terminal
.
Identify the interface you want to configure by typing interface interface_type interface_number
. For example, interface GigabitEthernet0/1
.
Configure the interface settings as needed. For example:
interface GigabitEthernet0/1
ip address 192.168.1.1 255.255.255.0
no shutdown
After configuring the interface, verify its status and configuration using various show commands. For example:
Use show interfaces
to display information about all interfaces on the device.
Use show ip interface brief
to display a summary of interface IP addresses and status.
Use show interface [interface_type interface_number]
to display detailed information about a specific interface.
Check the interface status, line protocol status, IP address, and other relevant parameters to ensure correct configuration and operational status.
Save Configuration:
Once you have verified the configuration and interface status, save the configuration to NVRAM using the write memory
or copy running-config startup-config
command to ensure that the changes persist across device reboots.
4.7 Configure and use TFTP and FTP servers (TFTP d32/64, FIlezilla)
practice
4.8 Perform software upgrade or downgrade using TFTP, FTP, xmodem, tftpdnld, or USB Storage
practice
4.9 Manage configurations via the TCP/IP network
practice
4.10 Perform password recovery on a Cisco device
Performing password recovery on a Cisco device involves accessing the device’s ROM Monitor (ROMMON) mode to bypass the configured passwords and regain control of the device.
-
Power Cycle the Device:
- Physically power cycle the device by unplugging it from the power source and plugging it back in.
- During the boot-up process, press the “Break” key (usually Ctrl+Break or Ctrl+Pause) on the console terminal emulator to interrupt the boot sequence and access ROMMON mode.
- Note: The exact key combination may vary depending on the terminal emulator and device model.
-
Access ROMMON Mode:
- Once you’ve interrupted the boot sequence, you should see the ROMMON prompt (
rommon 1>
orrommon>
). - If you don’t see the ROMMON prompt, repeat step 1 until you successfully interrupt the boot sequence.
- Once you’ve interrupted the boot sequence, you should see the ROMMON prompt (
-
Change the Configuration Register:
- Check the current configuration register value by typing
confreg
at the ROMMON prompt and pressing Enter. - If the configuration register value is set to 0x2102 or similar, you may need to change it to 0x2142 to bypass the startup configuration. Enter the following command:
confreg 0x2142
- Press Enter to set the new configuration register value.
- Check the current configuration register value by typing
-
Reset the Device:
- Reset the device by typing
reset
orboot
at the ROMMON prompt and pressing Enter. - The device will now boot with the startup configuration bypassed.
- Reset the device by typing
-
Enter Privileged EXEC Mode:
- Once the device boots up, you’ll be prompted with initial setup dialogue. Enter “no” or press Ctrl+C to skip the initial setup.
-
Copy Startup Configuration:
- Enter privileged EXEC mode by typing
enable
and pressing Enter. - Copy the startup configuration to the running configuration by typing:
copy startup-config running-config
- Enter privileged EXEC mode by typing
-
Change Passwords:
- Enter global configuration mode by typing
configure terminal
. - Change the passwords as needed using the
enable secret
andusername
commands.
- Enter global configuration mode by typing
-
Restore Configuration Register:
- Change the configuration register value back to its original setting to ensure the device boots normally in the future. Enter the following command:
config-register 0x2102
- Change the configuration register value back to its original setting to ensure the device boots normally in the future. Enter the following command:
-
Save Configuration:
- Save the configuration changes by typing
write memory
orcopy running-config startup-config
.
- Save the configuration changes by typing
-
Reboot the Device:
- Reboot the device to ensure the changes take effect. You can do this by typing
reload
and pressing Enter.
- Reboot the device to ensure the changes take effect. You can do this by typing
4.11a Identify and correct common network problems at Layers 1 and 2 - Serial or ether interface status
-
Check Physical Connections:
Ensure that cables are securely connected to the appropriate interfaces on both ends.
Verify that the cables are not damaged or faulty.
For Ethernet interfaces, check for link status LEDs on both the device and the connected device (switch or router). -
Verify Interface Status:
Use theshow interfaces
command on Cisco devices to check the status of the interfaces.
Look for interfaces that are in an “up” state and have the appropriate line protocol status (e.g., up/up).
If an interface is in a down state, troubleshoot further to identify the root cause, which could include cable issues, interface configuration problems, or hardware failures. -
Troubleshoot Interface Configuration:
Review the configuration of the interface using theshow running-config
command.
Ensure that the interface is correctly configured with the appropriate IP address (for Ethernet interfaces) or encapsulation settings (for serial interfaces).
Verify that the interface is not administratively shut down (no shutdown
command in interface configuration mode).
Upgrade Cisco IOS
Open tftp server (tftpd32)
download IOS Image
copy IOS from tftp server ->
copy tftp: flash:
<IP>
<name>
check whats in flash memory
dir flash:
go to global config then remove old IOS from boot sequence and set new:
no boot system flash:/<old>
boot system flash:/<new>
save new configuration:
copy run start (copy running-config startup-config)
</new></old></name></IP>
check whats in flash memory
dir flash:
delete file from flash
del flash:/<name></name>
Reset password on Cisco IOS
Use the “pause/break or control/break” or “ctrl + Fn + P” key (or equivalent keys) on keyboard to enter ROMmon (ROM Monitor)
Power down, remove compact flash, power on and reboot
type “confreg 0x2142” (configuation registry utility)
power off device, re-insert compact flash, power on and reboot
do NOT enter initial config (starup-config)
enter priviledged exec mode
copy startup-config running-config
enter global config:
conf t
no enable secret
enable secret <pass>
username <name> password <pass></pass></name></pass>
change configuration register:
config-register 0x2102
show version to confirm
save:
copy running-config startup-config
reboot:
reload