EIGRP专题实验2:EIGRP邻居关系建立的条件分析

1:配置地址(略),并配置EIGRP

R1(config)#routereigrp 100

R1(config-router)#noauto-summary

R1(config-router)#net192.168.12.0

R1(config-router)#net10.0.0.0

R2(config)#routereigrp 100

R2(config-router)#noauto-summary

R2(config-router)#net192.168.12.0

R2(config-router)#net192.168.23.0

R2(config-router)#net172.16.0.0

R3(config)#routereigrp 200

R3(config-router)#noauto-summary

R3(config-router)#net192.168.23.0

R3(config-router)#net192.168.0.0

R3(config-router)#net192.168.1.0

2:邻居关系的建立条件—相同的AS号

R2#show ip eigrp neighbors

IP-EIGRPneighbors for process 100

H   Address                 Interface       Hold Uptime   SRTT  RTO  Q  Seq

(sec)         (ms)       Cnt Num

0   192.168.12.1            Fa0/0             13 00:01:18  154  924  0  3

以上显示说明:配置不同AS号的EIGRP路由器不能建立邻居关系。

R3(config)#norouter eigrp 200

R3(config)#routereigrp 100

R3(config-router)#noauto-summary

R3(config-router)#net192.168.23.0

R3(config-router)#net192.168.1.0

R3(config-router)#net192.168.0.0

 

R2#show ip eigrp neighbors

IP-EIGRPneighbors for process 100

H   Address                 Interface       Hold Uptime   SRTT  RTO  Q  Seq

(sec)         (ms)       Cnt Num

1   192.168.23.2            Se1/1             13 00:00:56  167 1002  0  6

0   192.168.12.1            Fa0/0             11 00:05:08  146  876  0  3

3:邻居关系的建立条件—相同的K值

R3(config)#routerei 100

R3(config-router)#metricweights 0 1 1 1 1 1

R2#show ip protocols

RoutingProtocol is "eigrp 100"

Outgoing update filter list for allinterfaces is not set

Incoming update filter list for allinterfaces is not set

Default networks flagged in outgoing updates

Default networks accepted from incomingupdates

EIGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0

(以下省略部分输出)

R3(config-router)#

*Jan19 13:02:26.071: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.23.1(Serial1/0) is down: metric changed

R3(config-router)#

*Jan19 13:02:30.447: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.23.1(Serial1/0) is down: K-value mismatch

R2#

*Jan19 13:02:43.263: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.23.2(Serial1/1) is down: K-value mismatch

R2#

*Jan19 13:02:48.015: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.23.2(Serial1/1) is down: K-value mismatch

以上显示说明:EIGRP路由器配置不同的K值,不能建立邻居关系

R3(config)#routerei 100

R3(config-router)#metricweights 0 1 0 1 0 0

R3(config-router)#

*Jan19 13:04:09.495: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.23.1(Serial1/0) is up: new adjacency

R2#

*Jan19 13:04:09.091: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.23.2(Serial1/1) is up: new adjacency

4:邻居关系建立的条件—邻居接口的地址掩码相互包含

R2(config)#interfa0/0

R2(config-if)#shutdown

R2(config-if)#ipadd 192.168.12.2 255.255.255.252

R2(config-if)#noshutdown

R2(config-if)#

*Jan19 13:07:13.099: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.12.1(FastEthernet0/0) is up: new adjacency

R3(config)#inters1/0

R3(config-if)#shutdown

R3(config-if)#ipadd 192.168.23.2 255.255.255.252

R3(config-if)#noshutdown

R3(config-if)#

*Jan19 13:08:32.215: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.23.1(Serial1/0) is up: new adjacency

R1(config-router)#interfa0/0

R1(config-if)#shutdown

R1(config-if)#ipadd 192.168.12.4255.255.255.0

R1(config-if)#noshutdown

R1(config-if)#

*Jan19 13:10:20.563: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.12.2(FastEthernet0/0) is up: new adjacency

R1(config-if)#

*Jan19 13:11:40.191: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.12.2(FastEthernet0/0) is down: retry limit exceeded

R1(config-if)#

