Cisco RIPv2基本配置

合集下载

RIPv2配置实例

RIPv2配置实例

RIPv2配置实例1.用户需求:某企业总部计划和它的2个分公司联网。

计划采用2条数字链路连接总部和分公司,并要求总部和分公司的IP网络段不能相同,并且划分广播域隔离广播;不采用三层交换设备;两个分公司联网后能够互相访问;总部和分公司联网后路由器能够自动学习。

2.方案分析与解决:不采用三层交换技术,但要求采用数字链路,可以考虑用路由器。

3.网络拓扑:4.规划网络地址:PC1:192.168.3.2 255.255.255.0 192.168.3.1PC2:192.168.3.3 255.255.255.0 192.168.3.1PC3:192.168.4.2 255.255.255.0 192.168.4.1PC4:192.168.5.2 255.255.255.0 192.168.5.1总部路由器A:F0/0:192.168.3.1 255.255.255.0S1/0:192.168.1.1 255.255.255.0S1/1:192.168.2.1 255.255.255.0分公司路由器B:F0/0:192.168.4.1 255.255.255.0S1/0:192.168.1.2 255.255.255.0分公司路由器C:F0/0:192.168.5.1 255.255.255.0S1/1:192.168.2.2 255.255.255.05.路由器配置:总部A:Router>enRouter#conf tEnter configuration commands, one per line. End with CNTL/Z.Router(config)#hostname routerArouterA(config)#int f0/0routerA(config-if)#ip add 192.168.3.1 255.255.255.0routerA(config-if)#no shutdown%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to uprouterA(config-if)#int s1/0routerA(config-if)#ip add 192.168.1.1 255.255.255.0routerA(config-if)#clock rate 64000routerA(config-if)#no shutdown%LINK-5-CHANGED: Interface Serial1/0, changed state to downrouterA(config-if)#int s1/1routerA(config-if)#ip add 192.168.2.1 255.255.255.0routerA(config-if)#clock rate 64000routerA(config-if)#no shutdown%LINK-5-CHANGED: Interface Serial1/1, changed state to downrouterA(config-if)#exitrouterA(config)#router riprouterA(config-router)#version 2routerA(config-router)#network 192.168.3.0routerA(config-router)#network 192.168.1.0routerA(config-router)#network 192.168.2.0routerA(config-router)#endrouterA#%SYS-5-CONFIG_I: Configured from console by consolerouterA#wrBuilding configuration...[OK]routerA#routerA#show ip routeCodes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGPD - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter areaN1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGPi - 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 - ODRP - periodic downloaded static routeGateway of last resort is not setC 192.168.1.0/24 is directly connected, Serial1/0C 192.168.2.0/24 is directly connected, Serial1/1C 192.168.3.0/24 is directly connected, FastEthernet0/0R 192.168.4.0/24 [120/1] via 192.168.1.2, 00:00:00, Serial1/0R 192.168.5.0/24 [120/1] via 192.168.2.2, 00:00:10, Serial1/1routerA#分公司B:Router>enRouter#conf tEnter configuration commands, one per line. End with CNTL/Z.Router(config)#hostname routerBrouterB(config)#int f0/0routerB(config-if)#ip add 192.168.4.1 255.255.255.0routerB(config-if)#no shutdown%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to uprouterB(config-if)#int s1/0routerB(config-if)#ip add 192.168.1.2 255.255.255.0routerB(config-if)#clock rate 64000routerB(config-if)#no shutdown%LINK-5-CHANGED: Interface Serial1/0, changed state to uprouterB(config-if)#exit%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1/0, changed state to up routerB(config)#router riprouterB(config-router)#version 2routerB(config-router)#network 192.168.4.0routerB(config-router)#network 192.168.1.0routerB(config-router)#endrouterB#%SYS-5-CONFIG_I: Configured from console by consolerouterB#wrBuilding configuration...[OK]routerB#routerB#show ip routeCodes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGPD - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter areaN1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGPi - 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 - ODRP - periodic downloaded static routeGateway of last resort is not setC 192.168.1.0/24 is directly connected, Serial1/0R 192.168.2.0/24 [120/1] via 192.168.1.1, 00:00:18, Serial1/0R 192.168.3.0/24 [120/1] via 192.168.1.1, 00:00:18, Serial1/0C 192.168.4.0/24 is directly connected, FastEthernet0/0R 192.168.5.0/24 [120/2] via 192.168.1.1, 00:00:18, Serial1/0routerB#分公司C:Router>enRouter#conf tEnter configuration commands, one per line. End with CNTL/Z.Router(config)#hostname routerCrouterC(config)#int f0/0routerC(config-if)#ip add 192.168.5.1 255.255.255.0routerC(config-if)#no shutdown%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to uprouterC(config-if)#int s1/1routerC(config-if)#ip add 192.168.2.2 255.255.255.0routerC(config-if)#clock rate 64000routerC(config-if)#no shutdown%LINK-5-CHANGED: Interface Serial1/1, changed state to uprouterC(config-if)#exitrouterC(config)#router riprouterC(config-router)#version 2routerC(config-router)#network 192.168.5.0routerC(config-router)#network 192.168.2.0routerC(config-router)#endrouterC#%SYS-5-CONFIG_I: Configured from console by consolerouterC#wrBuilding configuration...[OK]routerC#routerC#show ip routeCodes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGPD - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter areaN1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGPi - 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 - ODRP - periodic downloaded static routeGateway of last resort is not setR 192.168.1.0/24 [120/1] via 192.168.2.1, 00:00:17, Serial1/1C 192.168.2.0/24 is directly connected, Serial1/1R 192.168.3.0/24 [120/1] via 192.168.2.1, 00:00:17, Serial1/1R 192.168.4.0/24 [120/2] via 192.168.2.1, 00:00:17, Serial1/1C 192.168.5.0/24 is directly connected, FastEthernet0/0routerC#6.拓展知识:如果用PC终端连接到路由器上,要连路由器的Console口,连PC的RS 232接口。

p209-配置ripv2 7 2 4-试验-作业

p209-配置ripv2 7 2 4-试验-作业

练习7.2.4:配置RIPv2地址表∙将网络升级到RIPv2。

∙禁用自动总结。

简介:RIPv2 是RIPv1 的更新版,会在路由更新数据包中包含子网掩码信息,因此支持VLSM 和CIDR。

不过RIPv2 默认会在有类边界自动总结路由。

