TTEP.CN > 手机 >

Cisco路由协议RIP v2 (一)

Cisco路由协议RIP v2 (一)

这个没重复啊、我弄过的那个是RIP Version1、这是RIP Version2,写成一篇文章的话太长、就分开写了。

*注:本文章是用来供广大网友学习的、里面有些会提到一些网络专业用语、或者英文缩写。网络初学者如果看不懂的我们可以共同学习,共同探讨、有同学有看不懂的地方可以加本人QQ或者YY来探讨。(QQ:914560310、YY:283755973)“//”后不是命令输出、是说明。

*在这里纠正下在“RIP v1(一)”中说的一个问题、

那次说到RIP v1跟RIP v2的区别时说的RIP v2的组播地址是222.0.0.9在这里纠正下其实应该是224.0.0.9、在写这个RIP v2的时候我看了下、可能是一紧张写错了、呵呵、希望大家见谅、别记错了哈、

在这里再简单介绍写RIP v2:

-发送路由更新时携带子网掩码,属于无类路由协议
-发送路由更新时,目标地址为组播地址:224.0.0.9
-支持VLSM(可变长子网掩码)和CIDR(无类别域间路由选择)

*我们利用一个小实验来进行更好的学习RIP v2(基本配置):


首先我们先把IP跟loopback口配置好、然后我们进入实验:

R1(config)#router rip //启动RIP路由协议。
R1(config-router)#version 2 //启动RIP 版本2。
R1(config-router)#no auto-summary //关闭手动汇总(默认是开启的)。
R1(config-router)#network 1.0.0.0
R1(config-router)#network 192.168.12.0
R1(config-router)#

这里是拿R1来举例、把其他路由器也按照这种方式配置、R4上的loopback口通告RIP协议的时候这样通告(network 4.0.0.0)然后进行实验调试。

R1#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

1.0.0.0/24 is subnetted, 1 subnets
C 1.1.1.0 is directly connected, Loopback0
4.0.0.0/24 is subnetted, 1 subnets
R 4.4.4.0 [120/3] via 192.168.12.2, 00:00:01, Serial0/3/0
C 192.168.12.0/24 is directly connected, Serial0/3/0
R 192.168.23.0/24 [120/1] via 192.168.12.2, 00:00:01, Serial0/3/0
R 192.168.34.0/24 [120/2] via 192.168.12.2, 00:00:01, Serial0/3/0
R1#

通过:R 4.4.4.0 [120/3] via 192.168.12.2, 00:00:01, Serial0/3/0

可以看出RIP Version2 在通告网络时是携带子网信息的、
——————————————————————————————————————
R1#show ip protocols
Routing Protocol is "rip"
Sending updates every 30 seconds, next due in 18 seconds
Invalid after 180 seconds, hold down 180, flushed after 240
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 version 2, receive 2
//RIPv2在默认情况下只接收和发送版本2的路由更新。
*可以通过命令”ip rip send version”和”ip rip receive version”来控制在路由器接口上接收和发送的版本。例如,在s0/3/0接口上接收版本1和版本2的路由更新,但是只发送版本2的路由更新,配置如下
//R1(config)#interface s0/3/0
R1(config-if)#ip rip send version 2
R1(config-if)#ip rip receive version 1 2 //

Interface Send Recv Triggered RIP Key-chain
Loopback0 2 2
Serial0/3/0 2 2
Automatic network summarization is not in effect
Maximum path: 4
Routing for Networks:
1.0.0.0
192.168.12.0
Passive Interface(s):
Routing Information Sources:
Gateway Distance Last Update
192.168.12.2 120 00:00:16
Distance: (default is 120)
R1#
————————————————————————————————————
*下面我们说RIPv2手工汇总:


R1、R2、R3的配置跟上面的实验一样、这次我们主要利用R4来说手工汇总。R4配置如下:
*(由于在Cisco Packet 软件中手工汇总这个东西有些命令不能在中实现、所以本次实验我采用的是”小凡模拟器2.83”其实没什么差别、端口上可能会看着有点不一样、这是写的s0/3/0小凡上的是s0/0这个问题不用纠结、呵呵模块的问题、在这提醒下大家、)

R4#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
R4(config)#router rip
R4(config-router)#version 2
R4(config-router)#no auto-summary
R4(config-router)#network 192.168.34.0
R4(config-router)#network 4.0.0.0 //通告所有的loopback口
R4(config-router)#exit

这一步的时候我们没有进行手工汇总、然后我们进入R1查看下路由表:

R1#show ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
最近发表
赞助商链接