帧中继上运行RIP.doc

上传人:11****ws 文档编号:3088779 上传时间:2019-05-20 格式:DOC 页数:4 大小:56KB
下载 相关 举报
帧中继上运行RIP.doc_第1页
第1页 / 共4页
帧中继上运行RIP.doc_第2页
第2页 / 共4页
帧中继上运行RIP.doc_第3页
第3页 / 共4页
帧中继上运行RIP.doc_第4页
第4页 / 共4页
亲,该文档总共4页,全部预览完了,如果喜欢就下载吧!
资源描述

1、帧中继的配置拓扑图:1.R1、R3、R4 的基本配置。R2 是帧中继路由现在先不配置R1 S1/0 192.168.123.1 255.255.255.0 Lo 0 1.1.1.1 255.255.255.0 R3 S1/0 192.168.123.3 255.255.255.0 Lo 0 3.3.3.3 255.255.255.0R4 S1/0 192.168.123.4 255.255.255.0 Lo 0 4.4.4.4 255.255.255.0三个帧中继接口在接口配置模式下:Encapsulation frame-relayFrame-relay lmi-type cisco时钟设置

2、都统一为 96002 :R2 也就是帧中继理由的设置连接的三个串口的配置基本上是一样的以 s1/0 为例:R2(config)#frame-relay switching /这条命令声明 R2 为帧中继路由器!R2(config-if)#int s1/0R2(config-if)#encapsulation frame-relay /接口的封装协议!R2(config-if)#clock rate 9600另外两个接口就按照这种配置即可。接来下配置 LMI 的类型,仍旧以 S1/0 为例:R2(config)#int s1/0R2(config-if)#frame-relay lmi-type

3、 cisco 配置 LMI 的类型,默认的是 cisoR2(config-if)#frame-relay intf-type dce 配置接口是帧中继的 DCE 还是 DTE,需要注意的是:这里的帧中继接口 DCE 和 S1/0 接口是 DCE 还是 DTE 无关,也就是说即使 S1/0 是 DTE,也可以把它配置成帧中继的 DCE.S1/1 和 S1/2 参照上面进行配置我这里就不弄上去了。接下来就是帧中继交换表了,这和配静态路由的道理是一样的指明地址才能通信。R2(config)#int s1/0R2(config-if)#frame-relay route 103 int s1/1 30

4、1R2(config-if)#frame-relay route 104 int s1/2 401 /这段命令是用来配置交换表的,告诉路由器如果从该接口收到 DLCI=104 的帧,要从 S1/2 交换出去,并且 DLCI 改为401R2(config)#int s1/1R2(config-if)#frame-relay route 301 int s1/1 103R2(config)#int s1/2R2(config-if)#frame-relay route 104 int s1/1 401调试一下看看Show frame-relay routeR2#show frame-relay r

5、outeInput Intf Input Dlci Output Intf Output Dlci StatusSerial1/0 103 Serial1/1 301 activeSerial1/0 104 Serial1/2 401 activeSerial1/1 301 Serial1/0 103 activeSerial1/2 401 Serial1/0 104 active上面的状态都是 active 的说明端口正在起作用 如果是 inactive 那你就需要检查一下你的配置了。这时测试一下 R1 与 R3、R4 能否通信:R1#ping 192.168.123.3Type escap

6、e sequence to abort.Sending 5, 100-byte ICMP Echos to 192.168.123.3, timeout is 2 seconds:!Success rate is 100 percent (5/5), round-trip min/avg/max = 20/64/204 msR1#ping 192.168.123.4Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 192.168.123.4, timeout is 2 seconds:!Success rate is

7、 100 percent (5/5), round-trip min/avg/max = 32/76/172 ms这说明已经能够通信了。这时候用 R3 ping R4 看看是什么状况:R3#ping 192.168.123.4Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 192.168.123.4, timeout is 2 seconds:.Success rate is 0 percent (0/5)不通,就不拿 R4 ping R3 了,也是不通的,你们可以试试。后面就解决这个问题。下面在帧中继上运行 ri

8、p三个路由器上设置的都有 loopback 接口我仍旧只以 R1 为例 R1(config)#router ripR1(config-router)#net 1.0.0.0R1(config-router)#net 192.168.123.0其他两个的配置和上面是一样的只是 loopback 接口不同改下即可。检查路由表:R3#sh ip routeCodes: C - connected, S - static, R - RIP, M - mobile, B - BGPD - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area

9、N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2E1 - OSPF external type 1, E2 - OSPF external type 2i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2ia - IS-IS inter area, * - candidate default, U - per-user static routeo - ODR, P - periodic downloaded static routeG

10、ateway of last resort is not setC 192.168.123.0/24 is directly connected, Serial1/0R 1.0.0.0/8 120/1 via 192.168.123.1, 00:00:08, Serial1/03.0.0.0/24 is subnetted, 1 subnetsC 3.3.3.0 is directly connected, Loopback0R 4.0.0.0/8 120/2 via 192.168.123.1, 00:00:08, Serial1/0可以看到该有的网段都有了 注意 RIP 路由表中的下一跳。

11、R3#ping 4.4.4.4 source 3.3.3.3Type 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 3.3.3.3!Success rate is 100 percent (5/5), round-trip min/avg/max = 48/128/228 msR3#ping 4.4.4.4Type escape sequence to abort.Sending 5, 10

12、0-byte ICMP Echos to 4.4.4.4, timeout is 2 seconds:.Success rate is 0 percent (0/5)这和刚才 ping 192.168.123.4 的情况是一样的原因是:这里的 ping 命令并未指明源地址,则 ICMP 数据包的源 IP 为192.168.123.3,目标地址为 4.4.4.4.R3 查询路由表得知该数据包应该发送给192.168.123.1,而 192.168.123.1 的帧中继映射 DLCI 为 301;数据包到达 R1,R1 查路由表得知该数据包应该转发给 192.168.1.4,而 192.168.1

13、23.4 的帧中继映射 DLCI 为 104.R4 收到数据包进行响应,ICMP 的数据包源地址为 4.4.4.4,目标为 192.168.123.3;R4 有 192.168.123.0/24 的直连路由,然而却没有 192.168.123.3 的帧中继映射,因此无法进行封装。为了解决这个问题,在 R4 中增加映射:R4(config)#int s1/0R4(config-if)#frame-relay map ip 192.168.123.3 401再 ping 4.4.4.4R3#ping 4.4.4.4Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 4.4.4.4, timeout is 2 seconds:!Success rate is 100 percent (5/5), round-trip min/avg/max = 80/147/240 ms同理也可以在 R3 上增加映射让 R4ping 通 R3实验到此结束了,手指头都敲疼了。如果你看这个文档最后看上两遍再敲代码,不然容易出现问题。你也可以加我一起探讨一下。

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

当前位置:首页 > 实用文档资料库 > 策划方案

Copyright © 2018-2021 Wenke99.com All rights reserved

工信部备案号浙ICP备20026746号-2  

公安局备案号:浙公网安备33038302330469号

本站为C2C交文档易平台,即用户上传的文档直接卖给下载用户,本站只是网络服务中间平台,所有原创文档下载所得归上传人所有,若您发现上传作品侵犯了您的权利,请立刻联系网站客服并提供证据,平台将在3个工作日内予以改正。