在本练习中,我们将使用Packet Tracer 来配置RIPv2,并禁用自动总结。

本练习将采用本节介绍的包含不连续子网的网络。

然后您将研究网络运行发生的变化。

按照上述文档配置R1的FastEthernet0/0接口FastEthernet0/1接口R2的FastEthernet0/0接口Loopback0接口Loopback1接口Loopback2接口配置相应的rip路由R1router ripnetwork 172+X+K.30+Y.0.0R3router ripnetwork 172+X+K.30+Y.0.0用show running-config和SHOW IP INterface Brief命令查看R1 R2 R3的配置将网络升级到RIPv2。

步骤1:r2看课本195页R2(config)#IP ROUte 192.168.0.0 255.255.0.0 NUll 0R2(config)#ROUter RIPR2(config-router)#REdistribute Static研究RIPv1 的运行情况。

分别在三台路由器上,从CLI访问该路由器,然后使用show ip protocols命令检查RIP 参数。

注意发送和接收的RIP 更新的版本。

看课本204页7-19R1#show ip protocolsDefault version control: send version 1, receive any versionInterface Send Recv Triggered RIP Key-chainSerial0/0/0 1 2 1R2#show ip protocolsR3#show ip protocols分别在三台路由器上,从CLI访问该路由器,然后使用show ip route命令检查IP 路由表。

Cisco RIPv2基本配置

Cisco    RIPv2基本配置

Cisco RIPv2协议配置实验目的:1.RIP实现全网互通2.学习路由表分析RIPv2协议3.RIPv2自动汇总实验拓拓扑图:实验步骤:1.全网配置IP地址,开启RIPv2路由协议,公布所有网段,实现全网互通。

R1:Router>enableRouter#conftRouter(config)# interface f0/0Router(config-if)#ip address 10.0.0.254 255.255.255.0 Router(config-if)#no shutdownRouter(config)#interface s1/0Router(config-if)#clock rate 64000Router(config-if)#ip address 20.0.0.1 255.255.255.0 Router(config-if)#no shutdownRouter(config)#interface s1/1Router(config-if)#clock rate 64000Router(config-if)#ip address 40.0.0.1 255.255.255.0 Router(config-if)#no shutdownRouter(config-if)#exitRouter(config)#router ripRouter(config-router)#version 2Router(config-router)#network 10.0.0.0Router(config-router)#network 20.0.0.0Router(config-router)#network 40.0.0.0R2:Router>enRouter#conftRouter(config)#interface s1/0Router(config-if)#ip address 20.0.0.2 255.255.255.0 Router(config-if)#no shutdownRouter(config)#interface s1/1Router(config-if)#clock rate 64000Router(config-if)#ip address 30.0.0.1 255.255.255.0 Router(config-if)#no shutdownRouter(config-if)#exitRouter(config)#router ripRouter(config-router)#version 2Router(config-router)#network 20.0.0.0Router(config-router)#network 30.0.0.0R3:Router>enRouter#conftRouter(config)#interface s1/0Router(config-if)#ip address 30.0.0.2 255.255.255.0 Router(config-if)#no shutdownRouter(config-if)#int s1/1Router(config-if)#ip address 40.0.0.2 255.255.255.0Router(config-if)#no shutdownRouter(config-if)#int f0/0Router(config-if)#ip address 50.0.0.254 255.255.255.0Router(config-if)#no shutdownRouter(config-if)#exitRouter(config)#router ripRouter(config-router)#version 2Router(config-router)#network 30.0.0.0Router(config-router)#network 40.0.0.0Router(config-router)#network 50.0.0.0配置IP地址,通过RIPv2实现全网互通。

思科网络学院教程——RIPv2

思科网络学院教程——RIPv2

RIPv1
Yes
No
Yes
Yes
Yes
Yes
No
No
No
RIPv2
Yes
Yes
Yes
Yes
Yes
Yes
Yes
Yes
Yes
思科网络技术学院理事会.

28
思科网络技术学院理事会.

29


4
7.1 RIPv1 局限性
思科网络技术学院理事会.

5
7.1.1 实验网络拓扑结构
使用3 台路由器 拓扑结构不连续 存在静态路由汇聚 采用再发布方式发布静态 路由
思科网络技术学院理事会.

22
7.3.2 RIPv2 与 CIDR
CIDR "提供路由信息聚合 机制" 验证超网( supernets )are 发送和更新使用命 令 -Show ip route -Debug ip rip
思科网络技术学院理事会.

23
7.4 检验 RIPv2 与故障排除 RIPv2
思科网络技术学院理事会.

26
7.4.3 身份验证
原因 -确保路由器只接受配置了相同密码或身份验证信息的 路由器发送的路由信息. 身份验证不会加密路由表. 支持身份认证的路由协议 -RIPv2 -EIGRP -OSPF -IS-IS -BGP
思科网络技术学院理事会.
思科网络技术学院理事会.

13
不支持CIDR 7.1.5 RIPv1 不支持CIDR
R2 在更新中未包含 静态路由
原因: RIPv1 会忽略路 由表中的这些超网, 不会将它们包含在发 往其它路由器的更新 中

实验09 RIPv2的基本配置

实验09  RIPv2的基本配置

*实验09 RIPv2的基本配置【实验要求】1.掌握RIP v2 的基本配置2.理解RIP v1、v2 两个版本的差异3.理解RIP v1、v2 之间互相学习的机制【实验拓扑】R1、R2、R3三台路由器运行RIP,各路由器的环回口之间互相路由可达。

