This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
networking:switch:cisco_switch [2013/07/04 12:53] gcooper created |
networking:switch:cisco_switch [2013/10/22 11:30] (current) gcooper |
||
---|---|---|---|
Line 2: | Line 2: | ||
===== Clear the Configuration ===== | ===== Clear the Configuration ===== | ||
+ | |||
+ | http:// | ||
==== CatOS ==== | ==== CatOS ==== | ||
Line 8: | Line 10: | ||
- Enter '' | - Enter '' | ||
- | You don't need to reload the switch because processing the command wipes the switch. If you've set a boot option, you need to change that option using the set boot command. | + | You don't need to reload the switch because processing the command wipes the switch. If you've set a boot option, you need to change that option using the '' |
==== IOS ==== | ==== IOS ==== | ||
Line 19: | Line 21: | ||
- Confirm that you want to reload the switch, and your switch configuration is almost clean. | - Confirm that you want to reload the switch, and your switch configuration is almost clean. | ||
- | It's almost clean, but not quite. Most people forget to clear any VLAN information they' | + | It's almost clean, but not quite. Most people forget to clear any VLAN information they' |
+ | |||
+ | < | ||
+ | show vlan | ||
+ | |||
+ | dir flash: | ||
+ | |||
+ | dir cat4000_flash: | ||
+ | |||
+ | dir const_nvram: | ||
+ | |||
+ | delete flash: | ||
+ | |||
+ | erase cat4000_flash: | ||
+ | |||
+ | reload | ||
+ | </ | ||
+ | |||
+ | ===== Upgrade Firmware ===== | ||
+ | |||
+ | http:// | ||
+ | |||
+ | http:// | ||
+ | |||
+ | :!: Connect to the switch' | ||
+ | |||
+ | :!: Configure the networking so the switch can communicate | ||
+ | |||
+ | Start by entering EXEC mode: | ||
+ | |||
+ | < | ||
+ | enable | ||
+ | </ | ||
+ | |||
+ | Make room for the new firmware image, if necessary: | ||
+ | |||
+ | < | ||
+ | dir bootflash: | ||
+ | |||
+ | delete bootflash:< | ||
+ | |||
+ | squeeze bootflash: | ||
+ | </ | ||
+ | |||
+ | Download the file to the switch: | ||
+ | |||
+ | < | ||
+ | copy tftp: bootflash: | ||
+ | |||
+ | Address or name of remote host []? < | ||
+ | Source filename []? < | ||
+ | Destination filename [flash]? < | ||
+ | </ | ||
+ | |||
+ | ==== Configure the Switch to Boot the New Image ==== | ||
+ | |||
+ | Determine the current boot statement that you want to remove: | ||
+ | |||
+ | < | ||
+ | show bootvar | ||
+ | |||
+ | show config | ||
+ | </ | ||
+ | |||
+ | To remove the '' | ||
+ | |||
+ | < | ||
+ | configure terminal | ||
+ | |||
+ | no boot system flash bootflash:< | ||
+ | |||
+ | < | ||
+ | |||
+ | write memory | ||
+ | </ | ||
+ | |||
+ | Set the new boot statement: | ||
+ | |||
+ | < | ||
+ | configure terminal | ||
+ | |||
+ | boot system flash bootflash:< | ||
+ | |||
+ | < | ||
+ | |||
+ | write memory | ||
+ | </ | ||
+ | |||
+ | Verify and reboot | ||
+ | |||
+ | < | ||
+ | show bootvar | ||
+ | |||
+ | reload | ||
+ | </ | ||
+ | |||
+ | Verify the new system image: | ||
+ | |||
+ | < | ||
+ | show version | ||
+ | </ | ||
+ | |||
+ | http://www.cisco.com/ | ||
+ | |||
+ | Verify this in the output: | ||
+ | |||
+ | < | ||
+ | Configuration register is 0x2102 | ||
+ | </ | ||
+ |