Courseiva

CCNA Eigrp Questions

49 questions · Eigrp topic · All types, answers revealed

1
Multi-Selecthard

Which three statements about EIGRP packet types are true? (Choose three.)

Select 3 answers
A.Hello packets are sent unreliably and do not require an acknowledgment.
B.Update packets are always sent as multicast to all EIGRP neighbors.
C.Query packets are sent reliably and require a Reply from each neighbor.
D.ACK packets are unicast and are used to acknowledge reliable EIGRP packets.
E.Reply packets are sent unreliably to conserve bandwidth.
AnswersA, C, D

Correct because Hello packets are sent as best-effort (unreliable) and are not acknowledged.

Why this answer

EIGRP uses five packet types: Hello (neighbor discovery/maintenance), Update (route information), Query (ask neighbors for routes), Reply (response to Query), and ACK (acknowledgment). Hello packets are multicast to 224.0.0.10, unacknowledged, and used to form and maintain adjacencies. Update packets are sent reliably (with ACK) and can be multicast or unicast.

Query packets are multicast and require a Reply. ACK packets are unicast and are used to acknowledge reliable packets.

2
MCQhard

A network engineer runs the following command on Router R1: R1# show ip eigrp topology all-links EIGRP-IPv4 Topology Table for AS(100)/ID(192.168.1.1) Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply, r - reply Status, s - sia Status P 10.1.1.0/24, 1 successors, FD is 1310720, serno 5 via 192.168.1.2 (1310720/1310720), GigabitEthernet0/0 via 10.2.2.2 (1587200/1310720), GigabitEthernet0/1 P 10.2.2.0/24, 1 successors, FD is 1310720, serno 6 via 192.168.1.2 (1310720/1310720), GigabitEthernet0/0 via 10.2.2.2 (1587200/1310720), GigabitEthernet0/1 Based on this output, what can be concluded?

A.Both routes have a feasible successor via 10.2.2.2.
B.The route 10.1.1.0/24 has two successors.
C.The alternate path via 10.2.2.2 will be used immediately if the successor fails.
D.The router has two paths to 10.1.1.0/24, but only one is in the routing table.
AnswerD

Only the successor is installed in the routing table; the other path is not used unless the successor fails and queries are sent.

Why this answer

The output shows that for 10.1.1.0/24, the feasible distance (FD) is 1310720 and there is only one successor (the route via 192.168.1.2). The alternate path via 10.2.2.2 has a reported distance (RD) of 1310720, which equals the FD, so it does not satisfy the feasibility condition (RD < FD) and therefore is not a feasible successor. Only the successor route is installed in the routing table.

Exam trap

Cisco often tests the distinction between a successor and a feasible successor, and the trap here is that candidates assume any alternate path with a lower metric than the FD is a feasible successor, but the feasibility condition requires the reported distance to be strictly less than the feasible distance, not less than or equal.

How to eliminate wrong answers

Option A is wrong because the alternate path via 10.2.2.2 has a reported distance equal to the feasible distance, which violates the feasibility condition (RD must be strictly less than FD) and thus is not a feasible successor. Option B is wrong because the output explicitly states '1 successors' for 10.1.1.0/24, meaning there is only one successor, not two. Option C is wrong because the alternate path is not a feasible successor; if the successor fails, EIGRP must send queries and go active for that route before it can use the alternate path, so it will not be used immediately.

3
MCQmedium

A router has the following configuration snippet: vrf definition RED rd 100:1 ! interface Loopback0 ip vrf forwarding RED ip address 10.0.0.1 255.255.255.255 ! router eigrp 100 address-family ipv4 unicast vrf RED autonomous-system 100 network 10.0.0.1 0.0.0.0 What is the issue with this EIGRP configuration for VRF RED?

A.The EIGRP address-family is not activated because 'no shutdown' is missing under the address-family configuration.
B.The 'network' command should use a wildcard mask of 0.0.0.255 instead of 0.0.0.0.
C.The VRF must be defined under 'router eigrp' globally before using address-family.
D.The loopback interface cannot be placed in a VRF because it is a virtual interface.
AnswerA

Correct. EIGRP address-families require 'no shutdown' to start.

Why this answer

The EIGRP address-family configuration for VRF RED is missing the 'no shutdown' command under the address-family mode. In Cisco IOS, EIGRP address-families are administratively shut down by default; without 'no shutdown', the EIGRP process for that VRF will not form adjacencies or advertise routes, even though the network command is correctly configured.

Exam trap

Cisco often tests the default administrative shutdown of EIGRP address-families, knowing that many candidates assume the process starts automatically once the network command is configured, leading them to overlook the required 'no shutdown' command.

How to eliminate wrong answers

Option B is wrong because the 'network 10.0.0.1 0.0.0.0' command uses a host-specific wildcard mask, which is perfectly valid for advertising a single /32 interface; a wildcard mask of 0.0.0.255 would be incorrect as it would attempt to match a broader subnet. Option C is wrong because VRF definitions are not required under 'router eigrp' globally; the VRF is referenced directly in the address-family configuration via the 'vrf RED' keyword, which is the correct method. Option D is wrong because loopback interfaces can absolutely be placed in a VRF; there is no restriction against virtual interfaces being assigned to a VRF, and this is a common practice for management or iBGP peering.

