CCNA IP Routing Questions

75 of 344 questions · Page 3/5 · IP Routing topic · Answers revealed

151
MCQmedium

A router learns the same prefix from both OSPF and EIGRP. Which route is installed by default?

A.The OSPF route because OSPF is link-state
B.The EIGRP route because it has the lower administrative distance
C.The route with the lower metric value regardless of protocol
D.Both routes are always installed
AnswerB

Correct. Lower AD wins between different routing protocols.

Why this answer

When identical prefixes are learned from different routing protocols, the router compares administrative distance first. EIGRP internal routes use AD 90, while OSPF uses AD 110.

Exam trap

Remember that lower administrative distance values indicate higher preference. Don't confuse protocol complexity with route preference.

Why the other options are wrong

A

The type of routing protocol (link-state vs. distance vector) does not determine route preference when comparing routes from different protocols. Route selection is based on administrative distance, not protocol characteristics.

C

Metrics are only comparable within the same routing protocol. Different protocols use different metrics (e.g., OSPF uses cost, EIGRP uses composite metric), so they cannot be directly compared. Administrative distance is used to choose between protocols.

D

By default, a router installs only the best route (lowest AD) for a given prefix into the routing table. Both routes are not installed unless features like equal-cost multipath or policy routing are configured, which is not the case here.

152
MCQhard

R1 and R2 are connected via a GigabitEthernet link in the same IPv4 subnet, and both routers have OSPF configured in the same area. However, R1 is not learning any OSPF routes from R2. What is the most likely cause?

A.GigabitEthernet0/0 is configured as a passive OSPF interface on R1.
B.The routers must use different OSPF process IDs to exchange routes.
C.The routers are in different IPv4 subnets.
D.OSPF can advertise routes only across serial links.
AnswerA

This is correct because a passive OSPF interface does not send hellos and therefore will not form a neighbor adjacency on that link.

Why this answer

The most likely reason is that one side has the interface configured as passive, which prevents OSPF hello packets from being sent on that interface. In practical terms, the network statement alone does not guarantee neighbor formation. OSPF still needs active neighbor discovery on the link. If the interface is passive, the router advertises the connected network into OSPF but does not attempt to form an adjacency there.

This is a realistic routing troubleshooting pattern because the configuration can look mostly correct until you inspect the passive-interface setting.

Exam trap

A frequent exam trap is to incorrectly believe that OSPF process IDs must match between routers to exchange routes or that OSPF only works on serial links. Candidates may also overlook the passive-interface setting, assuming that the presence of correct network statements guarantees neighbor formation. The passive-interface command disables hello packets, which are essential for OSPF adjacency.

This subtle configuration detail often causes confusion because the router still advertises the network but refuses to form neighbors, leading to missing routes despite seemingly correct OSPF setup.

Why the other options are wrong

B

Incorrect because OSPF process IDs are locally significant and do not need to match between routers for adjacency or route exchange.

C

Incorrect because both routers' interfaces are in the same subnet 10.20.12.0/24, so subnet mismatch is not the cause of missing routes.

D

Incorrect because OSPF supports multiple link types including Ethernet; it is not limited to serial links only.

153
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure a primary default static route and a floating default static route on a Cisco router.

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, enter global configuration mode. Then configure the primary default route (no administrative distance specified, default 1). Next, configure the floating default route with a higher administrative distance (e.g., 5).

Exit configuration mode, and finally verify the static routes in the routing table.

154
Multi-Selectmedium

Which TWO statements correctly describe how a router selects the best path for a destination network when multiple routing table entries exist?

Select 2 answers
A.Routes with the longest prefix length (most specific) are preferred over routes with a shorter prefix.
B.If two routes have the same prefix length, the route with the higher administrative distance is selected.
C.When the administrative distance is identical, the router compares the metric and selects the route with the lowest metric.
D.A directly connected route has an administrative distance of 1, making it more trustworthy than any dynamic route.
E.Dynamic routes are always preferred over directly connected routes because they can adapt to network changes.
AnswersA, C

The router always uses the longest-prefix match first. A /24 route is preferred over a /16 route for the same destination.

Why this answer

Routers select the best path by first applying the longest prefix match rule (most specific subnet mask), so option A is correct. If two routes have the same prefix length, the router then compares administrative distance (AD) and prefers the lower AD; option B is incorrect because it says higher AD is selected. When AD is equal, the router uses metric and chooses the lowest metric, making option C correct.

Option D is false because directly connected routes have an AD of 0, not 1, and they are indeed more trustworthy than dynamic routes but not due to AD 1. Option E is wrong because directly connected routes are always preferred over dynamic routes regardless of adaptability.

Exam trap

Cisco often tests the exact administrative distance values (e.g., directly connected = 0, static = 1) and the correct comparison order (prefix length first, then AD, then metric) to catch candidates who confuse AD with metric or misremember default values.

Why the other options are wrong

B

The router selects the route with the lower administrative distance, not higher. Administrative distance is a measure of trustworthiness; a lower value indicates a more reliable source. For example, a static route (AD 1) is preferred over an OSPF route (AD 110).

D

Directly connected routes have an administrative distance of 0, not 1. An AD of 0 is the most trustworthy and cannot be overridden by any dynamic route. The value 1 is used for static routes.

E

Directly connected routes have an AD of 0, which is lower than any dynamic routing protocol (e.g., OSPF AD 110, EIGRP AD 90). Therefore, directly connected routes are always preferred over dynamic routes, not the other way around.

155
MCQmedium

A router learns 203.0.113.0/24 through OSPF and 203.0.113.0/25 through a static route. Which route is used for traffic destined to 203.0.113.10?

A.The OSPF /24 route
B.The static /25 route
C.Both routes equally
D.Neither route because the prefixes overlap
AnswerB

Correct. The /25 is more specific and matches the destination.

Why this answer

Routers prefer the most specific matching route first. The /25 route is more specific than the /24 and includes 203.0.113.10.

Exam trap

Remember that the most specific route (longest prefix) is always preferred, regardless of the routing protocol.

Why the other options are wrong

A

The OSPF /24 route is less specific than the static /25 route. The longest prefix match rule dictates that the /25 route is preferred for destination 203.0.113.10, which falls within the /25 range.

C

Equal-cost load balancing only applies when multiple routes have the same prefix length and metric. Here, the prefix lengths differ (/24 vs /25), so the longest prefix match selects the /25 route exclusively.

D

Overlapping routes are common in routing tables and do not cause a problem. The router always selects the most specific match (longest prefix) for forwarding, so both routes can coexist.

156
MCQhard

Refer to the exhibit. A network engineer is troubleshooting connectivity to server 10.10.10.130. The routing table contains both a static route and an OSPF route for overlapping prefixes. The engineer examines the specific routing entry for 10.10.10.130. Based on the output, why does the router choose the route via 10.1.1.2 instead of the OSPF route via 10.2.2.2 (for 10.10.10.0/24)?

A.The static route has a lower administrative distance (1) than the OSPF route (110).
B.The OSPF route is inactive because its next-hop 10.2.2.2 is down.
C.The static route has a longer prefix length (/26) than the OSPF route (/24), making it a more specific match.
D.The router prefers the static route because it has a metric of 0, which is better than the OSPF metric.
AnswerC

The routing entry explicitly shows the subnet mask /26. Longest prefix match is the first rule in IP routing, so the /26 is preferred despite AD or metric.

Why this answer

The exhibit shows "Routing entry for 10.10.10.128/26", a /26 prefix. The router uses longest prefix match as the first step in route selection, so a /26 is more specific than the OSPF /24 and chosen regardless of AD or metric.

Exam trap

Many candidates incorrectly think the static route wins because of its lower administrative distance (1 vs 110), overlooking that prefix length always takes precedence in the routing decision process.

Why the other options are wrong

A

This reflects a common misunderstanding that AD is the sole tie-breaker between routes from different sources, ignoring prefix length priority.

B

Candidates might assume that if the OSPF route is not used, it must be inactive; however, the exhibit does not show this.

D

Candidates may mistake metric for the primary selection criterion, not realizing prefix length dominates all other route comparison steps.

157
MCQhard

A router has routes to 192.168.100.0/24 and 192.168.100.128/25. Which route is used for traffic to 192.168.100.140?

A.192.168.100.0/24
B.192.168.100.128/25
D.Neither route, because the prefixes overlap
AnswerB

This is correct because .140 falls within the 192.168.100.128/25 range.

Why this answer

The /25 route is used because it is the most specific matching prefix. In practical terms, 192.168.100.140 falls inside the upper half of the /24, which is exactly what the 192.168.100.128/25 route describes. Even though the /24 also matches, the router always prefers the narrower route when both are valid.

This is a direct longest-prefix-match question. It reinforces that specificity is checked before broader route-source preferences matter.

Exam trap

A frequent exam trap is assuming that the less specific route (192.168.100.0/24) will be used simply because it covers the entire subnet range or because it might have a better administrative distance. Candidates might also think overlapping prefixes cause routing conflicts that prevent either route from being used. However, Cisco routers resolve overlapping routes by always selecting the longest prefix match, which is the most specific subnet.

Ignoring this rule leads to incorrect answers and misunderstanding of routing behavior.

Why the other options are wrong

A

The 192.168.100.0/24 route is less specific than the 192.168.100.128/25 route. Although it matches the destination IP, the router prefers the more specific /25 route, so this option is incorrect.

C

The default route is only used when no more specific routes match the destination IP. Since both /24 and /25 routes match, the default route is not used, making this option incorrect.

D

Although the prefixes overlap, this is a normal and expected behavior in routing. The router resolves overlapping prefixes using longest prefix match, so traffic is forwarded correctly. Therefore, this option is incorrect.

158
MCQhard

Based on the exhibit, why is the static route not being used for 172.18.9.10?

A.Because the connected /24 route is more specific than the static /16 route.
B.Because static routes are never used when a connected network exists anywhere in the table.
C.Because connected routes always have administrative distance 255.
D.Because static routes work only for default routing.
AnswerA

This is correct because longest-prefix match causes the connected /24 to be used for that destination.

Why this answer

The static route is not being used because the connected route is the more specific match. In practical terms, route selection starts with prefix specificity. The static route covers a broad /16, but the destination 172.18.9.10 also falls inside a connected /24. The /24 wins because it is more specific.

This is a classic routing interpretation question because it tests whether you apply longest-prefix logic before thinking about route source preference.

Exam trap

A common exam trap is assuming that static routes are always preferred over connected routes or that connected routes have a higher administrative distance. Candidates might overlook the longest-prefix match rule and focus only on administrative distance or route type. This leads to the incorrect conclusion that the static /16 route should be used for 172.18.9.10, ignoring that the connected /24 route is more specific and therefore preferred.

Misunderstanding this concept causes errors in interpreting routing tables and route selection behavior.

Why the other options are wrong

B

This is incorrect because static routes are still used when no connected route matches the destination. The presence of any connected route does not prevent static routes from being used if they are more specific or the only match.

C

This is wrong because connected routes have an administrative distance of 0, not 255. The issue here is route specificity, not administrative distance values.

D

This is incorrect because static routes can be configured for any prefix length, not just default routes. They are valid for specific subnets and are commonly used for precise routing control.

159
Multi-Selectmedium

Which three statements about IPv6 routing are correct? (Choose three.)

Select 3 answers
.IPv6 static routes can be configured using the 'ipv6 route' command.
.The next-hop address for a directly attached IPv6 static route can be a link-local address.
.OSPFv3 uses the same basic algorithm as OSPFv2 but is designed for IPv6.
.IPv6 routing is enabled by default on all Cisco routers.
.The default route in IPv6 is represented as ::/128.
.EIGRP for IPv6 uses the same autonomous system number as EIGRP for IPv4 and shares the same routing table.

Why this answer

All three statements are correct. The 'ipv6 route' command is used to configure static routes in IPv6, similar to 'ip route' in IPv4. A directly attached IPv6 static route can indeed use a link-local address as the next hop, which is common for point-to-point interfaces.

OSPFv3 (OSPF for IPv6) uses the same fundamental SPF algorithm and link-state concepts as OSPFv2 but is designed to support IPv6 addressing and runs per-link rather than per-subnet.

Exam trap

Cisco often tests the nuance that a link-local address can be used as a next hop for a directly attached IPv6 static route only if the exit interface is explicitly specified, leading candidates to incorrectly think link-local addresses are never valid next hops.

160
MCQhard

A network engineer notices that an OSPF adjacency between R1 and R2 is flapping between FULL and DOWN state every 40 seconds. The dead interval on both routers is configured as 40 seconds. The hello interval on R1 is 10 seconds, and on R2 it is 30 seconds. What is the most likely cause?

A.Duplicate OSPF router IDs are causing the adjacency to reset each time the mismatched routers see each other's LSAs.
B.Mismatched hello intervals cause the dead timer on R1 to expire before receiving a hello from R2, tearing down the adjacency.
C.A network type mismatch between broadcast and point-to-point is causing periodic DR/BDR elections that reset the adjacency.
D.An OSPF authentication mismatch is causing periodic rejection of hello packets on one router.
AnswerB

R1 with a 10-second hello expects a hello within the 40-second dead interval. R2 sends hellos only every 30 seconds. Because of queuing or processing jitter, R1's dead timer can expire just before R2's hello arrives, dropping the adjacency. The dead interval restarting every 40 seconds aligns exactly with the observed flapping cycle.

Why this answer

The mismatched hello intervals cause the dead timer on R1 to expire before receiving a hello from R2. R1 sends hellos every 10 seconds and expects to hear from R2 at least once every 40 seconds (dead interval). R2, however, only sends hellos every 30 seconds.

Due to timing jitter and processing delays, R1's dead timer occasionally expires just before R2's hello arrives, leading to the adjacency being torn down. After the adjacency drops, OSPF attempts to re-establish it, resulting in a cyclical FULL-DOWN pattern every 40 seconds. The other options are real OSPF issues but do not produce this specific timing: duplicate router IDs would cause persistent instability without a regular interval; an authentication mismatch would prevent the adjacency from forming at all; a network type mismatch might cause DR/BDR election problems but would not flap with precise dead-interval regularity.

Exam trap

Many candidates immediately suspect an authentication mismatch because it is a common reason for OSPF adjacencies to fail. However, authentication problems prevent Hello exchange altogether, so the routers would never reach FULL state, eliminating the flapping symptom.

Why the other options are wrong

A

Candidates often recall that duplicate router IDs break adjacencies and assume any flapping must be caused by this. They miss the regular timing correlation with the dead interval.

C

