2022年2022年静态与动态路由配置实例 .pdf
《2022年2022年静态与动态路由配置实例 .pdf》由会员分享,可在线阅读,更多相关《2022年2022年静态与动态路由配置实例 .pdf(16页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、第一部分动态路由配置 (RIP) RIP 命令格式:r2(config)#router ripr2(config-router)#network 12.0.0.0 r2(config-router)#network 193.168.1.0 要求1、R0:2 个 Serial0(2501) ;2、R1:1 个 Serial0、1 个 Ethernet0(805) ;3、R2:1 个 Serial0、1 个 Ethernet0(805) ;4、S1、S2:2950 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - -
2、 - - - - - 第 1 页,共 16 页 - - - - - - - - - 一、 R1 配置Routerenable (进入特权模式)Router#config t (进入全局配置模式 ) Enter configuration commands, one per line. End with CNTL/Z. Router(config)#hostname r1 (设置交换机的主机名 ) r1(config)#r1(config)#int s0 (进入 Serail 接口配置模式)r1(config-if)#ip add 11.1.1.1 255.0.0.0 (设置接口的 IP 地址)
3、r1(config-if)#clock rate 64000 (设置同步时钟)%LINK-3-UPDOWN: Interface Serial0, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to up r1(config-if)#no sh (激活当前接口)r1(config-if)#ex(退回特权模式)r1(config)#int e0r1(config-if)#ip add 192.168.1.1 255.255.255.0r1(config-if)#
4、no sh %LINK-3-UPDOWN: Interface Ethernet0, changed state to up r1(config-if)#exr1(config)#r1(config)#router rip (进入 RIP 协议配置子模式)r1(config-router)#network 11.0.0.0(声明网络 11.0.0.0/8)/这一步“ 11.0.0.0 ”必须与其子网掩码相对应,如上其子网掩码为255.0.0.0r1(config-router)#network 192.168.1.0/这一步“ 192.168.1.0”必须与其子网掩码相对应,如上其子网掩码为2
5、55.255.255.0r1(config-router)#exr1(config)#ex r1#sh ip rou (查看路由表信息)Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2
6、- IS-IS level-2, * - candidate default U - per-user static route Gateway of last resort is not set C 11.0.0.0 is directly connected, Serial0 C 192.168.1.0 is directly connected, Ethernet0 R 12.0.0.0 120/1 via 11.1.1.2, 00:02:25, Serial0 R:表示此项路由是由RIP 协议获取的, C 表示直接相连的网段12.0.0.0:表示目标网段120/1:120 表示 RIP
7、 协议的管理距离默认为120,1 是该路由的度量值,即跳名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 16 页 - - - - - - - - - 数Via:经由的意思11.1.1.2 :表示从当前路由器出发到达目标网的下一跳点的IP 地址00:02:25:表示该条路由产生的时间Serial0:表示该条路由使用的接口测试连通性r1#ping 12.1.1.2 Type escape sequence to abort. Sending 5, 100-byte ICMP
8、Echos to 12.1.1.2, timeout is 2 seconds: ! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms r1#r1#sh ip rou /这一步是在其它 router 全部配置完成后操作, 否结果有所不同Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area E1
9、 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, * - candidate default U - per-user static route Gateway of last resort is not set C 11.0.0.0 is directly connected, Serial0 C 192.168.1.0 is directly connected, Ethernet0 R 12.0.0.0 120/1 v
10、ia 11.1.1.2, 00:08:12, Serial0 R 193.168.1.0 120/2 via 11.1.1.2, 00:09:33, Serial0 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 16 页 - - - - - - - - - 二、 R2 配置Router Router Routeren Router#Router#con t Enter configuration commands, one per line. End with CNTL
11、/Z. Router(config)#hostname r2 r2(config)#int s0r2(config-if)#ip add 12.1.1.1 255.0.0.0r2(config-if)#clock rate 64000%LINK-3-UPDOWN: Interface Serial0, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to up r2(config-if)#no shr2(config-if)#exr2(config)#int e
12、0r2(config-if)#ip add 193.168.1.1 255.255.255.0r2(config-if)#no sh%LINK-3-UPDOWN: Interface Ethernet0, changed state to up r2(config-if)#exr2(config)#r2(config)#router ripr2(config-router)#network 12.0.0.0r2(config-router)#network 193.168.1.0r2(config-router)#exr2(config)#ex r2#r2#sh ip rouCodes: C
13、- connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, * - candidate default U - per-user static route Gateway of l
14、ast resort is not set C 12.0.0.0 is directly connected, Serial0 C 193.168.1.0 is directly connected, Ethernet0 R 11.0.0.0 120/1 via 12.1.1.2, 00:06:29, Serial0 R 192.168.1.0 120/2 via 12.1.1.2, 00:02:22, Serial0 r2# 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 4 页,
15、共 16 页 - - - - - - - - - 三、 R0 配置Router RouterenRouter#con tEnter configuration commands, one per line. End with CNTL/Z. Router(config)#hostname r0r0(config)#int s0r0(config-if)#ip add 11.1.1.2 255.0.0.0r0(config-if)#clock rate 64000r0(config-if)#no shr0(config-if)#exr0(config)#int s1r0(config-if)#i
16、p add 12.1.1.2 255.0.0.0r0(config-if)#clock rate 64000r0(config-if)#no shr0(config-if)#exr0(config)#r0(config)#router ripr0(config-router)#network 11.0.0.0r0(config-router)#network 12.0.0.0r0(config-router)#exr0(config)#exr0#r0#sh ip rouCodes: C - connected, S - static, I - IGRP, R - RIP, M - mobile
17、, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, * - candidate default U - per-user static route Gateway of last resort is not set C 11.0.0.0 is directly connected
18、, Serial0 C 12.0.0.0 is directly connected, Serial1 R 192.168.1.0 120/1 via 11.1.1.1, 00:03:23, Serial0 R 193.168.1.0 120/1 via 12.1.1.1, 00:01:36, Serial1 r0#ping 192.168.1.1Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.1.1, timeout is 2 seconds: ! Success rate is 100 per
19、cent (5/5), round-trip min/avg/max = 1/2/4 ms 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 5 页,共 16 页 - - - - - - - - - r0#ping 193.168.1.1Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 193.168.1.1, timeout is 2 seconds: ! Success rate is 100 perc
20、ent (5/5), round-trip min/avg/max = 1/2/4 ms r0#名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 6 页,共 16 页 - - - - - - - - - 四、 s1 配置switchenable(进入特权模式)switch#config terminal(进入全局配置模式)switch(config)# hostname S1(设置交换机的主机名)S1(config)# S1(config) #int vlan1S1(config-if
21、)#ip a 192.168.1.2 255.255.255.0S1(config-if)#ip d 192.168.1.1 (设置默认网关)S1(config) #ex S1#sh ip int bri名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 7 页,共 16 页 - - - - - - - - - 五、 s2 配置switchenable(进入特权模式)switch#config terminal(进入全局配置模式)switch(config)# hostname S2(设
22、置交换机的主机名)S2(config)# s2(config) #int vlan1s2(config-if) #ip a 193.168.1.2 255.255.255.0s2(config-if) #ip d 193.168.1.1 (设置默认网关)s2(config) #ex s2#sh ip int briInterface IP-Address OK? Method Status Protocol Vlan 1 193.168.1.2 YES unset up up FastEthernet0/1 unassigned YES unset up up FastEthernet0/2
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2022年2022年静态与动态路由配置实例 2022 静态 动态 路由 配置 实例
限制150内