两台路由器用串口线相连,为什么不设置时钟频率就可以互相ping通?

网络工程 路由器 电缆 gns3
2022-02-05 21:18:31

我对网络很陌生,还在学习 CCNA 的东西。我正在读一本书,据我了解,当您使用串行线连接两个路由器时,一个路由器被认为是 DCE,另一个是 DTE。DCE 侧应设置时钟频率,以使它们能够成功通信。我的理解正确吗?我在 gns3 中做了一些测试,看来我的理解是错误的。下面是我的拓扑。

在此处输入图像描述

这是 R1 的配置。

R1#sh run | s interface Serial2/0
interface Serial2/0
 ip address 192.168.1.1 255.255.255.0
 serial restart-delay 0
R1#

这是 R2 的配置。

R2#sh run | s interface Serial2/0
interface Serial2/0
 ip address 192.168.1.2 255.255.255.0
 serial restart-delay 0
R2#

如您所见,我没有为它们设置时钟频率。但是我可以从两端成功ping通。

R1#ping 192.168.1.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.1.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 8/17/36 ms
R1#
R2#ping 192.168.1.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.1.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 4/13/32 ms
R2#p

我的理解或测试有什么问题吗?

1个回答

由于两个网络都是直连网络。所以路由器可以互相ping通。当时钟速率未在任一路由器上配置时进入时钟速率,它会选择制造商设置的默认时钟速率。