类别:CISCO / 日期:2019-10-09 / 浏览:986 / 评论:0
平时在配置CISCO设备时,常需要以文件形式独立备份当前的配置。推荐使用的TFTP服务器为tftpd32(就是tp-link常用来升级固件的那个,可以在TP-LINK网站下载)
运行TFTP服务器后,将配置文件导出到TFTP:
router#copy startup-config tftp
Address or name of remote host []? 192.168.100.120
Destination filename [router-confg]? router.cfg
即导出到tftp目录下的router.cfg文件。
将配置文件导入到路由器:
router#copy tftp running-config
Address or name of remote host []? 192.168.100.120
Source filename []? router.cfg
Destination filename [running-config]?
Accessing tftp://192.168.100.120/r1.cfg...
Loading r1.cfg from 192.168.100.120 (via FastEthernet0): !
[OK - 1071 bytes]
检验无误后,再输入以下命令
router#copy running-config startup-config 即可
(注:为什么不直接导入到startup-config中呢?因为最好是先检查所导入的配置是否合适,如果有密码的话可以及时取消或更改。否则的话,导入到startup-config中,一重启就进不去了)