4
Drag & Dropmedium

Drag and drop the steps of EIGRP redistribution from OSPF with metric seeding into the correct order, from first to last.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5

Why this order

When redistributing OSPF into EIGRP with metric seeding, the correct order is: First, enter EIGRP router configuration mode (A). Second, if using named mode, specify the address-family (B). Third, set the default-metric (D) before redistribution to ensure routes receive proper metric values.

Fourth, issue the 'redistribute ospf process-id' command (C). Finally, verify with 'show ip eigrp topology all-links' (E).

5
Matchingmedium

Drag and drop each EIGRP metric component on the left to its matching variable on the right.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Bandwidth

Load

Delay

Reliability

Why these pairings

K1 corresponds to bandwidth, K2 to load, K3 to delay, and K4 to reliability. K5 is not directly assigned to a single metric component; it is a multiplier used with reliability in the metric formula. MTU is not a K variable; it is only used in the feasibility condition.

Exam trap

A common mistake is to assign MTU to K5, but MTU is not a component of the EIGRP metric formula.

6
MCQeasy

What is the maximum hop count for EIGRP?

A.15
B.100
C.255
D.Unlimited
AnswerB

The default maximum hop count for EIGRP is 100.

Why this answer

EIGRP uses a metric based on bandwidth and delay, but it also has a hop count limit. The default maximum hop count is 100, but it can be configured up to 255.

7
Multi-Selectmedium

Which two statements about EIGRP route summarization are true? (Choose two.)

Select 2 answers
A.Manual summarization can be configured on a per-interface basis using the ip summary-address eigrp command.
B.Automatic summarization is enabled by default in EIGRP for IPv4.
C.A manually configured summary route in EIGRP has an administrative distance of 5.
D.Manual summarization causes the router to advertise all specific routes in addition to the summary.
E.EIGRP for IPv6 does not support manual summarization.
AnswersA, C

Correct because the command 'ip summary-address eigrp <as> <prefix> <mask>' is used to configure manual summarization on an interface.

Why this answer

EIGRP supports manual summarization on any interface, which creates a summary route with an administrative distance of 5 by default. Automatic summarization at classful boundaries is disabled by default in modern IOS versions. Manual summarization can be configured per interface and suppresses more specific routes from being advertised out that interface.

The summary route is installed in the routing table as a local route.

8
Drag & Dropmedium

Drag and drop the steps of EIGRP authentication using MD5 key-chain into the correct order, from first to last.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5

Why this order

The correct order for configuring EIGRP MD5 authentication with a key chain is: first, create a key chain using the 'key chain' command. Next, configure a key number and key-string under the key chain. Then, enter interface configuration mode for the interface on which EIGRP is enabled.

After that, issue the command 'ip authentication mode eigrp md5' to set the authentication mode. Finally, issue the command 'ip authentication key-chain eigrp <name>' to apply the key chain to the interface.

9
Drag & Dropmedium

Drag and drop the steps of EIGRP stub configuration for hub-and-spoke into the correct order, from first to last.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5

Why this order

The correct order ensures that the spoke router first enters EIGRP configuration, then configures the stub feature, optionally restricts stub types, and finally applies the configuration. The hub router does not need stub configuration.

10
Multi-Selecthard

Which three statements about EIGRP stub routing are true? (Choose three.)

Select 3 answers
A.A stub router does not send Query packets to its neighbors.
B.A hub router will send queries to a stub router when a route is lost.
C.The 'eigrp stub' command can be configured with the 'connected' keyword to advertise only connected routes.
D.Stub routing is used to reduce the size of the routing table on the hub router.
E.A stub router can be configured as 'receive-only' to not advertise any routes.
AnswersA, C, E

Correct because stub routers are not allowed to originate queries; they rely on the hub for routing information.

Why this answer

EIGRP stub routing is used to limit the query scope and improve convergence. A stub router is typically a spoke in a hub-and-spoke topology. It advertises its directly connected and summary routes to the hub, but does not query its neighbors.

The hub router does not send queries to the stub router. The stub router can be configured with different options: connected, static, summary, receive-only, or redistributed. The 'eigrp stub' command enables this feature.

11
Multi-Selecthard

Which three statements about EIGRP named mode configuration are true? (Choose three.)

Select 3 answers
A.Named mode uses the 'router eigrp <name>' command to enter configuration mode.
B.In named mode, the network statement is replaced by the 'af-interface' configuration under the address family.
C.Named mode supports both IPv4 and IPv6 address families within the same EIGRP process.
D.The 'address-family ipv4' command is used to enter IPv4 configuration under named mode.
E.Named mode requires the 'no shutdown' command under the address family to enable EIGRP.
AnswersA, C, D