*Jan19 13:11:43.151: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.12.2 (FastEthernet0/0)is up: newadjacency

R2(config-if)#

*Jan19 13:10:16.131: IP-EIGRP(Default-IP-Routing-Table:100): Neighbor 192.168.12.4 not on commonsubnet for FastEthernet0/0

R2(config-if)#

*Jan19 13:10:29.763: IP-EIGRP(Default-IP-Routing-Table:100): Neighbor 192.168.12.4 not on commonsubnet for FastEthernet0/0

以上显示说明:在EIGRP建立邻居关系,无论是点到点网络还是广播网络,只要和邻居接口的地址掩码相互包含即可,这一点要注意区别OSPF的现象。

R1(config-router)#interfa0/0

R1(config-if)#ipadd 192.168.12.1 255.255.255.0

R1(config-if)#

*Jan19 13:13:47.659: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.12.2(FastEthernet0/0) is down: address changed

R1(config-if)#

*Jan19 13:13:50.131: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.12.2 (FastEthernet0/0)is up: newadjacency

5:邻居关系建立的条件—邻居接口的计时器不一定要相同,但要匹配

R1(config)#interfa0/0

R1(config-if)#shutdown

R1(config-if)#iphello-interval ei 100 1

R1(config-if)#iphold-time ei 100 3

R1(config-if)#noshutdown

R1(config-if)#

*Jan19 13:22:00.447: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.12.2(FastEthernet0/0) is up: new adjacency

以上显示说明:在适当的计时器下,邻居计时器不同,也能够建立邻居关系。

R1(config)#interfa0/0

R1(config-if)#shutdown

R1(config-if)#iphello-interval ei 100 1

R1(config-if)#iphold-time ei 100 15

R2(config)#interfa0/0

R2(config-if)#iphello-interval ei 100 5

R2(config-if)#iphold-time ei 100 3

R1(config)#interfa0/0

R1(config-if)#noshutdown

R1(config-if)#

*Jan19 13:27:29.247: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.12.2(FastEthernet0/0) is up: new adjacency

R1(config-if)#

*Jan19 13:27:33.231: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.12.2(FastEthernet0/0) is down: holding time expired

*Jan19 13:27:33.883: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.12.2(FastEthernet0/0) is up: new adjacency

R1(config-if)#

*Jan19 13:27:37.235: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.12.2(FastEthernet0/0) is down: holding time expired

R1(config-if)#

*Jan19 13:27:38.323: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.12.2(FastEthernet0/0) is up: new adjacency

R2(config-if)#

*Jan19 13:27:28.723: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.12.1(FastEthernet0/0) is up: new adjacency

R2(config-if)#

*Jan19 13:27:32.811: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.12.1(FastEthernet0/0) is down: Interface Goodbye received

*Jan19 13:27:33.455: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.12.1 (FastEthernet0/0)is up: newadjacency

R2(config-if)#

*Jan19 13:27:36.863: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.12.1(FastEthernet0/0) is down: Interface Goodbye received

*Jan19 13:27:37.823: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.12.1(FastEthernet0/0) is up: new adjacency

R2(config-if)#

*Jan19 13:27:41.979: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 100: Neighbor 192.168.12.1(FastEthernet0/0) is down: Interface Goodbye received

 

以上显示说明:邻居计时器不同,邻居关系也可能有问题。

时间: 2024-10-11 11:26:04

EIGRP专题实验2:EIGRP邻居关系建立的条件分析的相关文章

CCNP路由专题实验之EIGRP篇,51微博首发!敬请关注连载!

目  录 实验1:EIGRP基本配置和常用show命令复习.. 1 实验2:EIGRP邻居关系建立的条件分析.. 6 实验3:EIGRP多AS号问题研究.. 11 实验4:EIGRP路由条目类型与管理距离修改.. 15 实验5:EIGRP自动汇总和手工汇总.. 19 实验6:EIGRP路由泄露.. 22 实验7:EIGRP浮动汇总路由.. 23 实验8:EIGRP等价负载均衡.. 26 实验9:EIGRP非等价负载均衡.. 29 实验10:EIGRP默认路由.. 32 实验11:EIGRP st

