Cisco 常用命令
- Cisco 路由器 IOS 升级方法总结 - https://blog.51cto.com/bblxlit/24979
- MTU - http://bbs.csc-china.com.cn/forum.php?mod=viewthread&tid=983744
- PPPoE - https://blog.csdn.net/juded/article/details/52625065
- Tunnel - http://network.51cto.com/art/201008/216442.htm
- 宽带连接 - https://bbs.kafan.cn/thread-1775440-1-1.html
常用设置
初始设置
修改名称1
2
3
4
5
6
7Router>en //进入
Router#conf t //进入配置模式
Router(config)#enable password cisco //开启特权密码保护
Router(config)#enable secret cisco //开启特权秘钥保护
Router(config)#line console 0 //进入控制线路配置模式
Router(config-line)#login //开启登录密码保护
Router(config-line)#password cisco //设置 console 密码1
2Router(config)#hostname xxx //修改路由器名称这里改为 xxx
Router(config)#do wr //保存配置设置密码
VTY 密码1
2
3
4
5Router(config)#line vty 0 4
Router(config-line)#password cisco
Router(config-line)#exec-timeout 10
Router(config-line)#login //开启登录密码保护
Router(config-line)#exit备份升级
准备
- 搭建 TFTP 服务器(Cisco 和 3C 都有提供,或者其他的)
- 配置路由器端口,然后连接电脑让两者在同一个网段
备份
备份 IOS
慢慢出现 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 表示正在备份(感叹号代表进度条)1
2
3
4
5Router#show version //找到 flash 的文件名
Router#copy flash tftp
Source filename []?disk0:c7301-adventerprisek9-mz.152-4.S1.bin //这里输入上述返回内容 flash 部分 ""里的所有内容
Address or name of remote host []?10.10.10.254 (设置的 TFTP 服务器地址)
Destination filename [c7301-adventerprisek9-mz.152-4.S1.bin]?备份配置
1
2
3Router#copy running-config tftp
Address or name of remote host []?10.10.10.254
Destination filename []?router_backup //保存的文件名升级
升级 IOS
如果提示空间不足,使用1
2
3
4
5Router#copy tftp flash
Address or name of remote host []?10.10.10.254
Source filename []?c7301-jk9o3s-mz.124-25g.bin
Destination filename [c7301-jk9o3s-mz.124-25g.bin]?disk0:c7301-jk9o3s-mz.124-25g.bin //跟备份的 IOS 一样格式
Do you want to over write? [confirm]delete flash
删除之前的 IOS 文件恢复配置
1
2
3
4
5
6
7Router#copy tftp running-config
Address or name of remote host []? 10.10.10.254
Source filename []? router_backup
Destination filename [running-config]?
Router(config)#interface Dialer1
Router(config-if)#ip mtu 1400
Router(config-if)#ip tcp adjust-mss 1400
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 君玉自牧!