启用EIGRP(Enabling EIGRP)

简介:
实验来源:工大瑞普Cisco网络技术论坛

1.按照试验拓扑配置好各台路由器接口IP地址;
2.配置EIGRP:
R1(config)#router eigrp 10           //启用eigrp路由协议,设置自治系统号为10
R1(config-router)#network 10.1.1.0 0.0.0.255 
R1(config-router)#network 10.2.2.0 0.0.0.31
R1(config-router)#network 10.3.3.0 0.0.0.255
R1(config-router)#no auto-summary     //取消自动汇总
R1(config-router)#exit

R2(config)#router eigrp 10
R2(config-router)#network 10.3.3.0 0.0.0.255
R2(config-router)#network 172.16.3.0 0.0.0.255
R2(config-router)#no auto-summary
R2(config-router)#exit

R3(config)#router eigrp 10
R3(config-router)#network 172.16.3.0 0.0.0.255
R3(config-router)#network 172.16.1.0 0.0.0.255
R3(config-router)#network 172.16.2.0 0.0.0.31
R3(config-router)#no auto-summary
R3(config-router)#exit

注:这里的自治系统号10,三台路由器必须相同。
3.使用ping命令验证连通行,这里略。使用show命令查看eigrp的相关信息,例如R1:
R1#show ip route
Codes: C - connected, S - static, 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
       i - 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 route

Gateway of last resort is not set

     172.16.0.0/16 is variably subnetted, 3 subnets, 2 masks
D       172.16.1.0/24 [90/2809856] via 10.3.3.2, 00:00:11, Serial1/1
D       172.16.2.0/27 [90/2809856] via 10.3.3.2, 00:00:11, Serial1/1
D       172.16.3.0/24 [90/2681856] via 10.3.3.2, 00:00:11, Serial1/1
     10.0.0.0/8 is variably subnetted, 3 subnets, 2 masks
C       10.3.3.0/24 is directly connected, Serial1/1
C       10.2.2.0/27 is directly connected, Loopback1
C       10.1.1.0/24 is directly connected, Loopback0

R1#show ip eigrp topology 
IP-EIGRP Topology Table for AS(10)/ID(10.2.2.1)

Codes:  P - Passive, A - Active, U - Update, Q - Query, R - Reply,
       r - reply Status, s - sia Status 

P 10.3.3.0/24, 1 successors, FD is 2169856
        via Connected, Serial1/1
P 10.2.2.0/27, 1 successors, FD is 128256
        via Connected, Loopback1
P 10.1.1.0/24, 1 successors, FD is 128256
        via Connected, Loopback0
P 172.16.0.0/16, 1 successors, FD is 2681856
        via 10.3.3.2 (2681856/2169856), Serial1/1

R1#show ip eigrp neighbors 
IP-EIGRP neighbors for process 10
H   Address                 Interface       Hold Uptime   SRTT   RTO  Q  Seq
                                            (sec)         (ms)       Cnt Num
0   10.3.3.2                Se1/1             11 00:00:37  126   756  0  5

OK,试验完。

















本文转自loveme2351CTO博客,原文链接: http://blog.51cto.com/loveme23/30312,如需转载请自行联系原作者


相关文章
|
3月前
|
存储 负载均衡 网络协议
Cisco-动态路由(EIGRP)
Cisco-动态路由(EIGRP)
|
8月前
|
网络协议
network的使用(DHCP,BGP,OSPF,RIP使用network的异同)
network的使用(DHCP,BGP,OSPF,RIP使用network的异同)
112 0
|
网络协议 网络架构
RIP(Routing Information Protocol,路由信息协议)
RIP是由Xerox公司在20世纪七十年代开发的,最初定义的RFC1058中。每个有RIP功能的路由器在默认情况下每隔30秒利用UDP520端口向与它直连的网络邻居广播(RIP v1)或组播(RIP v2)路由更新。因此,路由器不知道网络的全局情况,如果路由更新在网络上传播慢,将会导致网络收敛较慢,造成路由环路。为了避免路由环路,RIP采用水平分割、毒性逆转、定义最大跳数、触发更新和抑制计时器等机制来避免路由环路。
472 0
RIP(Routing Information Protocol,路由信息协议)
|
网络协议 网络架构
HCL_路由器_OSPF配置
HCL_路由器_OSPF配置
|
网络协议 网络架构
|
算法 网络协议 数据安全/隐私保护
|
网络协议 Shell iOS开发