Configuring EIGRP Timers in Cisco
Last Updated :
28 Nov, 2022
EIGRP is an Advanced Distance Vector and Hybrid Routing Protocol. This is a CISCO proprietary protocol. It does not use broadcast packets to send information to other neighbors but will use multicast or unicast. We support multiple network layer protocols that are supported. EIGRP runs directly at the top of the IP header. EIGRP uses a rich set of metrics namely bandwidth, delay, load, and reliability which we will cover later. These values will be put into a formula and each link will be assigned a metric.
EIGRP Packets:
There are different kinds of EIGRP Packets in Routing as given below;
- Hello
- Update
- Query
- Reply
- ACK (Acknowledgement)
For more information, you can refer to this article: Types of EIGRP Packet in Computer Network
Timers in EIGRP:
EIGRP timers are given below:
- Hello Interval
- Hold-time
To learn more about EIGRP timers, you can also refer to this article: EIGRP fundamentals
Commands:
Command
| Description
|
---|
ip hello-interval eigrp <1-65535 AS number> <1-65535 hello-time in seconds> | Configure hello-interval timer |
ip hold-time eigrp <1-65535 AS number> <1-65535 hello-time in seconds> | Configure hold-down timer |
Configuring EIGRP Timers:
Step 1: Create 3 router topologies in GNS3 as shown in the image below:
Step 2: Configure IPv4 address on the physical interfaces of the routers:
On R1:
interface FastEthernet0/0
ip address 12.1.1.1 255.255.255.0
no shutdown
interface FastEthernet1/0
ip address 13.1.1.1 255.255.255.0
no shutdown
On R2:
interface FastEthernet0/0
ip address 12.1.1.2 255.255.255.0
no shutdown
On R3:
interface FastEthernet1/0
ip address 13.1.1.2 255.255.255.0
no shutdown
Step 3: Configure loopback interfaces on all routers with an IPv4 address:
On R1:
interface Loopback0
ip address 1.1.1.1 255.255.255.255
On R2:
interface Loopback0
ip address 2.2.2.2 255.255.255.255
On R3:
interface Loopback0
ip address 3.3.3.3 255.255.255.255
Step 4: Configuring the EIGRP process on both routers with the command router eigrp <1-65535 Autonomous system number> :
On R1:
router eigrp 100
network 1.1.1.1 0.0.0.0
network 12.1.1.0 0.0.0.255
network 13.1.1.0 0.0.0.255
On R2:
router eigrp 100
network 2.2.2.2 0.0.0.0
network 12.1.1.0 0.0.0.255
On R3:
router eigrp 100
network 3.3.3.3 0.0.0.0
network 13.1.1.0 0.0.0.255
Step 5: Configure hold-down timer of 10 seconds on all routers:
R1(config)#int range f0/0, f1/0
R1(config-if-range)#ip hold-time eigrp 100 10
R2(config)#int f0/0
R2(config-if-range)#ip hold-time eigrp 100 10
R3(config)#int f1/0
R3(config-if-range)#ip hold-time eigrp 100 10
Step 6: Configure hello-interval timer of 3 seconds on R1:
R1(config)#int range f0/0, f1/0
R1(config-if-range)#ip hello-interval eigrp 100 3
Step 7: Checking the IPv4 routing table on the routers and seeing the EIGRP route entry:
R1#show ip route eigrp
R2#show ip route eigrp
R3#show ip route eigrp
Checking Connectivity:
Similar Reads
Configuring RIP Timers in Cisco
Pre-requisites: RIP RIP is a Distance Vector Routing Protocol with an AD 120 value of and uses next-hop as metric value to find the best route to a destination. It supports a maximum of 15 hop counts, and 16 is considered as infinity. RIP uses split horizon to avoid forming of loops and uses split h
2 min read
Configuring EIGRP Stub in Cisco
Pre-requisites: EIGRP Implementation in Cisco, EIGRP FUNDAMENTALS. EIGRP stub area routing is a feature specifically designed to improve network scalability and stability. It is most commonly used in hub-and-spoke networks and is configured only on spoke routers in the topology. The EIGRP stub area
3 min read
Configuring OSPF Timers in Cisco
Open Shortest Path First (OSPF) is a link-state routing protocol used to find the best path between a source and destination router using its own shortest path first). OSPF was developed by the Internet Engineering Task Force (IETF) as one of the Interior Gateway Protocols (IGPs). H. A protocol desi
2 min read
Configuring EIGRP Maximum Paths in Cisco
Pre-requisite: EIGRP Configuration, EIGRP Implementation in Cisco. EIGRP is a CISCO proprietary protocol for routing. EIGRP calculates the best route to a destination using the metric value it is based on. Link bandwidthDelayEIGRP selects the shortest path and installs that path in the routing table
3 min read
Configuring EIGRP Passive Interface in Cisco
Pre-requisite: What is Passive-Interface Command Behavior in RIP, OSPF & EIGRP? EIGRP Passive Interface is enabled, and the router begins to originate Hello packets and process incoming EIGRP packets on all interfaces that fall within the specified network range. But, this is an unnecessary wast
3 min read
Configuring EIGRP Split Horizon in Cisco
Pre-requisite: EIGRP fundamentals, EIGRP Configuration. Split Horizon is a generic distance-vector protocol feature. It mandates that a route must not be advertised over an interface that was used to reach it. It helps in preventing the âre-advertisingâ of routing information back to the next hop fr
4 min read
Configuring EIGRP Static Neighbors in Cisco
EIGRP (Enhanced Interior Gateway Routing Protocol) is an Enhanced-DVRP (Distance Vector Routing Protocol) that generally uses DUAL (Diffuse Update Algorithm) to find the best path to the destination. Since EIGRP is a Dynamic Routing Protocol, it sends the EIGRP messages (Hello, Update, Query, Reply,
4 min read
Configuring RIP Triggered Updates in Cisco
RIP (Routing Information Protocol) is a Distance Vector Routing Protocol (DVRP) which generally uses hop counts to find the best path to the destination. By RIP, we will be talking about the RIPv2 by default. Since RIPv2 is a dynamic routing protocol: RIPv2 exchanges routes/networks by sending RIP u
4 min read
DHCP Server Configuration in Cisco
DHCP is a network management protocol used in networks to dynamically assign IP addresses and other network configuration information like default gateway, mask, DNS server address, etc. It is an application layer protocol. In this article, we will know about DHCP server configuration using Cisco P
2 min read
Static NAT Configuration in Cisco
Border routers are typically configured for NAT. H. A router with an interface on the local (internal) network and an interface on the global (external) network. When a packet leaves the local (internal) network, NAT translates its local (private) IP address to a global (public) IP address. Global (
3 min read