Correct because named mode starts with 'router eigrp <name>', where <name> is a case-sensitive tag.

Why this answer

EIGRP named mode uses a hierarchical configuration under a single router process, supporting address families (IPv4, IPv6) and VRFs. It simplifies configuration and allows per-interface settings.

12
MCQeasy

What is the maximum hop count for EIGRP?

A.255
B.15
C.224
D.Unlimited
AnswerA

EIGRP's maximum hop count is 255, inherited from IGRP.

Why this answer

EIGRP uses a maximum hop count of 255 to prevent routing loops, as defined in RFC 7868. This is a hard-coded limit in the protocol, and routes with a hop count exceeding 255 are considered unreachable.

Exam trap

Cisco often tests the EIGRP hop count limit to confuse candidates who associate hop counts with RIP (15) or confuse the value with the EIGRP multicast address (224.0.0.10).

How to eliminate wrong answers

Option B is wrong because 15 is the maximum hop count for RIP (Routing Information Protocol), not EIGRP. Option C is wrong because 224 is the multicast address (224.0.0.10) used by EIGRP for hello packets, not a hop count limit. Option D is wrong because EIGRP does have a finite hop count limit of 255, not an unlimited value, to ensure loop prevention and route convergence.

13
Drag & Dropmedium

Drag and drop the steps of EIGRP named mode configuration steps into the correct order, from first to last.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5

Why this order

EIGRP named mode uses an address-family configuration. First, create the named EIGRP instance, then enter address-family IPv4, configure the network, optionally adjust timers, and finally verify the configuration.

14
Drag & Dropmedium

Drag and drop the steps of OSPF redistribution from EIGRP with metric conversion into the correct order, from first to last.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5

Why this order

First, identify the EIGRP routes to redistribute into OSPF. Then, configure the OSPF redistribution command under the OSPF process, specifying the EIGRP AS number. Since OSPF requires a metric for redistributed routes, set the OSPF metric type (E1 or E2) and seed metric.

Optionally, use a route map to filter or modify specific routes. Finally, verify that the redistributed routes appear in the OSPF database and routing table.

15
MCQeasy

What is the maximum hop count for EIGRP?

A.100
B.15
C.255
D.16
AnswerA

EIGRP’s default maximum hop count is 100, which satisfies the question’s constraint by defining the protocol’s loop-prevention boundary. Unlike RIP’s 15-hop limit, EIGRP uses a feasible successor mechanism and Diffusing Update Algorithm (DUAL) to maintain loop-free paths, but still enforces a hard hop-count ceiling of 100 to prevent indefinite routing loops in large topologies.

Why this answer

EIGRP uses a maximum hop count of 100 by default to prevent routing loops. This is a hard limit; if a route's hop count exceeds 100, EIGRP considers it unreachable. This value is configurable via the 'metric maximum-hops' command under the EIGRP process.

Exam trap

Cisco often tests the EIGRP hop count limit of 100 to trap candidates who confuse it with RIP's 15-hop limit or OSPF's 255-hop limit, especially when the question omits the protocol name in the stem.

How to eliminate wrong answers

Option B (15) is wrong because 15 is the maximum hop count for RIP, not EIGRP; this is a common confusion between distance-vector protocols. Option C (255) is wrong because 255 is the maximum hop count for OSPF (via the 'max-metric' LSA) or the TTL field in IP packets, but EIGRP defaults to 100. Option D (16) is wrong because 16 is the 'infinity' metric in RIP (indicating an unreachable route), not a hop count limit for EIGRP.

16
Drag & Drophard

Drag and drop the steps of OSPF redistribution from EIGRP with metric conversion into the correct order, from first to last.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5

Why this order

Redistribution requires enabling redistribution, setting a seed metric (or using default-metric), optionally matching routes, and then verifying. The order ensures routes are properly injected.

17
MCQmedium

Given the following configuration: router eigrp TEST network 10.0.0.0 0.255.255.255 network 192.168.1.0 ! interface GigabitEthernet0/0 ip address 10.1.1.1 255.255.255.0 ip summary-address eigrp TEST 10.0.0.0 255.0.0.0 5 What is the effect of the ip summary-address command?

A.It creates a summary route 10.0.0.0/8 with a metric of 5, advertised out GigabitEthernet0/0.
B.It creates a summary route 10.0.0.0/8 with a metric of 5, but only for the EIGRP process named TEST.
C.It creates a summary route 10.0.0.0/8 with a hop count of 5.
D.The command is invalid because the summary address must match the network statement exactly.
AnswerA

The summary address is 10.0.0.0/8, and the value 5 is the administrative distance for the summary route.

Why this answer

The `ip summary-address eigrp TEST 10.0.0.0 255.0.0.0 5` command creates a summary route of 10.0.0.0/8 with an administrative distance of 5, which is advertised out of GigabitEthernet0/0. The EIGRP process name TEST matches the router eigrp configuration, and the summary is generated regardless of the network statements, as long as the router has a more specific route within the summarized range.

Exam trap

