CISCO 路由器管理---tftp
 
保存路由器的相关配置;备份IOS文件等,下面是些常见的命令:
 
准备工作:配置路由器IP地址 思科TFTP服务器开启
下载路由器上的IOS
Router#copy flash:c2600-js-mz.122-19a.bin tftp:             //将IOS文件拷贝到PC机
Address or name of remote host [ ]? 172.16.32.1             //指定保存到PC机的ip地址
Destination filename [c2600-js-mz.122-19a.bin]?             //保存到PC机上的文件名字,直接回车
 
上传IOS到路由器上
Router#copy tftp:c2600-js-mz.122-19a.bin flash:             //将IOS文件从PC机拷贝到路由器
Address or name of remote host [ ]? 172.16.32.1             //从那台PC机上传到路由器
Destination filename [c2600-js-mz.122-19a.bin]?             //IOS上传到路由器上的名字 直接回车
 
下载路由器的配置文件
Router#copy nvram:startup-config tftp:                       //将路由器的配置文件拷贝到PC机
Address or name of remote host [ ]? 172.16.32.1              //下载到指定PC机的ip地址
Destination filename [Router-confg]?                         //路由器配置文件名 直接回车
 
上传配置文件到路由器
Router#copy tftp:startup-config nvram:                       //将路由器配置文件从PC机拷贝到路由器
Address or name of remote host [ ]? 172.16.32.1              //从哪台PC机上传
Destination filename [Router-confg]?                         //配置文件上传到路由器的名字 直接回车