实验步骤(1) 在各台路由器上配置RIP v2R1 配置R1(config)#router ripR1(config-router)#version 2R1(config-router)#network 11.0.0.0R1(config-router)#network 12.0.0.0R1(config-router)#network 13.0.0.0R1(config-router)#no auto-summaryR2 配置R2(config)#router ripR2(config-router)#version 2R2(config-router)#network 22.0.0.0R2(config-router)#network 12.0.0.0R2(config-router)#network 23.0.0.0R2(config-router)#no auto-summaryR3 配置R3(config)#router ripR3(config-router)#version 2R3(config-router)#network 33.0.0.0R3(config-router)#network 13.0.0.0R3(config-router)#network 23.0.0.0R3(config-router)#no auto-summary(2) 在各台路由器上分别查看路由表 R1#show ip route rip33.0.0.0/24 is subnetted, 1 subnetsR 33.1.1.0 [120/1] via 13.1.1.3, 00:00:26, Serial0/123.0.0.0/24 is subnetted, 1 subnets R 23.1.1.0 [120/1] via 13.1.1.3, 00:00:26, Serial0/1[120/1] via 12.1.1.2, 00:00:10, Serial0/022.0.0.0/24 is subnetted, 1 subnetsR 22.1.1.0 [120/1] via 12.1.1.2, 00:00:10, Serial0/0R2#show ip route rip33.0.0.0/24 is subnetted, 1 subnetsR 33.1.1.0 [120/1] via 23.1.1.3, 00:00:06, Serial0/111.0.0.0/24 is subnetted, 1 subnetsR 11.1.1.0 [120/1] via 12.1.1.1, 00:00:14, Serial0/0 13.0.0.0/24 is subnetted, 1 subnetsR 13.1.1.0 [120/1] via 23.1.1.3, 00:00:06, Serial0/1 [120/1] via 12.1.1.1, 00:00:14, Serial0/0R3#show ip route rip22.0.0.0/24 is subnetted, 1 subnetsR 22.1.1.0 [120/1] via 23.1.1.2, 00:00:05, Serial0/1 11.0.0.0/24 is subnetted, 1 subnetsR 11.1.1.0 [120/1] via 13.1.1.1, 00:00:08, Serial0/0 12.0.0.0/24 is subnetted, 1 subnetsR 12.1.1.0 [120/1] via 23.1.1.2, 00:00:05, Serial0/1 [120/1] via 13.1.1.1, 00:00:08, Serial0/0(3) 把R3 的RIP 改为 v1 版本,R1、R2 保持v2 版本R3(config)#router ripR3(config-router)#no version 2 //残留的no auto-summary 不生效分别在 R1、R2、R3 上查看路由表 R1#show ip route rip23.0.0.0/24 is subnetted, 1 subnetsR 23.1.1.0 [120/1] via 12.1.1.2, 00:00:23, Serial0/0 22.0.0.0/24 is subnetted, 1 subnetsR 22.1.1.0 [120/1] via 12.1.1.2, 00:00:23, Serial0/0 R2#show ip route rip11.0.0.0/24 is subnetted, 1 subnetsR 11.1.1.0 [120/1] via 12.1.1.1, 00:00:23, Serial0/0 13.0.0.0/24 is subnetted, 1 subnetsR 13.1.1.0 [120/1] via 12.1.1.1, 00:00:23, Serial0/0R3#show ip route rip22.0.0.0/24 is subnetted, 1 subnetsR 22.1.1.0 [120/1] via 23.1.1.2, 00:00:14, Serial0/1 11.0.0.0/24 is subnetted, 1 subnetsR 11.1.1.0 [120/1] via 13.1.1.1, 00:00:11, Serial0/0 12.0.0.0/24 is subnetted, 1 subnetsR 12.1.1.0 [120/1] via 23.1.1.2, 00:00:14, Serial0/1 [120/1] via 13.1.1.1, 00:00:11, Serial0/0R2#debug ip rip events*Mar 1 01:28:44.419: RIP: ignored v1 packet from 23.1.1.3 (illegal version) //视为非法更新 *Mar 1 01:28:44.851: RIP: sending v2 update to 224.0.0.9 via Serial0/1 (23.1.1.2)(4) 使R1、R2的RIP v2 能学习R3 的RIP v1 路由更新 配置R2,不要配置R1R2(config)#int S0/1R2(config-if)#ip rip receive version 1 2 //使运行RIP v2的 R2能接收 v1、v2的 RIP 更新在各台路由器上查看路由表R1#show ip route ripR 33.0.0.0/8 [120/2] via 12.1.1.2, 00:00:09, Serial0/023.0.0.0/24 is subnetted, 1 subnetsR 23.1.1.0 [120/1] via 12.1.1.2, 00:00:13, Serial0/022.0.0.0/24 is subnetted, 1 subnetsR 22.1.1.0 [120/1] via 12.1.1.2, 00:00:13, Serial0/011.0.0.0/8 is variably subnetted, 2 subnets, 2 masks R13.0.0.0/8 is variably subnetted, 2 subnets, 2 masksRR2#show ip route ripR 33.0.0.0/8 [120/1] via 23.1.1.3, 00:00:27, Serial0/111.0.0.0/8 is variably subnetted, 2 subnets, 2 masksR 11.1.1.0/24 [120/1] via 12.1.1.1, 00:00:07, Serial0/0 R 11.0.0.0/8 [120/2] via 23.1.1.3, 00:00:27, Serial0/113.0.0.0/8 is variably subnetted, 2 subnets, 2 masksR 13.1.1.0/24 [120/1] via 12.1.1.1, 00:00:07, Serial0/0 R 13.0.0.0/8 [120/1] via 23.1.1.3, 00:00:27, Serial0/1 R3#show ip route rip33.0.0.0/8 is variably subnetted, 2 subnets, 2 masksR 33.0.0.0/8 [120/3] via 13.1.1.1, 00:00:03, Serial0/022.0.0.0/24 is subnetted, 1 subnetsR 22.1.1.0 [120/1] via 23.1.1.2, 00:00:04, Serial0/111.0.0.0/8 is variably subnetted, 2 subnets, 2 masksR 11.1.1.0/24 [120/1] via 13.1.1.1, 00:00:03, Serial0/0 R 11.0.0.0/8 [120/4] via 13.1.1.1, 00:00:03, Serial0/012.0.0.0/24 is subnetted, 1 subnetsR 12.1.1.0 [120/1] via 23.1.1.2, 00:00:04, Serial0/1[120/1] via 13.1.1.1, 00:00:03, Serial0/013.0.0.0/8 is variably subnetted, 2 subnets, 2 masksR 13.0.0.0/8 [120/3] via 13.1.1.1, 00:00:03, Serial0/0。

RIPv2协议配置

RIPv2协议配置

实验五RIPv2协议配置一、实验目的通过本实验,可以掌握以下技能:●配置接口IP地址。

●配置RIPv2协议。

●验证RIPv2协议配置。

二、设备需求●Cisco路由器3台,分别命名为twins、sa和gill。

其中twins具有2个以太网接口;sa具有2个以太网接口;gill具有2个以太网接口。

●2条交叉线序双绞线。

●1台access server,及用于反向Telnet的相应电缆。

●1台带有超级终端程序的PC机,以及Console电缆及转接器。

三、拓扑结构及配置说明实验的拓扑结构如图实验4所示,地址如下。