Cisco often tests the misconception that the number after the summary address is a metric or hop count, when in fact it is the administrative distance for the summary route.

How to eliminate wrong answers

Option B is wrong because the summary route is advertised out of the specific interface (GigabitEthernet0/0), not for the entire EIGRP process; the process name only identifies which EIGRP instance the summary belongs to. Option C is wrong because the number 5 in the command sets the administrative distance for the summary route, not a hop count or metric; EIGRP uses metric (composite) values, not hop counts. Option D is wrong because the summary address does not need to match a network statement exactly; the `ip summary-address` command can summarize any range that includes subnets learned via EIGRP, even if the network statement is broader or different.

18
Drag & Dropmedium

Drag and drop the steps of EIGRP stub configuration for hub-and-spoke into the correct order, from first to last.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5

Why this order

In hub-and-spoke EIGRP, the spoke router is configured as a stub to limit query propagation. First, enter router configuration mode, then enable EIGRP on the spoke, configure it as a stub, optionally restrict advertised routes, and finally verify the stub status.

19
Matchingmedium

Drag and drop each EIGRP router role on the left to its matching definition on the right.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Next-hop router with the lowest metric for a destination

Backup next-hop router meeting the feasibility condition

Directly connected EIGRP router exchanging Hello packets

Router is actively querying for a route

Router has a valid route and is not querying

Why these pairings

Successor is the next-hop router with the lowest metric; Feasible Successor is a backup that meets the feasibility condition; Neighbor is a directly connected EIGRP router.

20
Matchingmedium

Drag and drop each EIGRP router role on the left to its matching definition on the right.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Next-hop router for the best route to a destination

Backup next-hop router meeting the feasibility condition

Directly connected EIGRP router exchanging Hello packets

Lowest metric to a destination from the local router

Metric advertised by a neighbor for a specific route

Why these pairings

In EIGRP, successors are the next-hop routers for the best path to a destination. Feasible successors serve as backup next-hop routers that meet the feasibility condition. Neighbors are directly connected EIGRP routers that exchange Hello packets.

Feasible Distance is the lowest metric from the local router to a destination. Reported Distance is the metric that a neighbor advertises for a specific route.

21
MCQmedium

An enterprise network uses OSPF as its IGP. The network engineer notices that a particular route learned via OSPF is not being installed in the routing table, even though the neighbor adjacency is up and the route appears in the OSPF database. The route is an external route redistributed from EIGRP. What is the most likely cause?

A.The OSPF process ID is different on the routers.
B.The external route has a higher administrative distance than the internal route.
C.The forwarding address in the type 5 LSA is not reachable via an OSPF internal route.
D.The OSPF metric for the external route is too high.
AnswerC

Correct because OSPF requires the forwarding address to be reachable via an intra-area or inter-area route; otherwise, the external route is not installed.

Why this answer

OSPF requires the forwarding address (FA) in a Type 5 LSA to be reachable via an OSPF internal route (intra-area or inter-area) for the external route to be installed in the routing table. If the FA is not reachable, the router will ignore the LSA and not install the route, even though the LSA exists in the OSPF database and the neighbor adjacency is up.

Exam trap

Cisco often tests the forwarding address reachability requirement for Type 5 LSAs, and the trap here is that candidates assume any route in the OSPF database will automatically be installed, ignoring the recursive lookup condition for external routes with a non-zero forwarding address.

How to eliminate wrong answers

Option A is wrong because the OSPF process ID is locally significant and does not affect route installation between routers; different process IDs can still form adjacencies and exchange routes. Option B is wrong because OSPF external routes (type 5) have a default administrative distance of 110, while internal OSPF routes also have 110; the issue is not about AD comparison between internal and external OSPF routes, but about reachability of the forwarding address. Option D is wrong because a high OSPF metric does not prevent route installation; it only influences route selection among multiple paths; the route will still be installed if the metric is valid and the forwarding address is reachable.

22
Matchingmedium

Drag and drop each EIGRP timer on the left to its matching default value on the right.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

5 seconds

15 seconds

3 minutes

0.5 seconds

Why these pairings

EIGRP timers and their defaults: Hello timer defaults to 5 seconds on LAN interfaces; Hold timer defaults to 15 seconds (3 times Hello). Active timer defaults to 3 minutes. Retransmission timer defaults to 0.5 seconds.

There is no standard 'Update Timer' with a default of 5 seconds; the correct timer for 5 seconds is Hello, not Update.

23
MCQeasy

What is the maximum hop count for EIGRP?

A.15
B.255
C.100
D.16
AnswerB

Correct. EIGRP supports a maximum hop count of 255.

Why this answer

EIGRP supports a maximum hop count of 255. Unlike RIP, which has a limit of 15 hops, EIGRP can scale to larger networks. The hop count is used as one component in the composite metric, but it is rarely the limiting factor in practice.

24
Matchingmedium

Drag and drop each EIGRP packet type on the left to its matching function on the right.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Discovers and maintains neighbor relationships

