接下来,我们开始对网络的设备的IOS,及配置文件备份。IOS的备份还原在我的博客一文中《PacketTracer 5.2之路由器IOS升级实验指南》有说明,还原的命令跟升级的是一样的。那么备份的命令如下:
R1#show flash:(先查看我们需要备份的IOS)
System flash directory:
FileLengthName/status
350938004 c2800nm-advipservicesk9-mz.124-15.T1.bin
228282sigdef-category.xml
1227537sigdef-default.xml
[51193823 bytes used, 12822561 available, 64016384 total]
63488K bytes of processor board System flash (Read/Write)
R1#copy flash: tftp:(从路由器的FLASH中,将文件备份到tftp中)
Source filename []? c2800nm-advipservicesk9-mz.124-15.T1.bin(原文件)
Address or name of remote host []? 192.168.1.2(TFTP服务器地址)
Destination filename [c2800nm-advipservicesk9-mz.124-15.T1.bin]?(存放名称,可以自己命名)
.!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[OK - 50938004 bytes]
50938004 bytes copied in 59.468 secs (856000 bytes/sec)
在TFTP服务器中,就可以看到你所备份好的IOS。配置文件的备份,更IOS的备份的思路是一样的。从路由器将startup-config或running-config备份到TFTP服务器上,还原的时候,要千万注意啊,startup-config还原了,是不需要在保存到路由器,而running-config还原了,必须要保存到启动配置文件中。备份和还原命令如下:
R1#copy running-config tftp:
Address or name of remote host []? 192.168.1.2
Destination filename [R1-confg]? running-config(我命名为running-config,如果不命名这是R1-confg)
!!
[OK - 686 bytes]
686 bytes copied in 0.125 secs (5000 bytes/sec)
R1#copy startup-config tftp:
Address or name of remote host []? 192.168.1.2
Destination filename [R1-confg]? startup-config(我命名为startup-config,如果不命名这是R1-confg)
!!
[OK - 684 bytes]
684 bytes copied in 0.11 secs (6000 bytes/sec)
这时在TFTP服务器上的备份效果如如图:
还原的配置命令如下:(以startup-config为例)
R1#copy tftp: flash:
Address or name of remote host []? 192.168.1.2
Source filename []? startup-config(服务器上的文件名)
Destination filename [startup-config]?(还原到flash中名称,可以命名,建议默认)
Accessing tftp://192.168.1.2/startup-config...
Loading startup-config from 192.168.1.2: !
[OK - 684 bytes]
684 bytes copied in 0.062 secs (11032 bytes/sec)
(注意:还原running-config后,在使用copy running-config startup-config或write保存。)
最后,给大家演示的是路由器的密码恢复实验(由于模拟器不支持做交换机的密码恢复,故小T我在这给大家描述一下思路)。在前面我说了,只要在cisco网络设备启动后,不让它加载startup-config文件就可以了。路由器只要修改寄存值,如:0x2102是默认的加载startup-config文件;0x2142是不加载startup-config文件的。演示实验如下:
把电源关了再开一下,模拟器支持电源的开关(《【交流】浅谈PacketTracer5.2模拟器》一文中有说明)。在路由器重启的时候,出现“####”的时候按下Ctrl+Break键盘,加入路由器的ROM模式,修改寄存值,效果如下:
Self decompressing the p_w_picpath :
############
monitor: command "boot" aborted due to user interrupt
rommon 1 > confreg 0x2142
rommon 2 > boot
启动后就如见到如下信息,这个信息室询问式配置,我们选择“no”。就进入到了路由器的命令行配置。密码恢复思路是在这里修改密码,再讲当前的running-config保存到startup-config中,修改寄存值为默认加载的startup-config的。
Continue with configuration dialog? [yes/no]: no
Router#copy startup-config running-config
R1(config)#enable password 456
R1(config)#config-register 0x2102
R1r#copy running-config startup-config
R1#reload
这样就完成了密码恢复,telnet,ssh的密码,也在这里配置,后保存到startup-config,修改寄存值,最后重启。
交互机的密码恢复,小T我给大家描述下。以cisco 2950为例,在重启交换机的时候,按住交换机上的Modem键,然后操作命令先后顺序如下:
flash_init(初始化交换机)
load helper(加载帮助文件)
dir flash:(查看flash中文件,你会看到config.text文件,这就是交换机的启动文件)
rename flash:config.text flash:config.old(重新命个名,这样交换机就不会加载启动文件了)
boot(启动交换机)
Continue with configuration dialog? [yes/no]: no
Switch#rename flash:config.old flash:config.text(将名字改回到启动文件)
Switch#copy flash:config.text system:running-config(讲启动文件加载到当前运行环境)
Switch(config)#enable password xiaot
Switch#copy running-config startup-config(修改后的密码保存到启动文件中)
(附件:基本连通的PKT文件,大家可以下载实验)