RIP与EIGRP的简单配置(缺少说明)
最新Rip_Ospf_Eigrp区别以及配置
我们前面已经简单介绍了三种类型的动态路由协议算法分别是距离矢量算法,1链路状态算法以及平衡混合算法,那么咱们今天就来看看这几种算法的类型代2表:RIP、OSPF、EIGRP。
而且它们都是内部网关协议(IGP),也就是说它们都3运行在一个自治系统内部,什么是自治系统,我们来简单看一下:45自治系统:就是使用相同路由准则的网络集合,一般是一个ISP,6或者是一个大型的行政机构。
大家刚听到这个术语时会感到有点模糊,有点抽象,7在CCNP的课程中会有详细的介绍,我们CCNA部分很少会用到自治系统间的协议,8使用的基本上都是自治系统内的协议。
所以如果按照在自动系统内运行还是用于9连接不同的自治系统,路由协议又分为两种:10IGP:内部网关协议,在一个自治系统内运行。
比如:RIP、OSPF、IS-IS、EIGRP 11等。
12EGP:外部网关协议,用于连接不同的自治系统。
比如:BGP1314在12.3(2)T之前的Cisco IOS版本中,IP路由选择协议支持的最大平行路15由(成本相等的路由)数为6,而在12.3(2)T中,支持的最大平行路由数为1616。
17BGP要求静态地指定邻居。
18Rip v1属于分类路由选择协议。
Rip v2、EIGRP、OSPF、IS-IS和BGP属于无19类路由选择协议。
使用分类路由选择协议时,必须是连续网络,汇总才不会出现20问题。
使用无类路由选择协议时,支持VLSM。
如果路由选择表中有多个与目标21地址匹配的条目,则将使用前缀最长的匹配条目。
22对于RIPv2和EIGRP,可以使用路由器配置命令no auto-summary来禁用自23动汇总。
24IGRP、EIGRP、IS-IS是思科私有协议。
25管理距离是0-255的值,管理距离越小,协议的可信度越高。
26静态路由:27Example:28ip route 172.16.1.0 255.255.255.0 s0/0/0(可用来到达目标网络29的本地路由器出站接口)30ip route 172.16.1.0 255.255.255.0 192.168.1.1(可用来到达目31标网络的下一跳的IP地址)32静态默认路由:ip route 0.0.0.0 0.0.0.0 172.16.1.033按需静态路由:34ODR(on demand routing)只适合于中央-分支拓扑。
路由协议EIGRP配置
路由协议EIGRP配置EIGRP(Enhanced Interior Gateway Routing Protocol)是一种基于距离矢量算法的内部网关路由协议,主要用于在大型企业网络中实现路由器之间的动态路由。
本文将介绍EIGRP的配置过程,以帮助读者更好地理解和应用该协议。
1. EIGRP的基本概念EIGRP是一种高效可靠的路由协议,具有以下特点:- 支持VLSM(可变长度子网掩码):可以根据网络需求分配不同的子网掩码。
- 支持CIDR(无类别域间路由):能够将多个连续的IP地址作为一个整体进行路由计算。
- 支持自动汇总:能够将多个子网自动合并为一个超网,减小路由表的规模。
- 支持无环路:使用DUAL(Diffusing Update Algorithm)算法,有效解决了路由循环的问题。
2. EIGRP的配置步骤在配置EIGRP之前,需要了解以下参数:- 自治系统号(AS number):EIGRP所在的自治系统号,范围为1~65535。
- 路由器ID:用于区分不同的路由器,可以是IP地址的一部分,也可以手动指定。
下面是EIGRP的配置步骤:步骤1:进入路由器配置模式```Router# configure terminal```步骤2:配置EIGRP进程和AS号```Router(config)# router eigrp <AS号>```步骤3:添加网络```Router(config-router)# network <网络地址>```此命令将指定哪些接口将被EIGRP协议使用。
可以指定单个IP地址、子网地址或主机地址。
步骤4:配置路由器ID(可选)```Router(config-router)# eigrp router-id <路由器ID>```使用此命令可以手动指定路由器ID,如果不手动指定,将使用默认的路由器ID。
步骤5:配置其他可选参数(可选)根据需要,可以配置其他参数,如带宽、延迟、可靠性等。
(实验二)rip,eigrp,ospf路由实验
一、实验目的通过本次实验,验证了动态路由协议的工作状态,了解动态路由的工作模式。
二、设备需求计算机一台,实验所需的模拟器软件。
三、拓扑结构及接口IP配置实验的拓扑结构如图所示。
各设备之间如图所示连接起来。
实验的拓扑结构各路由器使用的接口及其编号见图所示的标注,各接口IP地址分配如下:RouterA: fa0/0:192.168.1.1 fa0/1:172.1.1.1RouterB:fa0/0:172.1.1.2 fa0/1:192.168.2.1 se0/0:172.2.1.1RouterC: se0/0:172.2.1.2 fa0/0:192.168.3.1PC0:192.168.1.2PC1:192.168.2.2PC2:192.168.3.2四、实验配置文档由于ip配置等信息在实验一中已完成,这里只给出配置rip,eigrp和ospf的配置过程。
1.RIP的配置:RouterA:Router(config)#no ip route 172.2.0.0 255.255.0.0 172.1.1.2Router(config)#no ip route 192.168.2.0 255.255.255.0 172.1.1.2 Router(config)#no ip route 192.168.3.0 255.255.255.0 172.1.1.2 Router(config)#router ripRouter(config-router)#version 2Router(config-router)#network 192.168.1.0Router(config-router)#network 172.1.0.0Router(config-router)#^Z其他配置省略RouterB:Router(config)#no ip route 192.168.1.0 255.255.255.0 172.2.1.1 Router(config)#no ip route 192.168.2.0 255.255.255.0 172.2.1.1 Router(config)#no ip route 172.1.0.0 255.255.0.0 172.2.1.1Router(config)#router ripRouter(config-router)#version 2Router(config-router)#network 172.2.0.0Router(config-router)#network 192.168.3.0Router(config-router)#^Z其他配置省略RouterC:Router(config)#no ip route 192.168.1.0 255.255.255.0 172.1.1.1 Router(config)#no ip route 192.168.3.0 255.255.255.0 172.2.1.2 Router(config)#router ripRouter(config-router)#version 2Router(config-router)#network 172.1.0.0Router(config-router)#network 172.2.0.0Router(config-router)#network 192.168.2.0Router(config-router)#^Z其他配置省略2. ospf的配置RouterA:Router(config)#router ospf 10Router(config-router)#network 192.168.1.0 0.0.0.255 area 0Router(config-router)#network 172.1.0.0 0.0.255.255 area 0Router(config-router)#^ZRouterB:Router(config)#router ospf 10Router(config-router)#network 172.1.0.0 0.0.255.255 area 0Router(config-router)#network 172.2.0.0 0.0.255.255 area 0Router(config-router)#network 192.168.2.0 0.0.0.255 area 0Router(config-router)#^ZRouterC:Router(config)#router ospf 10Router(config-router)#network 172.2.0.0 0.0.255.255 area 0Router(config-router)#network 192.168.3.0 0.0.0.255 area 0Router(config-router)#^Z3.eigrpd的配置:RouterA:Router(config)#router eigrp 11Router(config-router)#network 192.168.1.0 0.0.0.255Router(config-router)#network 172.1.0.0 0.0.255.255Router(config-router)#^ZRouterB:Router(config)#router eigrp 11Router(config-router)#network 172.1.0.0 0.0.255.255Router(config-router)#network 172.2.0.0 0.0.255.255Router(config-router)#network 192.168.2.0 0.0.0.255Router(config-router)#^ZRouterC:Router(config)#router eigrp 11Router(config-router)#network 172.2.0.0 0.0.255.255Router(config-router)#network 192.168.3.0 0.0.0.255Router(config-router)#^Z五、验证实验结果1、三种动态协议下的show ip route都是一样的该命令显示路由器的IP路由选择表,详细指出了路由器是如何获悉网络和发现路由的,该命令如下:RouteA#sh ip routeC 172.1.0.0/16 is directly connected, FastEthernet0/1R 172.2.0.0/16 [120/1] via 172.1.1.2, 00:00:25, FastEthernet0/1C 192.168.1.0/24 is directly connected, FastEthernet0/0R 192.168.2.0/24 [120/1] via 172.1.1.2, 00:00:25, FastEthernet0/1R 192.168.3.0/24 [120/2] via 172.1.1.2, 00:00:25, FastEthernet0/1 RouteB#sh ip routeR 172.1.0.0/16 [120/1] via 172.2.1.1, 00:00:24, Serial0/0C 172.2.0.0/16 is directly connected, Serial0/0R 192.168.1.0/24 [120/2] via 172.2.1.1, 00:00:24, Serial0/0R 192.168.2.0/24 [120/1] via 172.2.1.1, 00:00:24, Serial0/0C 192.168.3.0/24 is directly connected, FastEthernet0/0RouteC#sh ip routeC 172.1.0.0/16 is directly connected, FastEthernet0/0C 172.2.0.0/16 is directly connected, Serial0/0R 192.168.1.0/24 [120/1] via 172.1.1.1, 00:00:04, FastEthernet0/0C 192.168.2.0/24 is directly connected, FastEthernet0/1R 192.168.3.0/24 [120/1] via 172.2.1.2, 00:00:21, Serial0/02、ping 指令的使用从pc0去ping pc2,如果能ping通,说明动态路由工作正常,如果不能ping通,所以有其他错误存在,需要检查硬件和其他配置。
动态路由协议(RIP、EIGRP、OSPF)
动态路由选择协议(RIP、EIGRP、OSPF)✧基本概念:◆自治系统(AS):在同一个AS中的所有路由器共享相同的路由表信息。
◆管理距离(AD):用来衡量路由选择信息的可信度,不同的路由选择协议具有不同的管理距离。
0—255的整数,0是最可信的,255则意味着不会使用此路由。
◆度量值:度量值代表距离。
它们用来在寻找路由时确定最优路由。
每一种路由算法在产生路由表时,会为每一条通过网络的路径产生一个数值(度量值),最小的值表示最优路径。
度量值的计算可以只考虑路径的一个特性,但更复杂的度量值是综合了路径的多个特性产生的。
◆CIDR(无类别域间路由选择):它是将好几个IP网络结合在一起,使用一种无类别的域际路由选择算法,可以减少由核心路由器运载的路由选择信息的数量。
◆VLSM (可变长子网掩码):对同一个主类网络下的不同子网指定不同子网掩码的功能。
◆不连续的网络:将两个或更多的有类网络的子网,通过不同的有类网络连接在一起的网络。
◆自动汇总(auto-summary):通告路由时自动的将子网汇总成有类网段再通告。
◆动态路由选择协议的分类:第一种分类:1.内部网关协议(IGP):用于同一个自治系统(AS)中的路由器之间交换路由选择信息。
如:RIP、EIGRP、OSPF等。
2.外部网关协议(EGP):用于在AS之间通信。
如:BGP等。
第二种分类:1.距离矢量协议:通过判断距离查找最佳路径,数据包每通过一台路由器,称为一跳。
跳数最少被认为是最佳路由。
如:RIP、IGRP等。
2.链路状态协议:也称为最短路径优先协议,将创建3个独立的表(邻居表、拓扑表、路由选择表)。
如:OSPF等。
3.混合型:是距离矢量协议和链路状态协议的结合体。
如:EIGRP等。
✧距离矢量路由选择协议◆距离矢量路由选择协议:距离矢量路由选择算法发送完整的路由表到相邻的路由器,相邻的路由器会将接收到的路由表与自己原有的路由表进行组合,以完善自己的路由表。
实验RIP路由协议的配置报告
1.RIP,IGRP,EIGRP三种路由协议有什么不同?各协议分别适用应用在什么网络?
答:不同种类的路由协议。RIP和IGRP之间的主要区别是距离矢量协议;EIGRP主要是连接状态协议。配置RIP动态路由协议是通用的路由协议,而IGRP,EIGRP是CISCO专用的路由协议。
【实验心得和体会】
2.配置路由器r2
1)清空路由器原有配置
[Router]reset saved-configuration
[Router]reboot
2)更改路由器名称
[Router]sysname r2
3)配置s0接口
[r2]interface s0
[r2-serial0]link-protocol ppp
[r2-serial0]ip address 192.168.3.2 255.255.255.0
了解了RIP的基本知识,掌握了它的基本作用,适用于小型的同类网络,它以从源端到目的端所经过的路由器个数作为唯一的度量标准,从实验的错误中体会到成功的喜悦,从实验中体会到知识的无穷,从实践中学到了知识。
指导教师评语及成绩:
评语:
成绩:指导教师签名:
批阅日期:
实验内容:
【实验步骤】
1.配置路由器r1
1)清空路由器原有配置
[Router]reset saved-configuration
[Router]reboot
2)更改路由器名称
[Router]sysname r1
3)配置s0接口
[r1]interface s0
[r1-serial0]link-protocol ppp
[r1-serial0]ip address 192.168.3.1 255.255.255.0
路由协议重分发(RIP OSPF EIGRP)
路由协议重分发设备接口Ip地址子网掩码R1 F0/0 192.168.1.1 255.255.255.0Loopback 0 1.1.1.1 255.255.255.0 R2 F1/0 192.168.2.1 255.255.255.0Loopback 0 2.2.2.2 255.255.255.0 R3 F0/0 192.168.3.1 255.255.255.0Loopback 0 3.3.3.3 255.255.255.0 R4 F0/0 192.168.1.2 255.255.255.0F1/0 192.168.2.2 255.255.255.0F6/0 192.168.3.2 255.255.255.01.路由器的基本配置R1Router>Router>enableRouter#conf tRouter(config)#hostname R1R1(config)#int f0/0R1(config-if)#ip add 192.168.1.1 255.255.255.0R1(config-if)#no shutR1(config-if)#exitR1(config)#int lR1(config)#int loopback 0R1(config-if)#ip add 1.1.1.1 255.255.255.0R1(config-if)#no shutR1(config-if)#exitR1(config)#R2Router>Router>enableRouter#conf tRouter(config)#hostname R2R2(config)#int f1/0R2(config-if)#ip add 192.168.2.1 255.255.255.0 R2(config-if)#no shutR2(config-if)#exitR2(config)#int loopback 0R2(config-if)#ip add 2.2.2.2 255.255.255.0R2(config)#R3Router>enableRouter#conf tRouter(config)#hostname R3R3(config)#int f0/0R3(config-if)#ip add 192.168.3.1 255.255.255.0 R3(config-if)#no shutR3(config-if)#exitR3(config)#int lR3(config)#int loopback 0R3(config-if)#ip add 3.3.3.3 255.255.255.0R3(config-if)#exitR3(config)#R4Router>enableRouter#conf tRouter(config)#hostname R4R4(config)#int f0/0R4(config-if)#ip ad 192.168.1.2 255.255.255.0 R4(config-if)#no shutR4(config-if)#exitR4(config)#int f1/0R4(config-if)#ip add 192.168.2.2 255.255.255.0 R4(config-if)#no shutR4(config-if)#exitR4(config)#int f6/0R4(config-if)#ip add 192.168.3.2 255.255.255.0R4(config-if)#no shutR4(config-if)#exitR4(config)#2.配置路由器协议R1:RIP协议R1(config)#router ripR1(config-router)#version 2R1(config-router)#no auto-summaryR1(config-router)#net 192.168.1.0R1(config-router)#net 1.1.1.1R1(config-router)#exitR2:OSPF协议R2(config)#router ospf 1R2(config-router)#network 192.168.2.0 0.0.0.255 area 0 R2(config-router)#network 2.2.2.0 0.0.0.255 area 0R2(config-router)#exitR3:EIGRP协议R3(config)#router eigrp 1R3(config-router)#no auto-summaryR3(config-router)#network 192.168.3.0R3(config-router)#network 3.3.3.0R3(config-router)#exitR4:RIPR4(config)#router ripR4(config-router)#version 2R4(config-router)#no auto-summaryR4(config-router)#network 192.168.1.0R4(config-router)#exitOSPFR4(config)#router ospf 1R4(config-router)#net 192.168.2.0 0.0.0.255 aR4(config-router)#net 192.168.2.0 0.0.0.255 area 0R4(config-router)#exitEIGRPR4(config)#router eigrp 1R4(config-router)#no auto-summaryR4(config-router)#network 192.168.3.0R4(config-router)#exitR4(config)#测试R4#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 set1.0.0.0/24 is subnetted, 1 subnetsR 1.1.1.0 [120/1] via 192.168.1.1, 00:00:02, FastEthernet0/02.0.0.0/32 is subnetted, 1 subnetsO 2.2.2.2 [110/2] via 192.168.2.1, 00:01:10, FastEthernet1/03.0.0.0/24 is subnetted, 1 subnetsD 3.3.3.0 [90/] via 192.168.3.1, 00:00:55, FastEthernet6/0C 192.168.1.0/24 is directly connected, FastEthernet0/0C 192.168.2.0/24 is directly connected, FastEthernet1/0C 192.168.3.0/24 is directly connected, FastEthernet6/0R4#配置路由协议重分发RIPR4(config)#router ripR4(config-router)#redistribute ospf 1 metric 3R4(config-router)#redistribute eigrp 1 metric 3R4(config-router)#exitR1#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 set1.0.0.0/24 is subnetted, 1 subnetsC 1.1.1.0 is directly connected, Loopback02.0.0.0/32 is subnetted, 1 subnetsR 2.2.2.2 [120/3] via 192.168.1.2, 00:00:11, FastEthernet0/03.0.0.0/24 is subnetted, 1 subnetsR 3.3.3.0 [120/3] via 192.168.1.2, 00:00:11, FastEthernet0/0C 192.168.1.0/24 is directly connected, FastEthernet0/0R 192.168.2.0/24 [120/3] via 192.168.1.2, 00:00:11, FastEthernet0/0R 192.168.3.0/24 [120/3] via 192.168.1.2, 00:00:11, FastEthernet0/0R1#OSPFR4(config)#router ospf 1R4(config-router)#redistribute rip subnetsR4(config-router)#redistribute eigrp 1 subnetsR4(config-router)#R2#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 set1.0.0.0/24 is subnetted, 1 subnetsO E2 1.1.1.0 [110/20] via 192.168.2.2, 00:00:40, FastEthernet1/02.0.0.0/24 is subnetted, 1 subnetsC 2.2.2.0 is directly connected, Loopback03.0.0.0/24 is subnetted, 1 subnetsO E2 3.3.3.0 [110/20] via 192.168.2.2, 00:00:29, FastEthernet1/0O E2 192.168.1.0/24 [110/20] via 192.168.2.2, 00:00:40, FastEthernet1/0C 192.168.2.0/24 is directly connected, FastEthernet1/0O E2 192.168.3.0/24 [110/20] via 192.168.2.2, 00:00:29, FastEthernet1/0 EIGRPR4(config)#router eigrp 1R4(config-router)#redistribute rip metric 15000 10 255 1 1500R4(config-router)#redistribute ospf 1 metric 15000 10 255 1 1500R4(config-router)#exitR4(config)#R3#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 set1.0.0.0/24 is subnetted, 1 subnetsD EX 1.1.1.0 [170/] via 192.168.3.2, 00:02:12, FastEthernet0/02.0.0.0/32 is subnetted, 1 subnetsD EX 2.2.2.2 [170/] via 192.168.3.2, 00:01:43, FastEthernet0/03.0.0.0/24 is subnetted, 1 subnetsC 3.3.3.0 is directly connected, Loopback0D EX 192.168.1.0/24 [170/] via 192.168.3.2, 00:02:12, FastEthernet0/0D EX 192.168.2.0/24 [170/] via 192.168.3.2, 00:01:43, FastEthernet0/0C 192.168.3.0/24 is directly connected, FastEthernet0/0R3#最后测试所有地址能通信R1#ping 2.2.2.2Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 2.2.2.2, timeout is 2 seconds:!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/0 msR1#ping 3.3.3.3Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 3.3.3.3, timeout is 2 seconds:!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/1 msR1#R2#ping 1.1.1.1Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 1.1.1.1, timeout is 2 seconds:!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/1 msR2#ping 3.3.3.3Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 3.3.3.3, timeout is 2 seconds: !!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/1 msR3#ping 1.1.1.1Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 1.1.1.1, timeout is 2 seconds: !!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/1 ms R3#ping 2.2.2.2Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 2.2.2.2, timeout is 2 seconds: !!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/1 ms R3#。
华为路由器RIP简单配置步骤
华为路由器RIP简单配置步骤路由器系统构成了基于TCP/IP 的国际互联网络Internet 的主体脉络,也可以说,路由器构成了Internet的骨架。
这篇文章主要介绍了华为路由器RIP简单配置步骤,需要的朋友可以参考下具体介绍session 1 rip协议rip是一种动态路由协议,使用跳数作为度量标准,是距离矢量路由协议,是一种谣传式的路由协议。
rip路由协议目前有2个版本,version 1 使用广播收发rip报文,并且不支持无类路由(更新报文中不带子网掩码)。
version 2 使用组播或者广播(可以修改,默认组播)收发rip报文,支持无类路由(更新报文中带子网掩码)rip宣告网络只支持主类网络。
rip是有进程之分的,可以同时运行多个rip进程,但是进程之间相互独立,如果要不同进程宣告网络,那么就必须在不同进程中相互重分发路由。
rip的路由防环机制有:1、最大跳数:当一条路由到达16跳时,该路由失效,rip最大为16跳,也就是说最多可以经过16台设备,限制了网络的大小。
2、水平分割:单向宣告网络,从一个接口收到的路由不会再从该接口宣告出去。
3、毒性逆转:优化水平分割,从一个接口收到的路由会再从该接口宣告出去,但是该路由的跳数会自动设为16跳不可达。
4、保持计时器:,收到的不可达路由信息被抑制的时间,默认180s,180s内路由器不会接受和发送该抑制路由的更新信息,若180s后没有更优的路由,该抑制路由将被删除。
session 2 rip的配置一、rip的认证[Huawei-GigabitEthernet0/0/0]rip authentication-mode md5 usual cipher 123 在接口上做rip认证,MD5密文通用格式的加密,密码123(两端都需要配置)二、rip报文的单播发送和更新源检查1、单播发送rip报文,应用于NBMA非广播多路网络,如framerelay、ATM、X.25,解决了这些网络无法收发组播和广播报文的问题[Huawei]rip 1[Huawei-rip-1]peer 12.1.1.2 手动指定单播发送的rip邻居[Huawei-rip-1]quit2、rip检查更新源会检测对端接口是否和本端接口在同一个网段,在P2P网络中链路的两端ip地址属于不同的网段,必须取消报文源检测才能建立邻居关系[Huawei]rip 1[Huawei-rip-1]undo verify-source 关闭了更新源检测,默认情况下已开启[Huawei-rip-1]quit三、rip的发布聚合路由[Huawei]interface g0/0/0[Huawei-GigabitEthernet0/0/1]rip summary-address 192.168.0.0 255.255.0.0 avoid-feedback 向外宣告一条聚合路由,并且禁止从该接口学习到相同的聚合路由,以防止产生路由环路四、路由防环命令1、水平分割,开启水平分割功能,默认开启。
rip路由协议基本配置 rip路由协议工作原理
RIP路由协议基本配置1. RIP路由协议简介RIP(Routing Information Protocol)是一种基于距离向量的路由协议,用于在小型网络中动态交换路由信息。
RIP通过广播更新路由表,支持最多15个跳数的路由,并使用跳数作为路径选择的度量。
RIP路由协议的基本配置包括以下几个步骤:2. 配置RIP路由协议2.1 确认网络拓扑在开始配置RIP路由协议之前,需要先确认网络拓扑。
了解网络中存在的子网和路由器之间的连接关系是非常重要的。
2.2 启用RIP路由协议配置RIP路由协议的第一步是启用协议。
在路由器上使用如下命令启用RIP路由协议:Router(config)# router rip2.3 添加网络到RIP协议接下来,需要将网络添加到RIP路由协议中。
使用以下命令将网络添加到RIP协议:Router(config-router)# network <network_address>其中,<network_address>是需要添加的网络地址。
可以使用通配符来指定多个网络。
2.4 配置其他参数除了添加网络之外,还可以配置其他参数来优化RIP路由协议的性能。
下面是一些常用的配置参数:•版本选择: RIP有两个版本,RIP v1和RIP v2。
RIP v1仅支持IPv4,而RIP v2则支持IPv4和IPv6。
可以使用以下命令选择RIP的版本:Router(config-router)# version {1 | 2}•跳数限制: 默认情况下,RIP最大支持15个跳数。
可以使用以下命令修改跳数限制:Router(config-router)# maximum-path <number>•路由定时器: RIP使用路由定时器来控制路由更新的频率。
可以使用以下命令调整路由定时器的值:Router(config-router)# timers basic <update_interval> <i nvalid_interval> <holddown_interval>3. RIP路由协议工作原理RIP路由协议的工作原理基于距离向量算法。
EIGRP协议基本配置和常用命令
配置EIGRP协议#c o n f t#r o u t e r e i g r p100*E I G R P需要配置A S号**A S标识了属于一个互连网络中的所有路由器,**同一个A S内的不同路由如果想要互相学习路由信息,必须配置相同的A S号。
* #n e t1.1.1.00.0.0.255*宣告接口,使用的是反掩码形式,如果不输入反掩码,路由默认会使用接口的主类网络号* "n e t12.1.1.0"等价于"n e t12.0.0.00.255.255.255"#n e t0.0.0.0*如果路由的所有接口都宣告进E I G R P进程,则可以使用"n e t0.0.0.0"一次性宣告所有接口*查询EIGRP 在running-config中的配置明细#s h r u n n i n g-c o n f i g|s e c t i o n r e ir o u t e r e i g r p100n e t w o r k1.1.1.00.0.0.255n e t w o r k12.1.1.00.0.0.255n e t w o r k21.1.1.00.0.0.255a u t o-s u m m a r yEIGRP表EIGRP中有三张表:邻居表、路由表、拓扑表邻居表(Neighbor Table)在EIGRP中,两台相邻路由器要建立起邻接关系需要满足两个条件:1)具有相同的AS号; 2)具有相匹配的K值;可以通过下面的命令来查看EIGRP默认的K 值:#s h o w i p p r o t o c o l s/*A S=100*/u t e rf a c ee l l oC i s21.0.0.0/8i s v a r i a b l y s u b n e t t e d,2s u b n e t s,2m a s k sC21.1.1.0/24i s d i r e c t l y c o n n e c t e d,F a s t E t h e r n e t1/0D21.0.0.0/8i s a s u m m a r y,00:14:58,N u l l012.0.0.0/8i s v a r i a b l y s u b n e t t e d,2s u b n e t s,2m a s k sC12.1.1.0/24i s d i r e c t l y c o n n e c t e d,S e r i a l0/0D12.0.0.0/8i s a s u m m a r y,00:15:00,N u l l0路由表中的"D1.0.0.0/8i s a s u m m a r y,01:40:23,N u l l0"是一条自动汇总产生的路由,E I G R P和R I P默认都在主网边界自动汇总,不同的是E I G R P会在本地产生一条自动汇总后的路由,目标指向空接口(N u l l0)R1发现路由表中有一条1.0.0.0/8的条目能够匹配(子网掩码最长匹配,这个条目比默认路由子网掩码长,所以优先选取)发往空接口的数据会被丢弃。
思科路由怎么配置EIGRP
思科路由怎么配置EIGRP思科制造的路由器设备、交换机和其他设备承载了全世界80%的互联网通信,成为硅谷中新经济的传奇,那么你知道思科路由怎么配置EIGRP吗?下面是店铺整理的一些关于思科路由怎么配置EIGRP的相关资料,供你参考。
思科路由配置EIGRP的方法:拓扑图接口连接:Router1 S0/0 <----> Router2 S0/0Router2 S0/1 <----> Router3 S0/0Router1 S0/1 <----> Router4 S0/0Router3 S0/1 <----> Router4 S0/1VPCS V0/1 <----> Router1 E1/0VPCS V0/2 <----> Router3 E1/0实验原理:在R1\R2\R3\R4上均运行EIGRP路由协议。
R4通过S0/1向R3通告一条0.0.0.0 0.0.0.0的汇总路由,并将这条浮动路由的管理距离设置为250,于是在网络连通的情况下R3上到达200.1.1.0/24网段的路由经过R2,而在R2与R3链路故障的时候,通过R3前往200.1.1.0/24的数据包会通过R4(R3拓扑表中,默认路由由A变为P) 关键配置:R1:interface Serial0/0ip address 192.168.1.1 255.255.255.0serial restart-delay 0!interface Serial0/1ip address 192.168.3.1 255.255.255.0serial restart-delay 0!interface Ethernet1/0ip address 200.1.1.254 255.255.255.0half-duplex!router eigrp 100network 192.168.1.0network 192.168.3.0network 200.1.1.0no auto-summaryR2、R3略,参照R1进行接口IP和路由协议的配置重点看下R4的配置R4:interface Serial0/0ip address 192.168.3.2 255.255.255.0serial restart-delay 0!interface Serial0/1ip address 192.168.4.1 255.255.255.0ip summary-address eigrp 100 0.0.0.0 0.0.0.0 250(向R3通过默认路由,管理距离高于EIGRP默认值)!router eigrp 100network 192.168.3.0network 192.168.4.0auto-summary查看结果:1.R2和R3之间链路正常时a) R3的路由表:R3#sh 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, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2ia - IS-IS inter area, * - candidate default, U - per-user static routeo - ODR, P - periodic downloaded static routeGateway of last resort is 192.168.4.1 to network 0.0.0.0D 200.1.1.0/24 [90/2707456] via 192.168.2.1, 00:00:02, Serial0/0C 200.1.2.0/24 is directly connected, Ethernet1/0C 192.168.4.0/24 is directly connected, Serial0/1D 192.168.1.0/24 [90/2681856] via 192.168.2.1, 00:00:02, Serial0/0C 192.168.2.0/24 is directly connected, Serial0/0D 192.168.3.0/24 [90/3193856] via 192.168.2.1, 00:00:02, Serial0/0D* 0.0.0.0/0 [90/2681856] via 192.168.4.1, 00:00:00, Serial0/1b)R3的拓扑表:R3#sh ip eigrp topologyIP-EIGRP Topology Table for AS(100)/ID(200.1.2.254)Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply, r - reply Status, s - sia StatusA 0.0.0.0/0, 1 successors, FD is Inaccessible1 replies, active 00:00:00, query-origin: Successor OriginRemaining replies:via 192.168.2.1, r, Serial0/0P 192.168.1.0/24, 1 successors, FD is 2681856via 192.168.2.1 (2681856/2169856), Serial0/0P 192.168.2.0/24, 1 successors, FD is 2169856via Connected, Serial0/0P 192.168.3.0/24, 1 successors, FD is 3193856via 192.168.2.1 (3193856/2681856), Serial0/0P 192.168.4.0/24, 1 successors, FD is 2169856via Connected, Serial0/1P 200.1.1.0/24, 1 successors, FD is 2707456via 192.168.2.1 (2707456/2195456), Serial0/0P 200.1.2.0/24, 1 successors, FD is 281600via Connected, Ethernet1/02.R2的S0/1设置为DOWN,观察R3路由表和拓扑表a)R3路由表:R3#sh 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, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2ia - IS-IS inter area, * - candidate default, U - per-user static routeo - ODR, P - periodic downloaded static routeGateway of last resort is 192.168.4.1 to network 0.0.0.0C 200.1.2.0/24 is directly connected, Ethernet1/0C 192.168.4.0/24 is directly connected, Serial0/1C 192.168.2.0/24 is directly connected, Serial0/0D* 0.0.0.0/0 [90/2681856] via 192.168.4.1, 00:00:05, Serial0/1b)R3的拓扑表:R3#sh ip eigrp topologyIP-EIGRP Topology Table for AS(100)/ID(200.1.2.254)Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply, r - reply Status, s - sia StatusP 0.0.0.0/0, 1 successors, FD is 2681856via 192.168.4.1 (2681856/2169856), Serial0/1P 192.168.4.0/24, 1 successors, FD is 2169856via Connected, Serial0/1P 200.1.2.0/24, 1 successors, FD is 281600via Connected, Ethernet1/0该实验说明,当R2和R3链路正常是,通过R3去往PC1的数据包不通过R4,只有当R2、R3间链路出现故障,默认路由才启用。
RIP与EIGRP路由协议实验指导
步骤二:路由器的基本配置(cont.)
2)R2的配置
Router>enable
Router#configure terminal
R2(config)#no ip domain-lookup
R2(config)#line console 0
步骤五:测试路由是否生效----观察 路由表和机器的连通性情况(cont.) 5)结论 通过观察两路由器的路由表和两台机
器与直连及非直连路由器的连通情况, 发现RIP协议在此种情况下并没有生效。
步骤六:修改RIP发布的直连网络为 更具体的网络号
1)R1上的修改以及修改后的路由表: R1(config)#no router rip R1(config)#router rip R1(config-router)#network 10.1.1.0
R2(config-line)#logging synchronous
R2(config-line)#exec-timeout 0 0 Router(config)#hostname R2
步骤三:路由器的接口IP配置
1)R1的配置: R1(config)#interface serial 0/0 R1(config-if)#ip address 172.16.1.1 255.255.255.0 R1(config-if)#clock rate 64000 R1(config-if)#no shutdown
实验要求:在RIPv1和EIGRP中将两个相同主类网络的不同子网(10.1.1.0/24和10.1.2.0/24 )由另一个主类网络(172.16.1.0/24)分割时,要求能学到对端网络,并保持全网全通。
rip、eigrp、ospf重发布
在前面已经做个了一个简单的路由重发布实验,这一次呢增加一点难度。
实验的拓扑图在附件中的,还有简单的说明。
实验环境:4台路由器,三台主机,ip为top中分配的。
实验概要:在网络中运行了不同的路由协议,那么两个运行了不同的路由协议的路由器是不能够交换路由表的,这样网络中的每一个路由器都不能拥有整个网络的路由路径,所以这里我们就用到了路由重发布技术。
router0的配置好下:Router#show running-configBuilding configuration...Current configuration : 1003 bytes!version 12.2no service password-encryption!hostname Router!!!!!ip ssh version 1!!interface FastEthernet0/0no ip addressduplex autospeed autoshutdown!interface FastEthernet0/1no ip addressduplex autospeed autoshutdown!interface Serial1/0ip address 11.0.0.1 255.255.255.252clock rate 64000 ###在dce设备上封装时钟频率interface Serial1/1ip address 10.0.0.2 255.255.255.252clock rate 64000!interface Serial1/2ip address 12.0.0.1 255.255.255.252clock rate 64000!interface Serial1/3no ip addressshutdown!router eigrp 10redistribute rip metric 1544 5 255 1 1500redistribute ospf 11 metric 1544 5 255 1 1500network 10.0.0.0 0.0.0.3no auto-summary!router ospf 11 ########在发布为ospf时不配置metric log-adjacency-changesredistribute rip subnetsredistribute eigrp 10 subnetsnetwork 11.0.0.0 0.0.0.3 area 0!router ripversion 2redistribute eigrp 10 metric 2redistribute ospf 11 metric 3network 12.0.0.0no auto-summary ########不要忘了这个命令,取消自动汇总ip classless!!!!!line con 0line vty 0 4login!!end在router2路由器上要配置的就是让直连的两个网络运行在eigrp 10 上,并对相应的串口和以太网口配置ip地址。
路由协议rip和eigrp
路由RIP协议一、网络拓扑图二、IP规划三、交换机和路由器相关配置命令1.交换机配置Vlana.交换机swhitch1Switch(config)#int vlan 10Switch(config-if)#no shutdownSwitch(config)#int range fa 0/1-24Switch(config-if-range)#switchport access vlan 10b.交换机swhitch2Switch(config)#int vlan 20Switch(config-if)#no shutdownSwitch(config)#int range fa 0/1-24Switch(config-if-range)#switchport access vlan 20c.交换机swhitch3Switch(config)#int vlan 30Switch(config-if)#no shutdownSwitch(config)#int range fa 0/1-24Switch(config-if-range)#switchport access vlan 30d.交换机swhitch4Switch(config)#int vlan 40Switch(config-if)#no shutdownSwitch(config)#int range fa 0/1-24Switch(config-if-range)#switchport access vlan 402.路由器的端口配置以及路由协议a.(1)路由器Router 1端口配置Router(config)#interface FastEthernet0/0Router(config-if)#ip address 192.168.10.254 255.255.255.0 Router(config-if)#no shutdownRouter(config)#interface FastEthernet0/1Router(config-if)#ip address 192.168.20.254 255.255.255.0 Router(config-if)#no shutdownRouter(config)#interface Serial0/0/0Router(config-if)#ip address 211.10.10.1 255.255.255.252 Router(config-if)#no shutdownRouter(config)#interface Serial0/0/1Router(config-if)#ip address 211.10.10.9 255.255.255.252 Router(config-if)#no shutdown(2)路由器Router 1路由协议Router(config)#router ripRouter(config-router)#network 192.168.10.0Router(config-router)#network 192.168.20.0Router(config-router)#network 211.10.10.0b.(1)路由器Router 2端口配置Router(config)#interface Serial0/0/0Router(config-if)#ip address 211.10.10.2 255.255.255.252 Router(config-if)#clock rate 2000000Router(config-if)#no shutdownRouter(config)#interface Serial0/0/1Router(config-if)#ip address 211.10.10.5 255.255.255.252 Router(config-if)#clock rate 2000000Router(config-if)#no shutdownRouter(config)#interface FastEthernet0/0Router(config-if)#ip address 192.168.10.254 255.255.255.0 Router(config-if)#no shutdown(2)路由器Router 2路由协议Router(config)#router ripRouter(config-router)#network 211.10.10.0Router(config-router)#network 192.168.30.0c.(1)路由器Router 3端口配置Router(config)#interface Serial0/0/0Router(config-if)#ip address 211.10.10.10 255.255.255.252 Router(config-if)#clock rate 2000000Router(config-if)#no shutdownRouter(config)#interface Serial0/0/1Router(config-if)#ip address 211.10.10.10 255.255.255.252 Router(config-if)#clock rate 2000000Router(config-if)#no shutdown(2)路由器Router 3路由协议Router(config)#router ripRouter(config-router)#network 211.10.10.0d.(1)路由器Router 4端口配置Router(config)#interface Serial0/0/0Router(config-if)#ip address 211.10.10.14 255.255.255.252 Router(config-if)#no shutdownRouter(config)#interface Serial0/0/1Router(config-if)#ip address 211.10.10.6 255.255.255.252 Router(config-if)#no shutdown(2)路由器Router 4路由协议Router(config)#router ripRouter(config-router)#network 211.10.10.0Router(config-router)#network 192.168.40.0思科路由EIGRP协议一、网络拓扑图二、IP规划三、交换机和路由器相关配置命令1.交换机配置Vlana.交换机swhitch1Switch(config)#int vlan 10Switch(config-if)#no shutdownSwitch(config)#int range fa 0/1-24Switch(config-if-range)#switchport access vlan 10b.交换机swhitch2Switch(config)#int vlan 20Switch(config-if)#no shutdownSwitch(config)#int range fa 0/1-24Switch(config-if-range)#switchport access vlan 20c.交换机swhitch3Switch(config)#int vlan 30Switch(config-if)#no shutdownSwitch(config)#int range fa 0/1-24Switch(config-if-range)#switchport access vlan 30d.交换机swhitch4Switch(config)#int vlan 40Switch(config-if)#no shutdownSwitch(config)#int range fa 0/1-24Switch(config-if-range)#switchport access vlan 402.路由器的端口配置以及路由协议a.(1)路由器Router 1端口配置Router(config)#interface FastEthernet0/0Router(config-if)#ip address 192.168.10.254 255.255.255.0Router(config-if)#no shutdownRouter(config)#interface FastEthernet0/1Router(config-if)#ip address 192.168.20.254 255.255.255.0Router(config-if)#no shutdownRouter(config)#interface Serial0/0/0Router(config-if)#ip address 211.10.10.1 255.255.255.252Router(config-if)#no shutdownRouter(config)#interface Serial0/0/1Router(config-if)#ip address 211.10.10.9 255.255.255.252Router(config-if)#no shutdown(2)路由器router1的路由协议配置Router(config)#router eigrp 10Router(config-router)#no auto-summaryRouter(config-router)#network 211.10.10.0 255.255.255.252 Router(config-router)#network 211.10.10.8 255.255.255.252 Router(config-router)#network 192.168.10.0 255.255.255.0 Router(config-router)#network 192.168.20.0 255.255.255.0b.(1)路由器Router 2的端口配置Router(config)#interface Serial0/0/0Router(config-if)#ip address 211.10.10.2 255.255.255.252Router(config-if)#clock rate 2000000Router(config-if)#no shutdownRouter(config)#interface Serial0/0/1Router(config-if)#ip address 211.10.10.5 255.255.255.252Router(config-if)#clock rate 2000000Router(config-if)#no shutdownRouter(config)#interface FastEthernet0/0Router(config-if)#ip address 192.168.10.254 255.255.255.0Router(config-if)#no shutdown(2)路由器router2的路由协议配置Router(config)#router eigrp 10Router(config-router)#no auto-summaryRouter(config-router)#network 211.10.10.0 255.255.255.252 Router(config-router)#network 211.10.10.4 255.255.255.252 Router(config-router)#network 192.168.10.0 255.255.255.0c.(1)路由器Router 3的端口配置Router(config)#interface Serial0/0/0Router(config-if)#ip address 211.10.10.10 255.255.255.252Router(config-if)#clock rate 2000000Router(config-if)#no shutdownRouter(config)#interface Serial0/0/1Router(config-if)#ip address 211.10.10.10 255.255.255.252Router(config-if)#clock rate 2000000Router(config-if)#no shutdown(2)路由器Router 3的路由协议配置Router(config)#router eigrp 10Router(config-router)#no auto-summaryRouter(config-router)#network 211.10.10.4 255.255.255.252 Router(config-router)#network 211.10.10.12 255.255.255.252 Router(config-router)#network 192.168.40.0 255.255.255.0d.(1)路由器Router 4的端口配置Router(config)#interface Serial0/0/0Router(config-if)#ip address 211.10.10.14 255.255.255.252Router(config-if)#no shutdownRouter(config)#interface Serial0/0/1Router(config-if)#ip address 211.10.10.6 255.255.255.252Router(config-if)#no shutdown(2)路由器Router 4的路由协议配置Router(config)#router eigrp 10Router(config-router)#no auto-summaryRouter(config-router)#network 211.10.10.8 255.255.255.252 Router(config-router)#network 211.10.10.12 255.255.255.252。
EIGRP 协议的配置
【实验内容】
配置EIGRP协议
【实验环境】
1、硬件环境
路由器4 台,同步串行线3 条
2、软件环境
WindowsXP 操作系统、pcaket tracer 仿真软件3、拓扑结构图
【实验步骤】
1、配置并打开各路由器的IP 及时钟频率
2、配置路由协议EIGRP
3、测试网络连通性
4、查看路由协议、路由表、邻居表和拓扑表
1) 查看路由协议R1#show ip protocols
2) 查看路由表R1#show ip route
3) 查看eigrp 邻居表R2#show ip eigrp neighbors
【实验总结】
通过本实验我们掌握了EIGRP的基本配置,怎样启动EIGRP路由进程,如何进行查看邻居表、路由协议以及路由表的方法和相关信息。
了解到EIGRP是一种混合型的路由协议,具有链路状态和距离矢量路由协议的优点,能够快速收敛和易于配置等优点。
本实验为我们以后的学习打下了坚实的基础。
034.配置EIGRP路由协议
- Displays the neighbors discovered by IP EIGRP - Displays the IP EIGRP topology table - Displays current EIGRP entries in the routing table - Displays the parameters and current state of the active routing protocol process - Displays the number of IP EIGRP packets sent and received
EIGRP 使用综合开销来选择最佳路径! 使用综合开销来选择最佳路径!
Cisxo Education Solution 5
Configuring EIGRP
2000, Cisco Systems, Inc.
6-6
Summarizing EIGRP Routes
192.168.4.2 172.16.1.0
Cisxo Education Soution2EIGRP 支持不同的网络拓扑
D A
Rest of the Core
B
S0
C
Frame Relay
E
S1
F
G
EIGRP supports
H
– 多播(LANs) – Point-to-point (HDLC) – 非广播式多路访问 (Frame Relay)
1 Class B - Public 1 Class C - Private
Autonomous System 400
HQ
Rest of Core
A
RIP和EIGRP的缺省路由重分发
一.RIP①重分发静态缺省路由ip route 0.0.0.0 0.0.0.0 s1/0router ripversion 2no auto-summaryredistribute connected②使用命令default-information originaterouter ripversion 2no auto-summarydefault-information originate //与OSPF不同,RIP在没有缺省路由的情况下也可以向其他路由器通告一条缺省路由,另外后面没有always参数③使用命令ip default-networkrouter ripversion 2no auto-summary全局配置模式下ip default-network 1.0.0.0 //后面所指定的网络为主类网络,不能是子网,否则不起作用(不管是否开启汇总).并且所指网络不用加入RIP进程,而EIGRP则必须加入进程。
拓扑图如上R1上有一个环回口loopback0:1.1.1.1/24R1和R2之间的网段为192.168.12.0/24R2和R3之间的网段为192.168.23.0/24R1关键配置如下:router ripversion 2network 192.168.12.0 //未将LOOPBACK0口加入RIP进程no auto-summaryip default-network 1.0.0.0查看R1路由表:R1#sh ip routeGateway of last resort is not set //没有指定最后可选网关,因为R1就是到缺省网络的网关C 192.168.12.0/24 is directly connected, Serial1/0* 1.0.0.0/24 is subnetted, 1 subnetsC 1.1.1.0 is directly connected, Loopback03.0.0.0/24 is subnetted, 1 subnetsR 3.3.3.0 [120/2] via 192.168.12.2, 00:00:03, Serial1/0R 192.168.23.0/24 [120/1] via 192.168.12.2, 00:00:03, Serial1/0查看R2路由表:R2#sh ip routeGateway of last resort is 192.168.12.1 to network 0.0.0.0 //在RIP里,R1上配置的命令ipdefault-network会使R1把0.0.0.0作为缺省路由通告,而不是命令ip default-network所指定的网络。
解析RIP、IGRP、EIGRP与OSPF
【原创】头点什么专题系列 - 解析RIP、IGRP、EIGRP与OSPF实验:解析RIP、IGRP、EIGRP与OSPFSPOTO CCNA实验拓扑:首先,必须记住一些概念以及它们的潜在关系:1.有类的路由:即网络中所有主机(结点)都使用已存在的相同的子网掩码。
2.无类的内部域路由(CIDR):他们在某个成块的区域中提供地址,即常说的VLSM。
3.不连续的网络:将两个或更多的有类网络的子网通过不同的有类网络连接在一起的网络实验1. 配制连续网络中的无类路由IP地址表:配制RIPv1R1(config)#router ripR1(config-router)#netw 192.168.10.0R2(config)#router ripR2(config-router)#netw 192.168.10.0R3(config)#router ripR3(config-router)#netw 192.168.10.0R1#sh ip route//RIPv1在路由器R1上的输出:R2#sh ip route//在路由器R2上的输出://对比上面两张输出表,很明显R1学到了R2直连的/30的子网,而R2里没有R1直连的/28的子网,说明RIPv1面对连续网络的无类路由,只学习与本路由器直连网段掩码相匹配的子网信息。
配制RIPv2R1(config)#router ripR1(config-router)#version 2R2(config)#router ripR2(config-router)#version 2R3(config)#router ripR3(config-router)#version 2R1#sh ip route//RIPv2在路由器R1上的输出://第一行/27就出现了,而/30也在第三行出现,说明RIPv2面对这类网络时,路由到了所有的子网信息。
配制IGRPR1\R2\R3(config)#no router rip \\分别在三个路由器上删除RIP。
EIGRP 路由协议的配置
EIGRP 路由协议的配置一.实验目的掌握路由器EIGRP 路由协议的配置方法。
二.实验要点通过对路由器A和路由器B启用EIGRP路由协议,使路由器A可Ping通路由器B所连的各个网络,反之,亦然。
三.实验设备路由器Cisco 2621两台,交换机Cisco 2950两台,带有网卡的工作站PC 至少两台。
四.实验环境S0/0:10.0.0.1/24S0/0:10.0.0.2/24F0/0:192.168.0.1/24 F0/0:192.168.1.1/24Host A Host B IP Address:192.168.0.2/24 IP Address:192.168.1.2/24Default Gateway:192.168.0.1 Default Gateway:192.168.1.1图13 EIGRP 路由协议的配置五.实验步骤1. 如图对路由器A 及路由器B 的各个接口配置好IP地址l 在路由器A (假设为DCE 端)上router>enrouter#conf trouter(config)#hostname RouterARouterA(config)#int s0/0RouterA(config-if)#ip add 10.0.0.1 255.255.255.0RouterA(config-if)#cl ra 64000RouterA(config-if)#no shRouterA(config)#int f0/0RouterA(config-if)#ip add 192.168.0.1 255.255.255.0RouterA(config-if)#no shRouterA(config-if)#exitl 在路由器B (假设为DTE 端)上router>enrouter#conf trouter(config)#hostname RouterBRouterB(config)#int s0/0RouterB(config-if)#ip add 10.0.0.2 255.255.255.0RouterB(config-if)#no shRouterB(config)#int f0/0RouterB(config-if)#ip add 192. 168.1.1 255.255.255.0RouterB(config-if)#no shRouterB(config-if)#exit实验结果:a. 在路由器A 上是否能ping 通路由器B 的串口S0/0 (10.0.0.2)b. 在路由器A 上是否能ping 通路由器B 的以太口F0/0 (192.168.1.1)2. 在路由器A 和路由器B 上分别配置EIGRP 路由协议在路由器A 上: RouterA (config)#router eigrp 100RouterA(config-router)# net 10.0.0.0RouterA(config-router)# net 192.168.0.0在路由器B 上: RouterB (config)# router eigrp 100RouterB(config-router)# net 10.0.0.0RouterB(config-router)# net 192.168.1.0实验结果:a. 在路由器A 上是否能ping 通路由器B 的串口S0/0 (10.0.0.2)b. 在路由器A 上是否能ping 通路由器B 的以太口F0/0 (192.168.1.1)3. 在路由器A 与路由器B 上监测和诊断EIGRP 路由协议。
讨论RIP。EIGRP。OSPF关于管理距离
讨论RIP。
EIGRP。
OSPF关于管理距离1.基本配置2.接⼝配置3.进⾏直连ping测试4.在R1 R2之间运⾏RIP5.在R2 R3之间运⾏EIGRP6.在R3 R4之间运⾏OSPF7.查看路由表(因为没有做路由重分布,所以它们之间的路由表都残缺。
)8.先在R1上向外⽹添加⼀条缺省路由(向外添加添加缺省路由后,只有出去的包,没有回来的,所以要做⼀条重分布将缺省路由引进来)9.将缺省路由引进到RIP中10.再查看路由表(因为R2 R3之间没有做重分布,所以R3R4不能学习到缺省路由。
)11.在R2上做重分布12.查看路由表(学习到了192.168.23.0/24的条⽬)(R2没有变化是因为,所有的都是它的直连)(重分布后,R3学习到了R1 R2的路有信息。
)(R4没有学习到是因为在R3 上没有做⽔平分割。
)13.在R3上做重分布(在将EIGRP引⼊到OSPF中时,没有写metric直是因为OSPF 引⼊其他协议时默认为20。
)14.再查看路由表(R4没有学习到默认路由,要向使R4与外⽹通信,就必须在R3上注⼊默认路由。
)15.在R3上注⼊默认路由16.看R4的路由表(这时R4的路由表全了)(可以与外⽹通信)17.(在R3上可以看到,从外部学习到的路由条⽬默认是170,但是可以根据⼈⼯⼿动修改)在R3上修改外部管理距离18.查看R3路由表(外部学习到的路由条⽬管理距离变为140,但R4上学习到的没变是因为R3的⼀个接⼝和它在同⼀区域。
)19.实验完成!。
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
《作业:配置RIPv2与EIGRP》一、实验拓扑二、实验要求1、按照实验拓扑配置IP地址。
2、配置RIPv2,实现总部与分部内网之间能够相互通信。
3、配置EIGRP,实现总部与分部内网之间能够相互通信。
三、实验步骤配置各路由器所需IP:R1的配置:R1(config-if)#ip add 192.168.1.1 255.255.255.0R1(config-if)#no shuR1(config-if)#int f0/0R1(config-if)#ip add 10.2.2.1 255.255.255.0R1(config-if)#no shuR1(config)#int f0/1R1(config-if)#ip add 10.3.3.1 255.255.255.252R1(config-if)#no shuR1#show pint briefInterface IP-Address OK? Method Status Protocol FastEthernet0/0 10.2.2.1 YES manual up up FastEthernet0/1 10.3.3.1 YES manual up up Loopback0 192.168.1.1 YES manual up up R2的配置:R2(config)#int lo 1R2(config-if)#ip add 192.168.2.1 255.255.255.0R2(config-if)#no shuR2(config-if)#int f0/0R2(config-if)#ip add 10.2.2.2 255.255.255.252R2(config-if)#no shuR2#show pint briefInterface IP-Address OK? Method Status ProtocolFastEthernet0/0 10.2.2.2 YES manual up up FastEthernet0/1 unassigned YES unset administratively down down Loopback1 192.168.2.1 YES manual up upR3的配置:R3(cinfig)#int lo 2R3(config-if)#ip add 192.168.3.1 255.255.255.0R3(config-if)#no shuR3(config-if)#int f0/1R3(config-if)#ip add 10.3.3.2 255.255.255.252R3(config-if)#no shuR3(config-if)#endR3#show pint briefInterface IP-Address OK? Method Status Protocol FastEthernet0/0 unassigned YES unset administratively down down FastEthernet0/1 10.3.3.2 YES manual up up Loopback2 192.168.3.1 YES manual up up测试两直连路由间是否能通:R1#ping 10.2.2.2Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 10.2.2.2, timeout is 2 seconds:.!!!!Success rate is 80 percent (4/5), round-trip min/avg/max = 8/12/20 msR1#ping 10.3.3.2Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 10.3.3.2, timeout is 2 seconds:.!!!!Success rate is 80 percent (4/5), round-trip min/avg/max = 8/12/16 ms配置R.I.P.v2,实现所有网段之间相互通信:R2:R2(config)#router ripR2(config-router)#v 2R2(config-router)#no auR2(config-router)#no auto-summaryR2(config-router)#net 192.168.2.0R2(config-router)#net 10.2.2.0R2(config-router)#endR2#show run | section router riprouter ripversion 2network 10.0.0.0network 192.168.2.0no auto-summaryR2#show ip protocolsRouting Protocol is “rip”Outgoing update filter list for all interfaces is not setIncoming update filter list for all interfaces is not setSending updates every 30 seconds, next due in 16 secondsInvalid after 180 seconds, hold down 180, flushed after 240 Redistributing: ripDefault version control: send version 2, receive version 2Interface Send Recv Triggered RIP Key-chain FastEthernet0/0 2 2Loopback1 2 2Automatic network summarization is not in effectMaximum path: 4Routing for Networks:10.0.0.0192.168.2.0Routing Information Sources:Gateway Distance Last UpdateDistance: (default is 120)R1:R1(config)#router ripR1(config-router)#v 2R1(config-router)#no auR1(config-router)#no auto-summaryR1(config-router)#net 192.168.1.0R1(config-router)#net 10.2.2.0R1(config-router)#net 10.3.3.0R1(config-router)#endR1#show run | section router riprouter ripversion 2network 10.0.0.0network 192.168.1.0no auto-summaryR1#show ip protocolsRouting Protocol is “rip”Outgoing update filter list for all interfaces is not setIncoming update filter list for all interfaces is not setSending updates every 30 seconds, next due in 25 secondsInvalid after 180 seconds, hold down 180, flushed after 240 Redistributing: ripDefault version control: send version 2, receive version 2Interface Send Recv Triggered RIP Key-chain FastEthernet0/0 2 2FastEthernet0/1 2 2Loopback0 2 2Automatic network summarization is not in effectMaximum path: 4Routing for Networks:10.0.0.0192.168.1.0Routing Information Sources:Gateway Distance Last Update10.2.2.2 120 00:00:01Distance: (default is 120)R3:R3(config)#router ripR3(config-router)#v 2R3(config-router)#no auto-summaryR3(config-router)#net 192.168.3.0R3(config-router)#net 10.3.3.0R3(config-router)#endR3#show run | section router riprouter ripversion 2network 10.0.0.0network 192.168.3.0no auto-summaryR3#show ip protocolsRouting Protocol is “rip”Outgoing update filter list for all interfaces is not setIncoming update filter list for all interfaces is not setSending updates every 30 seconds, next due in 21 secondsInvalid after 180 seconds, hold down 180, flushed after 240 Redistributing: ripDefault version control: send version 2, receive version 2Interface Send Recv Triggered RIP Key-chain FastEthernet0/1 2 2Loopback2 2 2Automatic network summarization is not in effectMaximum path: 4Routing for Networks:10.0.0.0192.168.3.0Routing Information Sources:Gateway Distance Last Update10.3.3.1 120 00:00:11Distance: (default is 120)检查R1,2,3的路由表:R3#show ip route rip10.0.0.0/30 is subnetted, 2 subnetsR 10.2.2.0 [120/1] via 10.3.3.1, 00:00:16, FastEthernet0/1R 192.168.1.0/24 [120/1] via 10.3.3.1, 00:00:16, FastEthernet0/1R 192.168.2.0/24 [120/2] via 10.3.3.1, 00:00:16, FastEthernet0/1R2#show ip route rip10.0.0.0/30 is subnetted, 2 subnetsR 10.3.3.0 [120/1] via 10.2.2.1, 00:00:11, FastEthernet0/0R 192.168.1.0/24 [120/1] via 10.2.2.1, 00:00:11, FastEthernet0/0R 192.168.3.0/24 [120/2] via 10.2.2.1, 00:00:11, FastEthernet0/0R1#show ip route ripR 192.168.2.0/24 [120/1] via 10.2.2.2, 00:00:05, FastEthernet0/0R 192.168.3.0/24 [120/1] via 10.3.3.2, 00:00:00, FastEthernet0/1测试所有网段间能否通信:R2#ping 10.3.3.2Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 10.3.3.2, timeout is 2 seconds:!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 20/20/24 msR2#ping 10.3.3.2 source 192.168.2.1Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 10.3.3.2, timeout is 2 seconds: Packet sent with a source address of 192.168.2.1!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 20/23/28 ms R2#ping 192.168.3.1 source 192.168.2.1Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 192.168.3.1, timeout is 2 seconds: Packet sent with a source address of 192.168.2.1!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 28/37/60 msR1路由器:R1#ping 192.168.2.1Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 192.168.2.1, timeout is 2 seconds: !!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 4/8/12 ms R1#ping 192.168.3.1Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 192.168.3.1, timeout is 2 seconds: !!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 8/12/24 msR1#ping 192.168.3.1 source 192.168.1.1Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 192.168.3.1, timeout is 2 seconds: Packet sent with a source address of 192.168.1.1!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 4/8/12 msR1#ping 192.168.2.1 source 192.168.1.1Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 192.168.2.1, timeout is 2 seconds: Packet sent with a source address of 192.168.1.1!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 12/18/20 ms配置EIGRP先删Rip:R1(config)#no router ripR1(config)#do show ip proR1(config)#R2(config)#no router ripR2(config)#do show ip proR2(config)#R3(config)#no router ripR3(config)#R3(config)#do show ip proR3(config)#各路由器RIP删除成功删除RIP后,配置EIGRPR1:R1(config)#router eigrp 100R1(config-router)#no auR1(config-router)#no auto-summaryR1(config-router)#net 192.168.1.1 0.0.0.0R1(config-router)#net 10.2.2.1 0.0.0.0R1(config-router)#endR1#show run | section router eigrprouter eigrp 100network 10.2.2.1 0.0.0.0network 10.3.3.1 0.0.0.0network 192.168.1.1 0.0.0.0no auto-summaryR1#show ip eigrp interfaceIP-EIGRP interfaces for process 100Xmit Queue Mean Pacing Time Multicast Pending Interface Peers Un/Reliable SRTT Un/Reliable Flow Timer RoutesLo0 0 0/0 0 0/1 0 0 Fa0/0 0 0/0 0 0/1 0 0 Fa0/1 0 0/0 0 0/1 0 0R1#show ip proRouting Protocol is "eigrp 100"Outgoing update filter list for all interfaces is not setIncoming update filter list for all interfaces is not setDefault networks flagged in outgoing updatesDefault networks accepted from incoming updatesEIGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0EIGRP maximum hopcount 100EIGRP maximum metric variance 1Redistributing: eigrp 100EIGRP NSF-aware route hold timer is 240sAutomatic network summarization is not in effectMaximum path: 4Routing for Networks:10.2.2.1/3210.3.3.1/32192.168.1.1/32Routing Information Sources:Gateway Distance Last UpdateDistance: internal 90 external 170R2的配置R2(config-router)#no auto-summaryR2(config-router)#net 192.168.2.1 0.0.0.0R2(config-router)#net 10.2.2.2 0.0.0.0R2(config-router)#*Mar 1 00:57:59.707: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 10.2.2.1 (FastEthernet0/0) is up: new adjacencyR2(config-router)#endR2#s*Mar 1 00:58:03.239: %SYS-5-CONFIG_I: Configured from console by consoleR2#show run | section router eigrprouter eigrp 100network 10.2.2.2 0.0.0.0network 192.168.2.1 0.0.0.0no auto-summaryR2#show ip eigrp intIP-EIGRP interfaces for process 100Xmit Queue Mean Pacing Time Multicast Pending Interface Peers Un/Reliable SRTT Un/Reliable Flow Timer RoutesLo1 0 0/0 0 0/1 0 0Fa0/0 1 0/0 15 0/1 50 0R2#show ip proRouting Protocol is "eigrp 100"Outgoing update filter list for all interfaces is not setIncoming update filter list for all interfaces is not setDefault networks flagged in outgoing updatesDefault networks accepted from incoming updatesEIGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0EIGRP maximum hopcount 100EIGRP maximum metric variance 1Redistributing: eigrp 100EIGRP NSF-aware route hold timer is 240sAutomatic network summarization is not in effectMaximum path: 4Routing for Networks:10.2.2.2/32192.168.2.1/32Routing Information Sources:Gateway Distance Last Update10.2.2.1 90 00:00:29Distance: internal 90 external 170R3:R3(config-router)#no auto-summaryR3(config-router)#net 192.168.3.1 0.0.0.0R3(config-router)#net 10.3.3.2 0.0.0.0R3(config-router)#*Mar 1 00:59:35.175: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 10.3.3.1 (FastEthernet0/1) is up: new adjacencyR3(config-router)#endR3#*Mar 1 00:59:39.731: %SYS-5-CONFIG_I: Configured from console by consoleR3#show run | section router eigrprouter eigrp 100network 10.3.3.2 0.0.0.0network 192.168.3.1 0.0.0.0no auto-summaryR3#show ip eigrp intIP-EIGRP interfaces for process 100Xmit Queue Mean Pacing Time Multicast Pending Interface Peers Un/Reliable SRTT Un/Reliable Flow Timer RoutesLo2 0 0/0 0 0/1 0 0Fa0/1 1 0/0 11 0/1 50 0R3#show ip proRouting Protocol is "eigrp 100"Outgoing update filter list for all interfaces is not setIncoming update filter list for all interfaces is not setDefault networks flagged in outgoing updatesDefault networks accepted from incoming updatesEIGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0EIGRP maximum hopcount 100EIGRP maximum metric variance 1Redistributing: eigrp 100EIGRP NSF-aware route hold timer is 240sAutomatic network summarization is not in effectMaximum path: 4Routing for Networks:10.3.3.2/32192.168.3.1/32Routing Information Sources:Gateway Distance Last Update10.3.3.1 90 00:00:43Distance: internal 90 external 170检查各路由器间是否建立邻居关系R1#show ip eigrp neighborIP-EIGRP neighbors for process 100H Address Interface Hold Uptime SRTT RTO Q Seq(sec) (ms) Cnt Num1 10.3.3.2 Fa0/1 13 00:01:56 12 200 04 0 10.2.2.2 Fa0/0 12 00:03:31 13 200 0 4 由上可知R1已与R2,R3建立邻居关系检查路由表:R2#show ip route eigrp10.0.0.0/30 is subnetted, 2 subnetsD 10.3.3.0 [90/30720] via 10.2.2.1, 00:06:39, FastEthernet0/0D 192.168.1.0/24 [90/156160] via 10.2.2.1, 00:06:39, FastEthernet0/0D 192.168.3.0/24 [90/158720] via 10.2.2.1, 00:05:04, FastEthernet0/0R2#R1#show ip route eigrpD 192.168.2.0/24 [90/156160] via 10.2.2.2, 00:07:15, FastEthernet0/0D 192.168.3.0/24 [90/156160] via 10.3.3.2, 00:05:39, FastEthernet0/1R3#show ip route eigrp10.0.0.0/30 is subnetted, 2 subnetsD 10.2.2.0 [90/30720] via 10.3.3.1, 00:06:19, FastEthernet0/1D 192.168.1.0/24 [90/156160] via 10.3.3.1, 00:06:19, FastEthernet0/1D 192.168.2.0/24 [90/158720] via 10.3.3.1, 00:06:19, FastEthernet0/1测试所有网段能否通信:R2上测试:R2#ping 10.3.3.2Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 10.3.3.2, timeout is 2 seconds:!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 24/36/40 msR2#ping 10.3.3.2 source 192.168.2.1Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 10.3.3.2, timeout is 2 seconds:Packet sent with a source address of 192.168.2.1!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 24/28/32 msR2#ping 192.168.3.1Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 192.168.3.1, timeout is 2 seconds:!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 20/20/24 msR2#ping 192.168.3.1 source 192.168.2.1Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 192.168.3.1, timeout is 2 seconds: Packet sent with a source address of 192.168.2.1!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 20/26/32 ms R2#ping 192.168.1.1Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 192.168.1.1, timeout is 2 seconds: !!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 8/12/20 ms R2#ping 192.168.1.1 source 192.168.2.1Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 192.168.1.1, timeout is 2 seconds: Packet sent with a source address of 192.168.2.1!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 8/12/20 ms在R1上测试:R1#ping 192.168.2.1Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 192.168.2.1, timeout is 2 seconds: !!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 8/9/12 ms R1#ping 192.168.3.1Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 192.168.3.1, timeout is 2 seconds: !!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 8/10/12 ms R1#ping 192.168.3.1 source 192.168.1.1Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 192.168.3.1, timeout is 2 seconds: Packet sent with a source address of 192.168.1.1!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 16/19/20 ms R1#ping 192.168.2.1 source 192.168.1.1Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to 192.168.2.1, timeout is 2 seconds:Packet sent with a source address of 192.168.1.1!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 16/18/20 ms 保存配置R3#wrBuilding configuration...[OK]R2#wrBuilding configuration...[OK]R1#wrBuilding configuration...[OK]。