cisco 通過tftp備份/恢復配置和3560交換機IOS升級
阿新 • • 發佈:2019-01-03
使用tftp伺服器對cisco 3560 配置備份及恢復
#要確保交換機和tftp server之間可以連通就行。
#備份
Switch#copy running-config tftp:
Address or name of remote host []? 192.168.166.236
Destination filename [Switch-confg]?
#恢復的話使用類似命令
Switch#copy tftp: running-config
Address or name of remote host []? 192.168.166.236
Source filename []?Switch -confg
此時會將配置儲存至 startup-config當中 需要重啟後就會使用還原回來的配置
CISCO 3560 交換機IOS升級
裝置清單
CICSO 3560交換機,安裝了超級終端的PC,TFTP或FTP伺服器,c3560-advipservicesk9-mz.122-25.SEE2.bin的IOS
備份IOS
執行備份前先用dir、cd、pwd等命令看下flash中的目錄結構。這臺交換機IOS的bin檔案以及html資料夾都在
flash中c3560-ipbase-mz.122-25.SEB4目錄下。
/* 將原IOS備份到IP為192.168.1.100的TFTP伺服器上 */
switch#copy flash:/c3560-ipbase-mz.122-25.SEB4/c3560-ipbase-mz.122-25.SEB4.bin tftp://192.168.1.100/c3560-ipbase-mz.122-25.SEB4.bin
/* 將原IOS備份為tar檔案到IP為192.168.1.100的TFTP伺服器上 */
switch#archive tar /create tftp://192.168.1.100/c3560-ipbase-mz.122-25.SEB4.tar flash:/c3560-ipbase-mz.122-25.SEB4
上傳新IOS
/* 將新IOS複製到flash的根目錄下 */
switch#copy tftp://192.168.1.100/c3560-advipservicesk9-mz.122-25.SEE2.bin flash:/c3560-advipservicesk9-mz.122-25.SEE2.bin
更改啟動設定
讓交換機用新的IOS啟動
switch(config)#boot system flash:/c3560-advipservicesk9-mz.122-25.SEE2.bin
設定備用的IOS啟動
switch(config)#boot boothlpr flash:/c3560-ipbase-mz.122-25.SEB4/c3560-ipbase-mz.122-25.SEB4.bin
或者delete flash:/c3560-ipbase-mz.122-25.SEB4/c3560-ipbase-mz.122-25.SEB4.bin
switch#write
switch#reload
重啟後,交換機會使用新的IOS。
3550G-24/48-SMI升級為3550G-24/48-EMI方法
準備好EMI的IOS,如:c3550-i5q3l2-tar.121-14.EA1a.tar
準備好TFTP伺服器,並將TFTP伺服器的工作目錄指向到c3550-i5q3l2-tar.121-14.EA1a.tar
配置交換機,如:
configur terminal
interface vlan 1
ip address 198.168.0.1 255.255.255.0
no shutdown
執行升級命令
archive download-sw /overwrite tftp://192.168.0.4/c3550-i5q3l2-tar.121-14.EA1a.tar
或copy tftp://192.168.0.4/c3550-i5q3l2-tar.121-14.EA1a.tar.bin flash:
Switch#delete flash:舊的ios
switch(config)#boot system flash:c3550-i5q3l2-tar.121-14.EA1a.tar.bin
switch(config)#write mem
switch#reload 重新啟動,交換機