RIP 路由协议的配置

时间:2021-12-01 01:11:53

 RIPRouting Information Protocol)是最常使用的内部网关协议(InteriorGateway Protocol)之一,是一种典型的基于D-V 算法的动态路由协议。

通过UDPUser Datagram Protocol)报文交换路由信息,使用跳数(Hop

Count)来衡量到达目的地的距离(被称为路由权-Routing cost)。

由于在RIP 中大于或等于16 的跳数被定义为无穷大(即目的网络或主机不

可达),所以RIP 一般用于采用同类技术的中等规模的网络,如校园网及一个地

区范围内的网络,RIP 并非为复杂、大型的网络而设计。

启动RIP,进入RIP 视图: router Rip

关闭RIPno rip

在指定的网络上使能RIP network{ network-number| all }

在指定的网络上禁用RIP no network{ network-number| all

 

RIP 路由协议的配置

 

 

  
 
 
  1. Router1: 
  2.  
  3. Router>enable //进入特权模式 
  4. Router#conf ter   //进入全局配置模式 
  5. Enter configuration commands, one per line.  End with CNTL/Z. 
  6. Router(config)#int f0/0   //配置Fa0/0 接口 
  7. Router(config-if)#ip add 1.1.1.2 255.255.255.0 
  8. Router(config-if)#no shutdown  
  9.  
  10. %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up 
  11. Router(config-if)# 
  12. %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up 
  13. Router(config-if)#exit 
  14. Router(config)#int s0/0/0   //配置串口 
  15. Router(config-if)#ip add 1.1.6.1 255.255.255.0 
  16. Router(config-if)#clock rate 64000 
  17. Router(config-if)#no shutdown  
  18.  
  19. %LINK-5-CHANGED: Interface Serial0/0/0, changed state to down 
  20. Router(config-if)#exit 
  21. Router(config)#int s0/0/1   //配置串口 
  22. Router(config-if)#ip add 1.1.2.1 255.255.255.0 
  23. Router(config-if)#clock rate 64000 
  24. Router(config-if)#no shutdown  
  25.  
  26. %LINK-5-CHANGED: Interface Serial0/0/1, changed state to down 
  27. Router(config-if)#exit 
  28. Router(config)#router rip   //进入RIP 视图 
  29. Router(config-router)#network 1.0.0.0   //发布直连网络 
  30. Router(config-router)#exit 
  31. Router(config)#exit 
  32. Router# 
  33. %SYS-5-CONFIG_I: Configured from console by console 
  34. Router#show ip route    //查看路由表 
  35. Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP 
  36.        D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area 
  37.        N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 
  38.        E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP 
  39.        i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area 
  40.        * - candidate default, U - per-user static route, o - ODR 
  41.        P - periodic downloaded static route 
  42.  
  43. Gateway of last resort is not set 
  44.  
  45.      1.0.0.0/24 is subnetted, 1 subnets 
  46. C       1.1.1.0 is directly connected, FastEthernet0/0 
  47. Router# 
  48.  
  49.  
  50. Router2: 
  51. Router>enable  
  52. Router#conf ter 
  53. Enter configuration commands, one per line.  End with CNTL/Z. 
  54. Router(config)#int f0/0 
  55. Router(config-if)#ip add 1.1.5.2 255.255.255.0 
  56. Router(config-if)#no shutdown  
  57.  
  58. %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up 
  59. %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up 
  60. Router(config-if)#exit 
  61. Router(config)#int s0/0/1 
  62. Router(config-if)#ip add 1.1.2.2 255.255.255.0 
  63. Router(config-if)#clock rate 64000 
  64. Router(config-if)#no shutdown  
  65.  
  66. %LINK-5-CHANGED: Interface Serial0/0/1, changed state to up 
  67. Router(config-if)#exit 
  68. Router(config)#int s0/0/0 
  69. Router(config-if)#ip add 1.1.3.1 255.255.255.0 
  70. Router(config-if)#clo rate 64000 
  71. Router(config-if)#no shutdown  
  72.  
  73. %LINK-5-CHANGED: Interface Serial0/0/0, changed state to down 
  74. Router(config-if)#exit 
  75. Router(config)#router rip 
  76. Router(config-router)#network 1.0.0.0 
  77. Router(config-router)#exit 
  78. Router(config)#exit 
  79. Router# 
  80. %SYS-5-CONFIG_I: Configured from console by console 
  81. Router# 
  82. Router#show ip route  
  83. Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP 
  84.        D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area 
  85.        N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 
  86.        E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP 
  87.        i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area 
  88.        * - candidate default, U - per-user static route, o - ODR 
  89.        P - periodic downloaded static route 
  90.  
  91. Gateway of last resort is not set 
  92.  
  93.      1.0.0.0/24 is subnetted, 3 subnets 
  94. R       1.1.1.0 [120/1] via 1.1.2.1, 00:00:11, Serial0/0/1 
  95. C       1.1.2.0 is directly connected, Serial0/0/1 
  96. C       1.1.5.0 is directly connected, FastEthernet0/0 
  97. Router# 
  98.  
  99. Router3: 
  100. Router>en 
  101. Router#conf ter 
  102. Enter configuration commands, one per line.  End with CNTL/Z. 
  103. Router(config)#int f0/0 
  104. Router(config-if)#ip add 1.1.4.2 255.255.255.0 
  105. Router(config-if)#no shutdown  
  106.  
  107. %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up 
  108. %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up 
  109. Router(config-if)#exit 
  110. Router(config)#int s0/0/0 
  111. Router(config-if)#ip add 1.1.6.2 255.255.255.0 
  112. Router(config-if)#clo rate 64000 
  113. Router(config-if)#no shutdown  
  114.  
  115. Router(config-if)# 
  116. %LINK-5-CHANGED: Interface Serial0/0/0, changed state to up 
  117. Router(config-if)#exit 
  118. Router(config)#int s0/0/1 
  119. Router(config-if)#ip add 1.1.3.2 255.255.255.0 
  120. Router(config-if)#clock rate 64000 
  121. Router(config-if)#no shutdown  
  122.  
  123. %LINK-5-CHANGED: Interface Serial0/0/1, changed state to up 
  124. Router(config-if)#exit 
  125. Router(config)#router rip  
  126. Router(config-router)# 
  127. %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0/1, changed state to up 
  128. Router(config-router)#network 1.0.0.0 
  129. Router(config-router)#exit 
  130. Router(config)#exit 
  131. Router# 
  132. %SYS-5-CONFIG_I: Configured from console by console 
  133. Router#show ip rou 
  134. Router#show ip route  
  135. Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP 
  136.        D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area 
  137.        N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 
  138.        E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP 
  139.        i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area 
  140.        * - candidate default, U - per-user static route, o - ODR 
  141.        P - periodic downloaded static route 
  142.  
  143. Gateway of last resort is not set 
  144.  
  145.      1.0.0.0/24 is subnetted, 6 subnets 
  146. R       1.1.1.0 [120/1] via 1.1.6.1, 00:00:02, Serial0/0/0 
  147. R       1.1.2.0 [120/1] via 1.1.6.1, 00:00:02, Serial0/0/0 
  148.                 [120/1] via 1.1.3.1, 00:00:10, Serial0/0/1 
  149. C       1.1.3.0 is directly connected, Serial0/0/1 
  150. C       1.1.4.0 is directly connected, FastEthernet0/0 
  151. R       1.1.5.0 [120/1] via 1.1.3.1, 00:00:10, Serial0/0/1 
  152. C       1.1.6.0 is directly connected, Serial0/0/0