CCNA实验六——IGRP
RIP协议类似,内部网关路由选择协议(IGRP)也是距离矢量路由选择协议。与RIP不同的是,IGRPCisco专有协议而不是一个标准协议。IGRP每隔90秒发送一次路由选择更新,通告特定自治系统的网络。默认情况下,IGRP路由选择协议使用带宽(bandwidth)和延迟(delay)作为度量标准。
目前,IGRP已经过时了,它缺乏对变长子网掩码(VLSM)的支持。Cisco已经在IGRP基础上成功地开发了增强的内部网关协议(EIGRP),而不是开发IGRP版本2来纠正这个问题。
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

 

紧接着RIP实验进行,开始前先用no router rip命令将rip协议去掉。然后
R0>en
R0#conf t
R0(config)#router igrp 101
R0(config-router)#network 192.168.1.0
R0(config-router)#network 192.168.2.0

 

 

R1>en
R1#conf t
R1(config)#router igrp 101
R1(config-router)#network 192.168.2.0

 

 

R2>en
R2#conf t
R2(config)#router igrp 101
R2(config-router)#network 192.168.1.0
R2(config-router)#network 172.16.0.0

 

 

R1#ping 172.16.3.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 172.16.3.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 57/75/91 ms
证明实验成功!