Sends routing information to neighbors

Requests information about a lost route

Responds to a query with routing information

Acknowledges receipt of a reliable packet

Why these pairings

Hello packets discover and maintain neighbors; Update packets carry routing information; Query packets ask for alternate paths; Reply packets respond to queries; ACK packets acknowledge reliable delivery.

25
MCQhard

A network engineer runs the following command on Router R1: R1# show ip eigrp neighbors detail EIGRP-IPv4 Neighbors for AS(100) H Address Interface Hold Uptime SRTT RTO Q Seq (sec) (ms) Cnt Num 0 192.168.1.2 Gi0/0 13 00:12:34 12 100 0 45 Version 2.0/2.0, Retrans: 0, Retry: 0, Maxseq: 0 Prefixes: 3 Topology ids: 0 Authentication: None Topology: base (0x0) Based on this output, what can be concluded?

A.The neighbor is using EIGRP version 1.
B.The neighbor has advertised 3 prefixes to R1.
C.There is a high number of retransmissions indicating packet loss.
D.The neighbor is using MD5 authentication.
AnswerB

The 'Prefixes: 3' field indicates the number of prefixes learned from this neighbor.

Why this answer

The output shows 'Prefixes: 3' under the neighbor details, which indicates that the neighbor has advertised exactly three prefixes to R1. This is a direct interpretation of the 'show ip eigrp neighbors detail' command, where the 'Prefixes' field lists the number of routes learned from that neighbor.

Exam trap

Cisco often tests the ability to read the 'show ip eigrp neighbors detail' output carefully, where candidates may confuse the 'Prefixes' field with the number of interfaces or ignore the 'Retrans' and 'Authentication' fields, leading them to select incorrect options based on assumptions rather than the explicit data shown.

How to eliminate wrong answers

Option A is wrong because the output shows 'Version 2.0/2.0', meaning both R1 and the neighbor are running EIGRP version 2, not version 1. Option C is wrong because the 'Retrans: 0' and 'Retry: 0' fields indicate zero retransmissions and retries, which means no packet loss is occurring. Option D is wrong because the output explicitly states 'Authentication: None', so MD5 authentication is not configured.

26
Drag & Dropmedium

Drag and drop the steps of EIGRP named mode configuration steps into the correct order, from first to last.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5

Why this order

Named mode starts with the router eigrp <virtual-name> command, then enters address-family configuration, configures the network, and optionally adjusts timers or other parameters. Finally, the configuration is verified.

27
MCQeasy

What is the maximum hop count for EIGRP?

A.100
B.255
C.15
D.Unlimited
AnswerB

EIGRP uses a maximum hop count of 255, which is encoded as a single octet in the route metric field, with 255 specifically reserved to indicate an unreachable route. This satisfies the constraint of limiting routing loops within an autonomous system, as EIGRP’s feasible successor logic and Diffusing Update Algorithm (DUAL) prevent counting to infinity beyond this hard limit.

Why this answer

EIGRP uses a maximum hop count of 255 to prevent routing loops, though in practice it relies on its DUAL algorithm and feasible successor logic rather than hop count as a primary loop-prevention mechanism. This value is hard-coded in the protocol and cannot be changed, unlike RIP's 15-hop limit.

Exam trap

Cisco often tests the EIGRP hop count limit of 255 to catch candidates who confuse it with RIP's 15-hop limit or mistakenly think EIGRP has no hop count restriction due to its advanced metric-based loop prevention.

How to eliminate wrong answers

Option A is wrong because 100 is not a hop count limit used by any dynamic routing protocol; it may be confused with the administrative distance of EIGRP internal routes (which is 90). Option C is wrong because 15 is the maximum hop count for RIP (RIPv1 and RIPv2), not EIGRP. Option D is wrong because EIGRP does have a finite hop count limit of 255; it is not unlimited, even though the protocol primarily uses composite metrics and DUAL for loop-free path selection.

28
MCQmedium

Consider the following configuration snippet from a Cisco IOS-XE router: router eigrp 100 network 10.0.0.0 network 192.168.1.0 passive-interface default no passive-interface GigabitEthernet0/0 What is the effect of the passive-interface commands?

A.EIGRP hellos are suppressed on all interfaces except GigabitEthernet0/0.
B.EIGRP hellos are sent on all interfaces, but updates are blocked.
C.EIGRP adjacency is formed on all interfaces except GigabitEthernet0/0.
D.EIGRP is disabled on all interfaces.
AnswerA

The default passive suppresses hellos on all interfaces, and the no passive allows them on G0/0.

Why this answer

The command 'passive-interface default' makes all interfaces passive by default, meaning they will not send or receive EIGRP hellos. The subsequent 'no passive-interface GigabitEthernet0/0' overrides this for that specific interface, allowing EIGRP adjacency formation on it.

29
Matchingmedium

Drag and drop each EIGRP timer on the left to its matching default value on the right.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

5 seconds

15 seconds

3 minutes

60 seconds

180 seconds

Why these pairings

