美文网首页
rip协议-基础配置

rip协议-基础配置

作者: 小吉头 | 来源:发表于2020-05-24 21:02 被阅读0次

    rip协议作用

    让路由器能够将自己学到的路由告知相邻的路由器,相邻的路由器再继续传递自己的路由(包括学到的路由)

    两个版本

    v1:版本1,不支持子网,只支持主类网络
    v2:支持子网和变长子网

    做个实验

    R1 f0/0 10.1.12.1/24 f0/1 10.1.13.1/24
    R2 f0/0 10.1.12.2/24
    R3 f0/0 10.1.13.3/24

    R1开启rip协议

    R1(config)#router rip
    R1(config-router)#version 2
    R1(config-router)#no auto-summary
    R1(config-router)#network 10.0.0.0   
    

    network 10.0.0.0 表示R1路由器的两个接口ip,如果在10.0.0.0这个网段,就开启rip。
    如果只想R1 f0/0(10.1.12.1)这个接口开启rip是没法做到的,即使用network 10.1.12.0,会自动转换成对应的主类网络10.0.0.0,最终跟network 10.0.0.0效果一样。
    可以试下,最终查看配置都一样,如下:

    R1#show running-config | section router rip
    router rip
     version 2
     network 10.0.0.0
     no auto-summary
    

    由此可以看出,rip无法精确宣告接口

    查看路由表

    所有路由器都开启rip后,路由表信息如下:

    R1:
         10.0.0.0/24 is subnetted, 2 subnets
    C       10.1.13.0 is directly connected, FastEthernet0/1
    C       10.1.12.0 is directly connected, FastEthernet0/0
    R2:
         10.0.0.0/24 is subnetted, 2 subnets
    //R代表rip协议,10.1.13.0这个网段信息是从R1传给R2的。所以下一跳地址是10.1.12.1,FastEthernet0/0表示出接口。
    R       10.1.13.0 [120/1] via 10.1.12.1, 00:00:25, FastEthernet0/0
    C       10.1.12.0 is directly connected, FastEthernet0/0
    R3:
         10.0.0.0/24 is subnetted, 2 subnets
    C       10.1.13.0 is directly connected, FastEthernet0/0
    R       10.1.12.0 [120/1] via 10.1.13.1, 00:00:22, FastEthernet0/0  //管距120,经过1跳到达10.1.12.0
    

    查看R2配置的rip协议信息

    R2#show ip protocols 
    Routing Protocol is "rip"
      Outgoing update filter list for all interfaces is not set
      Incoming update filter list for all interfaces is not set
      Sending updates every 30 seconds, next due in 5 seconds
      Invalid after 180 seconds, hold down 180, flushed after 240
      Redistributing: rip
      Default version control: send version 2, receive version 2
        Interface             Send  Recv  Triggered RIP  Key-chain
        FastEthernet0/0       2     2                                    
      Automatic network summarization is not in effect
      Maximum path: 4    //最多负载均衡4条路由,可以通过命令修改数值
      Routing for Networks:
        10.0.0.0
      Routing Information Sources:
        Gateway         Distance      Last Update
        10.1.12.1            120      00:00:05
      Distance: (default is 120)
    

    R3上学到的10.1.12.0这条路由是谁传过来的

    水平分割原则


    路由器系统会认为R1的直连路由10.1.12.0,是从R1 F0/0接口学习到的(注意不是R2发过来的),从这个接口学习的路由就不会再将该路由通过该接口发送出去。这就是水平分割原则。
    但是可以通过另一个接口F0/0发送出去,这样不违反水平分隔
    所以R3上学到的10.1.12.0是R1通过F0/1接口告知R3的,而不是R2发的,因为系统认为R2的直连路由10.1.12.0是从F0/0学习到的,不会再通过F0/0将该路由发出去。同样,根据水平分割原则,10.1.12.0这条路由通过R1 F0/1->R3 F0/0,R3不会再将该路由通过R3 F0/0发出去

    水平分割的作用

    假设现在10.1.12.0这个网络故障,如果没有水平分割,R3就会告知R1它知道10.1.12.0这条路由,R3上本来的路由是10.1.12.0 [120/1],经过1跳到达。如果再传给R1,R1到达10.1.12.0 变成2跳。R1再告知R3,R3变成了3跳,不断循环导致路由环路。

    假设忽略水平分割

    以R2为例,忽略水平分割,将10.1.12.0这条路由通过rip协议发给了R1,R1的路由表应该变成下面这样:

    R1:
         10.0.0.0/24 is subnetted, 2 subnets
    C       10.1.13.0 is directly connected, FastEthernet0/1
    C       10.1.12.0 is directly connected, FastEthernet0/0
    R       10.1.12.0 [120/1] via 10.1.12.2, 00:00:22, FastEthernet0/0
    

    对R1来说,同样一条路由10.1.12.0通过两种方式都能学到,会选择管理距离(AD)最小的那条放到路由表。
    直连路由管距(AD)是0,rip 管距(AD)是120

    rip协议的缺点

    1、无法精确宣告网络
    2、支持的网络范围太小,最多15跳,即16个路由连接。当路由条目的跳数达到16时该路由会被丢弃。

    相关文章

      网友评论

          本文标题:rip协议-基础配置

          本文链接:https://www.haomeiwen.com/subject/uuqhahtx.html