RIP路由协议的配置

  • A+
所属分类:系统文档

训练目的

  1. 掌握动态路由的配置方法。
  2. 理解RIP协议的工作过程和配置。

应用环境

由于在路由器较多的环境里,手工配置静态路由会给管理员带来很大的工作负担,且在不太稳定的网络环境里,手工修改路由表并不现实,为实现小型的多园区网络环境多台路由器的连接,可采用动态路由协议进行配置。

相关知识

动态路由协议是路由器动态地学习路由、更新路由表的方法协议,其主要功能是及时维护路由表并以路由更新的形式将信息及时发布给其他路由器。常用的动态路由协议有RIP和OSPF等。

RIP是互联网中常用的路由协议。RIP采用距离向量算法,即路由器根据距离选择路由,所以也称为距离向量协议。RIP允许的最大站点数为15,只适用于小型的同构网络,但它具有简单、可靠、便于配置等优点,因此使用也非常广泛。目前RIP共有两个版本:RIPv1和RIPv2。
1)RIPv1版本:使用分类路由,在它的路由更新中并不带有子网的资讯,因此无法支持可变长度子网掩码。这个限制造成在RIPv1的网络中,同级网络无法使用不同的子网掩码。另外,它也不支持对路由过程的认证,使RIPv1有被攻击的可能。
2)RIPv2版本:因为RIPv1的缺陷,RIPv2在1994年被提出,将子网络的资讯包含在内,通过这样的方式提供无类别域间路由。另外,针对安全性的问题,RIPv2也提供一套方法,通过加密来达到认证的效果。

训练拓扑

RIP路由协议的配置

技术要点

开启RIP协议:

Router(config)#router rip

设置版本:

Router(config-router)#version 2 

宣告网段:

Router(config-router)#network 192.168.2.0 

关闭汇总:

Router(config-router)#no auto-summary

训练步骤

Router0顶部路由器配置:

Router>enable
Router#configure terminal
Router(config)#interface FastEthernet0/0
Router(config-if)#no shutdown
Router(config-if)#ip address 192.168.2.1 255.255.255.0
Router(config-if)#exit
Router(config)#interface Serial0/0/0
Router(config-if)#no shutdown
Router(config-if)#ip address 172.16.3.1 255.255.255.0
Router(config-if)#exit
Router(config)#interface Serial0/1/1
Router(config-if)#no shutdown
Router(config-if)#ip address 172.16.1.2 255.255.255.0
Router(config-if)#exit
Router(config)#router rip
Router(config-router)#version 2  //设置为第2个版本
Router(config-router)#no auto-summary  //关闭自动汇总
Router(config-router)#network 192.168.2.0  //宣告192.168.2.0网段
Router(config-router)#network 172.16.0.0   //宣告172.16.0.0网段

Router1右下路由器配置:

Router>enable
Router#configure terminal
Router(config)#interface Serial0/0/0
Router(config-if)#ip address 172.16.3.2 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#interface FastEthernet0/0
Router(config-if)#no shutdown
Router(config-if)#ip address 192.168.3.1 255.255.255.0
Router(config-if)#exit
Router(config)#interface Serial0/0/1
Router(config-if)#no shutdown
Router(config-if)#ip address 172.16.2.2 255.255.255.0
Router(config-if)#exit
Router(config)#router rip
Router(config-router)#version 2
Router(config-router)#no auto-summary 
Router(config-router)#network 192.168.3.0
Router(config-router)#network 172.16.0.0

Router2左下路由器配置:

Router>enable
Router#configure terminal
Router(config)#interface FastEthernet0/0
Router(config-if)#ip address 192.168.1.1 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#interface Serial0/0/1
Router(config-if)#no shutdown
Router(config-if)#ip address 172.16.2.1 255.255.255.0
Router(config-if)#exit
Router(config)#interface Serial0/1/1
Router(config-if)#no shutdown
Router(config-if)#ip address 172.16.1.1 255.255.255.0
Router(config-if)#exit
Router(config)#router rip
Router(config-router)#version 2
Router(config-router)#no auto-summary 
Router(config-router)#network 172.16.0.0
Router(config-router)#network 192.168.1.0

实验结果

RIP路由协议的配置

pc1 ping pc0 和 pc1 ping pc2

RIP路由协议的配置

pc0 ping pc2

测试结果为通信成功。

  • 我的微信
  • 这是我的微信扫一扫
  • weinxin
  • 我的微信公众号
  • 我的微信公众号扫一扫
  • weinxin

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: