原标题:"cisco动态路由配置之EIGRP的实例"的相关路由192.168.1.1登录设置教程。来源 - 【WiFi之家网】。
Cisco配置动态路由,可以使用EIGRP(增强型内部网关路由选择协议)进行配置。组网为R1、R2和R3连成一个链式的拓扑。
首先说一下EIGRP支持的功能:
快速收敛:使用DUAL(弥散更新算法)来实现快速收敛。
带宽的有效利用:发送部分、增量的路由更新而不是发送整个路由表,从而实现带宽的有效利用。
支持多个网络层协议:使用独立于协议的模块(PDM)来支持IP、IPX和Appletalk等协议。
支持VLSM(变长子网掩码)和CIDR(无类域间路由)。
这次实例的思路:分别配置各个路由器的端口IP,使用EIGRP 在各自路由器配置所属的网段。
- R1#CONFT
- Enterconfigurationcommands,oneperline.EndwithCNTL/Z.
- R1(config)#intfa0/0
- R1(config-if)#ipadd1.1.1.1255.255.255.0
- R1(config-if)#nosh
- R1(config-if)#exit
- R1(config)#routereigrp?
- <1-65535>Autonomoussystemnumber//自治系统号
- R1(config)#routereigrp10
- R1(config-router)#network1.1.1.00.0.0.255
- R2(config)#intfa0/0
- R2(config-if)#ipadd1.1.1.2255.255.255.0
- R2(config-if)#nosh
- R2(config-if)#exit
- R2(config)#intfa1/0
- R2(config-if)#ipadd2.2.2.2255.255.255.0
- R2(config-if)#nosh
- R2(config-if)#exit
- R2(config)#routereigrp10
- R2(config-router)#network1.1.1.00.0.0.255
- R2(config-router)#network2.2.2.00.0.0.255
- R3(config)#intfa0/0
- R3(config-if)#ipadd2.2.2.3255.255.255.0
- R3(config-if)#nosh
- R3(config-if)#exit
- R3(config)#routereigrp10
- R3(config-router)#network2.2.2.00.0.0.255
配置完成之后,可以通过sh ip eigrp top 查看R1上eigrp的拓扑数据结构:
- R1#shipeigrptopwww.19216811.la
- IP-EIGRPTopologyTableforAS(10)/ID(1.1.1.1)//自治系统号为10
- Codes:P-Passive,A-Active,U-Update,Q-Query,R-Reply,
- r-replyStatus,s-siaStatus
- P1.1.1.0/24,1successors,FDis28160
- viaConnected,FastEthernet0/0
- P2.2.2.0/24,1successors,FDis30720
- via1.1.1.2(30720/28160),FastEthernet0/0
使用命令sh ip route eigrp 查看R1上eigrp学来的路由:
- R1#shiprouteeigrp
- 2.0.0.0/24issubnetted,1subnets
- D2.2.2.0[90/30720]via1.1.1.2,00:25:42,FastEthernet0/0
原创文章,作者:路由器,如若转载,请注明出处:https://www.224m.com/22036.html