Network type mismatch is a common OSPF troubleshooting topic, and candidates may attribute any flapping to mismatched types, overlooking the precise timer-derived timing.

D

Authentication problems are a frequent first guess for adjacency failures. The flapping behavior here contradicts a permanent rejection.

161
MCQhard

Two routers, R1 and R2, have been configured with HSRP for VLAN 10 to provide default gateway redundancy to hosts. The virtual IP address is 192.168.10.1. After configuration, end hosts report inconsistent connectivity to the gateway, and a failover test reveals that when the active router is shut down, connectivity is lost. The network administrator checks the HSRP status on both routers. Based on the output shown, what is the most likely cause of the redundancy failure?

A.R2 has a lower HSRP priority than R1, so it cannot become standby.
B.The HSRP group number is mismatched between R1 and R2.
C.The HSRP authentication strings do not match.
D.HSRP version 1 is used on R1 while version 2 is used on R2.
AnswerB

R1 uses group 10, while R2 uses group 20. This creates two isolated HSRP processes with no shared virtual MAC or failover capability, which directly explains the redundancy failure.

Why this answer

HSRP uses the group number to identify the virtual router instance. If the group numbers on R1 and R2 do not match, they will not form a neighbor relationship or exchange HSRP messages, so neither router will know the other exists. This prevents failover: when the active router goes down, the standby router does not take over because it never learned about the active router's state.

The output would show that each router believes it is the active router (or that no standby exists), confirming the mismatch.

Exam trap

Cisco often tests the HSRP group number mismatch as a subtle cause of redundancy failure because candidates focus on priority or authentication and overlook the fundamental requirement that the group number must be identical on all routers in the same virtual router group.

Why the other options are wrong

A

The output shows R2 is Active in its own group (20); priority only affects role election within the same group. The real problem is separate group numbers.

C

With mismatched authentication, the state would not be Active. The exhibit clearly shows Active on both routers, so authentication is not the cause.

D

Version mismatch would not change the displayed group number; the group number discrepancy is the direct evidence shown in the exhibit.

162
MCQhard

Why is R1 not installing the floating static default route into the routing table?

A.Because the OSPF default route has a lower administrative distance than the floating static route.
B.Because static default routes can never be used when OSPF is enabled.
C.Because the static default route must use a /24 mask instead of 0.0.0.0.
D.Because the next hop of a floating route must be a loopback address.
AnswerA

This is correct because the backup static route is designed to lose while the lower-distance OSPF default remains active.

Why this answer

The floating static default route is not installed because the primary default route is already present and has a lower administrative distance. In practical terms, a floating static route is meant to sit in reserve and appear only when the preferred route is unavailable. Since the OSPF default route is active and has a better administrative distance, the backup route is not used yet.

This is a classic route-preference question. The key idea is not just that a static route exists, but that a higher-distance static route is intentionally designed to lose until the primary path disappears.

Exam trap

A frequent exam trap is assuming that a static default route must always appear in the routing table regardless of other routes. Candidates often think the floating static route is missing or misconfigured when it is simply suppressed due to its higher administrative distance compared to the OSPF default route. This misunderstanding leads to incorrect troubleshooting steps or answer choices.

Remember, floating static routes are designed to be backup routes and only become active when the primary route is unavailable, so their absence in the routing table under normal conditions is expected behavior.

Why the other options are wrong

B

Incorrect. Static default routes can coexist with OSPF routes. The router uses administrative distance to determine which route to install, so static routes are not automatically ignored when OSPF is enabled.

C

Incorrect. A default route must use the destination 0.0.0.0 with a mask of 0.0.0.0. Using a /24 mask is invalid for a default route and would not solve the issue of route selection.

D

Incorrect. Floating static routes do not require the next hop to be a loopback address. The next hop can be any reachable IP address, so this is not the reason the route is not installed.

163
Drag & Drophard

Drag and drop the following steps into the correct order for the router's routing table lookup process when forwarding a packet to a destination IP address, including the best-path selection logic.

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

Why this order

The routing table lookup first matches the destination with the longest prefix, then applies tie-breakers: lowest administrative distance, then lowest metric, to determine the best path for forwarding.

Exam trap

Do not confuse the order of tie-breakers: administrative distance is always considered before metric. Also, remember that routing table lookup uses longest prefix match, not first match like ACLs.

164
Multi-Selectmedium

Which two statements accurately describe OSPF route selection or behavior at the CCNA level?

Select 2 answers
A.OSPF uses cost as its metric for choosing paths within OSPF.
B.OSPF compares its metric directly against EIGRP metrics across protocols.
C.OSPF route preference versus other route sources involves administrative distance.
D.OSPF process IDs must match between all neighboring routers.
E.OSPF can never install equal-cost paths.
AnswersA, C

This is correct because cost is the standard OSPF metric.

Why this answer

OSPF uses cost as its metric for path selection within the protocol, and OSPF routes are compared against other route sources using administrative distance when cross-protocol decisions are needed. OSPF supports equal-cost multi-path (ECMP), meaning it can install multiple equal-cost paths to the same destination, so option E is incorrect. The wrong answers confuse cost with administrative distance, treat process IDs as globally significant, or incorrectly direct cross-protocol metric comparisons.

Exam trap

A frequent exam trap is confusing OSPF’s cost metric with administrative distance or thinking that OSPF process IDs must match between neighbors. Many candidates incorrectly believe that OSPF compares its metric directly against EIGRP metrics or that process IDs are globally significant. This misunderstanding leads to wrong answers because OSPF cost is only used internally within OSPF to select the best path, while administrative distance is used to compare routes from different protocols.

Also, OSPF process IDs are locally significant identifiers and do not need to match for adjacency to form.

Why the other options are wrong

B

Option B is incorrect because OSPF does not compare its metric directly against EIGRP metrics. Metrics are protocol-specific and only administrative distance is used to compare routes across different protocols.

D

Option D is incorrect because OSPF process IDs are locally significant and do not need to match between neighboring routers. Adjacency forms based on matching parameters like area ID and authentication, not process ID.

E

Option E is incorrect because OSPF supports equal-cost multipath (ECMP) routing, allowing multiple routes with the same cost to be installed and used simultaneously for load balancing.

165
Drag & Dropmedium

Drag and drop the following OSPFv2 neighbor state transitions into the correct order, starting from the initial Down state on a broadcast or point-to-point network (non-NBMA).

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

Why this order

The standard OSPF neighbor state machine on broadcast and point-to-point networks proceeds: Down, Init, 2-Way, ExStart, Exchange, Loading, Full. The Attempt state exists only on NBMA networks and is not used here. Option D correctly lists the first five states in order: Down → Init → 2-Way → ExStart → Exchange.

Other options incorrectly include the NBMA-only Attempt state or misorder the states like Loading before Exchange.

Exam trap

Do not confuse the standard OSPF neighbor states with the NBMA-specific Attempt state; unless the network type is explicitly NBMA, assume the common broadcast/point-to-point order omitting Attempt.

166
MCQhard

A network engineer configures a primary default route via Gi0/0 (next-hop 192.168.12.2) and a floating static default route via Gi0/1 (next-hop 192.168.12.6) with AD 200. To test failover, the engineer issues the shutdown command on Gi0/0. After this, the router does not have a default route in the routing table. Which problem explains this behavior?

A.The backup interface Gi0/1 is administratively down, making the next-hop unreachable.
B.The floating static route uses an administrative distance of 200, which is too low to replace the primary route.
C.The primary default route remains in the routing table because shutting down Gi0/0 does not remove the static route.
D.The floating static route is missing a track object, so the router cannot detect the primary path failure.
AnswerA

With both interfaces down, the router cannot reach either next-hop, so no default route is installed.

Why this answer

A floating static route is installed only if its next-hop is reachable and the primary route (with lower AD) is absent. Shutting down Gi0/0 removes the primary route. However, backup interface Gi0/1 is also administratively down, so the next-hop 192.168.12.6 is unreachable, and the floating route is not installed.

Option A correctly identifies the interface status as the root cause. Option B is wrong because a higher AD (200) correctly designates this as a backup; a lower AD would make it primary. Option C is false; shutting down an interface removes connected routes, which causes the recursive static route to be purged.

Option D is incorrect because floating static routes do not require a track object—the AD difference alone dictates failover when the primary is removed.

Exam trap

The most common mistake is assuming a floating static route will automatically be installed when the primary route disappears, forgetting that the next-hop must be reachable.

Why the other options are wrong

B

A lower AD would make it preferred, defeating the purpose of a floating route.

C

The primary route is removed from the table when the interface goes down.

D

Track objects are optional enhancements for faster failover but not mandatory for floating static operation.

167
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure and verify OSPFv3 neighbor adjacency using link-local addresses in area 0.

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 enables IPv6 unicast routing globally, creates the OSPFv3 process, enters interface configuration, assigns the interface to the OSPFv3 process in area 0 (which activates OSPFv3 on the link), and finally verifies the neighbor relationship. IPv6 unicast routing must be enabled first because OSPFv3 requires IPv6 packet forwarding. The router process must exist before an interface can be associated with it.

Assigning the interface to area 0 triggers Hello packet exchange over link-local addresses. The show command confirms the adjacency formed.

168
MCQeasy

Which static route on R1 sends all unknown IPv4 destinations to next-hop address 192.0.2.1?

A.ip route 0.0.0.0 255.255.255.255 192.0.2.1
B.ip route 0.0.0.0 0.0.0.0 192.0.2.1
C.ip route 255.255.255.255 0.0.0.0 192.0.2.1
D.ip default-gateway 192.0.2.1
AnswerB

Correct. 0.0.0.0/0 is the standard IPv4 default route.

Why this answer

A quad-zero route is the IPv4 default route. It matches destinations that do not have a more specific entry in the routing table.

Exam trap

A frequent exam trap is selecting a static route with the destination 0.0.0.0 but an incorrect subnet mask like 255.255.255.255, which matches only the single host 0.0.0.0 rather than all unknown destinations. Another common mistake is confusing the 'ip default-gateway' command with a default route; the former is used only on devices that do not perform routing, such as Layer 2 switches, and does not influence routing decisions on routers. Candidates must recognize that the default route requires both destination and mask to be 0.0.0.0 to function correctly as a catch-all route for unknown IPv4 destinations.

Why the other options are wrong

A

The route 'ip route 0.0.0.0 255.255.255.255 192.0.2.1' incorrectly uses a subnet mask of 255.255.255.255, which matches only the single host 0.0.0.0, not all unknown destinations. Therefore, it does not serve as a default route.

C

The route 'ip route 255.255.255.255 0.0.0.0 192.0.2.1' reverses the destination and mask fields, creating an invalid route that does not function as a default route or any valid static route.

D

'ip default-gateway 192.0.2.1' sets the default gateway for devices that do not perform routing, such as Layer 2 switches. It does not create a routing entry on routers and therefore cannot be used to send unknown IPv4 destinations.

169
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure and verify HSRP with priority and preemption on an interface.

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
6Step 6

Why this order

First, enter interface configuration mode to start configuring the specific interface. Next, assign an IP address because HSRP requires a real IP on the interface for communication between HSRP routers. After that, define the HSRP group and virtual IP, which clients use as their default gateway.

Then set a higher priority to influence the active router election; priority must be configured before enabling preemption, as preemption relies on priority to determine when to take over. Finally, exit configuration mode and verify with show standby to confirm the HSRP state.

170
MCQhard

A router has routes to 192.168.0.0/16 and 192.168.50.0/24. Which route is used for traffic to 192.168.50.99?

A.192.168.0.0/16
B.192.168.50.0/24
D.Both routes equally
AnswerB

This is correct because it is the more specific route for the destination.

Why this answer

The 192.168.50.0/24 route is used because it is more specific. In practical terms, even though the /16 also matches, the router always prefers the route that describes the destination more narrowly. Since 192.168.50.99 falls inside the /24, longest-prefix match chooses that entry.

This is a basic but essential routing rule. The broader /16 still matters for other destinations in 192.168.0.0/16, but not for this one.

Exam trap

Remember that routers prefer the most specific route, not the broadest. Always look for the longest prefix match.

Why the other options are wrong

A

The route 192.168.0.0/16 is less specific (larger subnet) than the matching /24 route. In longest prefix match routing, the more specific route (192.168.50.0/24) is always preferred for the destination 192.168.50.99.

C

A default route (0.0.0.0/0) is only used when no more specific route matches the destination. Since both 192.168.0.0/16 and 192.168.50.0/24 match 192.168.50.99, the default route is not considered.

D

Routers do not load balance between routes of different prefix lengths for the same destination. The longest prefix match rule selects a single best route. Both routes are not used equally; the /24 route is chosen.

171
Matchingmedium

Match each troubleshooting command focus to what it most directly helps verify.

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

Concepts
Matches

Routing-table contents

OSPF adjacency status

Trunk forwarding and allowed VLAN status

EtherChannel bundle status

Why these pairings

'show ip route' directly displays the routing table, allowing verification of known routes and next-hop paths. 'show ip ospf neighbor' shows OSPF neighbor relationships and their states, confirming adjacency formation. 'show interfaces trunk' reveals trunk status, encapsulation, and allowed VLANs on a trunk link. 'show etherchannel summary' lists all EtherChannel bundles, their member ports, and the bundle's operational status. Each command targets a distinct verification area: routing table contents, OSPF neighbor adjacencies, trunk forwarding details, and EtherChannel bundle status.

Exam trap

Do not confuse commands that test connectivity or show interface status with those that display the routing table. 'show ip route' is the only command that directly shows routing table entries.

172
MCQhard

Refer to the exhibit. A network administrator is troubleshooting why not all OSPF neighbors are fully adjacent on a multi-access broadcast segment. After issuing the show ip ospf neighbor command on R1, the output is displayed. What is the most likely cause of the 2WAY/DROTHER state for neighbor 172.16.1.1?

A.The neighbor is a DROther and a full adjacency with another DROther is not required; adjacency is formed only with the DR and BDR.
B.The OSPF hello and dead timers are mismatched between R1 and neighbor 172.16.1.1.
C.The network type is configured as point-to-point on one side and broadcast on the other, causing a DR/BDR election failure.
D.The neighbor's router ID 172.16.1.1 is not reachable, preventing the completion of the adjacency process.
AnswerA

The exhibit shows neighbor 172.16.1.1 in state 2WAY/DROTHER. In a broadcast multi-access OSPF network, DROthers exchange hellos and reach 2-Way state with each other but stop at that stage, establishing full adjacency only with the DR and BDR. This is standard OSPF behavior and the most likely reason for the state.