Cisco: ospf邻居关系建立不成功的因素

两端的hello interval 和 dead time 不匹配.可以用show ip ospf interface XX查看.通常是10/40s或者是30/120s. 两端的掩码不一致.OSPF邻居建立要求两个端口的掩码一致. 两端 的网络类型不一致.网络类型包括point-to-point,Non-broadcast MultiAccess,Broadcast MultiAccess,point-to-multipoint.可以通过show ip ospf interface 查看端口所属

EIGRP专题实验3:EIGRP多AS号问题研究

1:配置地址(略),并配置EIGRP多个AS R1(config)#routereigrp 100 R1(config-router)#noauto-summary R1(config-router)#net192.168.12.0 R1(config-router)#net10.0.0.0 R2(config)#routereigrp 100 R2(config-router)#noauto-summary R2(config-router)#net192.168.12.0 R2(config

EIGRP专题实验1:EIGRP基本配置和常用show命令复习

实验配置: 1:配置接口地址 R1(config)#interfa0/0 R1(config-if)#ipadd 192.168.12.1 255.255.255.0 R1(config-if)#noshut R1(config-if)#interlo 0 R1(config-if)#ipadd 10.1.0.1 255.255.255.0 R1(config-if)#interlo 1 R1(config-if)#ipadd 10.1.1.1 255.255.255.0 R2(config)#

OSPF路由协议建立邻居关系、邻接关系和路由汇聚过程中的表类型、包类型及状态类型

邻居关系 OSPF邻居关系的建立,是通过协商Hello包中的参数来实现的.在Init状态,收到邻居的Hello包,并把其当做邻居,将其router-id添加在自己的Hello包中发送,邻居收到后,双方建立two-way状态,形成稳定的邻居关系.邻居关系建立之后,形成邻居表. 邻接关系 OSPF邻接关系的建立,始于Exstart状态,在Full状态,维持稳定的邻接关系.邻接关系的建立是在邻居关系建立的基础之上. 邻接关系区别于邻居关系,邻居关系是只要Hello包中的参数协商成功,就建立.而邻接关系

EIGRP邻居关系

1.实验目的 通过EIGRP邻居建立的相关实验,学习到如何调整EIGRP的HELLO和HOLD时间,使用 被动接口阻止不必要的邻居关系,认证EIGRP邻居,静态邻居的配置以及哪些参数影响EIGRP 邻居建立. 2. 实验拓扑 3. 实验步骤 1. 首先在R1,R2,R3相关接口配置好IP地址,并且各自配置一个环回口,R1的环 回口loopback 0地址为1.1.1.1/24,R2的环回口loopback 0地址为2.2.2.2/24,依 次类推.注意保证直连接口的连通性. 2. 在R1和R2上

2、EIGRP配置实验1

1.实验拓扑图 2.EIGRP工作流程 路由器A发出hello包,路由器B收到路由器A的hello包后,将其添加到邻居表中. 路由器B发出hello包,路由器A收到路由器B的hello包后,将其添加到邻居表中. 路由器B紧接着发送自己的完整路由表信息退给路由器A,路由器A收到后将其添加到拓扑表中,并回应ACK报文. 路由器A紧接着发送自己的完整路由表信息退给路由器B,路由器B收到后将其添加到拓扑表中,回应ACK报文. 最有路由器A和路由器B将最优的路由器条目添加到路由表中. 3.EIGRP封装

eigrp基本实验1

R1#conf tEnter configuration commands, one per line.  End with CNTL/Z.R1(config)#no ip domain-lookup R1(config)#line console 0R1(config-line)#login% Login disabled on line 0, until 'password' is setR1(config-line)#passR1(config-line)#password 1122334

CCNP第三天 EIGRP综合实验

实验题如图所示:其中R2连R3 R5为快速以太网线,其他均为串线,帧中继默认是富曼斯(全连网状结构),即所有接入的路由之间的PVC都已经打通,所有  要关闭R5和R8的逆向arp功能,来手工配置R5到R8的Map 实验所使用的拓扑为CCNP标准版拓扑图,如下: -----------------------------------------------------------------------------------------------------------------------