PC 和路由按照下图配置好IP 后。在上配置rip
 
Router0#conf t
Router0(config)#route rip
Router0(config-router)#network 192.168.1.0
Router0(config-router)#network 192.168.3.0      //Router0 直连的两个网络
 
 
Router1#conf t
Router1(config)#route rip
Router1(config-router)#network 192.168.2.0
Router1(config-router)#network 192.168.3.0       //Router0 直连的两个网络
 
配置结束后,查看Router0和Router1的路由信息如下:
Router0#show ip route
C    192.168.1.0/24 is directly connected, FastEthernet0/0
   192.168.2.0/24 [120/1] via 192.168.3.2, 00:00:11, Serial2/0
C    192.168.3.0/24 is directly connected, Serial2/0
 
Router1#show ip route
R    192.168.1.0/24 [120/1] via 192.168.3.1, 00:00:15, Serial2/0
C    192.168.2.0/24 is directly connected, FastEthernet0/0
C    192.168.3.0/24 is directly connected, Serial2/0
 
//R开头的两条路由信息,是启动Rip协议后自动添加进去的
 
      最后通过PC1和 PC2互ping测试路由连通性。
      两PC 能相互ping 通,OK.
 
附图:一个简单的RIP例子_休闲