Why this answer

The output shows neighbor 172.16.1.1 in state 2WAY/DROTHER. On a broadcast multi-access network (indicated by the presence of DR and BDR roles), OSPF routers that are not the DR or BDR become DROthers. DROthers reach the 2-Way state with one another but do not form full adjacencies; full adjacency is established only with the DR and BDR.

Therefore, the 2WAY state is normal and expected for two DROthers. The output explicitly displays the neighbor role as DROTHER, confirming this interpretation.

Exam trap

Candidates often misinterpret 2WAY as a fault. The most common wrong choice is option B (timer mismatch) because they assume any non-FULL state indicates a parameter mismatch, but 2WAY is a correct operational state for DROthers on a broadcast network.

Why the other options are wrong

B

Candidates mistakenly think any non-FULL state implies a timer mismatch, overlooking that timer issues prevent even reaching 2WAY.

C

Some candidates assume any DR/BDR-related issue indicates a network type mismatch, but the exhibit clearly shows successful DR/BDR formation, ruling out this option.

D

Candidates may confuse LSA reachability with neighbor adjacency requirements. The 2WAY state proves basic connectivity is intact.

173
MCQhard

A network engineer configures a static route: ip route 192.168.10.0 255.255.255.0 10.1.1.2. The next hop 10.1.1.2 is reachable via OSPF. Later, the engineer notices that the route to 192.168.10.0/24 has disappeared from the routing table. What is the most likely cause?

A.The OSPF route to 10.1.1.0/30 has been lost, making the next-hop address 10.1.1.2 unresolvable.
B.The static route has a higher administrative distance than OSPF, so OSPF's route to 192.168.10.0/24 replaced it.
C.The static route uses a next-hop IP address that is not directly connected, which is unsupported on this platform.
D.A routing loop caused by recursive lookups has suppressed the static route to prevent loops.
AnswerA

A recursive static route requires a next-hop that is resolvable via an existing route. Without the OSPF route to the subnet containing 10.1.1.2, the router cannot reach the next hop and removes the static route from the routing table.

Why this answer

A recursive static route uses a next-hop IP address; the router must have a route that resolves that next hop. If the OSPF route to the 10.1.1.0/30 network is lost, the next-hop 10.1.1.2 becomes unreachable, and the static route is withdrawn from the routing table. None of the other explanations account for the route disappearance given the scenario.

Exam trap

The static route has a higher administrative distance than OSPF, so OSPF's route is used instead. This is tempting because many candidates believe that a static route is removed when a better route exists, but in reality the static route remains in the table (inactive) if its next hop is still reachable. The prompt states the route disappeared, not that it was overridden.

Why the other options are wrong

B

Believing that a static route is removed from the routing table when a better route exists, rather than understanding it remains but is inactive.

C

Assuming that a static route's next-hop must be directly attached, ignoring that recursive routing via another routing protocol or static route is allowed.

D

Thinking that recursive static routes are prone to loop suppression, rather than understanding that the route is simply withdrawn when the next-hop is no longer reachable.

174
Drag & Dropmedium

Drag and drop the following steps into the recommended order (best practice) to configure IPv4 and IPv6 static routes, a default route, and a floating static route with higher AD as a backup for the default route, then verify with show ip route and show ipv6 route.

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

Why this order

The recommended best-practice order is to configure specific static routes first, then the default route, and finally the floating static route with a higher AD (e.g., 200) so it acts as a backup for the default route. Verification using show ip route and show ipv6 route confirms the routing table. Options that place the default route before specific routes or the floating route before the default are still operational but may cause temporary routing issues or violate the typical progression from specific to general.

Exam trap

The exam trap is that candidates may confuse the order of configuration, especially placing the default route or floating static route before specific static routes. Remember: specific routes first, then default, then backup (floating) with higher AD.

175
MCQmedium

A router advertises its LAN network into OSPF, but no OSPF Hellos should be sent toward end-user devices on that LAN. Which configuration approach solves this cleanly?

A.Use ip ospf cost 65535 on the LAN interface
B.Configure the LAN interface as a passive interface in OSPF
C.Disable OSPF globally and redistribute connected routes
D.Convert the LAN interface to a loopback
AnswerB

Passive interface stops Hellos while still advertising the subnet.

Why this answer

A passive interface advertises the connected subnet into OSPF without sending or processing Hellos on that interface. That is exactly what you want for user-facing LANs with no OSPF neighbors.

Exam trap

A frequent exam trap is selecting the option to increase the OSPF cost on the LAN interface to prevent Hello packets. While adjusting the cost changes the metric used for route selection, it does not stop the router from sending or receiving OSPF Hellos. Another common mistake is to disable OSPF globally and redistribute connected routes, which is unnecessarily complex and does not address the problem of suppressing Hellos on a specific interface.

Additionally, converting the LAN interface to a loopback is irrelevant because loopbacks are logical interfaces used for router IDs and testing, not for controlling OSPF Hello behavior on physical LAN interfaces.

Why the other options are wrong

A

Using 'ip ospf cost 65535' on the LAN interface only changes the OSPF metric for that interface. It does not prevent the router from sending or receiving OSPF Hello packets, so neighbor adjacencies can still form, which is not the desired behavior.

C

Disabling OSPF globally and redistributing connected routes is an overly complex and unnecessary approach. It does not selectively stop Hello packets on the LAN interface and can introduce routing complexity and instability.

D

Converting the LAN interface to a loopback interface changes the interface type entirely and is not a standard or practical solution for suppressing OSPF Hellos on a LAN. Loopbacks are logical interfaces used for router IDs and testing, not for controlling OSPF Hello behavior.

176
Matchingmedium

Match each route source or route type to its most accurate description.

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

Concepts
Matches

Present because the network is directly attached

Manually configured route

Learned dynamically through the routing protocol

Backup static route with higher administrative distance

Why these pairings

Connected routes are automatically added when an interface is active and has an IP address configured; static routes are manually entered by an administrator; OSPF routes are dynamically learned through the OSPF link-state routing protocol; floating static routes are static routes configured with a higher administrative distance than the primary route, serving as a backup.

Exam trap

The exam often tests the automatic nature of connected routes. Do not confuse them with static or dynamic routes. Remember that connected routes appear only when the interface is up/up.

177
MCQmedium

Which OSPF network type on Ethernet performs a DR and BDR election by default?

A.Point-to-point
B.Broadcast
C.Point-to-multipoint nonbroadcast
D.Loopback
AnswerB

Correct. Ethernet defaults to the broadcast network type.

Why this answer

Broadcast multiaccess networks such as Ethernet elect a DR and BDR by default.

Exam trap

A frequent exam trap is selecting point-to-point or point-to-multipoint nonbroadcast as the network type that performs DR/BDR elections. Candidates often assume any multi-router link requires DR/BDR, but OSPF only elects DR/BDR on broadcast and NBMA networks. Point-to-point links connect exactly two routers and do not need DR/BDR, while point-to-multipoint nonbroadcast requires manual neighbor configuration and does not elect DR/BDR by default.

Misunderstanding these distinctions leads to incorrect answers. Remember, Ethernet interfaces default to broadcast network type, which triggers DR/BDR elections automatically.

Why the other options are wrong

A

Point-to-point links connect only two routers directly and do not require or perform DR/BDR elections because there is no need to reduce flooding on a single link. Selecting this option is incorrect for Ethernet interfaces that default to broadcast.

C

Point-to-multipoint nonbroadcast network type requires manual neighbor configuration and does not perform DR/BDR elections by default. This does not match the default behavior of Ethernet interfaces.

D

Loopback interfaces are virtual interfaces used for router identification and do not participate in OSPF DR/BDR elections because they are not multiaccess networks.

178
MCQmedium

Why is a default route useful on a small branch router connected to a single upstream provider?

A.It provides a simple next hop for unknown destinations toward the upstream connection.
B.It makes every route more specific.
C.It replaces the need for any interface addressing.
D.It forces all users into one VLAN.
AnswerA

This is correct because that is the classic role of a default route at the branch edge.

Why this answer

A default route is useful because it gives the branch a simple fallback next hop for destinations the router does not know specifically. In practical terms, the branch router does not need a full table of every external destination if all unknown traffic should go upstream. That keeps the design simple and efficient.

This is one of the most practical default-route use cases in small or edge networks.

Exam trap

A frequent exam trap is assuming that a default route makes every route more specific or that it replaces the need for interface addressing. Some candidates mistakenly believe the default route refines routing granularity, but it actually represents the least specific route, catching all unknown destinations. Others incorrectly think default routes eliminate the need for IP addresses on interfaces, which is false because interfaces must always have valid IP configurations for routing to function.

Misunderstanding these points can lead to incorrect answers about routing behavior and network design.

Why the other options are wrong

B

Incorrect because a default route is the least specific route and does not make routes more specific; it serves as a catch-all for unknown destinations.

C

Incorrect because interface addressing is mandatory for routing to function properly; a default route does not replace the need for IP addresses on interfaces.

D

Incorrect because default routes influence packet forwarding decisions and have no impact on VLAN assignments, which are Layer 2 configurations.

179
PBQmedium

You are connected to R1 via the console. R1 and R2 are configured with EIGRP AS 100. R1 has two paths to the 172.16.1.0/24 network: one via a FastEthernet link to R2 (bandwidth 100 Mbps, delay 100 microseconds) and another via a serial link to R2 (bandwidth 1.544 Mbps, delay 20000 microseconds). The EIGRP metric is calculated using the default K-values. The FastEthernet link is preferred, but you need to make the serial link the backup by adjusting the administrative distance.

Network Topology
Fa0/0 10.0.0.1/30Fa0/0 10.0.0.2/30R1R2

Hints

  • The default administrative distance for EIGRP is 90 for internal routes.
  • Use an administrative distance value greater than 90 to make the static route less preferred.
  • The command uses 'ip route' with an AD value at the end.
A.Configure a static route to 172.16.1.0/24 with next-hop 10.0.0.6 and administrative distance 170.
B.Configure a static route to 172.16.1.0/24 with next-hop 10.0.0.6 and administrative distance 90.
C.Configure a static route to 172.16.1.0/24 with next-hop 10.0.0.6 and administrative distance 1.
D.Configure a static route to 172.16.1.0/24 with next-hop 10.0.0.6 and administrative distance 255.
AnswerA
solution
! R1
ip route 172.16.1.0 255.255.255.0 10.0.0.6 170

Why this answer

A floating static route is configured with an administrative distance of 170, which is higher than EIGRP's default distance of 90. This ensures that the static route is only used when the EIGRP route is not available. The static route points to the next-hop IP address of R2's serial interface.

Exam trap

Remember that a floating static route must have an administrative distance higher than the dynamic protocol's AD. EIGRP's default AD is 90, so choose an AD like 170. Avoid using AD 255, as it means the route is not installed.

Why the other options are wrong

B

The specific factual error is that an AD of 90 does not make the static route less preferred than EIGRP; it creates equal preference.

C

The specific factual error is that a lower AD makes the route more preferred, so the static route would override EIGRP.

D

The specific factual error is that AD 255 means the route is not trusted and is effectively ignored.

180
MCQhard

A router has an OSPF-learned route to a destination prefix and also a directly connected route to a broader supernet that includes that destination. The OSPF route is more specific. Which route is used for the destination?

A.The more specific OSPF route
B.The directly connected broader route
C.Both routes equally
D.Neither route can be used because the sources differ
AnswerA

This is correct because the most specific matching prefix is preferred first.

Why this answer

The more specific OSPF route is used. In practical terms, route specificity is checked before broader route-source considerations when the prefixes are different. Even though the connected route is a directly attached source and often strongly trusted, it still loses if it is less specific than another matching route.

This is a subtle route-selection question because it combines source type and specificity. The key is that longest-prefix match comes first.

Exam trap

A common exam trap is assuming that directly connected routes always take precedence over OSPF routes because they have a lower administrative distance. Candidates may incorrectly select the broader directly connected route, forgetting that routers first apply longest prefix match before considering administrative distance. This leads to the mistaken belief that a less specific connected route overrides a more specific OSPF route.

The trap is confusing route source preference with prefix specificity, which can cause incorrect answers on routing questions involving multiple route sources.

Why the other options are wrong

B

This option is incorrect because a directly connected route, even though it has a lower administrative distance, does not override a more specific OSPF route due to prefix length precedence.

C

This option is incorrect because routers do not use multiple routes equally when one route is a more specific match; only the best matching route is used for forwarding.

D

This option is incorrect because routers can compare and select routes from different sources; differing sources do not prevent route usage if one route is the best match.

181
MCQmedium

Why is a default route often described as a route of last resort?

A.Because it is used only when no more specific route matches.
B.Because it always has the lowest bandwidth.
C.Because it is more specific than any other route.
D.Because it can be learned only through OSPF.
AnswerA

This is correct because the default route is the fallback choice.

Why this answer

It is described that way because it is used only when no more specific route matches the destination. In practical terms, the router checks for connected, static, or dynamic routes that describe the destination more precisely. If it finds none, the default route becomes the fallback path.

This phrase captures the default route’s purpose exactly. It is not the fastest route or the most specific route. It is simply the catch-all route for otherwise unknown destinations.

Exam trap

A frequent exam trap is assuming the default route is the most specific or fastest route, or that it is exclusively learned through OSPF. Candidates may confuse the default route with routes learned dynamically or with specific metrics. The default route is actually the least specific route, matching all destinations not covered by other entries.

Misunderstanding this can lead to incorrect answers about routing behavior and protocol dependencies, especially since default routes can be configured statically or learned via multiple protocols, not just OSPF.

Why the other options are wrong

B

This option is incorrect because bandwidth does not determine whether a route is a default route. Default routes are about specificity and fallback behavior, not link speed or bandwidth.

C

This option is incorrect because the default route is the least specific route, not more specific than others. It matches all destinations not covered by other routes, so it cannot be more specific.

D

This option is incorrect because default routes can be learned through various routing protocols such as OSPF, EIGRP, or configured statically. It is not exclusive to OSPF.

182
PBQhard

You have console access to both R1 and R2. Configure OSPFv2 on both routers to establish a single-area adjacency in area 0. The link between R1 and R2 uses 10.0.0.0/30. Currently, OSPF is not configured on either router. After configuration, verify the adjacency forms and routes are exchanged.

Network Topology
G0/010.0.0.1/30G0/010.0.0.2/3010.0.0.0/30R1R2