通过2对交叉线序双绞线分别把twins和sa连接起来、twins和gill连接起来。

各路由器使用的接口及其编号见图的标注。

各接口IP地址分配如下:●twins:E0:192.168.10.1 E1:192.168.11.1●sa:E0:192.168.10.2 E1:192.168.12.1●gill:E0:192.168.11.2 E1:192.168.15.1四、实验配置1.基本网络配置路由A:Router>enableRouter#config tRouter(config)#inetrface fastethernet 0/0RouterA(config-if)#ip address 192.168.10.1 255.255.255.0RouterA(config-if)#no shutdownRouter(config)#inetrface fastethernet 0/0RouterA(config-if)#ip address 192.168.12.1 255.255.255.0RouterA(config-if)#no shutdown同理,可配置路由B,路由C2.配置RIP协议路由A:Router(config)#router ripRouter(config-router)#version 2RouterA(config-router)#network 192.168.10.1 RouterA(config-router)#network 192.168.12.1 同理,可配置路由B,路由C五、验证RIPv2协议配置:1.show ip protocols2.show ip route该命令显示路由器的IP路由选择表,详细指出了路由器是如何获悉网络和发现路由。

4.2、RIPv2综合配置

4.2、RIPv2综合配置

r1#show ip rou
172.16.0.0/24 is subnetted, 5 subnets R 172.16.3.0 [120/2] via 172.31.12.2, 00:00:03, Serial0/0/0 R 172.16.4.0 [120/2] via 172.31.12.2, 00:00:03, Serial0/0/0 R 172.16.23.0 [120/1] via 172.31.12.2, 00:00:03, Serial0/0/0 R 172.16.24.0 [120/1] via 172.31.12.2, 00:00:03, Serial0/0/0 R 172.16.34.0 [120/2] via 172.31.12.2, 00:00:03, Serial0/0/0 172.31.0.0/24 is subnetted, 2 subnets C 172.31.1.0 is directly connected, FastEthernet0/0 C 172.31.12.0 is directly connected, Serial0/0/0 R* 0.0.0.0/0 [120/2] via 172.31.12.2, 00:00:03, Serial0/0/0
7 8
15 16
23 24
31
命令
版本 地址类型标示符 IP地址(网络地址) 必须为0 必须为0 度量(跳数)
必须为0 必须为0
RIPv2
命令
版本 地址类型标示符 IP地址(网络地址) 子网掩码 下一跳 度量(跳数)
必须为0 路由标记
2、RIPv2基本配置 RIPv2基本配置
r1(config)#router rip r1(config-router)#version 2 r1(config-router)# no auto-summary r1(config-router)#network 172.31.0.0 r2(config)#router rip r2(config-router)#version 2 r2(config-router)# no auto-summary r2(config-router)#network 172.31.0.0 r2(config-router)#network 172.16.0.0 r3(config)#router rip r3(config-router)#version 2 r3(config-router)# no auto-summary r3(config-router)#network 172.16.0.0 r4(config)#router rip r4(config-router)#version 2 r4(config-router)# no auto-summary r4(config-router)#network 172.16.0.0

RIP协议基本配置

RIP协议基本配置
RouterA和RouterB执行相似的命令即可配置成功。
b,查看各项参数:
** RouterC#show ip route
…………
3.0.0.0/24 is subnetted, 1 subnets
C 3.3.3.0 is directly connected, FastEthernet0/0
R 12.0.0.0/8 [120/1] via 23.0.0.1, 00:00:15, Serial0/0
C 23.0.0.0/8 is directly connected, Serial0/0
R 192.168.0.0/24 [120/2] via 23.0.0.1, 00:00:15, Serial0/0
Maximum path: 4
Routing for Networks:
3.0.0.0
23.0.0.0
……
** debug ip packet命令:
RIP: sending v2 update to 224.0.0.9 via FastEthernet0/0 (3.3.3.1)
此时,可以在RouterA和RouterB的路由表中看到网络3.3.3.0/24的精确路由。
RouterB#show ip route rip
……
R 3.3.3.0/24 [120/1] via 23.0.0.2, 00:00:07, Serial0/1
R 192.168.0.0/24 [120/1] via 12.0.0.1, 00:00:15, Serial0/0
连接简单的网络拓扑图,只需要两个路由器用串行线相连,配置缺省路由,使得链路能够正常通信。再用show ip route rip命令查看一 下该网络的RIP路由信息即可:

RIPv2综合配置PPT教学课件

RIPv2综合配置PPT教学课件

2020/12/09
9
注意: 1、查看路由表时间为240秒后。RIP的抑制计时器是240秒,用show ip
protocols 可以查看抑制时间。
r4#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 15 seconds Invalid after 180 seconds, hold down 180, flushed after 240
RIPv2
2020/12/09
1
教学内容
1、RIPv2与RIPV1的不同 2、RIPv2基本配置 3、RIPv2手工总结 4、RIPv2验证和触发更新 5、向RIP中注入默认路由
2020/12/09
2
1、RIPv2与RIPV1的不同
RIPv1 的限制: classful有类协议,不通告掩码 路由更新是广播:255.255.255.255 不支持认证 不支持VLSM
2020/12/09
6
r1(config)#router rip r1(config-router)#version 2 r1(config-router)# no auto-summary r1(config-router)#network 172.31.0.0
r2(config)#router rip r2(config-router)#version 2 r2(config-router)# no auto-summary r2(config-router)#network 172.31.0.0 r2(config-router)#network 172.16.0.0

任务12 RIP V2路由协议配置

任务12 RIP V2路由协议配置
4、在RIPv2版本中关闭自动汇总 ➢Router(config-router)#no auto-summary
相关知识—查看RIP配置信息
• 验证 RIP的配置 ➢ Router#show ip protocols
• 显示路由表的信息 ➢ Router#show ip route
• 清除 IP路由表的信息 ➢ Router#clear ip route
➢ 如:RIPv1、IGRP
• 注意:
➢ Classful routing路由可以交换属于同一个主类( A类,B类,C类)网络子网的路由,但必须使用相 同的Subnet mask
相关知识—有类路由协议
有类路由协议在同一个主类网络里能够区分Subnet,是因为:
➢ 如果路由更新信息是关于在接收Interface上所配置的同一主类网络 的,那么路由器将采用配置在本地Interface上的Subnet Mask;
相关知识—配置RIP协议
配置步骤
1、开启RIP路由协议进程 ➢Router(config)#router rip
2、申请本路由器参与RIP协议的直连网段信息 ➢Router(config-router)#network 192.168.1.0
3、指定RIP协议的版本2(默认是version1) ➢Router(config-router)#version 2
和发送RIP V2的更lassful-routing)
➢ 有类路由协议在路由信息传递时,不包含路由掩码 信息。路由器按照标准A、B、C类进行汇总处理;
➢ 当与外部网络交换路由信息时,接收方路由器将不 会知道Subnet,因为Subnet Mask信息没有被包括 在路由更新数据包中;
172.16.2.0/24

