2022年2022年路由器配置命令大全 .pdf

上传人:C****o 文档编号:33381671 上传时间:2022-08-10 格式:PDF 页数:3 大小:41.25KB
返回 下载 相关 举报
2022年2022年路由器配置命令大全 .pdf_第1页
第1页 / 共3页
2022年2022年路由器配置命令大全 .pdf_第2页
第2页 / 共3页
点击查看更多>>
资源描述

《2022年2022年路由器配置命令大全 .pdf》由会员分享,可在线阅读,更多相关《2022年2022年路由器配置命令大全 .pdf(3页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、路由器配置命令大全视图模式介绍:普通视图router 特权视图router# /在普通模式下输入enable 全局视图router(config)# / 在特权模式下输入config t 接口视图router(config-if)# / 在全局模式下输入int 接口名称例如 int s0 或 int e0 路由协议视图router(config-route )# /在全局模式下输入router 动态路由协议名称1、基本配置:routerenable /进入特权模式router#conf t / 进入全局配置模式router(config)# hostname xxx / 设置设备名称就好像给我

2、们的计算机起个名字router(config)#enable password /设置特权口令router(config)#no ip domain lookup / 不允许路由器缺省使用DNS 解析命令router(config)# Service password-encrypt / 对所有在路由器上输入的口令进行暗文加密router(config)#line vty 0 4 / 进入设置telnet 服务模式router(config-line)#password xxx / 设置 telnet 的密码router(config-line)#login / 使能可以登陆router(co

3、nfig)#line con 0 / 进入控制口的服务模式router(config-line)#password xxx / 要设置 console 的密码router(config-line)#login / 使能可以登陆2、接口配置:router(config)#int s0 / 进入接口配置模式serial 0 端口配置 (如果是模块化的路由器前面加上槽位编号,例如serial0/0 代表这个路由器的0 槽位上的第一个接口)router(config-if)#ip add xxx.xxx.xxx.xxx xxx.xxx.xxx.xxx /添加 ip 地址和掩码router(config

4、-if)#enca hdlc/ppp 捆绑链路协议hdlc 或者ppp 思科缺省串口封装的链路层协议是 HDLC 所以在 show run 配置的时候接口上的配置没有,如果要封装为别的链路层协议例如 PPP/FR/X25 就是看到接口下的enca ppp 或者 enca fr router(config)#int loopback / 建立环回口 (逻辑接口 )模拟不同的本机网段router(config-if)#ip add xxx.xxx.xxx.xxx xxx.xxx.xxx.xxx /添加 ip 地址和掩码给环回口在物理接口上配置了ip 地址后用 no shut 启用这个物理接口反之可

5、以用shutdown 管理性的关闭接口3、路由配置:(1)静态路由router(config)#ip route xxx.xxx.xxx.xxx xxx.xxx.xxx.xxx 下一条或自己的接口router(config)#ip route 0.0.0.0 0.0.0.0 s 0 添加缺省路由(2)动态路由rip 协议router(config)#router rip / 启动 rip 协议router(config-router)#network xxx.xxx.xxx.xxx /宣告自己的网段router(config-router)#version 2 转换为 rip 2 版本rout

6、er(config-router)#no auto-summary / 关闭自动汇总功能,rip V2 才有作用router(config-router)# passive-int 接口名/启动本路由器的那个接口为被动接口router(config-router)# nei xxx.xxx.xxx.xxx /广播转单播报文,指定邻居的接ip, 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 3 页 - - - - - - - - - igrp 协议 -内部网关路由协议(I

7、GRP:Interior Gateway Routing Protocol )router(config)#router igrp xxx /启动 igrp 协议router(config-router)#network xxx.xxx.xxx.xxx /宣告自己的网段router(config-router)#variance xxx / 调整倍数因子,使用不等价的负载均衡eigrp-Enhanced Interior Gateway Routing Protocol(增强网关内部路由线路协议) router(config)#router eigrp xxx / 启动协议router(con

8、fig-router)#network xxx.xxx.xxx.xxx /宣告自己的网段router(config-router)#variance xxx / 调整倍数因子,使用不等价的负载均衡router(config-router)#no auto-summary / 关闭自动汇总功能ospf 协议-开放最短路径协议(OSPF)协议router(config)#router ospf xxx / 启动协议启动一个OSPF 协议进程router(config-router)#network xxx.xxx.xxx.xxx area xxx /宣告自己的接口或网段在ospf 的区域中,可以把

9、不同接口宣告在不同区域中router(config-router)#router-id xxx.xxx.xxx.xxx /配置路由的id router(config-router)#area xxx stub /配置 xxx 区域为末梢区域,加入这个区域的路由器全部要配置这个条命令router(config-router)#area xxx stub no-summary /配置 xxx 区域为完全末梢区域,只在 ABR 上配置router(config-router)#area xxx nssa /配置 xxx 区域为非纯末梢区域,加入这个区域的路由器全部要配置这个条命令router(con

10、fig-router)#area xxx nssa no-summary /配置xxx 区域为完全非纯末梢区域,只在ABR 上配置 ,并发布缺省路由信息进入这个区域内的路由器4、保存当前修改/运行的配置:router#write / 将 RAM 中的当前配置存储到NVRAM中,下次路由器启动就是执行保存的配置router#Copy running-config startup-config /命令与 write 效果一样5、一般的常用命令router(config-if)#exit router(config)# router(config-router)#exit router(config

11、)# router(config-line)#exit router(config)# router(config)#exit router# exit 命令/从接口、协议、line 等视图模式下退回到全局配置模式,或从全局配置模式退回到特权模式router(config-if)#end router(config-router)#end router(config-line)#end router# end命令/从任何视图直接回到特权模式名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - -

12、第 2 页,共 3 页 - - - - - - - - - router#Logout /退出当前路由器登陆模式相对与windows 的注销router#reload /重新启动路由器(热启动)冷启动就是关闭路由器再打开电源开关特权模式下:router#show ip route / 查看当前的路由表router#clear ip route * / 清楚当前的路由表router#show ip protocol / 查看当前路由器运行的动态路由协议情况router#show ip int brief / 查看当前的路由器的接口ip 地址启用情况router#show running-conf

13、ig / 查看当前运行配置router#show startup-config / 查看启动配置router#debug ip pack / 打开 ip 报文的调试router#terminal monitor / 输出到终端上显示调试信息router#show ip eigrp neighbors / 查看 eigrp 协议的邻居表router#show ip eigrp top /查看 eigrp 协议的拓朴表router#show ip eigrp interface / 查看当前路由器运行eigrp 协议的接口情况router#show ip ospf neighbor / 查看当前路

14、由器的ospf 协议的邻居表router#show ip ospf interface / 查看当前路由器运行ospf 协议的接口情况router#clear ip ospf process /清楚当前路由器ospf 协议的进程router#Show interfaces /显示设置在路由器和访问服务器上所有接口的统计信息. 显示路由器上配置的所有接口的状态router#Show interfaces serial / 显示关于一个串口的信息router#Show ip interface / 列出一个接口的IP 信息和状态的小结, 列出接口的状态和全局参数名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 3 页 - - - - - - - - -

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 教育专区 > 高考资料

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