Hints

  • Use 'router ospf <process-id>' to enter OSPF configuration mode.
  • The network statement uses a wildcard mask, not a subnet mask. For a /30, use 0.0.0.3.
  • Remember to set a router-id; it can be any IP address, but must be unique per router.
A.Configure 'router ospf 1' on R1 and R2, set router-id, and use 'network 10.0.0.0 0.0.0.3 area 0' on both routers.
B.Configure 'router ospf 1' on R1 only, and use 'network 10.0.0.0 0.0.0.3 area 0' on R1; R2 does not need OSPF configuration because it will learn routes via the directly connected interface.
C.Configure 'router ospf 1' on both routers, set router-id, and use 'network 10.0.0.0 255.255.255.252 area 0' on both routers.
D.Configure 'router ospf 1' on both routers, set router-id, and use 'network 10.0.0.0 0.0.0.0 area 0' on both routers.
AnswerA
solution
! R1
configure terminal
router ospf 1
router-id 1.1.1.1
network 10.0.0.0 0.0.0.3 area 0
network 192.168.1.0 0.0.0.255 area 0
network 10.1.1.1 0.0.0.0 area 0
passive-interface GigabitEthernet0/1
passive-interface Loopback0
end

Why this answer

The essential requirement is enabling OSPFv2 on both routers with matching area 0 on the 10.0.0.0/30 link. On R1 and R2, enter 'router ospf 1', set a unique router-id, and use 'network 10.0.0.0 0.0.0.3 area 0' to advertise the link. The solution commands include optional networks (192.168.1.0/24 and Loopback0) that are not required for the adjacency and are shown only as examples; candidates should focus on the link network.

After configuration, 'show ip ospf neighbor' should show a FULL state. Common mistakes include using a subnet mask instead of a wildcard mask (option C) or a /32 wildcard (option D), and not configuring OSPF on R2 (option B).

Exam trap

Remember that OSPF network statements use wildcard masks, not subnet masks. Also, both routers must be configured; OSPF does not automatically enable on all interfaces. Use 'show ip ospf neighbor' to verify adjacency formation.

Why the other options are wrong

B

The specific factual error is that OSPF is a dynamic routing protocol that must be enabled on both ends of a link for adjacency to form; one-sided configuration does not work.

C

The specific factual error is confusing subnet masks with wildcard masks; OSPF uses inverse masks in network statements.

D

The specific factual error is using a host wildcard mask that does not cover the actual interface IPs; the correct wildcard mask must include the range of IPs on the link.

183
MCQhard

R1 and R2 are directly connected and both configured for OSPF area 0. The IP addresses are correct, but the routers do not become neighbors. What is the most likely cause?

A.The OSPF network types on the interfaces do not match.
B.The routers need matching hostnames to exchange LSAs.
C.The /30 subnet is too small for OSPF to operate.
D.The interfaces must be converted into switch trunks.
AnswerA

This is correct because OSPF network type mismatch can prevent normal adjacency formation.

Why this answer

The most likely cause is an OSPF network type mismatch. In practical terms, both routers are on the same IP segment and both are trying to use OSPF in the same area, but they do not agree on the type of OSPF network the interface represents. That matters because OSPF behavior changes depending on the network type, including how neighbors are discovered and how adjacencies are formed.

This is a classic exam-style troubleshooting case because the obvious items look correct: IP addressing works and the area matches. But a mismatch between point-to-point and broadcast expectations can still stop the relationship from forming cleanly. That makes network type mismatch the strongest answer here.

Exam trap

A frequent exam trap is to overlook the importance of matching OSPF network types on connected interfaces. Candidates might assume that correct IP addressing and area numbers are sufficient for adjacency. However, if one router uses a broadcast network type and the other uses point-to-point, they will not become neighbors despite appearing correctly configured.

This subtle mismatch is often missed because it does not generate explicit errors, leading to confusion and incorrect troubleshooting steps.

Why the other options are wrong

B

This option is incorrect because OSPF neighbor relationships do not depend on matching hostnames. Hostnames are administrative identifiers and do not affect OSPF protocol operations or LSA exchanges.

C

This option is incorrect because a /30 subnet is a standard subnet size for point-to-point links and does not prevent OSPF from operating or forming adjacencies. OSPF works normally over /30 subnets.

D

This option is incorrect because OSPF runs over routed interfaces and does not require interfaces to be configured as switch trunks. Trunking is related to VLAN tagging and switching, not OSPF adjacency.

184
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure HSRP version 2 on a pair of routers, set the active router via priority and preempt, then verify the election and failover process.

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

Why this order

The correct order is: first configure HSRP version 2 on both routers to ensure they use the same protocol version. Then configure the virtual IP address; the virtual IP must be set before priority and preempt because priority and preempt reference the HSRP group that already has a virtual IP. Next, set the priority on the desired active router; priority determines which router becomes active when both have equal preempt settings.

Finally, enable preempt to allow the higher-priority router to take over if it recovers after a failure. The verify step confirms the active router and failover behavior.

Exam trap

Do not confuse the order of HSRP configuration steps. Always set the version first, then the virtual IP, then priority, then preempt. Many candidates mistakenly configure priority or preempt before the virtual IP, which leads to errors.

185
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure HSRP on a router and verify the active/standby election process.

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

Why this order

The order begins with interface and HSRP group configuration, then priority and preempt. Verification shows the current state, and failover testing validates the election process works correctly.

Exam trap

A common mistake is to think that preemption must be configured after priority; however, the CLI does not enforce this order. The real trap is placing verification after failover testing, as verification should first confirm the initial HSRP state, then failover can be tested.

186
PBQmedium

You are connected to R1 via console. R1 is connected to R2 via GigabitEthernet0/0 (10.0.0.1/30) and to R3 via GigabitEthernet0/1 (10.0.0.5/30). R1 has a management subnet 192.168.1.0/24 connected to GigabitEthernet0/2. The network administrator wants to ensure that traffic from the management subnet to the Internet (203.0.113.0/24) uses R2 as the primary path and R3 as a backup. Currently, OSPF is running with default metrics. You must configure a floating static route that will be used only if the OSPF route fails.

Network Topology
G0/010.0.0.1/30G0/110.0.0.5/30G0/2192.168.1.1/24R1R2R3Management subnet

Hints

  • Floating static route has a higher administrative distance than the dynamic route you want to back up.
  • The next-hop IP for the backup route is R3's interface IP connected to R1.
  • Check the OSPF administrative distance (default 110) and set the static route's AD accordingly.
A.ip route 203.0.113.0 255.255.255.0 10.0.0.6 150
B.ip route 203.0.113.0 255.255.255.0 10.0.0.2 150
C.ip route 203.0.113.0 255.255.255.0 10.0.0.6 110
D.ip route 0.0.0.0 0.0.0.0 10.0.0.6 150
AnswerA
solution
! R1
ip route 203.0.113.0 255.255.255.0 10.0.0.6 150

Why this answer

The floating static route is configured with an administrative distance of 150, which is higher than OSPF's default AD of 110. This ensures that the static route is only installed in the routing table when the OSPF route is not present (e.g., due to a failure). The next-hop is R3's IP on the directly connected link.

Exam trap

Remember that a floating static route requires an administrative distance higher than the dynamic protocol's default. Also, ensure the next-hop is the backup router's IP, not the primary. Do not confuse the destination network with a default route unless the question asks for Internet access in general.

Why the other options are wrong

B

The next-hop should be R3 (10.0.0.6), not R2 (10.0.0.2).

C

The AD must be higher than OSPF's 110 (e.g., 150) to act as a floating static route.

D

The destination network should be 203.0.113.0/24, not a default route.

187
PBQhard

You are connected to R1. Configure IPv4 and IPv6 static routes so that R1 can reach the loopback networks on R2 and R3 (203.0.113.0/24 and 2001:db8:1::/48) with proper failover. Ensure that the primary link (G0/0 to R2) is preferred over the backup link (G0/1 to R3) using a floating static route with an appropriate administrative distance. Additionally, configure a default route on R1 for IPv4 and IPv6 so that traffic to unknown destinations is forwarded via the primary link. Troubleshoot the existing configuration to identify and fix a recursive routing failure caused by a wrong next-hop address in one of the static routes.

Network Topology
G0/010.0.0.1/30G0/010.0.0.2/30G0/110.0.1.1/30G0/010.0.1.2/30R1R2R3

Hints

  • Check if the next-hop IP address for the IPv4 static route is reachable via a directly connected interface.
  • The recursive routing failure occurs because the route uses a next-hop that is not in the routing table; consider using an exit interface in the static route.
  • Verify the administrative distance of the floating static route is higher than the primary route's default AD of 1.
