我目前正在学校学习 CCNA(思科认证网络助理)课程,我的案例研究有点卡住了,所以我想知道是否有人可以提供帮助。
我有以下拓扑:

我已经建立了与上面显示的连接的所有连接。我可以使用串行连接在 R1 和 R2 以及 R1 和 R3 之间 ping。但是我无法在 PC1 和 R2/R3 之间 ping 通。因此,我创建了一个静态路由,如下所示:
Router1(config)#ip route 192.168.23.0 255.255.255.0 192.168.12.2
Router2(config)#ip route 192.168.1.0 255.255.255.0 192.168.12.1
Run Code Online (Sandbox Code Playgroud)
我现在可以在 PC1 和 R2 之间 ping 通。
但是,案例研究的下一部分要求从 PC1 ping PC2 和 PC3,它应该失败。然而我的成功了......还有什么我应该做的,或者我走得太远等?
PC>tracert 192.168.12.2
Tracing route to 192.168.12.2 over a maximum of 30 hops:
1 14 ms 6 ms 8 ms 192.168.1.11
2 * * * Request timed out.
Run Code Online (Sandbox Code Playgroud)
Router1#show ip route
Gateway of last resort is not set
C …Run Code Online (Sandbox Code Playgroud) 我在 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 …Run Code Online (Sandbox Code Playgroud)