Upgrading IOS Version

From Peter Pap's Technowiki
Revision as of 03:57, 21 September 2010 by Ppapa (talk | contribs) (Created page with "You will need a tftp server on which to put the latest IOS version and to which to can backup the old one. A Windows based one is easy [http://tftpd32.jounin.net/]. This assume...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

You will need a tftp server on which to put the latest IOS version and to which to can backup the old one. A Windows based one is easy [1]. This assumes that the switch already has an IP set.

1. Determine the boot image on the switch:

switch# show flash

  1. Backup the flash image to the tftp server

switch# copy flash:flashimagename tftp://ipaddress/flashimagename

  1. If there is room, leave the old image in place. Otherwise do:

switch# delete flashimagename

  1. Upload the new flashimage

switch# copy tftp://ipaddress/newflashimage flash:newflashimage

  1. Make the new image the boot image and reboot

switch# config t switch(config)# no boot system flash:oldflashimage switch(config)# boot system flash:newflashimage switch(config)# exit switch# wr mem switch# reload