网络结构拓扑图如下,在路由器上配置路由协议RIP V2,禁用自动汇总,并使得全部网络能互相通信。
PC0的IP:
PC1的IP:
接下来是路由器R1和R2的配置
R1:
ena
conf t
hostname R1
no ip domain-lookup
line con 0
logging synchronous
int loopback1
ip add 172.16.2.1 255.255.255.0
int loopback2
ip add 172.16.3.1 255.255.255.0
int f0/0
ip add 172.16.1.1 255.255.255.0
no sh
int f0/1
ip add 192.168.17.1 255.255.255.0
no sh
exit
router rip
version 2
no auto-summary
net 192.168.17.0
net 172.16.0.0
end
R2:
ena
conf t
hostname R2
no ip domain-lookup
line con 0
logging synchronous
int f0/0
ip add 172.17.1.1 255.255.255.0
no sh
int f0/1
ip add 192.168.17.2 255.255.255.0
no sh
exit
router rip
version 2
no auto-summary
net 192.168.17.0
net 172.17.1.0
end
注意:一定要记得启用版本2
配置完成后,查看下路由器的路由表
然后就可以知道这里的网络已经能够全网通信了
可以用PC1试试看
你也可以再试试用PC0看看
这里我就不再放截图了。