图一
一、 了解RIP协议
1、 RIP(路由选择信息协议)是距离矢量路由选择协议的一种。路由器手机所有看到达
目的地的不同路径,并且保持有关到达每个目的地的最少站点数的路径信息,除到达目的地的最佳路径外,任何其他信息均予以丢弃。同时路由器也把所收集的路由信息用RIP协议通知相邻的其他路由器。这样,正确的路由信息逐渐扩散到了全网。(注意RIP只适用于小型的同构网络,因为它允许的最大跳数为15,任何超过15个站点的目的地均被标记为部可到达。RIP每隔30S广播一次路由信息) 2、 路由命令
命令 功能
Router rip 指定使用RIP协议 Version(1|2) 指定RIP版本
Network network 指定与该路由器相连的网络 Show ip route 查看路由表信息
Show ip route rip 查看RIP协议路由信息
二、 RIP协议实现全网互通 1、配置路由器各接口IP地址
假设按照(图一)所示的网络拓扑结构,通过配置RIP协议使全网连通。其中串口之间需要用DTE(数据终端设备)和DCE(数据通信设备)电缆对接,或用DCE转DTE电缆连接。
图中个各接口IP地址分配如下: R01:E0 192.168.1.1 R01:S2 192.168.65.1 R01:S3 192.168.67.1
R02:E0 192.168.3.1 R02:S2 192.168.65.2
PDF 文件使用 \"pdfFactory Pro\" 试用版本创建 www.fineprint.cn
R02:S3 192.168.69.1
R03:E0 192.168.5.1 R03:S2 192.168.69.2 R03:S3 192.168.67.2 配置各个端口IP地址过程: R01# config t
R01(cofig)# interface f0/1
R01(config-if)# ip address 192.168.1.1 255.255.255.0 R01(config-if)# no shutdown R01(config-if)#exit
R01(config)#intterface s2/0
R01(config-if)# ip address 192.168.65.1 255.255.255.0 R01(config-if)#no shutdown R01(config-if)#exit
R01(config)#interface s3/0
R01(config-if)# ip address 192.168.67.1 255.255.255.0 R01(config-if)#no shutdown R01(config-if)#exit
R02# config t
R02(cofig)# interface f0/1
R02(config-if)# ip address 192.168.3.1 255.255.255.0 R02(config-if)# no shutdown R02(config-if)#exit
R02(config)#intterface s2/0
R02(config-if)# ip address 192.168.65.2 255.255.255.0 R02(config-if)#no shutdown R02(config-if)#exit
R02(config)#interface s3/0
R02(config-if)# ip address 192.168.69.1 255.255.255.0 R02(config-if)#no shutdown R02(config-if)#exit
R03# config t
R03(cofig)# interface f0/1
R03(config-if)# ip address 192.168.5.1 255.255.255.0 R03(config-if)# no shutdown R03(config-if)#exit
R03(config)#intterface s2/0
R03(config-if)# ip address 192.168.69.2 255.255.255.0 R03(config-if)#no shutdown R03(config-if)#exit
R03(config)#interface s3/0
R03(config-if)# ip address 192.168.67.2 255.255.255.0 R03(config-if)#no shutdown R03(config-if)#exit
PDF 文件使用 \"pdfFactory Pro\" 试用版本创建 www.fineprint.cn
2、 配置完接口地址后就可以进行RIP协议配置(注意首先使用ip routing允许路由选择
协议,在有些路由器上默认情况是关闭的。用router rip 命令进入RIP协议配置模式,然后使用network语句声明进入RIP进程的网络,试验中我的路由器默认允许路由选择的所以实验中没有使用ip routing命令) 配置路由器R01
R01(config) # router rip
R01(config-router)# network 192.168.1.0 R01(config-router)# network 192.168.65.0 R01(config-router)# network 192.168.67.0 R01(config-router)# version 2 R01(config-router)# ex
配置R02
R02(config) # router rip
R02(config-router)# network 192.168.3.0 R02(config-router)# network 192.168.65.0 R02(config-router)# network 192.168.69.0 R02(config-router)# version 2 R02(config-router)# ex
配置R03
R03(config) # router rip
R03(config-router)# network 192.168.5.0 R03(config-router)# network 192.168.67.0 R03(config-router)# network 192.168.69.0 R03(config-router)# version 2 R03(config-router)# ex
3、 配置完RIP协议后,RIP协议的路由器广播自己的路由信息到周边路由器,此时各路
由器家可以学习到其他路由器的路由信息。可以通过show ip route命令查看R03上的路由表
R03#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area * - candidate default, U - per-user static route, o - ODR P - periodic downloaded static route
Gateway of last resort is not set
PDF 文件使用 \"pdfFactory Pro\" 试用版本创建 www.fineprint.cn
R 192.168.1.0/24 [120/1] via 192.168.67.1, 00:00:23, Serial3/0 R 192.168.3.0/24 [120/1] via 192.168.69.1, 00:00:03, Serial2/0 C 192.168.5.0/24 is directly connected, FastEthernet0/0
R 192.168.65.0/24 [120/1] via 192.168.67.1, 00:00:23, Serial3/0 [120/1] via 192.168.69.1, 00:00:03, Serial2/0 C 192.168.67.0/24 is directly connected, Serial3/0 C 192.168.69.0/24 is directly connected, Serial2/0
PDF 文件使用 \"pdfFactory Pro\" 试用版本创建 www.fineprint.cn
因篇幅问题不能全部显示,请点此查看更多更全内容