EIGRP 修改hello时间间隔

简介:

EIGRP中在T1(1.54Mbps)链路中的hello时间间隔默认为60秒

                 大于T1链路时hello的时间间隔默认为5秒

 
修改间隔的命令为:
interface s0/0
 ip hello-interval eigrp 1 2   其中1为自治域系统号,2为hello时间间隔
 ip hold-time eigrp 1 6,其中1为自治域系统号,6为保持计时器时间

 
查看修改后的配置
R1#show ip eigrp interfaces detail
IP-EIGRP interfaces for process 1

 
                        Xmit Queue   Mean   Pacing Time   Multicast    Pending
Interface        Peers  Un/Reliable  SRTT   Un/Reliable   Flow Timer   Routes
Se0/0              1        0/0       205       0/15         927           0
  Hello interval is 1 sec
  Next xmit serial <none>
  Un/reliable mcasts: 0/0  Un/reliable ucasts: 2/10
  Mcast exceptions: 0  CR packets: 0  ACKs suppressed: 4
  Retransmissions sent: 2  Out-of-sequence rcvd: 0
  Authentication mode is not set
  Use unicast

 
实验配置

 

按照上图配置好借口地址与EIGRP
1.0.0.1 --> 2.0.0.2  是通过fram-relay网络传输,

 
我们可以做如下测试将R2的s0/0接口手动shutdown后,1.0.0.1 --> 2.0.0.2 多长时间能通
测试方法
R1#ping 2.0.0.2 source loopback 0 repeat 1000 timeout 1
Type escape sequence to abort.
Sending 1000, 100-byte ICMP Echos to 2.0.0.2, timeout is 1 seconds:
Packet sent with a source address of 1.0.0.1
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!...!!!!!!!!!!!!!!!!
要求:如果要求在R2的s0/0接口shutdown后5秒内 1.0.0.1 -->2.0.0.2 能够ping通
修改方法:在R1和R2的s0/0接口上做如下配置即可
interface s0/0
 ip hello-interval eigrp 1 1
 ip hold-time eigrp 1 3
其中前面的1为EIGRP的自治域系统号


本文转自zcm8483 51CTO博客,原文链接:http://blog.51cto.com/haolun/993148
相关文章
|
3月前
|
网络协议 网络性能优化 网络虚拟化
BGP 会话和地址系列参数
【8月更文挑战第28天】
106 1
BGP 会话和地址系列参数
|
3月前
|
监控 网络协议 网络架构
|
3月前
|
网络协议
OSPF直连邻居状态Full,且有路由,不通!怎么回事?
OSPF直连邻居状态Full,且有路由,不通!怎么回事?
|
6月前
|
运维 监控 网络协议
OSPF Hello和Dead间隔是什么
OSPF的Hello和Dead间隔是维护邻居关系的关键。Hello间隔定义了发送Hello报文的频率,用于发现和保持邻居关系,而Dead间隔是未收到来自邻居Hello报文后判定其失效的等待时间,通常是Hello间隔的四倍。配置不一致可能导致邻居关系失败。在Cisco IOS设备上,可使用示例代码修改间隔,并通过`show ip ospf interface`命令验证配置。了解和正确调整这些间隔对网络稳定性至关重要。
|
6月前
|
运维 网络协议 网络架构
|
网络协议 数据库 数据安全/隐私保护
OSPF基础(二):OSPF区域、router-ID、度量值、修改度量值的方法、OSPF协议报文类型、OSPF邻接关系建立过程
OSPF基础术语讲解、OSPF区域、router-ID、度量值,OSPF度量值的计算方式、修改方式。 OSPF协议报文类型,OSPF三大表项-邻居表,常用的ospf查看方式,邻接关系的建立过程。
OSPF基础(二):OSPF区域、router-ID、度量值、修改度量值的方法、OSPF协议报文类型、OSPF邻接关系建立过程
|
网络协议 网络架构