Recovering a Dead CISCO Switch/Router

Aaron StreetTechnical Infrastructure Architecture and Global Network Manager
Published:
Updated:
The following recovery method will work on All Cisco Switchs that run ISO software.

You will need a good copy of the IOS version you want you use saved on your PC and a Com's Cable.

The software for these switches comes as a .tar file. Tar is an old Unix file archive type - it actually stands for tape archive and was used for archiving things to tape. The .tar file contains the .bin image that the switch needs to boot, and some other stuff (for Cisco View Device Manager etc). When the switch is running normally, you'd use the command archive download-sw tftp:///me> - this command copies the .tar file over and extracts it onto the filesystem.
However when you're stuck in bootloader mode, there's no such command. So we need to do something different:

1. Use Winzip (or similar) to extract the .bin file from the .tar file on your computer.

2. Connect to the switch using Hyperterminal at 9600 baud, 8 N 1.

3. You should see a prompt that says switch:. This is the bootloader mode. If you don't see that, either you're booted up, and you don't need these instructions, your switch is properly broken, or you've got your terminal settings wrong. Try power-cycling the Catalyst while holding the Mode button on the front in to get the bootloader.

4. Now downloading the .bin file at 9600 baud is going to take a long time (about 2 hours), so we will change the baud rate of the console port temporarily. Enter the command set BAUD 1152003. After you enter this command, you will start to get funny characters in Hyperterminal because its baud rate and the Catalyst's are now mis-matched.

5. Close Hyperterminal and re-connect using 115200 baud instead. You should get intelligible stuff on the screen once more.

6. Type flash_init to initialize the filesystem. (In our case, this wasn't necessary)

7. Type load_helper to load any helper files (in our case there weren't any since we'd just wiped the flash).

8. Tell the switch to expect a file by Xmodem, and put it on the flash: copy xmodem: flash: The filename should be the same as what you extracted from the .tar file.

9. In Hyperterminal click Transfer | Send File. In the dialogue box, make sure the protocol is XModem and put in the location of your .bin file. Click Send and you should see the process start.
10. Once that's done, issue the command boot flash: and the IOS will load up.

11. When the switch has booted, you may want to install the full .tar file in the correct manner using the archive command.

12. Check that you can reboot OK without ending up in the bootloader again.

13. Finally, you'd better set the console baud rate back to 9600, otherwise you or someone else will be really confused when they next try to use it. Go back into the bootloader by power-cycling the switch and holding down the Mode button. Enter the command set BAUD 96003 Then type reset to reboot the switch.
2
12,991 Views
Aaron StreetTechnical Infrastructure Architecture and Global Network Manager

Comments (1)

Aaron StreetTechnical Infrastructure Architecture and Global Network Manager

Author

Commented:
To tidy that up here is the full list of commands to issue at the ROMMON command line to copy a IOS from a TFTP server

copying the IOS using TFTP (only works on some routers with a more modem Boot Flash)

IP_ADDRESS=IP address of the Ethernet port

IP_SUBNET_MASK=subnet mask of the Ethernet port

DEFAULT_GATEWAY=the default gateway

TFTP_SERVER=the IP of the TFTP server (your local computer)

TFTP_FILE=the file name of the IOS file

tftpdnld

Just make sure you have the TFTP server running on a pc and the required IOS ready to go.

This replaces steps 4 to 9 above.

Have a question about something in this article? You can receive help directly from the article author. Sign up for a free trial to get started.