验证路由转发和路由表之间的关系
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
试验要求:R1 R2不使用动态路由协议。使得R1looback 0上的地址 ping 通 R2looback0上的地址试验目的:验证路由转发和路由表之间的关系。
试验步骤如下:
基本配置:
R1:
Router>en
Router#enabel
Router(config)#hostname R1
R1(config)#interface s0/0
R1(config-if)#ip address 2.2.2.2 255.255.255.0
R1(config-if)#no shutdown
R1(config)#interface looback0
R1(config-if)#ip address 1.1.1.1 255.255.255.0
R2:
Router>en
Router#enabel
Router(config)#hostname R2
R2(config)#interface s0/0
R2(config-if)#ip address 3.3.3.3 255.255.255.0
R2(config-if)#no shutdown
R2(config)#interface looback0
R2(config-if)#ip address 4.4.4.4 255.255.255.0
解决方案一:
同时在R1 R2的全局模式下no ip routing 关闭路由功能
测试:
R1#ping 4.4.4.4 sou 1.1.1.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 4.4.4.4, timeout is 2 seconds: Packet sent with a source address of 1.1.1.1
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 4/41/64 ms R1#
*Mar 1 00:24:10.075: ICMP: echo reply rcvd, src 4.4.4.4, dst 1.1.1.1 *Mar 1 00:24:10.139: ICMP: echo reply rcvd, src 4.4.4.4, dst 1.1.1.1
*Mar 1 00:24:10.167: ICMP: echo reply rcvd, src 4.4.4.4, dst 1.1.1.1
*Mar 1 00:24:10.171: ICMP: echo reply rcvd, src 4.4.4.4, dst 1.1.1.1
*Mar 1 00:24:10.227: ICMP: echo reply rcvd, src 4.4.4.4, dst 1.1.1.1
测试结果R1的1.1.1.1 ping 通 R2的2.2.2.2
方法总结:no ip routing 关闭路由功能,使得数据在转发时不在使用路由表转发就可以直接发送出去。
解决方案二
在R1上配置一条到达目标网络4.4.4.0/24的静态路由
R1(config)#ip route 4.4.4.0 255.255.255.0 3.3.3.3
配置如上命令时发现路由没有在路由表中生成。原因路由写入路由表中必须满足以下要求:
1.有目标网络或地址
2.有掩码长度
3.有可达的下一跳地址
在R1上配置ip route 4.4.4.0 255.255.255.0 3.3.3.3这条静态路由的下一跳不可达,因此先要解决下一跳不可达的问题,在R1上在追加一条到达下一跳的静态路由
R1(config)#ip route 3.3.3.3 255.255.255.255 s0/0
同时再次配置:R1(config)#ip route 4.4.4.0 255.255.255.0 3.3.3.3
由上可知因先配置到达下一跳的路由再配置到达目标的路由
查看R1的路由表:
R1#sh ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2 ia - IS-IS inter area, * - candidate default, U - per-user static route o - ODR, P - periodic downloaded static route
Gateway of last resort is not set
1.0.0.0/24 is subnetted, 1 subnets
C 1.1.1.0 is directly connected, Loopback0
2.0.0.0/24 is subnetted, 1 subnets
C 2.2.2.0 is directly connected, Serial0/0
3.0.0.0/32 is subnetted, 1 subnets
S 3.3.3.3 is directly connected, Serial0/0
4.0.0.0/24 is subnetted, 1 subnets
S 4.4.4.0 [1/0] via 3.3.3.3
查看路由表可以看到现在路由表中生成两条静态路由,一条到达目标,一条到达下一跳。如以上步骤配置R2
R2(config)#ip route 2.2.2.2 255.255.255.255 s0/0
R2(config)#ip route 1.1.1.0 255.255.255.0 2.2.2.2
查看R2路由表