实验四:RIPv2的配置和路由汇总

实验四:RIPv2的配置和路由汇总

实验四:RIPv2的配置和路由汇总⏹实验目的1、在路由器上启动RIPv2路由进程2、启动参与路由协议的接口,并通告网络3、auto-summary的开启和关闭4、使用ip default-network命令向网络中注入一条默认路由5、查看和调试RIPv2路由协议相关信息⏹实验要求本实验要达到如下要求:1、给出具体的实现步骤2、给出当RIPv2失效的情况下,浮动路由的配置情况3、在路由器D通过ip default-network命令,向网络中注入一条默认路由4、给出某个路由器上路由表的内容⏹实验拓扑⏹实验设备(环境、软件)1、路由器4台2、交叉线4条⏹实验设计到的基本概念和理论RIPv2的特性、管理距离、浮动静态路由⏹实验过程和主要步骤步骤一:配置各路由器接口的IP配置路由器A的F1/0接口的IP:Router#config tEnter configuration commands, one per line. End with CNTL/Z.Router(config)#int f1/0Router(config-if)#ip address 172.16.1.1 255.255.255.0Router(config-if)#no shut配置路由器B的F0/0、F1/0接口的IP:Router#config tEnter configuration commands, one per line. End with CNTL/Z.Router(config)#int f0/0Router(config-if)#ip address 172.16.1.2 255.255.255.0Router(config-if)#no shut%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to upRouter(config-if)#int f1/0Router(config-if)#ip address 192.168.1.1 255.255.255.0Router(config-if)#no shut配置路由器C的F0/0、F1/0接口的IP:Router#config tEnter configuration commands, one per line. End with CNTL/Z.Router(config)#int f0/0Router(config-if)#ip address 192.168.1.2 255.255.255.0Router(config-if)#no shut%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to upRouter(config-if)#int f1/0Router(config-if)#ip address 172.168.2.1 255.255.255.0Router(config-if)#no shut配置路由器D的F0/0接口的IP:Router#config tEnter configuration commands, one per line. End with CNTL/Z.Router(config)#int f0/0Router(config-if)#ip address 172.168.2.2 255.255.255.0Router(config-if)#no shut步骤二:配置RIPv2协议:给路由器A配置RIPv2协议路由:Router(config)#route ripRouter(config-router)#version 2Router(config-router)#network 172.16.0.0给路由器B配置RIPv2协议路由:Router(config)#route ripRouter(config-router)#version 2Router(config-router)#network 172.16.0.0Router(config-router)#network 192.168.1.0给路由器C配置RIPv2协议路由:Router(config)#route ripRouter(config-router)#version 2Router(config-router)#network 192.168.1.0Router(config-router)#network 172.168.0.0给路由器D配置RIPv2协议路由:Router(config)#route ripRouter(config-router)#version 2Router(config-router)#network 172.168.0.0步骤三:给路由器D配置默认路由:Router#config tEnter configuration commands, one per line. End with CNTL/Z.Router(config)#ip route 0.0.0.0 0.0.0.0 f0/0步骤四:关闭自动路由汇总:Router(config-router)#no auto-summaryRouter#show ip protocolsRouting Protocol is "rip"Sending updates every 30 seconds, next due in 16 secondsInvalid after 180 seconds, hold down 180, flushed after 240Outgoing update filter list for all interfaces is not setIncoming update filter list for all interfaces is not setRedistributing: ripDefault version control: send version 2, receive 2Interface Send Recv Triggered RIP Key-chainFastEthernet0/0 2 2FastEthernet1/0 2 2Automatic network summarization is not in effectMaximum path: 4Routing for Networks:172.168.0.0192.168.1.0Passive Interface(s):Routing Information Sources:Gateway Distance Last Update192.168.1.1 120 00:00:23Distance: (default is 120)步骤五:路由器C的路由表:Router#show ip routeCodes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGPD - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter areaN1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGPi - 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 - ODRP - periodic downloaded static routeGateway of last resort is not setR 172.16.0.0/16 [120/1] via 192.168.1.1, 00:00:01, FastEthernet0/0172.168.0.0/24 is subnetted, 1 subnetsC 172.168.2.0 is directly connected, FastEthernet1/0C 192.168.1.0/24 is directly connected, FastEthernet0/0步骤六:测试路由是否连通:Router#ping 172.168.2.2Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 172.168.2.2, timeout is 2 seconds:!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 79/90/94 ms心得体会本节实验关键在于对RIPv2动态路由协议的理解,按照实验要求一步步来进行。

思科网络实验报告4ripv2(宝典)

思科网络实验报告4ripv2(宝典)

实验名称RIPv2 配置课程名称计算机网络班级计算0814 组号 F 组日期2010/6/5 地点陆大316成绩教师颜庆茁组员列表姓名学号郭苏强2008810108曾强2008810099刘凯2008810097杨天柱2008810106景朝辉2008810095评语:一、实验目的1、为接口分配正确的地址并记录地址。

2、根据拓扑图进行网络布线。

3、清除启动配置并将路由器重新加载为默认状态。

4、配置路由器使用RIP 第2 版。

5、配置并传播静态默认路由。

6、检验RIP 第2 版工作情况。

7、测试并校验网络是否完全通畅。

二、实验场景对一个网络地址使用VLSM 对其进行子网划分以便完成如拓扑结构图所示的网络编址。

需要配置RIP 版本2 和静态路由,以便非直连网络中的主机能够彼此通信。

实际拓扑图:三、实验器材(1)直通以太网电缆 6 条(2)交叉以太网电缆 1 条(3)PC 机 3 台(4)路由器 3 台(5)交换器 3 台设备接口IP 地址子网掩码默认网关任务1:对地址空间划分子网步骤1:研究网络要求。

此网络的编址方案应满足以下要求:ISP LAN 使用209,165,200,224/27 网络。

ISP 和HQ 之间的链路使用209.165.202.128/27 网络。

