1.PC的配置大同小异,“网上邻居”——》“查看网络连接”——》“本地连接”右键属性——》“Internet协议(TCP/IP)属性”——》“使用下面的IP”,然后设置上规定的IP和网关。
2.RA的配置:
进入路由器后:
enable
config t
interface s0
ip add 192.168.2.1 255.255.255.0
no shut
clock 56000
exit
exit
save
RB的配置:
进入路由器后:
enable
config t
interface s1
ip add 192.168.2.2 255.255.255.0
no shut
clock 56000
exit
exit
save
这里需要提到的是:路由器还需要写路由啊,你的路由器和PC怎么连接的啊?
还有这里的“interface s0”中的0表示路由器的0号口,也可能是1号口,所以你就需要show ip inter bri查看下DTE线缆连接的到底是哪个口。
关于路由的问题,我看你的问题中提到了rip,是不是想跑rip协议实现路由问题?RA和RB上的命令都如下:
router rip
no auto
version 2
network 192.168.2.0
network 192.168.X.0
这里的X代表的是路由器上接的网段,如192.168.1.0/24,那么这里就是1
不会