两个路由器是使用串行链路的,因此,必须有一段为DCE,另外一段DTE才行,需要配置时钟频率
R2需要配置去往192.168.200.0/24网段的路由。
你可以参考我如下命令吧:
R1
enable
configure terminal
int fa0/0
ip address 192.168.200.1 255.255.255.0
no shutdown
serial0/1/0
clock rate 64000
ip address 192.168.100.1 255.255.255.252
no shutdown
end
show ip route
R2
enable
configure terminal
int serial0/1/0
ip address 192.168.100.2 255.255.255.252
no shutdown
exit
ip route 192.168.200.0 255.255.255.0 192.168.100.1
end
show ip route 就这样子