3.1实训目标
能够根据实际需求实施RIP路由网络配置。
3.2知识回顾
RIP(Routing Information Protocol,路由信息协议),是应用较早、使用较普遍的内部网关协议(Interior GateWay Protocol,IGP),适用于小型同类网络,是典型的距离向量(Dis-tance Vector)协议。RIP通过广播UDP报文来交换路由信息,每30秒发送一次路由信息更新。RIP提供跳数(Hop Count)作为尺度来衡量路由距离,跳数是一个包到达目标所必须经过的路由器的数目。如果到相同目标有两个不等速或不同带宽的路由器,但跳数相同,则RIP认为两个路由是等距离的。RIP最多支持的跳数为15,即在源和目的网间所要经过的最多路由器的数目为15,跳数16表示不可达。所以RIP协议适合在小型网络中运行。
RIP协议有两个版本,RIPV1是有类路由选择协议,即在该网络中的所有设备必须使用相同的子网掩码,所以RIPV1在发送路由信息的时候不发送子网掩码的信息。RIPV2是无类路由协议,它可以工作在VLSM(Variable Length Subnet Mask,可变长子网掩码)和不连续的网络环境中。
3.3实训任务
模拟公司总部与分公司之间网络互连,要求使用动态路由RIP实现网络互联互通。
3.4实训步骤
3.4.1网络拓扑
3.4.2地址分配
可以根据需要自己设计规划IP地址,本实训项目各个网络设备及结点的IP地址参照。
3.4.3配置步骤
(1)对于Router1,进行下面配置:
Router>
Router>Enable
PassWord:
Router#
Router#config t
Router(config)#hostname Router1
Router1(config)#enable passWord cisco
Router1(config)#interface Ethernet0/0
Router1(config-if)#ip address10.1.1.1255.255.255.0
Router1(config-if)#no shutdoWn
Router1(config-if)#exit
Router1(config)#interface Ethernet0/1
Router1(config-if)#ip address172.16.0.1255.255.255.0
Router1(config-if)#no shutdoWn
Router1(config-if)#end
Router1#shoW running-config
Building configuration...
Current configuration:405 bytes
!
Version12.2
no serVice passWord-encryption
!
hostname Router1
!
!
enable passWord cisco
!
!
!
!
ip ssh Version1
!
!
interface FastEthernet0/0
ip address10.1.1.1255.255.255.0
duplex auto
speed auto
!
interface FastEthernet0/1
ip address172.16.0.1255.255.255.0
duplex auto
speed auto
!
ip classless
!
!
!
!
!
line con0
line Vty04
login!
!
end
Router1#
Router1基本配置完成,下面查看Router1路由表信息。
Router1#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 type1,N2-OSPF NSSA external type2
E1-OSPF external type1,E2-OSPF external type2,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
10.0.0.0/24is subnetted,1subnets
C10.1.1.0is directly connected,FastEthernet0/0
因为Router2没有配置,Router1也没有启用路由协议,所以Router1只能看到一条路由。
下面先启用Router1的路由协议RIP。
Router1#conf t
Router1(config)#router rip
Router1(config-router)#netWork10.0.0.0
Router1(config-router)#netWork172.16.0.0
Router1(config)#end
Router1#
到此,路由器Router1的配置已经完成,下面需要配置Router2。
(2)对于Router2,进行下面配置:
Router>
Router>Enable
PassWord:
Router#
Router#config t
Router(config)#hostname Router2
Router2(config)#enable passWord cisco
Router2(config)#interface Ethernet0/0
Router2(config-if)#ip address192.168.2.1255.255.255.0
Router2(config-if)#no shutdoWn
Router2(config-if)#exit
Router2(config)#interface Ethernet0/1
Router2(config-if)#ip address172.16.0.2255.255.255.0
Router2(config-if)#no shutdoWn
Router2(config-if)#exit
Router2(config)#exit
Router2#shoW running-config
Router2#sh ip route
Router2#conf t
Router2(config)#router rip
Router2(config-router)#netWork172.16.0.0
Router2(config-router)#netWork192.168.2.0
Router2(config)#end
Router2#
Router2#ping10.1.1.2
Type escape sequence to abort.
Sending 5,100-byte ICMP Echos to10.1.1.2,timeout is2seconds:
!!!!!
Success rate is100percent(5/5),round-trip min/aVg/max=94/94/94ms
Router2#
路由器Router2配置之后,Router2与PC1就能够ping通,说明网络已经连通。下面查看路由器Router2的路由表信息。
Router2#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 type1,N2-OSPF NSSA external type2
E1-OSPF external type1,E2-OSPF external type2,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
R10.0.0.0/8[120/1] Via172.16.0.1,00:00:22,FastEthernet0/1
12.16.0.0/24is subnetted,1subnets
C172.16.0.0is directly connected,FastEthernet0/1
C192.168.2.0/24is directly connected,FastEthernet0/0
Router2#
显示的路由表中有三条路由,路由信息完整,实训成功。下面查看路由协议的相关信息。
Router2#shoW ip protocols
Routing Protocol is"rip"
Sending updates eVery30seconds,next due in14seconds
InValid after180seconds,hold doWn180,flushed after240
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Redistributing:rip
Default Version control:send Version1,receiVe any Version
Interface Send RecV Triggered RIPKey-chain
FastEthernet0/1121
FastEthernet0/0121
Automatic netWork summariZation is in effect
Maximum path:4
Routing for NetWorks:
172.16.0.0
192.168.2.0
PassiVe Interface(s):
Routing Information Sources:
GateWay Distance Last Update
172.16.0.112000:00:03
Distance:(default is120)
Router2#
上面可以看到RIP路由协议的详细信息,实训思考中有相关问题需要回答。
3.5实训思考
经过本项目实训(配置路由器Router1、Router2)之后,请回答下面问题。
1.在路由器Router1时,验证直连邻居使用ping路由器Router2的Fast Ethernet0/1端口。其操作命令如何?
2.进入路由器Router1的全局配置模式,需要什么命令?
3.如何进入路由器RIP协议的命令配置模式?
4.添加路由器Router1的直连网络。需要什么语句?
5.所有的路由器都运行了RIP之后,输入组合键Ctrl+Z退回到特权模式,Router1和Router2能否ping到非直连的计算机,从路由器Router1能够ping到PC2吗?从路由器Router2能够ping到PC1吗?
6.如果你在PC1能够ping到路由器Router2和PC2,说明路由配置成功了。如果没有成功,那么需要跟踪查看配置情况。查看路由器Router2的路由表,用什么命令?看到多少条RIP路由?
7.查看路由器的路由协议信息,用什么命令?
8.查看RIP的版本号用什么命令?
9.路由更新的时间?
10.如何查看什么网络被路由?
11.默认的管理距离是什么?
12.在这次实训中,如果Router1与Router2之间是串口连接,配置上有什么不同?如何配置?写出配置过程。