必须使用VLSM 对192.168.40.0/24 网络划分子网,以供其它链路使用。

HQ LAN1 需要50 个主机IP 地址。

HQ LAN2 需要50 个主机IP 地址。

BRANCH LAN1 需要30 个主机IP 地址。

BRANCH LAN2 需要12 个主机IP 地址。

HQ 和BRANCH 之间的链路两端各需要1 个IP 地址。

步骤2:创建网络设计时请思考以下问题:需要为192.168.40.0/24 网络创建多少个子网?__5个____总共需要从192.168.40.0/24 网络获得多少个IP 地址?___144_______HQ LAN1 子网将使用什么子网掩码?___255.255.255.192_______该子网最多有几个主机地址可供使用?__62___HQ LAN2 子网将使用什么子网掩码?___255.255.255.192_______该子网最多有几个主机地址可供使用?__62___BRANCH LAN1 子网将使用什么子网掩码?___255.255.255.224____该子网最多有几个主机地址可供使用?___30__BRANCH LAN2 子网将使用什么子网掩码?___255.255.255.240____该子网最多有几个主机地址可供使用?___14__HQ 和BRANCH 路由器之间的链路将使用什么子网掩码?__255.255.255.252___该子网最多有几个主机地址可供使用?__2___步骤3:为拓扑图分配子网地址。

Ripv2基本原理和基本配置(精)

Ripv2基本原理和基本配置(精)

Next-hop addresses included in RIPv2 routing updates.
RIPv2
提供明文和MD5两种验证
RIPv2 provides for authentication in its updates:MD5 and Clear text.

RIPv2使用224.0.0.9组播更新
RIPv1 不会在路由更新中发送子网掩码 RIPv1 does not send the subnet mask in routing updates, RIPv1 不支持不连续网络、VLSM 或 CIDR(无类域间路由)超网 RIPv1 cannot support discontiguous networks, VLSM, or CIDR
9
配置RIP触发更新 ( Configuring RIP Triggered Updates)
Router(config-if)# ip rip triggered
10
RIPv2 路由手工汇总 (RIPv2 Route Summarization: Manual)
(config-router)# no auto-summary • 关闭自动汇总 • Turns off automatic summarization
show ip protocols
show ip route rip
show ip rip database
show run | begin router rip
debug ip rip
12
RIPv2 配置实验
任务1:配置ripv2 任务2:配置手工汇总 任务3、配置明文验证 任务4、配置MD5验证 任务5、配置触发更新

思科路由信息协议版本2(ripv2)实验详解

思科路由信息协议版本2(ripv2)实验详解

第九章路由信息协议版本2(RIP-V2)实验:RIP-V2路由协议的配置实验目标:RIP-V2协议的基本配置、RIP-V2与V1相结合、使用可变长子网掩码、不连续的子网和无类路由。

在本实验中需要完成以下几个任务:任务一:RIP V2协议的基本配置任务二:RIP V2与V1相结合任务三:使用可变长子网掩码任务四:不连续的子网和无类路由实验环境拓扑图如下:任务一:RIP V2协议的基本配置路由器A配置如下:路由器B配置如下:路由器C配置如下:监测配置,用show ip route命令显示路由器A上的IP路由表,可以看到152.1.0.0和193.1.1.0是通过RIP学习到的,如下图在路由器A上用debug ip rip命令监视传输路由选择更新信息,可以看到由于水平分割的作用,E1/1端口不发出从路由器B上学到的网络信息,如下图:任务二:RIP V2与V1相结合实验环境:3台2950路由器用以太网e1/0、e1/1(f0/1、f0/1)接口、4根背靠背v3.5线缆实验拓扑图如下:RIP-V2RIP-V1 RIP-V1实验过程如下:路由器A的RIP-V1配置如下:路由器B上的RIP-V2配置,如下图:路由器C上的RIP-V1配置,如下图:利用debug ip rip命令利用debug ip rip命令显示监视路由器A的配置如图示(路由器A上没有152.1.0.0和193.1.1.0的路由)利用debug ip rip命令利用debug ip rip命令显示监视路由器B的配置如图示(路由器B上没有10.0.0.0和152.1.1.0、148.1.1.0的路由)修改路由器B的RIP版本配置如下图:利用debug ip rip命令修改路由器B的RIP版本后、显示监视路由器B的配置如下图示(路由器B上学习到A、C路由器上的路由表及RIP版本相关的信息)利用debug ip rip命令修改路由器B的RIP版本后、显示监视路由器A的配置如图示(路由器A上学习到B、C路由器上的路由表及RIP版本相关的信息)利用debug ip rip命令修改路由器B的RIP版本后、显示监视路由器C的配置如图示(路由器C上学习到A、B路由器上的路由表及RIP版本相关的信息)任务三:使用可变长子网掩码(略)任务四:不连续的子网和无类路由实验拓扑图如下:路由器A 的配置如下图:路由器B 的配置如下图:172.168.1.2/24 172.168.2.2/24172.168.1.1/24172.168.2.1/24路由器C的配置如下图:利用debug ip rip命令显示监视路由器A的配置如图示(路由器A 上学习到B、C路由器上172.16.1.0、172.16.2.0两个子网的路由表相关的信息)利用debug ip rip命令显示监视路由器B的配置如图示(路由器B 上学习到A、C路由器上172.16.1.0、172.16.2.0两个子网的路由表相关的信息)利用debug ip rip命令显示监视路由器C的配置如图示(路由器C 上学习到A、B路由器上172.16.1.0、172.16.2.0两个子网的路由表相关的信息)利用show ip rip显示路由器A上的IP路由表、两个网络172.16.0.0通过RIP学习到路由表利用show ip rip显示路由器B上的IP路由表、两个网络172.16.0.0通过RIP学习到路由表利用show ip rip显示路由器C上的IP路由表、两个网络172.16.0.0通过RIP学习到路由表。

RIPv2基本配置实验

RIPv2基本配置实验

4.3 RIPv24.3.1 实验4:RIPv2基本配置1.实验目的通过本实验可以掌握:①在路由器上RIPv2路由进程;②启用参与路由协议的接口,并且通告网络;③auto-summary的开启和关闭;④查看和调试RIPv2路由协议相关信息。

2.拓扑结构实验拓扑图如图4-1所示。

