使用交换机模拟配置帧中继 - Packet Tracer

DJD*_*son 5 cisco packet

我在 Packet Tracer 中进行了以下设置:

在此处输入图片说明

我正在尝试使用帧中继交换机模拟(云)在 RTR-EDGE 路由器、RTR_ENG 路由器和 RTR_SAL 路由器之间配置帧中继。我使用了以下命令:

RTR_EDGE(config)#int s3/0
RTR_EDGE(config-if)#encap frame-relay
RTR_EDGE(config-if)#frame-relay map ip 172.20.1.109 101 broadcast
RTR_EDGE(config-if)#frame-relay map ip 172.20.1.113 102 broadcast
RTR_EDGE(config-if)#ip address 172.20.1.117 255.255.255.252
RTR_EDGE(config-if)#frame-relay lmi-type cisco
RTR_EDGE(config-if)#no shutdown

RTR_ENG(config)#int s0/0
RTR_ENG(config-if)#encap frame-relay
RTR_ENG(config-if)#frame-relay map ip 172.20.1.117 200 broadcast
RTR_EDGE(config-if)#ip address 172.20.1.109 255.255.255.252
RTR_ENG(config-if)#frame-relay lmi-type cisco
RTR_ENG(config-if)#no shutdown

RTR_SAL(config)#int s0/0
RTR_SAL(config-if)#encap frame-relay
RTR_SAL(config-if)#frame-relay map ip 172.20.1.117 200 broadcast
RTR_SAL(config-if)#ip address 172.20.1.113 255.255.255.252
RTR_SAL(config-if)#frame-relay lmi-type cisco
RTR_SAL(config-if)#no shutdown
Run Code Online (Sandbox Code Playgroud)

并且电路出现在每个路由器的地图中:

RTR_EDGE#show frame-relay map
Serial3/0 (up): ip 172.20.1.109 dlci 101, static, broadcast, CISCO, status defined, active
Serial3/0 (up): ip 172.20.1.113 dlci 102, static, broadcast, CISCO, status defined, active
Run Code Online (Sandbox Code Playgroud)

但是,三个路由器都不能互相ping通吗?有没有人对为什么不有任何想法?我在互联网上看了一些教程,他们的命令和我的一样,但是他们的工作和我的不..

任何帮助,将不胜感激!谢谢

pet*_*rus 1

你们有到其他路由器的路由吗?

我不知道是否有必要将路由添加到帧中继配置中,但您应该像这样检查:

RTR_EDGE# show ip route 172.20.1.109
RTR_EDGE# show ip route 172.20.1.113
RTR_ENG# show ip route 172.20.1.117
RTR_SAL# show ip route 172.20.1.117
Run Code Online (Sandbox Code Playgroud)