我在Packet中设置了以下内容:

我试图使用帧中继交换机模拟(云)在RTR边缘路由器、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电路出现在每个路由器的地图上:
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然而,这三个路由器都不能互相平分吗?有没有人知道为什么不呢?我在网上看过一些教程,他们的命令和我的一样,但是他们的作品和我的都不一样。
任何帮助都将不胜感激!谢谢
发布于 2012-04-02 20:44:56
你们有到对方路由器的路线吗?
我不知道是否有必要将这些路由添加到您的帧中继配置中,但是您应该这样检查:
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发布于 2013-05-12 09:03:39
您的端点位于不同的子网上,如果您将子网掩码缩小为/27 (非CIDR术语为255.255.255.224),则应该会有更多的运气。
https://serverfault.com/questions/374136
复制相似问题