我对网络很陌生,还在学习 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
我的理解或测试有什么问题吗?