3.实验步骤:(1)步骤1:配置路由器R1R1(config)#router rip R1(config-router)#version 2R1(config-router)#no auto-summaryR1(config-router)#network 1.0.0.0 R1(config-router)#network 192.168.12.0(2)步骤2:配置路由器R2R2(config)#router ripR2(config-router)#version 2R3(config-router)#no auto-summaryR2(config-router)#network 192.168.12.0R2(config-router)#network 192.168.23.0(3)步骤3:配置路由器R3R3(config)#router ripR3(config-router)#version 2R3(config-router)#no auto-summaryR3(config-router)#network 192.168.23.0R3(config-router)#network 192.168.34.0(4)步骤4:配置路由器R4R4(config)#router ripR4(config-router)#version 2R4(config-router)#no auto-summaryR4(config-router)#network 192.168.34.0R4(config-router)#network 4.0.0.04.实验调试(1)show ip routeR1#show ip routeCodes; C - connected, S - static, R - RIP, M - mobile, B - BGPD - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter areaN1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2E1 - OSPF external type 1, E2 - OSPF external type 2i - IS-IS, su - IS-IS summary, 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 routeGateway of last resort is not setC 192.168.12.0/24 is directly connected, Serial0/0/01.0.0.0/24 is subnetted, 1 subnetsC 1.1.1.0 is directly connected, Loopback04.0.0.0/8 is variably subnetted,2 subnets, 2 maskR 4.4.4.0/24 [120/3] via 192.168.12.2, 00;00;22, Serial0/0/0R 192.168.23.0/24 [120/1] via 192.168.12.2, 00;00;22, Serial0/0/0R 192.168.34.0/24 [120/2] via 192.168.12.2, 00;00;22, Serial0/0/0从上面输出的路由条目”4.4.4.0/24”可以看到,RIPv2路由更新是携带子网信息的。

RIPv1与RIPv2及配置

RIPv1与RIPv2及配置
– Router(config-router)# neighbor ip-address
配置RIP
• 路由自动汇总:默认当子网路由穿越有类网络边界时,将 自动汇总成有类网络路由
• 关闭RIPv2自动汇总 – Router(config-router)# no auto-summary – RIPv2 缺省情况下将进行路由自动汇聚,RIPv1 不支 持该功能
• 调整RIP时钟 – Router(config-router)# timers basci update invalid flush
• 关闭水平分割 – Router(config-if)# no ip split-horizon
RIP配置示例
1.0.0..0.0
路由B、C配置类似
RouterA#show ip route Codes: C - connected, S - static, R - RIP B - BGP
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 i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area * - candidate default Gateway of last resort is no set C 1.0.0.0/8 is directly connected, Loopback 0 C 1.0.0.1/32 is local host. C 2.0.0.0/8 is directly connected, FastEthernet 0/0 C 2.0.0.1/32 is local host. R 3.0.0.0/8 [120/1] via 2.0.0.2, 00:00:00, FastEthernet 0/0 R 4.0.0.0/8 is possibly down, routing via 2.0.0.2, 00:00:33, FastEthernet 0/0

RIPv2基本配置实验

RIPv2基本配置实验

实验11:RIPv2 基本配置实验拓扑图地址表设备接口IP 地址子网掩码默认网关R1Fa0/0172.30.1.1 255.255.255.0 不适用Fa0/1172.30.2.1 255.255.255.0 不适用S0/0/0209.165.200.230 255.255.255.252 不适用R2Fa0/010.1.0.1 255.255.0.0 不适用S0/0/0209.165.200.229 255.255.255.252 不适用S0/0/1209.165.200.233 255.255.255.252 不适用R3Fa0/0172.30.100.1 255.255.255.0 不适用S0/0/1209.165.200.234 255.255.255.252 不适用Lo0172.30.110.1 255.255.255.0 不适用Lo1172.30.200.17 255.255.255.240 不适用Lo2172.30.200.33 255.255.255.240 不适用PC1网卡172.30.2.10 255.255.255.0 172.30.2.1 PC2网卡172.30.1.10 255.255.255.0 172.30.1.1 PC3网卡10.1.0.10 255.255.0.0 10.1.0.1 PC4网卡172.30.100.10 255.255.255.0 172.30.100.1第 1 页(共 10 页)学习目标完成本实验后,您将能够:•根据拓扑图进行网络布线。

•将提供的脚本加载到路由器。

•检查网络的当前状态。

•在所有路由器上配置 RIPv2。

•检查路由的自动总结。

•使用debug ip rip检查路由更新。

•禁用自动总结。

•检查路由表。

•检验网络连通性。

•记录 RIPv2 配置。

场景拓扑图中所示的网络包含一个不连续网络:172.30.0.0。

该网络已使用 VLSM 划分子网。

RIPv2基本配置实验

RIPv2基本配置实验

