九、IGRP实验
实验说明:由于以前的模拟器不支持igrp路由协议,本实验暂时用Boson NetSim 模拟器
实验目的:通过实验学习IGRP路由协议的配置      
实验拓扑:
1、ip地址表:
PC1             IP               192.168.10.2/24          192.168.10.1(网关)
PC2             IP               192.168.30.2/24          192.168.30.1(网关)
R1               F1/0           192.168.10.1/24
R1               S0/0           192.168.20.1/24
R2               F1/0           192.168.30.1/24
R2               S0/0           192.168.20.2/24
 
2、
R1的配置:
R1(config)#interface fastethernet 1/0
R1(config-if)#ip address 192.168.10.1 255.255.255.0
R1(config-if)#no shutdownR1(config)#interface serial 0/0
R1(config-if)#ip address 192.168.20.1 255.255.255.0
R1(config-if)#clock rate 4800
R1(config-if)#no shutdown
R1(config-if)#exit
R1(config)#router igrp 10
R1(config-router)#network 192.168.10.0
R1(config-router)#network 192.168.20.0
 
R2的配置:
R2(config)#interface fastethernet 1/0
R2(config-if)#ip address 192.168.30.1 255.255.255.0
R2(config-if)#no shutdown
R2(config)#interface serial 0/0
R2(config-if)#ip address 192.168.20.2 255.255.255.0
R2(config-if)#no shutdown
R2(config-if)#exit
R2(config)#router igrp 10
R2(config-router)#network 192.168.20.0
R2(config-router)#network 192.168.30.0
 
验证:
PC1  ping  PC2
C:\>ping 192.168.30.2
Pinging 192.168.30.2 with 32 bytes of data:
Reply from 192.168.30.2: bytes=32 time<1ms TTL=127
PC1  ping  PC2
C:\>ping 192.168.10.2
Pinging 192.168.10.2 with 32 bytes of data:
Reply from 192.168.10.2: bytes=32 time<1ms TTL=127
 
结论:IGRP实验成功!