A.The recursive routing failure is caused by a missing route to the next-hop network; correct by changing the static route to use an exit interface: `ip route 203.0.113.0 255.255.255.0 GigabitEthernet0/0 10.0.0.2`
B.The floating static route for IPv4 should have an administrative distance of 1 to ensure it is preferred over the primary route.
C.The IPv6 static route to 2001:db8:1::/48 should use a next-hop of 2001:db8:0:1::1 (R1's own interface) to ensure reachability.
D.The default route for IPv4 should be configured with an administrative distance of 200 to match the floating static route.
AnswerA
solution
! R1
configure terminal
ip route 203.0.113.0 255.255.255.0 GigabitEthernet0/0 10.0.0.2
end
copy running-config startup-config

Why this answer

The recursive routing failure occurs because the static route `ip route 203.0.113.0 255.255.255.0 10.0.0.2` requires R1 to have a route to the next-hop network (10.0.0.0/30) in its routing table. Since 10.0.0.0/30 is directly connected via G0/0, the route should install, but if the interface is down or misconfigured, recursion fails. The fix is to specify both the exit interface and next-hop: `ip route 203.0.113.0 255.255.255.0 GigabitEthernet0/0 10.0.0.2`, which avoids recursive lookup.

Option B is wrong because an administrative distance of 1 would make the floating static route equal to the default AD of the primary static route, defeating failover; the floating route should have a higher AD (e.g., 200). Option C is wrong because using R1's own interface address (2001:db8:0:1::1) as next-hop would point the route back to itself, not to R2; the correct next-hop is R2's link-local or global address on G0/0. Option D is wrong because the default route for IPv4 should have the default AD of 1 to be preferred over the floating static route; setting it to 200 would make it equally preferred and could cause routing loops.

Exam trap

The key trap is that candidates may not realize that a static route with a next-hop address will fail if the router does not have a route to that next-hop network. Always verify that the next-hop is reachable via a connected route or use an exit interface to avoid recursive routing issues.

Why the other options are wrong

B

Administrative distance of 1 matches the default AD of a static route, so the floating route would not be less preferred; it needs a higher AD (e.g., 200) to act as a backup.

C

Using R1's own interface IPv6 address as next-hop would create a route pointing to itself, not to R2, and would not reach the loopback network.

D

The default route should use the default administrative distance (1) to remain the primary route; setting it to 200 would make it equal to the floating static route, causing unpredictable behavior.

188
MCQhard

Exhibit: OSPF neighbors are not reaching FULL state on an Ethernet segment with multiple routers. The output of show ip ospf neighbor on R2 shows a neighbor in the 2WAY/DROTHER state. What is the most likely reason?

A.Authentication mismatch between R2 and 3.3.3.3
B.The 2WAY state with another DROTHER on a broadcast segment is normal
C.R2 must be configured as a point-to-point network type
D.R2 has a duplicate router ID
AnswerB

DROTHER routers do not form full adjacency with every other DROTHER.

Why this answer

On a broadcast Ethernet network, two routers normally become fully adjacent through the DR or BDR. If the local router is stuck in 2WAY with another DROTHER, that is normal behavior. It is not a fault by itself.

Exam trap

A common exam trap is assuming that neighbors stuck in the 2-Way state indicate a problem requiring troubleshooting or configuration changes. Many candidates mistakenly believe that all OSPF neighbors on a broadcast segment must reach the FULL state with each other. However, OSPF’s design limits full adjacency to DR and BDR routers only.

DROTHER routers remain in 2-Way state with each other, which is normal and expected. Misinterpreting this behavior can lead to incorrect answers such as blaming authentication or router ID issues when the output actually reflects standard OSPF operation.

Why the other options are wrong

A

Authentication mismatches prevent OSPF neighbors from reaching the 2-Way state by blocking bidirectional communication. Since the neighbors here have reached 2-Way, authentication mismatch is unlikely the cause.

C

Configuring the network type as point-to-point is not required on Ethernet segments and would change the adjacency formation behavior rather than explain the current normal 2-Way state with DROTHER routers.

D

Duplicate router IDs cause adjacency failures and routing problems but do not cause neighbors to remain in the 2-Way state with DROTHER routers. The output does not indicate a router ID conflict.

189
MCQhard

An engineer configures a floating static route to 0.0.0.0/0 with an administrative distance of 200 while OSPF is providing a default route. What is the intended behavior?

A.The static default route acts as a backup and becomes active only if the OSPF default route is lost.
B.The static default route overrides OSPF immediately because it is manually configured.
C.Both default routes must always load-balance together.
D.The router ignores both defaults because they overlap.
AnswerA

This is correct because the higher administrative distance makes the static route float behind OSPF.

Why this answer

The intended behavior is that the static default route stays in reserve and becomes active only if the OSPF-learned default route disappears. In plain language, the administrator wants a backup path, not a replacement for the normal OSPF path. By assigning the static route a higher administrative distance than OSPF, the router treats it as less trustworthy during normal operation.

This is a standard floating-static design. The static route is still configured, but it does not normally appear as the preferred forwarding choice until the lower-distance route is lost. That is the key operational purpose of the configuration.

Exam trap

Don't assume static routes always take precedence over dynamic ones; administrative distance dictates preference.

Why the other options are wrong

B

The static default route has an administrative distance of 200, which is higher than OSPF's default distance of 110. Therefore, OSPF's route is preferred, and the static route does not override it. Manual configuration does not bypass administrative distance; the router always prefers the lower distance.

C

Load balancing requires multiple routes with equal administrative distance and metric. Here, OSPF and the static route have different administrative distances (110 vs. 200), so they are not equal. The router will only use the best route (OSPF) and not load-balance.

D

Overlapping default routes are common and do not cause the router to ignore them. The router uses the route with the lowest administrative distance (OSPF) and ignores the static route unless OSPF fails. There is no conflict that would cause both to be ignored.

190
MCQhard

A router learns the same destination from EIGRP and OSPF. The EIGRP route has a metric of 1000, and the OSPF route has a metric of 10. Which route is installed by default?

A.The OSPF route, because 10 is lower than 1000
B.The EIGRP route, because its source has a lower default administrative distance
C.Both routes automatically install for load balancing
D.Neither route installs until the administrator chooses manually
AnswerB

This is correct because EIGRP is preferred over OSPF by default due to administrative distance.

Why this answer

The EIGRP route is installed by default because route selection between different routing protocols is based on administrative distance before the protocol-specific metric is compared across sources. In plain language, the router does not compare an OSPF metric of 10 directly against an EIGRP metric of 1000 because those metrics come from different systems and are not numerically comparable in a meaningful cross-protocol way. Instead, the router first looks at the trustworthiness of the source.

By default, internal EIGRP routes have a lower administrative distance than OSPF routes, so EIGRP wins even though the OSPF metric value appears lower. This is a classic CCNA trap designed to catch people who compare metrics across different protocols without considering administrative distance first.

Exam trap

A common exam trap is to assume that the route with the numerically lowest metric is always preferred, regardless of the routing protocol. In this question, the OSPF route has a metric of 10, which looks better than the EIGRP metric of 1000. However, metrics from different protocols are not directly comparable.

The router first compares administrative distance, which rates the trustworthiness of the routing source. Since EIGRP’s default administrative distance (90) is lower than OSPF’s (110), the router installs the EIGRP route despite its higher metric. This trap tests your understanding of routing protocol preference, not just metric values.

Why the other options are wrong

A

This option is incorrect because it assumes the router compares OSPF and EIGRP metrics directly. Metrics from different protocols are not comparable until administrative distance is considered, so the lower OSPF metric does not guarantee route installation.

C

This option is incorrect because load balancing occurs only when multiple equal-cost routes exist within the same routing protocol. Routes from different protocols are not automatically load-balanced simply because they reach the same destination.

D

This option is incorrect because the router automatically selects the best route using its decision process based on administrative distance and metric. Manual intervention is not required for route installation in this scenario.

191
MCQhard

A router learns 172.16.0.0/16 from OSPF and 172.16.10.0/24 from a static route. Which route is used for traffic to 172.16.10.55?

A.The OSPF /16 route
B.The static /24 route
D.Neither route because the prefixes overlap
AnswerB

This is correct because 172.16.10.55 falls within the more specific /24 route.

Why this answer

The static /24 route is used because it is more specific than the OSPF /16 route. In plain language, even though OSPF is a dynamic source and the /16 covers the destination broadly, the router prefers the entry that describes the exact destination range more precisely. Since 172.16.10.55 falls within 172.16.10.0/24, that route wins under longest-prefix match.

This is a classic example of route specificity taking priority before broader route-source comparisons would matter between equal prefix lengths.

Exam trap

A frequent exam trap is assuming that the dynamic OSPF route will always be preferred over a static route, regardless of prefix length. Many candidates overlook that the router prioritizes the longest-prefix match before considering administrative distance or route source. Because 172.16.10.0/24 is more specific than 172.16.0.0/16, the router uses the static route for traffic to 172.16.10.55.

Misunderstanding this can lead to incorrect answers, especially when both routes overlap. Remember, overlapping routes are common and resolved by prefix specificity, not by route type alone.

Why the other options are wrong

A

The OSPF /16 route is less specific than the static /24 route. Although OSPF is a dynamic routing protocol, the router prefers the route with the longer prefix length, so this option is incorrect.

C

The default route is only used when no specific matching route exists. Since both OSPF and static routes cover the destination, the default route is not used here, so this option is incorrect.

D

Overlapping prefixes are normal in routing tables and do not prevent route selection. The router resolves overlaps using longest-prefix match, so this option is incorrect.

192
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure and verify HSRP on a router interface.

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
6Step 6
7Step 7

Why this order

The correct order begins by entering interface configuration mode, because all HSRP commands are applied at the interface level. Next, assign a physical IPv4 address to the interface, as HSRP requires a Layer 3 interface with an IP address to function. Set HSRP version 2 before defining the HSRP group to ensure compatibility with extended group numbers and newer features.

Then configure the HSRP group number and virtual IP address to create the standby group. After that, set the router’s priority and enable preemption; these steps customize the active/standby election process. Finally, verify the configuration with the show standby command to confirm HSRP operation.

193
PBQhard

You are connected to R1. The network uses HSRP for default gateway redundancy. Currently, both routers R1 and R2 are in the 'Active' state for HSRP group 10, causing traffic issues. Configure HSRP on R1 so that it becomes the Active router with a priority of 150, preempt enabled, a virtual IP of 192.168.1.254, and track interface GigabitEthernet0/1 so that if it goes down, the priority decrements by 20. Then verify the configuration with 'show standby brief'.

Network Topology
G0/0192.168.1.1/24G0/0192.168.1.2/24G0/110.0.0.1/30G0/110.0.0.2/30linkR1switchR2

Hints

  • HSRP virtual IP must be different from the interface IPs of both routers.
  • Preempt allows a router with higher priority to become Active after recovering.
  • Track interface decrements the priority when the tracked interface goes down.
A.standby 10 ip 192.168.1.254 standby 10 priority 150 standby 10 preempt standby 10 track GigabitEthernet0/1 20
B.standby 10 ip 192.168.1.254 standby 10 priority 150 standby 10 preempt standby 10 track GigabitEthernet0/1
C.standby 10 ip 192.168.1.254 standby 10 priority 150 standby 10 track GigabitEthernet0/1 20
D.standby 10 ip 192.168.1.254 standby 10 priority 150 standby 10 preempt standby 10 track GigabitEthernet0/1 10
AnswerA
solution
! R1
interface GigabitEthernet0/0
standby 10 ip 192.168.1.254
standby 10 priority 150
standby 10 preempt
standby 10 track GigabitEthernet0/1 20

Why this answer

The required HSRP configuration consists of all four commands: virtual IP, priority 150, preempt, and tracking with a decrement of 20. Option A lists them correctly. Option B fails because the track command is missing the decrement value.

Option C is incorrect because it omits the 'standby 10 preempt' command; without preempt, the router will not take over the active role even when its priority is higher. Option D uses a decrement of 10 instead of 20, which does not meet the requirement.

Exam trap

Watch out for the decrement value in the track command; it must match the requirement exactly. Also, ensure the virtual IP does not match any interface IP. Preempt must be enabled for the router to take over when it has higher priority.

Why the other options are wrong

B

The track command is missing the decrement value; without it, the router will not adjust its priority when the interface fails.

C

The preempt command is missing; without preempt, a router with higher priority cannot take over the active role.

D

The track command uses a decrement of 10 instead of the required 20, so the priority drop is incorrect.

194
Multi-Selectmedium

Which TWO statements correctly describe OSPFv2 router-id selection and verification in a single-area configuration?

Select 2 answers
A.The OSPF router-id is automatically derived from the MAC address of the first Ethernet interface.
B.If the router-id is changed using the 'router-id' command, the change takes effect immediately without any additional action.
C.The router-id must be the same on all routers in a single OSPF area.
D.When no 'router-id' is configured, a loopback interface with the highest IP address is preferred over a physical interface for the router-id.
E.The 'show ip ospf' command displays the current OSPF router-id.
AnswersD, E

Loopback interfaces are preferred due to their stability.

Why this answer

OSPFv2 selects the router-ID based on the highest IP address of any loopback interface when no explicit 'router-id' is configured, making D correct. The 'show ip ospf' command displays the current router-ID, verifying choice E. Option A is incorrect because the router-ID is derived from IP addresses, not MAC addresses.

Option B fails because changing the router-ID requires a reload or clearing the OSPF process to take effect. Option C is wrong because each router must have a unique router-ID; they do not need to match across the area.

Exam trap

Cisco often tests the misconception that changing the router-id takes effect immediately, but in reality, you must clear the OSPF process or reload the router for the change to apply.

Why the other options are wrong

A

The router-ID is derived from the highest IP address on a loopback or physical interface, never from a MAC address.

B

A router-id change does not take effect immediately; you must clear the OSPF process or reload the router.

C

Router-IDs must be unique per router, not identical across all routers in the area.

195
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure OSPFv3 for IPv6 on a Cisco router.

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

Why this order

After entering global config, create the OSPFv3 process, set a router ID, then enable OSPFv3 on the desired interfaces under interface configuration.

Exam trap

Remember that OSPFv3 requires a router ID to be explicitly configured (or derived from an IPv4 address) before enabling it on interfaces. The process must be created first, then the router ID, then interface enablement.

196
Multi-Selectmedium

A router learns a route to 172.16.0.0/16 via OSPF (administrative distance 110) and a route to 172.16.10.0/24 via EIGRP (administrative distance 90). No other overlapping routes exist. Which TWO statements about how the router handles these routes are correct?

Select 2 answers
A.The router installs only the EIGRP route because it has a lower administrative distance.
B.Both the OSPF and EIGRP routes are installed in the routing table.
C.Traffic to 172.16.10.100 is forwarded using the OSPF route.
D.The EIGRP route is used for all traffic destined to any address within 172.16.0.0/16.
E.The OSPF route is used for destinations within 172.16.0.0/16 that are not part of the 172.16.10.0/24 subnet.
AnswersB, E

Since the routes have different prefix lengths, they are treated as separate destinations and both are installed.

Why this answer

B is correct because the router installs both routes in the routing table when they have different prefix lengths. The EIGRP route to 172.16.10.0/24 (AD 90) is more specific than the OSPF route to 172.16.0.0/16 (AD 110). The router uses the longest prefix match rule for forwarding, so both routes coexist without conflict.

Exam trap

Cisco often tests the misconception that administrative distance alone determines which route is installed, ignoring the critical role of prefix length in the longest prefix match rule.

Why the other options are wrong

A

The router does not discard the OSPF route; it installs both /16 and /24 entries because they represent different network-specific entries.

C

The traffic matches the /24 route, not the /16, so it would be forwarded via the EIGRP next-hop.

D

The /24 is a subset; traffic outside 172.16.10.0/24 matches only the /16 OSPF route.

197
Multi-Selectmedium

Which TWO statements about IPv4 and IPv6 static routes, including floating static routes, are correct?

Select 2 answers
A.A floating static route uses a higher administrative distance than the primary route to provide backup connectivity.
B.An IPv6 static route using a link-local next-hop address must include both the next-hop address and the outgoing interface.
C.In IPv6, the default route prefix is 0.0.0.0/0.
D.For a floating static route to be installed in the routing table, it must have an administrative distance lower than that of the primary route.
E.An IPv4 static route will only be inserted into the routing table if its next-hop IP address belongs to a directly connected subnet.
AnswersA, B

Floating static routes are backup routes; they are configured with an AD higher than the primary route so they are only used when the primary fails.

Why this answer

Option A is correct because a floating static route is configured with a higher administrative distance (AD) than the primary route. This ensures the floating route is only used when the primary route fails, as the router prefers routes with lower AD values. For example, if the primary route has an AD of 1 (static route default), the floating static route might be set to AD 200, making it a backup.

Exam trap

Cisco often tests the distinction between IPv4 and IPv6 default route prefixes (0.0.0.0/0 vs ::/0) and the requirement for specifying the outgoing interface with IPv6 link-local next-hop addresses, which candidates frequently confuse.

Why the other options are wrong

C

0.0.0.0/0 is the IPv4 default route; the correct IPv6 default prefix is ::/0.

D

A floating static route must have a higher AD, not lower, so that it is less preferred and only installed when the primary (lower AD) route is lost.

E

Cisco IOS requires the next-hop to be reachable, but it does not have to be directly connected. As long as a route exists to reach that next-hop (even recursively), the static route can be installed.

198
MCQhard

R1 cannot reach host 10.3.3.1 on R3. The technician checks routing: R1 has a route to 10.3.3.0/24 via next-hop 10.1.1.2 (R2). R2 has a route to 10.3.3.0/24 via next-hop 10.2.2.2 (R3). A ping from R1 to 10.3.3.1 times out. A ping from R2 to 10.3.3.1 succeeds. What should the technician do next?

A.Verify that R3 has a route back to R1’s subnet.
B.Check whether an inbound ACL on R3 is blocking packets with R1’s source IP address.
C.Verify the OSPF neighbor adjacency between R2 and R3.
D.Test for an MTU mismatch along the path from R1 to R3.
AnswerB

The symptom is that pings from R1 fail while pings from R2 succeed. This points to a packet filter that treats the two source addresses differently. An ACL applied to the interface on R3 that receives the pings could be permitting traffic from R2 but denying traffic from R1. Inspecting the ACL directly tests this hypothesis and is a precise next troubleshooting step.

Why this answer

Because R2 can successfully ping R3, we know that R3 is reachable, the path from R2 to R3 is functional, OSPF (or whatever IGP) is working between them, and R3 has a route back to R2's subnet. The failure is isolated to traffic sourced from R1. This strongly suggests a filtering issue that specifically denies R1's source IP address.

Checking for an inbound ACL on R3’s receiving interface is the logical next step at the transport/application layer; it directly tests the hypothesis that R3 is receiving R1’s pings but discarding them due to a security policy. It avoids unnecessary investigation of routing or link-layer problems that have already been ruled out.

Exam trap

Many candidates will choose to check the return route to R1’s subnet on R3 (Option A). They assume that a missing route back to the source is causing the one-way ping failure, ignoring that R2’s successful ping implies R3 already has a route to that entire stub network via R2.

Why the other options are wrong

A

It skips the more targeted hypothesis that an access control list is selectively blocking R1. The candidate mistakenly assumes that a unidirectional reachability problem is always caused by a missing return route.

C

This option investigates a Layer 3 adjacency that the successful R2-to-R3 ping has already validated. Candidates often default to checking neighbor state without considering the evidence that rules it out.

D

Candidates may recall MTU as a cause of intermittent connectivity issues, but here the symptom is a total failure from one source, making MTU a low-probability next step.

199
MCQmedium

R1 has the following static route configured: ip route 0.0.0.0 0.0.0.0 203.0.113.1 What does this route accomplish?

A.It blocks unknown destinations from leaving the router.
B.It creates a host route to 203.0.113.1 only.
C.It advertises all connected routes into OSPF.
D.It creates a default route used when no more specific route exists.
AnswerD

This is correct because `0.0.0.0 0.0.0.0` defines a default route.

Why this answer

This command creates a default static route. In everyday terms, it tells the router, “If you do not know a more specific way to reach a destination, send the traffic to 203.0.113.1.” That next-hop address usually points toward an upstream router or ISP edge. The command does not describe one specific remote network; it represents every destination not otherwise matched by a more specific entry.

At the routing-table level, `0.0.0.0 0.0.0.0` is the broadest possible IPv4 prefix. Because it matches everything, it is used only when nothing more specific exists.

Exam trap

Do not confuse default routes with specific network routes or access control lists; focus on the 0.0.0.0/0 prefix.

Why the other options are wrong

A

This option is incorrect because static routes do not inherently block traffic; they simply define paths for routing packets. A static route allows traffic to specific destinations, rather than blocking unknown ones.

B

This option is wrong because the static route configured does not limit routing to a single host; instead, it typically defines a broader range or a default route for multiple destinations.

C

This option is wrong because static routes do not inherently advertise routes into OSPF; they simply define a path to a specific destination. The question specifically asks about the function of a static route, which does not involve OSPF route advertisement.

200
MCQhard

R1 and R2 are connected via Ethernet and are configured with OSPF, but they fail to form an adjacency. Upon checking the interface configurations, you see that R1’s interface is in OSPF area 0 while R2’s interface is in area 1, and both interfaces use default timers and are in the same subnet. What is the most likely reason?

A.The OSPF areas do not match on the shared segment.
B.The routers must use the same process ID.
C.The interfaces are in different IPv4 subnets.
D.OSPF cannot run on Ethernet interfaces.
AnswerA

This is correct because the same link is placed into area 0 on one side and area 1 on the other.

Why this answer

The most likely cause is an OSPF area mismatch on the shared segment. R1 and R2 are in the same IP subnet and use default hello/dead timers, so neither subnet mismatch nor timer mismatch is the problem. OSPF can run on Ethernet interfaces.

However, OSPF requires neighbors on the same link to agree on the area ID; here they differ, preventing adjacency. Option B is incorrect because OSPF process IDs are locally significant and do not need to match.

Exam trap

A common mistake is believing that OSPF process IDs must match between routers to form an adjacency; process IDs are locally significant and do not need to match.

Why the other options are wrong

B

This option is incorrect because OSPF process IDs are locally significant and do not need to match between routers. Different process IDs do not prevent adjacency formation.

C

This option is incorrect because the interfaces are in the same IPv4 subnet (10.1.50.0/24), which is a prerequisite for OSPF adjacency on broadcast networks.

D

This option is incorrect because OSPF commonly runs on Ethernet interfaces. Ethernet is a supported media type for OSPF neighbor discovery and adjacency formation.

201
Drag & Dropmedium

Drag and drop the following steps into the correct order to describe the router's routing table lookup process for a destination IP address, including the best-path selection logic (longest prefix match, then administrative distance, then metric) and the final forwarding decision.

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

Why this order

The router applies longest prefix match first, then administrative distance, then metric, in that order, to select the best path and forward the packet.

Exam trap

Do not confuse the order of tiebreakers: longest prefix match always comes first, then administrative distance, then metric. Many candidates mistakenly swap AD and metric or think metric is compared first.

202
MCQhard

A router has a connected route to 192.168.1.0/24 and also has a default route. Which route is used for traffic to 192.168.1.55?

A.The connected route to 192.168.1.0/24
C.Both routes equally
D.Neither route
AnswerA

This is correct because the destination falls within the directly connected subnet.

Why this answer

The connected route is used because it is both directly attached and more specific than the default route. In plain language, the router already knows that the destination belongs to one of its local interface networks, so it has no reason to send that traffic to a fallback route.

This is one of the most basic route-selection behaviors. Default routes matter only when no better match exists. Here, a directly connected, exact matching network is already present.

Exam trap

A common exam trap is assuming that the default route will be used for all traffic not explicitly configured, including traffic destined for directly connected subnets. Candidates may mistakenly select the default route because it appears as a fallback path, ignoring that connected routes always take precedence due to their specificity and administrative distance. Another trap is thinking that both routes could be used simultaneously or load-balanced, which is incorrect because the router selects only the best matching route based on prefix length and administrative distance.

Why the other options are wrong

B

Incorrect. The default route is less specific and only used when no matching connected or static route exists. Since a connected route matches, the default route is ignored.

C

Incorrect. The router does not load-balance equally between a connected route and a default route. It selects the single best route based on prefix length and administrative distance.

D

Incorrect. The router clearly has a matching connected route for the destination subnet, so it will use that route rather than discarding the traffic.

203
Multi-Selectmedium

Which three of the following statements about the routing table lookup process on a Cisco router are true? (Choose three.)

Select 3 answers
A.The router performs a longest prefix match to select the most specific route for a destination IP.
B.If an exact match is found for the destination network, the router will forward the packet regardless of any more specific routes.
C.A default route (0.0.0.0/0) is used only when no other route matches the destination IP.
D.The router does not perform recursive resolution when the next-hop IP address is not directly connected.
E.The router always prefers routes with a higher administrative distance over those with a lower administrative distance.
F.A directly connected route is automatically installed in the routing table when an interface is configured with an IP address and is up/up.
AnswersA, C, F

Why this answer

The routing table uses longest prefix match (A) to find the most specific route. The default route (C) is used only when no other route matches. Directly connected routes (F) are automatically installed when the interface is up/up.

Option D is incorrect because the router does recursively resolve the next‑hop IP when it is not directly connected.

Exam trap

Cisco often tests the misconception that an exact match overrides a more specific route, but the longest prefix match rule always selects the route with the longest subnet mask, regardless of administrative distance or metric.

Why the other options are wrong

D

When the next-hop IP is not directly connected, the router does recursively resolve the address to determine the outgoing interface.

204
PBQhard

You are connected to R1, a Cisco router that must establish OSPFv3 adjacency with R2 over its GigabitEthernet0/0 link. The link uses IPv6 addresses 2001:db8:1:1::1/64 on R1 and 2001:db8:1:1::2/64 on R2. R1 currently has IPv6 unicast routing enabled but no OSPFv3 process configured. Configure R1 so that it forms a full OSPFv3 neighbor relationship with R2 and installs the loopback network 2001:db8:2:2::/64 (advertised by R2) into its IPv6 routing table.

Network Topology
G0/02001:db8:1:1::1/64G0/02001:db8:1:1::2/64linkR1R2

Hints

  • OSPFv3 requires a router-id; use 1.1.1.1 for simplicity.
  • Activate OSPFv3 on the interface with the correct process ID and area.
  • Verify adjacency shows FULL state and the route appears in the IPv6 routing table.
A.ipv6 router ospf 1 router-id 1.1.1.1 interface GigabitEthernet0/0 ipv6 ospf 1 area 0
B.ipv6 router ospf 1 router-id 1.1.1.1 interface GigabitEthernet0/0 ipv6 ospf 1 area 0 network 2001:db8:1:1::0/64 area 0
C.ipv6 router ospf 1 router-id 1.1.1.1 interface GigabitEthernet0/0 ipv6 ospf 1 area 0 ipv6 ospf network point-to-point
D.ipv6 router ospf 1 router-id 1.1.1.1 interface GigabitEthernet0/0 ipv6 ospf 1 area 0 ipv6 ospf hello-interval 5
AnswerA
solution
! R1
ipv6 router ospf 1
router-id 1.1.1.1
interface GigabitEthernet0/0
ipv6 ospf 1 area 0

Why this answer

R1 requires OSPFv3 configuration: enable the process with 'ipv6 router ospf 1', set a router-id, then enable OSPFv3 on the interface with 'ipv6 ospf 1 area 0'. Option B incorrectly attempts to use a network command (OSPFv2 syntax). Option C sets a point-to-point network type, which on a broadcast link will mismatch with R2's default broadcast type and prevent adjacency.

Option D changes the hello interval to 5, causing a timer mismatch and adjacency failure.

Exam trap

Do not confuse OSPFv2 'network' commands with OSPFv3 interface configuration. Also, avoid adding unnecessary interface parameters that may disrupt adjacency.

Why the other options are wrong

B

The 'network' command is for OSPFv2 and does not exist in OSPFv3; interface configuration is done via interface commands.

C

Setting the network type to point-to-point changes the OSPF link type; without matching configuration on R2, adjacency will fail.

D

Mismatched hello intervals prevent OSPF neighbor relationships from forming.

205
MCQhard

Exhibit: R1 has the static route 'ip route 0.0.0.0 0.0.0.0 192.0.2.2 200' and also learns a default route from OSPF. Which default route will be installed while the OSPF route is present?

A.The static default route
C.Both default routes with per-packet load balancing
D.Neither route because floating statics suppress dynamic defaults
AnswerB

Correct choice.

Why this answer

The OSPF external default route wins because its administrative distance is 110, which is lower than the floating static route's distance of 200. The static route is intentionally given a higher AD so it is used only as a backup.

Exam trap

A common exam trap is assuming that static routes always override dynamic routes because static routes have a default administrative distance of 1. However, in this question, the static route is configured with an administrative distance of 200, making it less preferred than the OSPF route with an AD of 110. This floating static route is intended as a backup and will not be installed while the OSPF route is present.

Misreading the static route’s AD or ignoring it leads to the incorrect conclusion that the static route will be used, which is a frequent mistake in CCNA routing questions.

Why the other options are wrong

A

The static default route has an administrative distance of 200, which is higher than OSPF’s 110. Therefore, it is less preferred and will not be installed while the OSPF route is present, making this option incorrect.

C

Cisco routers do not perform per-packet load balancing between routes with different administrative distances. The route with the lowest AD is installed exclusively, so this option is incorrect.

D

Floating static routes do not suppress dynamic routes; instead, they serve as backups when dynamic routes are unavailable. Therefore, neither route is not installed is incorrect because the OSPF route will be installed.

206
Matchingmedium

Match each OSPF adjacency requirement or concept to its most accurate description.

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

Concepts
Matches

Must align between neighbors for stable adjacency formation

Must match on the shared OSPF segment

Identifies the router within the OSPF process

Stops hello exchange on that interface while still allowing advertisement of the connected network

Why these pairings

Hello/Dead timers must match between neighbors to form a stable OSPF adjacency; mismatched timers cause neighbor relationships to fail. Area must be identical on the shared OSPF segment because routers in different areas do not establish full adjacencies. Router ID uniquely identifies the router within the OSPF process, used for DR/BDR election and LSA origination.

Passive interface suppresses hello packets, preventing neighbor formation on that link, while still allowing the connected network to be advertised via the router's LSA.

Exam trap

Do not confuse the purpose of Hello packets with other OSPF mechanisms. Hello packets are for neighbor discovery and keepalives, not for exchanging routing information or computing routes.

207
MCQhard

A router shows the following route: O 10.10.40.0/24 [110/20] via 192.0.2.2, 00:00:12, GigabitEthernet0/0 What does the value 110 represent?

A.The OSPF cost to the destination
C.The number of hops to the destination
D.The route age in seconds
AnswerB

Correct. OSPF has a default administrative distance of 110.

Why this answer

In Cisco route output, the value in brackets is [administrative distance/metric].

Exam trap

A frequent exam trap is mistaking the administrative distance value for the OSPF cost or metric. The number 110 in the route output is the administrative distance, not the cost to reach the destination. The OSPF cost is the second number inside the brackets, which in this example is 20.

Confusing these values can lead to incorrect assumptions about route preference and path selection. Remember, administrative distance compares trustworthiness between routing protocols, while the metric determines the best path within a single protocol.

Why the other options are wrong

A

The OSPF cost to the destination is not represented by the first number in brackets; it is the second number. Therefore, 110 cannot be the OSPF cost.

C

The number of hops is not indicated by the value 110. OSPF does not use hop count as its metric, so this option is incorrect.

D

The route age is shown separately after the next-hop IP address and interface, not inside the brackets. Thus, 110 does not represent route age.

208
MCQhard

A network engineer notices that R1 is using the static route to 192.168.10.0/24 via next-hop 10.1.1.2 instead of the OSPF route via 10.2.2.2, even though the OSPF path has lower latency. What is the most likely cause?

A.The static route has a lower administrative distance than the OSPF route.
B.The OSPF route has a higher metric than the static route.
C.Equal-cost multi-path (ECMP) is disabled for OSPF.
D.The static route is configured with a higher next-hop IP address, so it is preferred.
AnswerA

Administrative distance is the first criterion used to select routes from different routing protocols. A static route has an AD of 1, while OSPF has an AD of 110. The lower AD wins, so the static route is installed in the routing table and used for forwarding, regardless of the OSPF path's better performance.

Why this answer

The static route is preferred because it has an administrative distance (AD) of 1, which is lower than OSPF's AD of 110. When multiple routes to the same destination exist from different routing sources, the route with the lowest AD is selected first. The static route's path might be slower, but AD comparison happens before any metric comparison.

To use the OSPF path, the static route must be removed or given a higher AD.

Exam trap

Many candidates mistakenly believe that the best path is determined solely by metric, and they might select option B, assuming the static route’s lower metric causes it to be preferred. However, administrative distance is evaluated before metrics.

Why the other options are wrong

B

Common misconception that metrics are compared across different routing protocols. In reality, AD is evaluated first, and only routes from the same protocol with equal AD are compared by metric.

C

Mistaking ECMP as the mechanism for selecting between two routes from different sources; in this scenario, the static route's AD disqualifies the OSPF route entirely.

D

Misunderstanding that IP addresses, not administrative distance or metrics, influence path selection.

209
PBQmedium

You are connected to R1 via console. R1 connects three subnets: 10.0.1.0/24 (area 0), 10.0.2.0/24 (area 0), and 10.0.3.0/24 (area 0). The serial link to R2 uses IP subnet 10.0.0.0/30 and is in OSPF area 1. The network administrator wants to advertise a single summary route for these three subnets to R2, reducing the OSPF link-state database size in area 1. R1 is already running OSPF with network statements for its connected subnets in their respective areas. You need to configure route summarization on R1 so that only the summary route is advertised to R2 via the serial link.

Hints

  • Summarization in OSPF is configured under the router ospf process using the area range command.
  • The summary route must cover all subnets with a single prefix.
  • Verify that the summary route appears in the OSPF database as a type 3 summary LSA.
A.router ospf 1 area 0 range 10.0.0.0 255.255.252.0
B.router ospf 1 summary-address 10.0.0.0 255.255.252.0
C.interface serial 0/0/0 ip summary-address ospf 1 10.0.0.0 255.255.252.0
D.router ospf 1 area 0 range 10.0.0.0 255.255.255.0
AnswerA
solution
! R1
router ospf 1
area 0 range 10.0.0.0 255.255.252.0

Why this answer

The 'area 0 range' command creates a summary route for the specified range, which is then advertised as a type 3 summary LSA to other areas. This reduces routing table size and prevents flapping.

Exam trap

Be careful not to confuse OSPF summarization commands with those of other routing protocols. OSPF uses 'area range' for internal summarization and 'summary-address' for external routes, while EIGRP uses 'summary-address' on interfaces. Also, ensure you calculate the correct summary mask that covers all subnets without being too broad or too specific.

Why the other options are wrong

B

The 'summary-address' command is not valid for OSPF; it is used in EIGRP and BGP.

C

The 'ip summary-address ospf' command is used for external route summarization, not for summarizing internal OSPF routes within an area.

D

The mask 255.255.255.0 is too specific and only covers a single /24 network, not the required range.

210
PBQhard

You are connected to R1 via the console. The network currently uses EIGRP as its IGP, but you recently configured a static default route toward R2 (next-hop 203.0.113.2) to reach the Internet. However, traffic from R1 to the Internet is not taking the expected path. Examine the provided routing table and partial configuration, then fix the issue so that the static default route is used only when the EIGRP-learned default route is unavailable.

Network Topology
G0/010.0.0.1/30G0/010.0.0.2/30G0/1203.0.113.1/30203.0.113.2/30R1R2ISP

Hints

  • Compare the administrative distances of the two default routes in the routing table.
  • The static route currently has a lower AD (1) than EIGRP (90), so it is not acting as a backup.
  • To make a static route a floating static, you need to configure an AD higher than the dynamic protocol's AD.
A.Configure the static route with an administrative distance of 100 using 'ip route 0.0.0.0 0.0.0.0 203.0.113.2 100'.
B.Remove the EIGRP default route by configuring 'no network 0.0.0.0' under the EIGRP process.
C.Increase the metric of the EIGRP default route to make it less preferred than the static route.
D.Configure the static route with a next-hop of 203.0.113.2 and a metric of 100.
AnswerA
solution
! R1
configure terminal
no ip route 0.0.0.0 0.0.0.0 203.0.113.2 10
ip route 0.0.0.0 0.0.0.0 203.0.113.2 100
end
write memory

Why this answer

The static default route was configured with an administrative distance (AD) of 10, which is lower than the EIGRP‑learned default route's AD of 90. This made the static route the preferred path, overriding the intended primary EIGRP route. To create a floating static route that only activates when the EIGRP route disappears, the static AD must be raised above 90—using 'ip route 0.0.0.0 0.0.0.0 203.0.113.2 100' ensures the EIGRP route is primary.

Option B is wrong because removing the EIGRP route eliminates the preferred path entirely, defeating the backup purpose. Option C fails because EIGRP metrics are irrelevant against a lower‑AD static route; AD dictates route source preference. Option D is incorrect because static routes do not accept a metric parameter—the trailing number sets the AD, not a metric.

Exam trap

Don't confuse administrative distance with metric. When comparing routes from different sources (static vs. EIGRP), AD is the deciding factor.

Also, remember that static routes use AD, not metric, to influence preference. The 'ip route' command syntax does not include a metric parameter.

Why the other options are wrong

B

The specific factual error: EIGRP does not use 'network 0.0.0.0' to advertise a default route; default routes are typically redistributed or generated via 'ip default-network' or redistribution. Removing the EIGRP default route would break the intended primary path.

C

The specific factual error: Administrative distance is the primary factor for route selection between different routing protocols or sources. Changing the EIGRP metric does not affect the comparison with a static route.

D

The specific factual error: The 'ip route' command syntax is 'ip route prefix mask {next-hop | interface} [distance] [name] [permanent] [tag tag]'. There is no metric parameter. The correct way to make a static route less preferred is to set a higher administrative distance.

211
PBQhard

You are connected to R1. Configure OSPFv2 on R1 and R2 so that they form a full adjacency and can exchange routes. The current configuration has mismatched hello/dead timers blocking the adjacency. Adjust only the necessary settings on R1 to match R2's OSPF timers.

Network Topology
G0/0192.0.2.1/30G0/0192.0.2.2/30linkR1R2

Hints

  • Check the OSPF interface timers on both routers using 'show ip ospf interface'.
  • The dead interval must be exactly four times the hello interval unless manually set.
  • Use the 'ip ospf hello-interval' and 'ip ospf dead-interval' commands under the interface configuration.
A.Configure 'ip ospf hello-interval 5' and 'ip ospf dead-interval 20' on R1's GigabitEthernet0/0 interface.
B.Configure 'ip ospf hello-interval 10' and 'ip ospf dead-interval 40' on R2's interface to match R1's default timers.
C.Configure 'ip ospf hello-interval 5' on R1's GigabitEthernet0/0 interface only; the dead interval will adjust automatically.
D.Configure 'ip ospf dead-interval 20' on R1's GigabitEthernet0/0 interface only; the hello interval will adjust automatically.
AnswerA
solution
! R1
interface gigabitethernet0/0
ip ospf hello-interval 5
ip ospf dead-interval 20

Why this answer

The adjacency between R1 and R2 is not forming because the OSPF hello and dead timers are mismatched. R1 has default timers (Hello 10, Dead 40) while R2 has custom timers (Hello 5, Dead 20). To form an adjacency, OSPF timers must match on both ends.

On R1, you need to configure the OSPF interface timers to match R2 by issuing 'ip ospf hello-interval 5' and 'ip ospf dead-interval 20' on interface GigabitEthernet0/0. After applying these commands, the adjacency should come up.

Exam trap

A common trap is assuming that changing only the hello interval will automatically adjust the dead interval, or vice versa. In Cisco IOS, these timers are independent and must be set explicitly. Also, note that the dead interval must be at least four times the hello interval, but that relationship is not enforced automatically.

Why the other options are wrong

B

The specific factual error is that the instruction limits changes to R1 only; modifying R2 is not allowed.

C

The specific factual error is that the dead interval is not automatically derived from the hello interval; it must be set separately.

D

The specific factual error is that the hello interval is not automatically derived from the dead interval; both must be set explicitly.

212
Multi-Selectmedium

Which TWO statements about floating static routes and default routes are correct?

Select 2 answers
A.A floating static route uses an administrative distance higher than that of the primary route to act as a backup.
B.A floating static route must have a lower administrative distance than the primary route to ensure faster convergence.
C.A default route can be configured as a static route with destination 0.0.0.0/0 for IPv4 and ::/0 for IPv6.
D.Floating static routes are supported only for IPv6, not for IPv4.
E.A default static route cannot be configured as a floating static route.
AnswersA, C

Correct: The higher AD makes it less preferred than the primary route, so it is only used if the primary becomes unreachable.

Why this answer

Option A is correct because a floating static route is configured with a higher administrative distance (AD) than the primary route. This ensures the floating route remains inactive in the routing table unless the primary route fails, at which point the router installs the floating static route as a backup. The higher AD makes it less preferred than the primary dynamic or static route.

Exam trap

Cisco often tests the misconception that a floating static route must have a lower AD to be 'faster,' when in fact it requires a higher AD to serve as a backup; candidates also mistakenly think default routes cannot be made floating or that floating routes are IPv6-only.

Why the other options are wrong

B

Floating static routes require a higher AD, not lower, to be less preferred than the primary route.

D

Both IPv4 and IPv6 static routes can be configured as floating routes by setting a higher AD.

E

You can have multiple default static routes with different ADs, making the higher AD one a floating backup.

213
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure OSPFv3 for IPv6 on a Cisco IOS-XE router, including enabling IPv6 routing, setting up the OSPFv3 process, enabling it on an interface, and verifying the adjacency and routes.

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

Why this order

This order follows the logical workflow: first enable IPv6 globally, then configure the OSPFv3 process, apply it to the interface, and finally verify the results.

Exam trap

Students often forget to enable 'ipv6 unicast-routing' globally or try to enable OSPFv3 on an interface before explicitly creating the OSPF process, which may not fail but can result in an automatically assigned router ID.

214
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure and verify HSRP active/standby election, including priority, preempt, virtual IP, and failover verification.

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

Why this order

The order ensures the interface is ready, then priority and preempt are set to influence the election, followed by the virtual IP and verification of failover behavior.

Exam trap

Do not configure the virtual IP before setting priority and preempt, as the router may become active with default priority and then preempt later, causing unnecessary flapping. Always configure the interface first, then priority/preempt, then virtual IP.

215
Matchingmedium

Drag and drop the OSPFv2 commands on the left to their correct descriptions on the right.

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

Concepts
Matches

Enables OSPF on interfaces with IP addresses in the 10.0.0.0/8 range

Manually assigns the OSPF router ID

Suppresses OSPF hello packets on the specified interface

Manually defines an OSPF neighbor for non-broadcast networks

Displays the OSPF neighbor adjacency table

Resets the OSPF routing process and re-establishes adjacencies

Why these pairings

The `network 10.0.0.0 0.255.255.255 area 0` command activates OSPF on any interface with an IP in the 10.0.0.0/8 range (wildcard mask 0.255.255.255) and assigns it to area 0. `router-id 1.1.1.1` manually overrides the default router ID selection, ensuring a persistent OSPF identifier. `passive-interface g0/0` suppresses OSPF hello packets on that interface, so no neighbors are formed but the connected subnet is still advertised. `neighbor 192.168.1.2` statically defines an OSPF neighbor IP for non-broadcast networks where multicast hellos cannot reach the peer. `show ip ospf neighbor` is an EXEC command that displays the current neighbor adjacency table, including neighbor state and interface. `clear ip ospf process` resets all OSPF processes, forcing router ID re-election and full re-adjacency.

Exam trap

Learners often mistakenly interpret the OSPF network command’s wildcard mask as a subnet mask (e.g., think 0.255.255.255 means a /8 subnet mask), and they may treat passive-interface as completely disabling OSPF on the interface rather than just suppressing hello packets.

216
PBQhard

You are connected to R1 via console. R1 and R2 are directly connected via GigabitEthernet0/0. Configure OSPF process 1 on both routers so that they form a full adjacency. R1's router-id must be 1.1.1.1, and R2's router-id must be 2.2.2.2. Use network statements to advertise the direct link. Ensure that R1 does not send OSPF hellos out of its GigabitEthernet0/1 interface. The current configuration on R1 has mismatched hello and dead timers, and an incorrect network type, preventing adjacency. Fix all issues.

Network Topology
G0/0192.0.2.1/30G0/0192.0.2.2/30linkR1R2

Hints

  • Check the hello and dead timer values on R1 vs R2 using show ip ospf interface.
  • The default hello timer for broadcast networks is 10 seconds, dead timer 40 seconds.
  • Use interface configuration mode to change OSPF timers.
A.On R1, configure 'ip ospf hello-interval 10' and 'ip ospf dead-interval 40' under interface GigabitEthernet0/0, and ensure network type is broadcast. On R2, configure 'router-id 2.2.2.2' under router ospf 1. Also, on R1, add 'passive-interface GigabitEthernet0/1' under router ospf 1.
B.On R1, configure 'ip ospf hello-interval 30' and 'ip ospf dead-interval 120' under interface GigabitEthernet0/0, and set network type to point-to-point. On R2, configure 'router-id 2.2.2.2' under router ospf 1. Also, on R1, add 'passive-interface default' under router ospf 1.
C.On R1, configure 'ip ospf hello-interval 10' and 'ip ospf dead-interval 40' under interface GigabitEthernet0/0, and set network type to point-to-point. On R2, configure 'router-id 2.2.2.2' under router ospf 1. Also, on R1, add 'passive-interface GigabitEthernet0/1' under router ospf 1.
D.On R1, configure 'ip ospf hello-interval 10' and 'ip ospf dead-interval 40' under interface GigabitEthernet0/0, and ensure network type is broadcast. On R2, configure 'router-id 2.2.2.2' under router ospf 1. Also, on R1, add 'network 10.0.0.0 0.255.255.255 area 0' under router ospf 1.
AnswerA
solution
! R1
interface GigabitEthernet0/0
ip ospf hello-interval 10
ip ospf dead-interval 40

Why this answer

The adjacency was failing because R1 had incorrect hello (30) and dead (120) timers, while R2 used defaults (10/40). Additionally, R1’s network type was set to a non-broadcast type, causing a mismatch. To fix, on R1’s GigabitEthernet0/0, set hello-interval 10, dead-interval 40, and network type broadcast.

In OSPF process 1 on R1, configure passive-interface GigabitEthernet0/1 to suppress hellos on that interface. On R2, under router ospf 1, set router-id 2.2.2.2. Option A addresses all requirements.

Option B uses wrong timers and passive-interface default, which blocks hellos on all interfaces, breaking adjacency. Option C sets network type point-to-point, creating a type mismatch with R2’s broadcast, preventing adjacency. Option D omits the passive-interface command, failing to suppress hellos on GigabitEthernet0/1 as required.

Exam trap

The exam trap is that candidates may focus on the network type or extra network statements, but the primary issue is the timer mismatch. OSPF requires hello and dead timers to match for adjacency. Also, remember that 'passive-interface default' suppresses hellos on all interfaces, which would break the adjacency; use specific passive-interface commands.

Why the other options are wrong

B

Incorrect timers (30/120) break adjacency, and 'passive-interface default' suppresses hellos on all interfaces, including the transit link.

C

Network type point-to-point on R1 does not match R2's default broadcast, causing a type mismatch that prevents OSPF adjacency.

D

Omits the required 'passive-interface GigabitEthernet0/1' command, leaving hellos sending on that interface.

217
MCQhard

Based on the exhibit, why is traffic to 192.168.40.200 using the default route instead of the intended static route?

A.The static route next hop is unreachable or invalid for forwarding.
B.Default routes always override static routes.
C.The destination must be configured as a /16, not a /24.
D.Static routes can be used only if OSPF is disabled.
AnswerA

This is correct because the configured next hop does not appear as a reachable remote path for the route to use.

Why this answer

The intended static route is not being used because the next hop for that static route is not reachable from the current routing table. In practical terms, a route can be configured, but the router still needs a way to resolve and forward to the next-hop address. If that next hop is unreachable, the route may not be installed or usable, so traffic falls back to the default route instead.

This is a realistic troubleshooting pattern because the configuration line alone can look correct until you compare it with actual reachability.

Exam trap

Be cautious of confusing administrative distance with reachability issues. Always verify the next hop's reachability.

Why the other options are wrong

B

This option is incorrect because static routes do not inherently get overridden by default routes; rather, the routing table prioritizes routes based on their specificity and administrative distance.

C

This option is incorrect because the subnet mask of the destination IP does not affect the functionality of static routes in this context; static routes can operate with various subnet masks without being limited to /16 or /24.

D

This option is incorrect because static routes can coexist with dynamic routing protocols like OSPF; they do not require OSPF to be disabled to function properly.

218
MCQhard

Two directly connected routers, R1 and R2, are configured with single-area OSPF in Area 0. The administrator notices that they are not forming a full OSPF neighbor adjacency. The exhibit displays relevant portions of the running configurations. What is the most likely cause of the problem?

A.The network command on R1 does not include the correct subnet mask.
B.R1's passive-interface default prevents OSPF hello packets from being sent on GigabitEthernet0/0.
C.The GigabitEthernet0/0 interface on R2 is administratively down.
D.The routers are configured with different OSPF area IDs.
AnswerB

The passive-interface default command makes all interfaces passive, disabling hello transmission, which is necessary for neighbor adjacency. Without hellos, no adjacency forms.

Why this answer

The passive-interface default command on R1 sets all interfaces to passive by default, which prevents OSPF hello packets from being sent out GigabitEthernet0/0. Without hello packets, R1 cannot discover R2 or form a neighbor adjacency, even though the network command is correctly configured. This is the most likely cause because the exhibit shows R1's configuration includes passive-interface default without a corresponding no passive-interface GigabitEthernet0/0 statement.

Exam trap

Cisco often tests the passive-interface default command as a trap, because candidates may overlook that it applies to all interfaces unless explicitly overridden, leading them to incorrectly focus on network command mismatches or area ID issues.

Why the other options are wrong

A

The network statement is syntactically correct and covers the interface IP address, so it does enable OSPF process on that interface (subject to the passive-interface setting).

C

The configuration shows 'no shutdown', indicating the interface is enabled. Administrative down would require the 'shutdown' command or lack of 'no shutdown'.

D

The output clearly shows 'area 0' in both routers' OSPF configurations, so area mismatch is not the cause.

219
MCQhard

Refer to the exhibit. A network engineer is troubleshooting an OSPF adjacency issue between R1 and R2. The output of the show ip ospf neighbor command on R1 shows the neighbor relationship with R2 stuck in the EXSTART/DROTHER state. What is the most likely cause?

A.OSPF network type mismatch between R1 and R2, preventing full adjacency.
B.Duplicate OSPF Router IDs on R1 and R2, causing DBD packet rejection.
C.OSPF authentication mismatch on the link, causing DBD packets to be rejected.
D.MTU mismatch on the link between R1 and R2, causing DBD packets to be dropped.
AnswerD

The EXSTART/DROTHER state in the exhibit indicates that OSPF is stuck in the DBD exchange phase. This is a classic symptom of an MTU mismatch, where one side creates DBD packets larger than the other's MTU, leading to silent drops. The output directly confirms the neighbor is in EXSTART, not EXCHANGE or FULL.

Why this answer

The output specifically shows neighbor 10.0.0.2 in the EXSTART/DROTHER state. This state indicates that the Database Description (DBD) packet exchange phase has not completed. The most common cause for a neighbor to remain stuck in EXSTART is an MTU mismatch on the link, causing DBD packets (which are larger than the MTU) to be silently dropped.

Exam trap

Many candidates incorrectly select authentication mismatch or network type mismatch. However, an authentication mismatch would prevent Hello processing and the neighbor would not appear in the table at all; a network type mismatch would typically result in a 2-WAY/DROTHER state, not EXSTART.

Why the other options are wrong

A

Candidates may confuse adjacency failures with DBD exchange problems, but network type mismatch leads to a different state (2-WAY).

B

Candidates think duplicate Router IDs might cause DBD exchange failure, but duplicate IDs prevent neighbor discovery entirely.

C

Many associate EXSTART with any adjacency issue, but authentication errors prevent the neighbor from being listed at all.

220
PBQmedium

You are connected to R1 via console. R1 has three directly connected subnets: 192.168.1.0/24 (G0/0), 192.168.2.0/24 (G0/1), and 192.168.3.0/24 (G0/2). You need to configure a summary route to be advertised to a neighbor via a static route pointing to Null0 to prevent routing loops. The summary should cover all three subnets.

Hints

  • Determine the smallest subnet mask that can summarize the three /24 networks.
  • The summary route should be a single prefix that covers all three subnets.
  • Use Null0 as the next-hop to drop traffic that does not match a more specific route.
A.ip route 192.168.0.0 255.255.252.0 Null0
B.ip route 192.168.1.0 255.255.252.0 Null0
C.ip route 192.168.0.0 255.255.255.0 Null0
D.ip route 192.168.0.0 255.255.254.0 Null0
AnswerA
solution
! R1
ip route 192.168.0.0 255.255.252.0 Null0

Why this answer

The three subnets 192.168.1.0/24, 192.168.2.0/24, and 192.168.3.0/24 can be summarized as 192.168.0.0/22, which covers 192.168.0.0 to 192.168.3.255. A static route to Null0 ensures that traffic matching the summary but not a more specific route is dropped, preventing routing loops.

Exam trap

When summarizing, ensure the summary network address is the first address in the block (aligned to the subnet boundary) and the mask is calculated correctly. A common mistake is to start the summary at the first subnet address (192.168.1.0) instead of the network address (192.168.0.0). Also, verify the mask covers all subnets without including extra networks.

Why the other options are wrong

B

The network address is wrong; the summary must start at 192.168.0.0, not 192.168.1.0.

C

The subnet mask /24 is too small; it does not summarize the three subnets.

D

The subnet mask /23 is too specific; it only covers two of the three subnets.

221
MCQmedium

A branch router learns a route to 10.20.30.0/24 from OSPF with metric 30 and also has a static route to the same prefix with an administrative distance of 5. Which route will appear in the routing table?

A.The OSPF route because metric 30 is lower than the static route metric
B.The static route because its administrative distance is lower
C.Both routes with equal preference because they point to the same prefix
D.Neither route until the router performs a full SPF recalculation
AnswerB

Correct choice.

Why this answer

The router installs the static route because administrative distance is compared before metric when two different routing sources advertise the same prefix. OSPF metric matters only against other OSPF choices, not against a lower-AD static route.

Exam trap

A common exam trap is to confuse the OSPF metric with administrative distance and assume the route with the lower metric is preferred. Since OSPF’s metric is 30 and the static route’s metric is not applicable or higher, candidates may incorrectly select the OSPF route. However, Cisco routers first compare administrative distance, which is a measure of route trustworthiness across different routing sources.

Because the static route has a lower administrative distance (5) than OSPF (110), the static route is preferred and installed in the routing table. Misunderstanding this leads to incorrect route selection and exam errors.

Why the other options are wrong

A

This option is incorrect because metric values are only compared among routes learned from the same routing protocol. The OSPF metric of 30 is irrelevant when compared to a static route, which is a different routing source with a lower administrative distance.

C

This option is incorrect because routers do not install multiple routes to the same prefix from different routing protocols unless they have equal administrative distance and are configured for load balancing. Here, the static route’s lower AD prevents the OSPF route from being installed.

D

This option is incorrect because the router does not delay route installation until a full SPF recalculation. Route selection is immediate based on administrative distance and metric rules. SPF recalculation only affects OSPF route selection, not cross-protocol comparisons.

222
PBQmedium

You are connected to R1 via the console. R1 is a new router that connects to three subnets: 192.168.1.0/24 (connected to GigabitEthernet0/0), 192.168.2.0/24 (connected to GigabitEthernet0/1), and 192.168.3.0/24 (connected to GigabitEthernet0/2). R1 must be able to ping the loopback0 interface of R2 (192.168.100.1/32) which is reachable via R2's Serial0/0/0 interface (10.0.0.2/30). The link between R1 and R2 is 10.0.0.0/30, with R1's interface being 10.0.0.1/30. No dynamic routing protocols are configured. Configure R1 to reach the loopback address of R2 using a host-specific static route (not a default route).

Network Topology
G0/0192.168.1.1/24S0/0/010.0.0.2/30R1R2

Hints

  • The destination is a single host address.
  • Use the next-hop IP address of R2's serial interface.
  • The command starts with 'ip route'.
A.ip route 192.168.100.1 255.255.255.255 10.0.0.2
B.ip route 192.168.100.0 255.255.255.0 10.0.0.2
C.ip route 192.168.100.1 255.255.255.255 192.168.1.1
D.ip route 0.0.0.0 0.0.0.0 10.0.0.2
AnswerA
solution
! R1
ip route 192.168.100.1 255.255.255.255 10.0.0.2

Why this answer

Option A is correct because it configures a host route (mask /32) to destination 192.168.100.1 with next-hop 10.0.0.2, directly matching the loopback address and providing exact reachability. Option B is incorrect because it uses a /24 mask, which does not match the /32 loopback and would cause routing issues. Option C is incorrect because it uses next-hop 192.168.1.1, which is not the directly connected neighbor; packets would be forwarded to a local interface, not across the serial link.

Option D is incorrect because it creates a default route (0.0.0.0/0) rather than the required host-specific route, failing to meet the specific task requirement.

Exam trap

Pay close attention to the prefix length of the destination. The loopback is a /32 host route, so the mask must be 255.255.255.255. Also, ensure the next-hop IP is directly connected to R1.

Why the other options are wrong

B

Uses a /24 mask, which does not match the /32 loopback address, potentially leading to incorrect routing.

C

Uses next-hop 192.168.1.1, which is not directly reachable over the serial link to R2.

D

Creates a default route, which is not a host-specific static route as required.

223
MCQhard

Which summary route best represents these four networks? 10.20.0.0/24 10.20.1.0/24 10.20.2.0/24 10.20.3.0/24

A.10.20.0.0/22
B.10.20.0.0/23
C.10.20.0.0/24
D.10.20.0.0/21
AnswerA

Correct. /22 is the smallest summary that covers exactly those four /24 networks.

Why this answer

Four contiguous /24 networks starting at 10.20.0.0 summarize cleanly into 10.20.0.0/22. That block covers 10.20.0.0 through 10.20.3.255.

Exam trap

Be careful to calculate the correct subnet mask that covers all given networks without including unnecessary additional ranges.

Why the other options are wrong

B

Option B, 10.20.0.0/23, is incorrect because it only encompasses two of the four specified networks (10.20.0.0/24 and 10.20.1.0/24), failing to include the other two networks (10.20.2.0/24 and 10.20.3.0/24).

C

Option C is incorrect because it only summarizes a single network (10.20.0.0/24) and does not encompass the other three networks (10.20.1.0/24, 10.20.2.0/24, 10.20.3.0/24) that need to be included in the summary route.

D

Option D (10.20.0.0/21) is incorrect because it encompasses a larger range of addresses than required, including networks that are not part of the specified four networks, which are only within the /24 range of 10.20.0.0 to 10.20.3.0.

224
PBQhard

You are connected to R1 via the console. The routers R1 and R2 are directly connected using their GigabitEthernet0/0 interfaces, which are in VLAN 100 and use subnet 192.168.1.0/24. Both routers are currently showing as active for HSRP group 10. Configure HSRP on R1's GigabitEthernet0/0 to become the active router (priority 150, preempt enabled, virtual IP 192.168.1.254). Ensure that if R1's GigabitEthernet0/1 WAN interface goes down, its HSRP priority decrements by 30 so that R2 can take over. Also, correct any existing misconfiguration in the HSRP setup.

Hints

  • Check if preempt is actually enabled by looking for the 'P' flag in show standby brief.
  • Both routers being active often indicates a duplicate virtual IP or missing preempt.
  • Use 'standby 10 preempt' to enable preemption, and 'standby 10 priority 150' to set priority.
A.Configure: interface GigabitEthernet0/0, standby 10 ip 192.168.1.254, standby 10 priority 150, standby 10 preempt, standby 10 track GigabitEthernet0/1 decrement 30. Also, ensure preempt is enabled on R1 (currently missing) and correct any duplicate virtual IP.
B.Configure: interface GigabitEthernet0/0, standby 10 ip 192.168.1.254, standby 10 priority 150, standby 10 preempt, standby 10 track GigabitEthernet0/1 decrement 30. No other changes needed because preempt is already enabled.
C.Configure: interface GigabitEthernet0/0, standby 10 ip 192.168.1.254, standby 10 priority 150, standby 10 preempt, standby 10 track GigabitEthernet0/1 decrement 30. Also, change the virtual IP to 192.168.1.1 because the current one is wrong.
D.Configure: interface GigabitEthernet0/0, standby 10 ip 192.168.1.254, standby 10 priority 150, standby 10 preempt, standby 10 track GigabitEthernet0/1 decrement 30. Also, remove the standby 10 track command from R2 to prevent conflicts.
AnswerA
solution
! R1
interface GigabitEthernet0/0
standby 10 priority 150
standby 10 preempt
standby 10 track GigabitEthernet0/1 decrement 30
end

Why this answer

Both routers showing as active means either R2 has an equal or higher priority or preempt is missing, preventing a single active election. To fix this, on R1's GigabitEthernet0/0 interface, set standby priority 150 with preempt enabled. Add tracking of GigabitEthernet0/1 with decrement 30 so the priority drops to 120 if the WAN link fails, allowing R2 to become active.

The existing misconfiguration is that preempt is either absent or disabled, causing a split-brain scenario; this solution makes R1 the active router and provides correct failover.

Exam trap

Always verify HSRP preempt with 'show standby' to see the 'P' flag; configuration alone does not guarantee it is active. Also, remember that both routers showing as active is a symptom of missing preempt or duplicate virtual IP, not necessarily a tracking issue.

Why the other options are wrong

B

Preempt is not already enabled—otherwise both routers would not show as active. Failing to enable preempt leaves the split‑brain condition unresolved.

C

The virtual IP 192.168.1.254 is correctly assigned to the HSRP group; changing it would replace the default gateway for all hosts, breaking connectivity.

D

Removing tracking from R2 is irrelevant; the problem is R1's missing preempt and low priority, not R2's configuration. Both routers showing active is not caused by tracking on R2.

225
Drag & Dropmedium

Drag and drop the following steps into the correct order to describe the router's routing table lookup process for a destination IP address, including best-path selection using longest prefix match, administrative distance, and metric.

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

Why this order

The order follows the router's decision process: longest prefix match first, then administrative distance, then metric, leading to the forwarding decision.

Exam trap

Students often confuse the order of AD and metric, thinking metric is compared before AD. Remember: AD is a tiebreaker between different routing protocols (e.g., OSPF vs. EIGRP), while metric is a tiebreaker within the same protocol.

Also, longest prefix match always comes first—never skip it.

← PreviousPage 3 of 5 · 344 questions totalNext →

Ready to test yourself?

Try a timed practice session using only IP Routing questions.