Hello timer default is 5 seconds on LAN; Hold timer default is 15 seconds; Active timer default is 3 minutes.

30
MCQeasy

What is the maximum hop count for EIGRP?

A.15
B.255
C.16
D.100
AnswerB

Correct. EIGRP has a maximum hop count of 255.

Why this answer

EIGRP uses a maximum hop count of 255, which is a hard limit encoded in the protocol's metric field. This allows EIGRP to scale to much larger networks than distance-vector protocols like RIP, which have a hop count limit of 15. The hop count is not used as a primary metric in EIGRP but serves as a loop-prevention mechanism, and routes with a hop count exceeding 255 are considered unreachable.

Exam trap

Cisco often tests the difference between RIP's 15-hop limit and EIGRP's 255-hop limit, and the trap here is that candidates confuse the hop count limit with the administrative distance (100) or the RIP unreachable metric (16).

How to eliminate wrong answers

Option A is wrong because 15 is the maximum hop count for RIP (Routing Information Protocol), not EIGRP; this is a classic confusion between distance-vector protocols. Option C is wrong because 16 is the 'unreachable' metric in RIP, not a valid EIGRP hop count limit. Option D is wrong because 100 is the default administrative distance for EIGRP internal routes, not the maximum hop count.

31
Multi-Selectmedium

Which two statements about EIGRP feasible successors are true? (Choose two.)

Select 2 answers
A.A feasible successor must have a reported distance less than the feasible distance.
B.A feasible successor is immediately used when the successor fails, without any query process.
C.The feasible distance is the metric of the feasible successor route.
D.EIGRP will always have at least one feasible successor for every route.
E.The feasible successor is stored in the routing table as a backup route.
AnswersA, B

