- Power off the device, and keep it off until later.
Password reset works when the device is powering up, but we have to do
something special before powering on.
- In minicom, get to the configuration window:
- Power on the device, and nearly immediately (within a minute) press F in the minicom configuration to send break to the device.
- You should see the following:
Readonly ROMMON initialized
rommon 1 >
- Set up to boot from flash (enter the following command):
confreg 0x2142
- Reboot from flash, ignoring the saved configuration:
reset
- When presented with setup questions, enter Ctrl-C
to bypass them all. You should then see:
Press RETURN to get started!
Press the Enter key, and you should eventually see:
Router>
- Get into privileged mode:
enable
You should then see:
Router#
- Copy the startup configuration to the running configuration:
copy start run
If it prompts you for running-config, press
Enter to accept.
- Look at the running configuration:
show run
- Configure the terminal:
config t
- Set the password to cisco:
enable secret cisco
- End the configuration of the terminal:
end
Messages may appear unsolicited after that; press Enter
to see the prompt again.
- Look at your interfaces -- you want them to be down (next step):
show ip interf brief
- Bring up all interfaces -- use no shutdown on all interfaces.
For example, if only FastEthernet0/0 is showing down:
config t
interface FastEthernet0/0
no shutdown
end
- Set up the configuration register.
config t
config-register 0x2102
- Leave configuration mode:
end
- Commit the changes by copying the running configuration to the startup configuration:
copy run start
- Restart the device:
reload