綠色資源網(wǎng):您身邊最放心的安全下載站! 最新軟件|熱門排行|軟件分類|軟件專題|廠商大全

綠色資源網(wǎng)

技術(shù)教程
您的位置:首頁系統(tǒng)集成網(wǎng)絡(luò)管理 → cisco packet tracer實驗-cisco路由器的備份和恢復(fù)案例

cisco packet tracer實驗-cisco路由器的備份和恢復(fù)案例

我要評論 2015/03/16 22:23:37 來源:綠色資源網(wǎng) 編輯:sonlywya.cn [ ] 評論:0 點擊:959次

Packet Tracer 是由Cisco公司發(fā)布的一個輔助學(xué)習(xí)工具,為學(xué)習(xí)CCNA課程的網(wǎng)絡(luò)初學(xué)者去設(shè)計、配置、排除網(wǎng)絡(luò)故障提供了網(wǎng)絡(luò)模擬環(huán)境。學(xué)生可在軟件的圖形用戶界面上直接使用拖曳方法建立網(wǎng)絡(luò)拓撲,軟件中實現(xiàn)的IOS子集允許學(xué)生配置設(shè)備;并可提供數(shù)據(jù)包在網(wǎng)絡(luò)中行進的詳細處理過程,觀察網(wǎng)絡(luò)實時運行情況。

1. 案例目標

通過本案例,你可以掌握如下技能:
1) 備份Cisco IOS
2) 恢復(fù)Cisco IOS
3) 備份啟動配置與運行配置
4) 恢復(fù)啟動配置與運行配置

思科路由器交換機模擬軟件(Cisco packet tracer) V5.3.0.0088 漢化最新版

2. 設(shè)備與拓撲

設(shè)備:1臺 Laptop-PT,1臺Server-PT ,1 臺2811 路由器。
拓撲:如下圖。

3. 操作步驟

步驟1:按以上拓撲添加和連接設(shè)備。
步驟2:配置路由器與服務(wù)器的 IP 地址
Router#configure terminal
R1(config)#interface FastEthernet0/1
R1(config-if)#ip address 192.168.1.1 255.255.255.0
R1(config-if)#
注意,服務(wù)器的 IP 地址可使用IP 配置 進行配置,簡單快捷。

步驟3:驗證路由器與服務(wù)器之間的連通性
R1#ping 192.168.1.5
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.1.5, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 31/31/32 ms
R1#
步驟4:查看路由器 flash 中的Cisco IOS 鏡像
R1#sh flash:
System flash directory:
File Length Name/status
3 50938004 c2800nm-advipservicesk9-mz.124-15.T1.bin
2 28282 sigdef-category.xml
1 227537 sigdef-default.xml
[51193823 bytes used, 12822561 available, 64016384 total]
63488K bytes of processor board System flash (Read/Write)
R1#
//注意Cisco IOS 鏡像的大小與文件名

步驟5:備份Cisco IOS 到TFTP 服務(wù)器
R1#copy flash: tftp:
Source filename []? c2800nm-advipservicesk9-mz.124-15.T1.bin
Address or name of remote host []? 192.168.1.5 //TFTP 服務(wù)器地址
Destination filename [c2800nm-advipservicesk9-mz.124-15.T1.bin]?
Writing
c2800nm-advipservicesk9-mz.124-15.T1.bin…!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!…
……
[OK - 50938004 bytes]
50938004 bytes copied in 27.828 secs (1830000 bytes/sec)
R1#
步驟6:在TFTP 服務(wù)器上驗證備份
打開服務(wù)器的 配置 頁面,單擊 TFTP 按鈕,可見右邊窗口已有備份
的Cisco IOS 鏡像。

步驟7:從TFTP 服務(wù)器恢復(fù)(升級)Cisco IOS
假如TFTP 服務(wù)器上要想恢復(fù)或升級的 Cisco IOS 鏡像是:
c2800nm-ipbase-mz.123-14.T7.bin
R1#copy tftp: flash:
Address or name of remote host []? 192.168.1.5 //TFTP 服務(wù)器地址
Source filename []? c2800nm-ipbase-mz.123-14.T7.bin
Destination filename [c2800nm-ipbase-mz.123-14.T7.bin]?
Accessing tftp://192.168.1.5/c2800nm-ipbase-mz.123-14.T7.bin…
Loading c2800nm-ipbase-mz.123-14.T7.bin from
192.168.1.5: !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[OK - 5571584 bytes]
5571584 bytes copied in 3.268 secs (390641 bytes/sec)
R1#
步驟8:驗證恢復(fù)或升級
R1#sh flash:
System flash directory:
File Length Name/status
3 50938004 c2800nm-advipservicesk9-mz.124-15.T1.bin
6 5571584 c2800nm-ipbase-mz.123-14.T7.bin
2 28282 sigdef-category.xml
1 227537 sigdef-default.xml
[56765407 bytes used, 7250977 available, 64016384 total]
63488K bytes of processor board System flash (Read/Write)
R1#

步驟9:驗證NVRAM 中的啟動配置和運行配置
R1#dir nvram:
Directory of nvram:/
238 -rw- 490startup-config
490 bytes total (237588 bytes free)
R1#
//注意啟動配置的文件名及其長度。
R1#sh run
Building configuration…
Current configuration : 548 bytes //運行配置的長度
………
R1#
R1#sh start
Using 548 bytes //啟動配置的長度
!
version 12.3
………
R1#

步驟10:備份啟動配置與運行配置
1) 備份啟動配置
R1#copy startup-config tftp:
Address or name of remote host []? 192.168.1.5
Destination filename [R1-confg]? www.wusoft.net r1startup
Writing startup-config…!!
[OK - 548 bytes]
548 bytes copied in 0.062 secs (8000 bytes/sec)
R1#
2) 備份運行配置
R1#copy running-config tftp:
Address or name of remote host []? 192.168.1.5
Destination filename [R1-confg]? www.wusoft.net r1run
Writing running-config…!!
[OK - 548 bytes]
548 bytes copied in 0.063 secs (8000 bytes/sec)
R1#
3) 在TFTP 服務(wù)器上驗證備份
打開服務(wù)器的配置 頁面,單擊TFTP 按鈕,可見右邊窗口已有備份
的啟動和運行配置。

步驟11:恢復(fù)啟動配置與運行配置
1) 恢復(fù)到啟動配置
R1#copy tftp: startup-config
Address or name of remote host []? 192.168.1.5
Source filename []? www.wusoft.net r1startup
Destination filename [startup-config]?
Accessing tftp://192.168.1.5/R1-startup-config…
Loading R1-startup-config from 192.168.1.5: !
[OK - 548 bytes]
548 bytes copied in 0.032 secs (17125 bytes/sec)
R1#
2) 恢復(fù)到運行配置
R1#copy tftp: running-config
Address or name of remote host []? 192.168.1.5
Source filename []? www.wusoft.net r1run
Destination filename [running-config]?
Accessing tftp://192.168.1.5/R1-running-config…
Loading R1-running-config from 192.168.1.5: !
[OK - 548 bytes]
548 bytes copied in 0.031 secs (17677 bytes/sec)
R1#

關(guān)鍵詞:cisco,cisco路由器

閱讀本文后您有什么感想? 已有 人給出評價!

  • 42 歡迎喜歡
  • 3 白癡
  • 0 拜托
  • 1 哇
  • 0 加油
  • 0 鄙視