Correct because the feasibility condition requires the reported distance (neighbor's metric) to be strictly less than the feasible distance (the current best metric).

Why this answer

A feasible successor is a backup route that meets the feasibility condition (reported distance < feasible distance). It is stored in the topology table and can be used immediately if the successor fails, without querying neighbors. The feasible distance is the lowest metric to a destination; the successor is the route with that metric.

The reported distance is the neighbor's metric to the destination.

32
MCQmedium

What is the maximum hop count for EIGRP?

A.255
B.100
C.15
D.16
AnswerA

Correct. EIGRP supports up to 255 hops.

Why this answer

EIGRP uses a metric based on bandwidth and delay, but it also has a hop count limit. The maximum hop count for EIGRP is 255, though the default is 100.

33
Matchingmedium

Drag and drop each EIGRP metric component on the left to its matching K variable on the right.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

K1

K2

K3

K4

Why these pairings

In the EIGRP metric formula, the K values correspond to specific metric components: K1 is bandwidth, K2 is load, K3 is delay, K4 is reliability. MTU is not a K variable; the EIGRP metric does not include MTU.

Exam trap

MTU is not a K variable; K5 is not used in the standard EIGRP metric.

34
Drag & Dropmedium

Drag and drop the steps of EIGRP variance-based unequal-cost load balancing into the correct order, from first to last.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5

Why this order

To enable unequal-cost load balancing, first ensure feasible successors exist, then set the variance multiplier, optionally adjust the metric offset, and finally verify the load sharing across multiple paths.

35
Drag & Dropmedium

Drag and drop the steps of EIGRP DUAL route computation into the correct order, from first to last.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5

Why this order

EIGRP DUAL first identifies feasible successors via reported distance, then selects the best path as successor. If the successor fails, it checks feasible successors; if none exist, it goes active and queries neighbors. After replies, it computes a new successor.

36
Drag & Dropmedium

Drag and drop the steps of EIGRP route summarization configuration into the correct order, from first to last.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5

Why this order

EIGRP route summarization first requires enabling EIGRP, configuring the network statement, then entering interface configuration mode, applying the summary-address command, and finally verifying the summary route in the routing table.

37
MCQhard

An engineer is troubleshooting an EIGRP issue where a router is not learning a specific route from a neighbor. The engineer runs 'show ip eigrp topology all-links' and sees the route in the topology table with a feasible distance of 100 and a reported distance of 120. The neighbor's advertised distance is 80. The router's own computed distance to the network is 150. The route is not in the routing table. What is the most likely cause?

A.The route is a feasible successor, but the successor route is not present.
B.The route is not installed because the reported distance (80) from the neighbor is less than the feasible distance (100), but the router's computed distance (150) is higher.
C.The route is not installed because its metric (150) is not the best metric; the router has another route with a lower metric (100).
D.The route is not installed because EIGRP is configured for stub routing, which prevents learning routes.
AnswerC

The route in the topology table has a computed distance of 150, which is higher than the feasible distance (FD) of 100. EIGRP only installs the successor route (lowest metric) into the routing table, so this route is not installed because it is not the best path.

Why this answer

The route in the topology table has a computed distance of 150 via the neighbor, but the feasible distance (FD) for this destination is 100, which is the best metric from another neighbor. EIGRP installs only the route with the lowest metric (the successor) into the routing table. Since the computed distance of 150 is higher than the FD of 100, this route is not the best and is not installed.

Option C correctly identifies that the route is not installed because there is another route with a lower metric.

Exam trap

Candidates often confuse the feasible distance (FD) with the computed distance of a specific path. Here, the FD is 100 from a different neighbor, but the route in question has a computed distance of 150—it is not the successor. The route is not installed because it is not the best path, not because of any feasibility condition issue.

How to eliminate wrong answers

Option A is wrong because a feasible successor is a backup route that meets the feasibility condition (reported distance < feasible distance), but the route is not installed as a feasible successor if the successor route is present; the issue is that the route is not in the routing table, not that the successor is missing. Option B is wrong because the reported distance (80) from the neighbor is less than the feasible distance (100), which actually satisfies the feasibility condition, but the router's computed distance (150) being higher than the FD (100) means this route is not the best path; the route is not installed because the router has a better path (FD 100), not because of the reported distance comparison. Option D is wrong because stub routing prevents the router from learning routes from neighbors, but the router is learning the route (it appears in the topology table), so stub routing is not the cause; the issue is about route selection, not route learning.

38
Matchingmedium

Drag and drop each EIGRP DUAL state on the left to its matching stage on the right.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Route is stable and no queries are pending

Router is querying neighbors for a new route

Router uses a feasible successor without querying

Router queries all neighbors for a new route

Router that first sends a query for a lost route

Why these pairings

Passive state indicates a stable route; Active state indicates the router is querying neighbors; Local Computation occurs when a feasible successor exists; Diffusing Computation occurs when no feasible successor exists; Query Origin is the router that starts the query process.

39
Drag & Dropmedium

Drag and drop the steps of EIGRP neighbor establishment into the correct order, from first to last.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5

Why this order

EIGRP neighbor formation begins with sending Hello packets, then exchanging full routing tables via Update packets, acknowledging with ACK packets, and finally entering the Established state where incremental updates are sent.

40
Multi-Selectmedium

Which two statements about EIGRP feasible successors are true? (Choose two.)

Select 2 answers
A.A feasible successor must have a reported distance less than the feasible distance of the current successor.
B.A feasible successor is installed in the routing table as a backup route.
C.If a successor fails, EIGPR immediately uses a feasible successor without transitioning to active state.
D.The feasible successor must have the same metric as the successor.
E.EIGRP uses the Diffusing Update Algorithm (DUAL) to determine feasible successors.
AnswersA, C

Correct because the feasibility condition requires RD < FD for a route to be considered a feasible successor.

Why this answer

A feasible successor is a backup route that meets the feasibility condition (reported distance < feasible distance). It is stored in the topology table, not the routing table, and is used immediately if the successor fails.

41
Multi-Selecthard

Which three statements about EIGRP route summarization are true? (Choose three.)

Select 3 answers
A.Manual summarization is configured using the 'ip summary-address eigrp <as> <prefix> <mask>' command on an interface.
B.Automatic summarization is enabled by default in EIGRP for IPv4.
C.A manual summary route is advertised with a metric equal to the best metric among the component routes.
D.Summary routes are always preferred over more specific routes in the routing table.
E.EIGRP will install a discard route (null0) for the summary prefix to prevent routing loops.
AnswersA, C, E

Correct because this is the standard command to configure a manual summary route on a specific interface.

Why this answer

EIGRP supports manual summarization on any interface and automatic summarization at classful boundaries (disabled by default in modern IOS). Summary routes are advertised with a metric based on the component routes.

42
Matchingmedium

Drag and drop each EIGRP state on the left to its matching DUAL stage on the right.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Route is stable and no DUAL computation is in progress

DUAL is actively querying neighbors for an alternate path

Query has not been replied to within the active timer

Router sends queries to all neighbors for a lost route

Router has received all replies to its queries

Why these pairings

Passive is the stable state; Active is when DUAL is actively searching for a new route; Stuck in Active occurs when a query is not answered within the active timer.

43
Matchingmedium

Drag and drop each EIGRP packet type on the left to its matching function on the right.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Discovers and maintains neighbors

Carries routing information

Asks for successor information

Responds to a query

Acknowledges receipt of a reliable packet

Why these pairings

Hello packets discover and maintain neighbors; Update packets carry routing information; Query packets ask for successor information; Reply packets respond to queries; ACK packets acknowledge reliable packets.

44
Multi-Selectmedium

Which two statements about EIGRP stub routing are true? (Choose two.)

Select 2 answers
A.A stub router advertises only connected and summary routes by default.
B.A stub router can still be used as a transit router for other EIGRP neighbors.
C.The 'eigrp stub' command is configured on the hub router in a hub-and-spoke topology.
D.EIGRP stub routing reduces query scoping and improves convergence.
E.A stub router can be configured with the 'receive-only' keyword to advertise all its routes.
AnswersA, D

Correct because the default stub setting (without keywords) advertises connected and summary routes.

Why this answer

EIGRP stub routing limits the routes a stub router advertises, preventing it from being used as a transit router. Common stub types include connected, static, summary, and receive-only.

45
MCQmedium

Examine the following EIGRP configuration on a Cisco IOS-XE device: router eigrp 100 network 10.0.0.0 0.255.255.255 passive-interface default no passive-interface GigabitEthernet0/0 ! interface GigabitEthernet0/0 ip address 10.1.1.1 255.255.255.0 ! interface GigabitEthernet0/1 ip address 10.2.2.1 255.255.255.0 Which statement is true?

A.EIGRP will form adjacencies on both GigabitEthernet0/0 and GigabitEthernet0/1.
B.EIGRP will form an adjacency only on GigabitEthernet0/0.
C.EIGRP will not form any adjacencies because the network command does not match the interface subnets.
D.EIGRP will form adjacencies on all interfaces except those with 'passive-interface' configured.
AnswerB

Correct. GigabitEthernet0/0 is not passive, so it will send and receive hellos. GigabitEthernet0/1 is passive by default.

Why this answer

The 'passive-interface default' command sets all interfaces as passive, meaning they do not send or receive EIGRP hellos. The 'no passive-interface' command overrides this for specific interfaces.

46
Drag & Dropmedium

Drag and drop the steps of EIGRP redistribution from OSPF with metric seeding into the correct order, from first to last.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5

Why this order

First, the EIGRP routing process must be entered. Then, the redistribute command is used with the OSPF process and a metric. Optionally, route-map filtering can be applied.

Finally, verification ensures routes appear in the EIGRP topology table.

47
MCQhard

A network engineer is configuring EIGRP on a router that connects to a service provider network. The engineer wants to advertise a default route to internal routers. The engineer configures 'ip default-network 0.0.0.0' and redistributes a static default route into EIGRP. However, internal routers are not receiving the default route. The engineer checks the EIGRP topology table and sees the default route with a metric of 1. What is the most likely reason?

A.The engineer used 'ip default-network' which is not supported in EIGRP; instead, 'default-information originate' should be used.
B.The static default route is not configured correctly; the engineer should use 'ip route 0.0.0.0 0.0.0.0 <next-hop>'.
C.The internal routers have a route to the default network with a better metric from another source.
D.The engineer needs to configure 'eigrp stub' on the router to allow default route advertisement.
AnswerB

Correct. The static default route must be correctly configured with a next-hop IP address. If the static route is missing or uses an interface instead of a next-hop, it may not be valid, and the redistribution will not propagate the route to internal routers, despite appearing in the topology table with a metric.

Why this answer

The engineer's configuration includes both 'ip default-network 0.0.0.0' (which is an IGRP command, not EIGRP) and redistribution of a static default route. The appearance of the default route in the EIGRP topology table with metric 1 indicates that redistribution occurred, but the route is not being advertised to internal routers. The most likely reason is that the static default route itself is not correctly configured.

For EIGRP redistribution to succeed, the static route must point to a valid next-hop IP address using the syntax 'ip route 0.0.0.0 0.0.0.0 <next-hop>'. If the engineer used an interface instead of a next-hop, or the next-hop is unreachable, the static route may be invalid or not installed in the routing table, preventing its advertisement to EIGRP neighbors.

Exam trap

Cisco often tests the misconception that 'ip default-network' works with EIGRP, when in fact it is an IGRP-specific command, and candidates may confuse it with the correct 'default-information originate' command used in EIGRP and OSPF.

How to eliminate wrong answers

Option B is wrong because the static route syntax 'ip route 0.0.0.0 0.0.0.0 <next-hop>' is correct and commonly used; the issue is not with the static route configuration but with the EIGRP advertisement method. Option C is wrong because the topology table shows the default route with a metric of 1, and if internal routers had a better metric from another source, the route would still be present in the topology table but not selected as best; the problem is that the route is not being advertised at all. Option D is wrong because configuring 'eigrp stub' restricts the router from advertising routes learned from other EIGRP neighbors, but it does not prevent the advertisement of a locally originated default route via 'default-information originate'; the stub feature is used to limit route propagation, not to enable default route advertisement.

48
Matchingmedium

Match each EIGRP term to its definition.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Best metric to a destination

Metric advertised by neighbor

Backup route without loops

Primary route with lowest metric

Ensures loop-free backup routes

Why these pairings

EIGRP uses Feasible Distance (FD) as the best metric to a destination, Reported Distance (RD) as a neighbor's metric, and the Feasible Condition (RD < FD) to ensure loop-free paths. Successor is the next-hop router with the lowest FD.

49
Drag & Dropmedium

Drag and drop the steps of EIGRP variance-based unequal-cost load balancing into the correct order, from first to last.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5

Why this order

First, the EIGRP process must be configured. Then, the variance multiplier is set to allow feasible successors with higher metrics. Optionally, the maximum-paths command can increase the number of paths.

Finally, verification confirms multiple routes in the routing table.

Ready to test yourself?

Try a timed practice session using only Eigrp questions.