实验一: RIPv2基本配置实验Router>en //进入特权模式Router#conf t //进入配置模式Enter configuration commands, one per line. End with CNTL/Z.Router(config)#ho r1 //将路由器改名为r1r1(config)#int s0/3/0 //进入串行接口r1(config-if)#ip add 12.12.12.1 255.255.255.0 //配置接口IP和子网掩码r1(config-if)#no sh //激活%LINK-5-CHANGED: Interface Serial0/3/0, changed state to downr1(config-if)#%LINK-5-CHANGED: Interface Serial0/3/0, changed state to up%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/3/0, changed state to upr1(config-if)#exit //退出接口r1(config)#route rip //启用ripr1(config-router)#version 2 //版本2r1(config-router)#no auto-summary //关闭自动汇总r1(config-router)#network 12.12.12.0 //主网宣告r1(config-router)#exit //退出r1(config)#end //退出配置模式%SYS-5-CONFIG_I: Configured from console by consoler1#ping 12.12.12.2 //检查是否能通讯Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 12.12.12.2, timeout is 2 seconds: !!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 1/3/13 ms r1#show ip route //显示路由Codes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter areaN1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGPi - 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 - ODRP - periodic downloaded static routeGateway of last resort is not set12.0.0.0/8 is variably subnetted, 2 subnets, 2 masksC 12.12.12.0/24 is directly connected, Serial0/3/0L 12.12.12.1/32 is directly connected, Serial0/3/023.0.0.0/24 is subnetted, 1 subnetsR 23.23.23.0/24 [120/1] via 12.12.12.2, 00:00:14, Serial0/3/0r1#ping 23.23.23.2 //检查是否能够通讯Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 23.23.23.2, timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 2/10/42 ms r1#wrBuilding configuration...[OK]R2Router>enRouter#conf tEnter configuration commands, one per line. End with CNTL/Z.Router(config)#ho r2r2(config)#int s0/3/0r2(config-if)#ip add 12.12.12.2 255.255.255.0r2(config-if)#no sh%LINK-5-CHANGED: Interface Serial0/3/0, changed state to up%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/3/0, changed state to upr2(config-if)#int s0/3/1r2(config-if)#ip add 23.23.23.1 255.255.255.0%LINK-5-CHANGED: Interface Serial0/3/1, changed state to down%LINK-5-CHANGED: Interface Serial0/3/1, changed state to up%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/3/1, changed state to upr2(config-if)#router ripr2(config-router)#version 2r2(config-router)#no auto-summaryr2(config-router)#network 12.12.12.0r2(config-router)#network 23.23.23.0r2(config-router)#exitr2(config)#end%SYS-5-CONFIG_I: Configured from console by consoler2#ping 23.23.23.2Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 23.23.23.2, timeout is 2 seconds:!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/6/20 ms R3Router>enRouter#conf tEnter configuration commands, one per line. End with CNTL/Z. Router(config)#ho r3r3(config-if)#ip add 23.23.23.2 255.255.255.0r3(config-if)#no shr3(config-if)#%LINK-5-CHANGED: Interface Serial0/3/1, changed state to up%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/3/1, changed state to upr3(config-if)#router ripr3(config-router)#version 2r3(config-router)#no auto-summaryr3(config-router)#network 23.23.23.0r3(config-router)#end%SYS-5-CONFIG_I: Configured from console by consoler3#show ip routeCodes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter areaN1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGPi - 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 - ODRP - periodic downloaded static routeGateway of last resort is not set12.0.0.0/24 is subnetted, 1 subnetsR 12.12.12.0/24 [120/1] via 23.23.23.1, 00:00:27, Serial0/3/123.0.0.0/8 is variably subnetted, 2 subnets, 2 masksC 23.23.23.0/24 is directly connected, Serial0/3/1L 23.23.23.2/32 is directly connected, Serial0/3/1。

  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

Cisco RIPv2协议配置
实验目的:
1.RIP实现全网互通
2.学习路由表分析RIPv2协议
3.RIPv2自动汇总
实验拓拓扑图:
实验步骤:
1.全网配置IP地址,开启RIPv2路由协议,公布所有网段,实现全网互通。

R1:
Router>enable
Router#conft
Router(config)# interface f0/0
Router(config-if)#ip address 10.0.0.254 255.255.255.0 Router(config-if)#no shutdown
Router(config)#interface s1/0
Router(config-if)#clock rate 64000
Router(config-if)#ip address 20.0.0.1 255.255.255.0 Router(config-if)#no shutdown
Router(config)#interface s1/1
Router(config-if)#clock rate 64000
Router(config-if)#ip address 40.0.0.1 255.255.255.0 Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#router rip
Router(config-router)#version 2
Router(config-router)#network 10.0.0.0
Router(config-router)#network 20.0.0.0
Router(config-router)#network 40.0.0.0
R2:
Router>en
Router#conft
Router(config)#interface s1/0
Router(config-if)#ip address 20.0.0.2 255.255.255.0 Router(config-if)#no shutdown
Router(config)#interface s1/1
Router(config-if)#clock rate 64000
Router(config-if)#ip address 30.0.0.1 255.255.255.0 Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#router rip
Router(config-router)#version 2
Router(config-router)#network 20.0.0.0
Router(config-router)#network 30.0.0.0
R3:
Router>en
Router#conft
Router(config)#interface s1/0
Router(config-if)#ip address 30.0.0.2 255.255.255.0 Router(config-if)#no shutdown
Router(config-if)#int s1/1
Router(config-if)#ip address 40.0.0.2 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#int f0/0
Router(config-if)#ip address 50.0.0.254 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#router rip
Router(config-router)#version 2
Router(config-router)#network 30.0.0.0
Router(config-router)#network 40.0.0.0
Router(config-router)#network 50.0.0.0
配置IP地址,通过RIPv2实现全网互通。

2.分析RT3去往50. 0. 0.0/24的路由
Router>enable
Router#showip 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
10.0.0.0/24 is subnetted, 1 subnets
C 10.0.0.0 is directly connected, FastEthernet0/0
20.0.0.0/24 is subnetted, 1 subnets
C 20.0.0.0 is directly connected, Serial1/0
R 30.0.0.0/8 [120/1] via 40.0.0.2, 00:00:21, Serial1/1
[120/1] via 20.0.0.2, 00:00:05, Serial1/0
40.0.0.0/24 is subnetted, 1 subnets
C 40.0.0.0 is directly connected, Serial1/1
R 50.0.0.0/8 [120/1] via 40.0.0.2, 00:00:21, Serial1/1
分析得R1去往50.0.0.0/24网段的路由下一跳为R3 S1/1端口跳数为1,而下一跳为R2 S1/0端口的跳数为2.所以去往目标网段的路由是通过跳数来判断的。

3.关闭自动汇总,再次查看R1路由表。

Router>en
Router#conft
Router(config)#router rip
Router(config-router)#version 2
Router(config-router)#no auto-summary
Router(config-router)#end
Router#showip route
10.0.0.0/24 is subnetted, 1 subnets
C 10.0.0.0 is directly connected, FastEthernet0/0
20.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
R 20.0.0.0/8 [120/2] via 40.0.0.2, 00:00:01, Serial1/1
C 20.0.0.0/24 is directly connected, Serial1/0
30.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
R 30.0.0.0/8 [120/1] via 40.0.0.2, 00:00:28, Serial1/1
[120/1] via 20.0.0.2, 00:00:25, Serial1/0
R 30.0.0.0/24 [120/1] via 40.0.0.2, 00:00:01, Serial1/1
40.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
R 40.0.0.0/8 [120/2] via 20.0.0.2, 00:00:25, Serial1/0
C 40.0.0.0/24 is directly connected, Serial1/1
50.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
R 50.0.0.0/8 [120/1] via 40.0.0.2, 00:00:28, Serial1/1
R 50.0.0.0/24 [120/1] via 40.0.0.2, 00:00:01, Serial1/1
路由表不仅显示了主类网络还显示了子网,说明RIPv2关闭默认自动汇总功能。

实验总结:
1.通过RIPv2协议可以实现全网互通。

2.RIPv2认为跳数少的路径为最优路径。

3.RIPv2可以关闭默认自动汇总功能。

相关文档
最新文档