交换机或路由器的IOS被删了,则可以采用Xmodem灌回IOS。
首先电脑里有已经备份好的IOS系统,比如是G:\>tftp>c2950.bin。
打开超级终端显示switch:
输入命令copy xmodem: flash:c2950
选择超级终端发送菜单->发送文件->文件名找到系统中的c2950.bin协议选择Xmodem->发送
备份IOS
在交换机里设置管理ip
interface vlan 1
ip addr 192.168.0.145 255.255.255.0
no shut
PC的ip为192.168.0.149,需要安装tftp软件,选择菜单view->options,TFTP server root选择一个目录,备份好的IOS镜像文件被保存在此目录下。
在交换机上执行copy tftp flash安装提示进行备份IOS。
SW1#copy flash: tftp
Source filename []? c2950 //这个文件是通过dir命令查看到的镜像文件的名字,或show flash也可以看到到。
Address or name of remote host []? 192.168.0.149 //PC的ip地址,即tftp。
Destination filename [c2950]? c2950-sw.bin
备份配置文件。
交换机的配置文件为startup-config,可以通过dir查看:
SW1#dir
Directory of flash:/
2 -rwx 2888576 Jan 01 1970 01:10:57 c2950
3 -rwx 5 Mar 01 1993 01:08:12 private-config.text
4 -rwx 1845 Mar 01 1993 01:08:12 config.text
5 -rwx 676 Mar 01 1993 00:02:01 vlan.dat
6 -rwx 453 Jan 01 1970 00:35:34 env_vars
11 -rwx 1505 Mar 01 1993 00:09:31 system
14 drwx 0 Mar 01 1993 00:03:17 lost+found
7741440 bytes total (4846080 bytes free)
文件名为config.text或者通过dir nvarm:查看
SW1#dir nvram:
Directory of nvram:/
29 -rw- 1845 startup-config
30 ---- 5 private-config
32768 bytes total (30866 bytes free)
SW1#copy nvram: tftp
Source filename []? startup-config
Address or name of remote host []? 192.168.0.149
Destination filename [sw1-confg]?
!!
1845 bytes copied in 0.052 secs (35481 bytes/sec)
或者
SW1#copy flash:config.text tftp
Address or name of remote host []? 192.168.0.149
Destination filename [config.text]?
!!
1845 bytes copied in 0.044 secs (41932 bytes/sec)
把刚才备份的配置文件上传:
SW1#copy tftp nvram
Address or name of remote host [192.168.0.145]? 192.168.0.149
Source filename [config.text]?
Destination filename [nvram]? startup-config
Accessing tftp://192.168.0.149/config.text...
Loading config.text from 192.168.0.149 (via Vlan1): !
[OK - 1845 bytes]
阅读(1171) | 评论(0) | 转发(0) |