使用tftp伺服器對cisco 3560 配置備份及恢復
switch#copy running-config tftp:
address or name of remote host ? 192.168.166.236
destination filename [switch-confg]?
要確保交換機和tftp server之間可以連通就行。
恢復的話使用類似命令
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目錄下。
1.switch#copy flash:/c3560-ipbase-mz.122-25.seb4/c3560-ipbase-mz.122-25.seb4.bin t
2.switch#archive tar /create t flash:/c3560-ipbase-mz.122-25.seb4
三、上傳新ios
switch#copy t flash:/c3560-advipservicesk9-mz.122-25.see2.bin
四、更改啟動設定
1. 讓交換機用新的ios啟動
switch(config)#boot system flash:/c3560-advipservicesk9-mz.122-25.see2.bin
2. 設定備用的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方法
1.準備好emi的ios,如:c3550-i5q3l2-tar.121-14.ea1a.tar
2.準備好tftp伺服器,並將tftp伺服器的工作目錄指向到c3550-i5q3l2-tar.121-14.ea1a.tar
3.配置交換機,如:
configur terminal
inte***ce vlan 1
ip address 198.168.0.1 255.255.255.0
no shutdown
4.執行公升級命令
archive download-sw /overwrite t
或copy t.bin flash:
5.switch#delete flash:舊的ios
6.switch(config)#boot system flash:c3550-i5q3l2-tar.121-14.ea1a.tar.bin
7.switch(config)#write mem
8.switch#reload 重新啟動,交換機
mysql 備份與恢復 MySQL 備份與恢復
1 檢視資料庫的資料儲存在哪個目錄下 shiyanlou mysql uroot e show variables like datadir variable name value datadir var lib mysql 2 備份資料的方法 select into outfile 檔名 或者 s...
mysql備份和恢復 mysql備份和恢復
目標 備份和恢復的3種方法,掌握mysqldump命令匯出資料,source命令匯入資料 備份必要性 重要資料不丟失 資料轉移 mysqldump客戶端 作用 轉儲資料庫 搜尋資料庫進行備份 將資料轉移到另乙個sql伺服器 不一定是mysql伺服器 mysqldump h 主機名 u使用者名稱 p ...
mysql 備份與恢復 Mysql 備份與恢復
資料檔案一致性處理 在完全備份的情況下,檔案不是時間點一致的,因為進行快照的時間點不一樣。如果嘗 試在未prepare資料的情況下還原資料庫,雖然操作上支援恢復,但是在啟動的時候仍會 進行資料recovery。執行帶 prepare 選項的 mariabackup 命令會使資料檔案進行統一,達到資料...