CCNA IP Routing Questions

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

1
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure single-area OSPFv2 on a router and verify the neighbor state transitions from Down to Full.

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 configuring OSPF, clearing the process triggers neighbor state transitions from Down to Full, which can then be verified with the neighbor command.

Note: Clearing the OSPF process is a disruptive action that resets all adjacencies. In production, use 'clear ip ospf process' only when necessary. For normal configuration verification, 'show ip ospf neighbor' is sufficient without clearing.

Note: Clearing the OSPF process is a disruptive action that resets all adjacencies. In production, use 'clear ip ospf process' only when necessary. For normal configuration verification, 'show ip ospf neighbor' is sufficient without clearing.

Exam trap

Do not confuse the order of enabling OSPF and configuring networks; router ospf must come first. Also, remember that clearing the OSPF process is necessary to trigger neighbor state transitions for verification purposes.

2
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure an IPv4 default static route with a floating backup 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
6Step 6

Why this order

The correct order is: 1. Enter privileged EXEC mode using the enable command, because you must be in privileged mode to enter global configuration. 2. Enter global configuration mode with configure terminal, as static routes are configured in global configuration. 3.

Configure the primary default route using ip route 0.0.0.0 0.0.0.0 <next-hop> with default administrative distance (1), establishing the primary path. 4. Configure the floating backup route using ip route 0.0.0.0 0.0.0.0 <backup-next-hop> <higher-AD> (e.g., 10), so it is less preferred. 5. Exit global configuration mode using end to return to privileged EXEC. 6.

Save the configuration with copy running-config startup-config to ensure the routes persist after a reboot.

3
MCQhard

Based on the exhibit, which route will be used for destination 10.1.1.70?

A.The static route to 10.1.1.64/26
B.The OSPF route to 10.1.1.0/24
C.The OSPF route to 10.1.0.0/16
D.The default route
AnswerA

This is correct because 10.1.1.70 matches the more specific /26 route.

Why this answer

The route used will be the one with the longest matching prefix. In practical terms, 10.1.1.70 falls inside 10.1.1.64/26, and that prefix is more specific than both 10.1.1.0/24 and 10.1.0.0/16. Route selection begins with specificity, so the /26 route wins regardless of the broader alternatives.

This is a clean simulation-style routing-table interpretation question and very close to real exam thinking.

Exam trap

A frequent exam trap is to incorrectly assume that dynamic routing protocols like OSPF always override static routes or that administrative distance alone determines the chosen route. Candidates might see multiple routes to the destination and pick the OSPF route with a broader subnet mask, ignoring that the static route has a longer prefix match. This mistake overlooks the fundamental Cisco routing rule that longest prefix match takes precedence over administrative distance when multiple routes exist.

Misreading subnet masks or ignoring prefix specificity leads to selecting less optimal or incorrect routes in the exam scenario.

Why the other options are wrong

B

Option B is incorrect because the OSPF route to 10.1.1.0/24 is less specific than the /26 static route. Even though OSPF is a dynamic protocol, the router prefers the more specific static route.

C

Option C is incorrect since the OSPF route to 10.1.0.0/16 covers a much larger network and is less specific than both the /24 and /26 routes, so it is not chosen for 10.1.1.70.

D

Option D is incorrect because the default route is only used when no other more specific route matches the destination. Here, the /26 static route is more specific, so the default route is ignored.

4
PBQhard

You are connected to R1 via console. R1 and R2 are directly connected via their GigabitEthernet0/0 interfaces. Configure OSPFv3 for IPv6 on both routers so that the loopback0 interface on R2 (with IPv6 address 2001:db8:acad:2::1/64) is reachable from R1. Enable IPv6 unicast routing, enable OSPFv3 on the appropriate interfaces, and verify the neighbor adjacency and routing table. (Note: R2 already has OSPFv3 configured and is waiting for R1 to complete its configuration.)

Hints

  • OSPFv3 uses a separate process from OSPFv2; you must create the OSPFv3 process with 'ipv6 router ospf <process-id>'.
  • The router-id must be configured manually (e.g., 1.1.1.1) because there are no IPv4 addresses on R1.
  • OSPFv3 is enabled on an interface using 'ipv6 ospf <process-id> area <area-id>'.
A.Enable IPv6 unicast routing, configure OSPFv3 process with router-id, enable OSPFv3 on GigabitEthernet0/0 in area 0, and verify neighbor and route.
B.Enable IPv6 unicast routing, configure OSPFv2 process with router-id, enable OSPFv2 on GigabitEthernet0/0 in area 0, and verify neighbor and route.
C.Enable IPv6 unicast routing, configure OSPFv3 process without a router-id, enable OSPFv3 on GigabitEthernet0/0 in area 0, and verify neighbor and route.
D.Enable IPv6 unicast routing, configure OSPFv3 process with router-id, enable OSPFv3 on GigabitEthernet0/0 in area 0, but do not verify neighbor or route.
AnswerA
solution
! R1
ipv6 unicast-routing
ipv6 router ospf 1
router-id 1.1.1.1
exit
interface gigabitethernet0/0
ipv6 ospf 1 area 0
end

Why this answer

The issue is that OSPFv3 process is not enabled on R1. To fix, first ensure IPv6 unicast routing is enabled (already done). Then configure OSPFv3 routing process with a process ID (e.g., 1) and router-id using the `ipv6 router ospf 1` command and `router-id` command.

Then enable OSPFv3 on the GigabitEthernet0/0 interface with `ipv6 ospf 1 area 0`. Finally, verify with `show ospfv3 neighbor` to see R2's router ID (e.g., 2.2.2.2) and `show ipv6 route ospf` to see the route to 2001:db8:acad:2::/64.

Exam trap

A common trap is confusing OSPFv2 and OSPFv3. Remember that OSPFv3 is for IPv6 and requires a router-id. Also, do not skip verification steps; they are often required in exam scenarios.

Why the other options are wrong

B

OSPFv2 supports only IPv4; OSPFv3 is required for IPv6 routing.

C

OSPFv3 uses a 32-bit router-id, which must be manually configured or derived from an IPv4 address; without it, the process cannot operate.

D

Verification commands like 'show ospfv3 neighbor' and 'show ipv6 route ospf' are necessary to ensure OSPFv3 is functioning correctly.

5
Multi-Selectmedium

Which TWO statements correctly describe the behavior of the passive-interface command in single-area OSPFv2?

Select 2 answers
A.It prevents the router from sending Hello packets on the specified interface.
B.It prevents the router from advertising the network in OSPF LSAs.
C.The network associated with the passive interface is still advertised in OSPF LSAs.
D.It disables the interface for any OSPF traffic, including data traffic.
E.It removes the network from the OSPF routing table.
AnswersA, C

Passive-interface in OSPF suppresses Hello packets, preventing OSPF neighbor discovery.

Why this answer

The passive-interface command in OSPFv2 suppresses all OSPF protocol packets (Hello, DD, LSR, LSU, LSAck) on the specified interface, preventing neighbor adjacency formation. However, the network prefix of that interface is still included in the router LSA and advertised through active interfaces to the OSPF domain. Option A is correct because Hello packets are suppressed.

Option C is correct because the prefix is still advertised in LSAs. Option B is incorrect after rewording: it states that the network is not advertised, which is false. Option D is incorrect because passive-interface does not affect data traffic forwarding.

Option E is incorrect because the network remains in the OSPF routing table.

Exam trap

A common mistake is confusing passive-interface in OSPF with RIP or EIGRP; in OSPF, it suppresses all control packets on the interface, but the network is still advertised in LSAs via other interfaces.

Why the other options are wrong

B

This statement is false because passive-interface does not prevent the network from being advertised; the prefix is still injected into the OSPF LSAs.

D

Passive-interface only stops OSPF control packets; data traffic forwarding continues normally on the interface.

E

The passive-interface command does not remove the network from the OSPF routing table; the network is still reachable via other interfaces.

6
Multi-Selectmedium

Which two statements accurately describe default routes in a routed network?

Select 2 answers
A.A default route is used when no more specific route matches.
B.A default route is commonly represented as 0.0.0.0/0 in IPv4.
C.A default route is always preferred over connected routes.
D.A default route can exist only when dynamic routing is disabled.
E.A default route removes the need for route selection logic.
AnswersA, B

This is correct because that is the core purpose of a default route.

Why this answer

A default route is a fallback path used when no more specific route matches, which justifies option A. It is commonly represented as 0.0.0.0/0 in IPv4, so option B is also correct. Option C is incorrect because default routes are not always preferred over connected routes; connected routes are more specific (e.g., /24) and thus take precedence.

Option D is false because default routes can be statically configured or dynamically learned via routing protocols such as OSPF or EIGRP. Option E is incorrect because default routes do not eliminate the need for route selection logic; routers still perform longest prefix match, and default routes are only used when no more specific match exists.

Exam trap

A common exam trap is to incorrectly believe that a default route always takes precedence over other routes. Some candidates assume the default route is the primary path for all traffic, ignoring the longest prefix match rule. This misunderstanding leads to the false conclusion that connected or static routes are overridden by the default route.

In reality, the router always prefers the most specific route available, and the default route is only used when no other route matches. Misinterpreting this can cause incorrect answers about routing behavior and route preference in the exam.

Why the other options are wrong

C

Incorrect. Default routes are less preferred than connected or static routes because routers always choose the most specific route first based on longest prefix match.

D

Incorrect. Default routes can exist alongside dynamic routing protocols and do not require dynamic routing to be disabled; they complement dynamic routes as a last resort.

E

Incorrect. A default route does not remove the need for route selection logic; routers still evaluate all routes and prefer more specific matches before using the default.

7
Multi-Selecthard

A router has learned route 172.16.50.0/24 from OSPF with cost 20 and also has a static route to the same prefix with administrative distance 5. Which two statements are correct about route selection?

Select 2 answers
A.The static route is installed because it has the lower administrative distance
B.The OSPF route is installed because cost 20 is lower than metric 0
C.If the static route is removed, OSPF can become the active route
D.Both routes are installed as equal-cost paths automatically
AnswersA, C

Administrative distance is compared before metric when routes come from different sources.

Why this answer

When the same prefix is learned from different routing sources, the router first compares administrative distance (AD). The static route with AD 5 wins over OSPF with AD 110, so option A is correct. Option C is correct because if the static route is removed, the OSPF route becomes the next best candidate and is installed.

Option B is wrong since AD is compared before metrics like OSPF cost; a lower cost does not override a lower AD. Option D is wrong because only one route is installed per destination based on AD, not both.

Exam trap

A common exam trap is to incorrectly assume that the OSPF route with a lower cost metric will be preferred over a static route. Many candidates mistakenly compare OSPF cost directly against the static route’s metric or ignore administrative distance entirely. This leads to the wrong conclusion that OSPF wins because 20 is less than 0 or some assumed static metric.

However, Cisco routers always compare administrative distance first when routes come from different sources. Ignoring this rule causes confusion and incorrect answers in routing questions involving multiple protocols.

Why the other options are wrong

B

Option B is incorrect because metrics like OSPF cost are only compared among routes from the same protocol; the router does not compare OSPF cost against static route administrative distance.

D

Option D is incorrect because routes from different sources with different administrative distances do not qualify for equal-cost multipath (ECMP), so both routes are not installed simultaneously.

8
MCQhard

A technician configures OSPF on R1 using the command network 10.0.0.0 0.0.0.255 area 0. R1's GigabitEthernet0/0 interface has IP address 10.0.0.1/30 and is included in the OSPF process. The technician confirms the interface is not passive using the show ip ospf interface GigabitEthernet0/0 command. However, R2 is not forming an OSPF adjacency with R1. What should the technician do next?

A.Check the OSPF hello and dead intervals on R1 and R2.
B.Verify the OSPF area ID configured on R2's interface.
C.Check whether R2's interface is configured as a passive interface.
D.Verify the subnet mask configured on R2's connecting interface.
AnswerD

OSPF on a broadcast network requires an exact subnet mask match; a mismatch will prevent neighbor relationships. Given that R1's interface is properly added to OSPF, is not passive, and is in the correct area, the most likely cause is a misconfigured subnet mask on R2. Checking this resolves a basic Layer 3 requirement before investigating any OSPF-specific parameters.

Why this answer

On broadcast multi-access networks like Ethernet, OSPF requires both neighbors to agree on the exact subnet mask; a mismatch causes the hello packets to be rejected. R1's interface is already confirmed to be in the correct area and not passive, so the next logical step is to check R2's interface configuration. Verifying the subnet mask on R2's connecting interface addresses a fundamental Layer 3 misconfiguration that would directly prevent adjacency formation, before investigating OSPF-specific parameters.

Exam trap

Many candidates jump to checking OSPF timer mismatches because hello/dead interval mismatches are a well-known cause of adjacency issues, but those are less common than simple subnet mask misconfigurations and should be investigated only after verifying basic IP addressing.

Why the other options are wrong

A

Skips the more likely and fundamental subnet mask check, which would render timer issues irrelevant until resolved.

B

Ignores the more foundational IP addressing check that could also cause the issue, and area troubleshooting would be misleading if the subnet mask is incorrect.

C

Jumps to an OSPF-specific command without first verifying the fundamental IP subnet configuration, which is a more direct cause of failed adjacencies on broadcast links.

9
MCQhard

A route to 192.168.1.0/24 appears in the routing table from OSPF, but a more specific static route to 192.168.1.128/25 is also configured. Which route is used for traffic to 192.168.1.200?

A.The OSPF /24 route
B.The static /25 route
C.Both routes automatically load-balance
D.Neither route because the network overlaps
AnswerB

This is correct because 192.168.1.200 falls within 192.168.1.128/25.

Why this answer

The static /25 route is used because longest-prefix match prefers the most specific matching route. In plain language, even though the OSPF /24 route covers the destination, the /25 static route covers a narrower range and therefore wins for addresses inside that upper half of the subnet.

The router does not begin by asking which protocol is more trusted unless the prefix lengths are equal among the matching routes.

Exam trap

A common exam trap is assuming that the routing protocol with the lower administrative distance or higher trustworthiness automatically wins, regardless of prefix length. Candidates may incorrectly choose the OSPF /24 route because OSPF is a dynamic protocol and often trusted. However, the router always applies the longest-prefix match rule first, so the more specific static /25 route is preferred.

Overlapping routes are normal and do not cause routing conflicts; the router simply forwards packets based on the most specific match. Misunderstanding this can lead to selecting the wrong answer and missing the core routing principle tested here.

Why the other options are wrong

A

The OSPF /24 route is less specific than the static /25 route. Since longest-prefix match prefers the more specific route, the OSPF route is not used for 192.168.1.200.

C

Both routes do not automatically load-balance because they have different prefix lengths. Load balancing requires equal prefix length and equal cost routes, which is not the case here.

D

Neither route is incorrect because overlapping routes are common and resolved by longest-prefix match. The router uses the more specific static /25 route, so traffic is forwarded correctly.

10
MCQhard

An engineer is troubleshooting an OSPF adjacency issue between two Cisco routers, R1 and R2, connected via GigabitEthernet0/0 on both sides. Hosts on R1's LAN cannot ping hosts on R2's LAN. The engineer checks the OSPF neighbor state on R1 and sees the adjacency is stuck in EXSTART/EXCHANGE. The router IDs are 1.1.1.1 on R1 and 2.2.2.2 on R2, and both routers have a network statement for their directly connected subnet. What is the most likely cause of this problem?

A.The passive-interface default command is blocking OSPF Hellos on GigabitEthernet0/0.
B.There is an MTU mismatch between R1 and R2 on the GigabitEthernet0/0 interfaces.
C.The OSPF area configured on the interface does not match between R1 and R2.
D.The router IDs 1.1.1.1 and 2.2.2.2 are conflicting with each other.
AnswerB

An MTU mismatch causes OSPF DBD packets to be dropped, leading to the EXSTART/EXCHANGE state. Fixing the MTU on one side to match the other resolves the adjacency.

Why this answer

The EXSTART/EXCHANGE state indicates that OSPF neighbors have progressed past the 2-Way state and are attempting to exchange Database Description (DBD) packets. An MTU mismatch on the directly connected GigabitEthernet0/0 interfaces prevents successful DBD exchange because the interface with the smaller MTU drops the larger DBD packet, causing the adjacency to remain stuck in EXSTART/EXCHANGE. Options A and C are incorrect because passive-interface default and area mismatches prevent the adjacency from reaching EXSTART/EXCHANGE (they block Hello exchange), and option D is incorrect because conflicting router IDs would prevent adjacency formation entirely, not result in a stuck EXSTART/EXCHANGE state.

Exam trap

Cisco often tests the MTU mismatch scenario by presenting symptoms of a stuck adjacency in EXSTART/EXCHANGE, which candidates may confuse with other issues like mismatched areas or passive interfaces, but the key clue is the specific state where DBD exchange fails.

Why the other options are wrong

A

The passive-interface default command would block Hellos, preventing the adjacency from ever reaching the EXSTART/EXCHANGE state.

C

An OSPF area mismatch would cause Hellos to be ignored, so the adjacency would not progress past the Down or Init state.

D

Conflicting router IDs would prevent the routers from becoming neighbors at all, as OSPF requires unique router IDs within an area.

11
MCQhard

A router learns route 198.51.100.0/24 from OSPF with AD 110 and also has a static route to the same prefix configured with AD 150. Which route is installed?

A.The static route, because static routes always win
B.The OSPF route, because 110 is lower than 150
C.Both routes, because administrative distances are different
D.Neither route, because the static route is floating
AnswerB

Correct. OSPF is preferred here because AD 110 is lower than 150.

Why this answer

The route with the lower administrative distance is installed. A static route configured with a higher AD becomes a floating static route and remains as a backup until the preferred route disappears.

Exam trap

Don't assume static routes are always preferred; check the administrative distance.

Why the other options are wrong

A

Static routes do not always win; they have a default administrative distance of 1, but in this scenario the static route was configured with AD 150, which is higher than OSPF's AD 110. Therefore, the OSPF route is preferred.

C

A router installs only the best route (lowest AD) for a given prefix into the routing table. Different AD values do not cause both routes to be installed; the route with the lower AD is chosen.

D

A floating static route is a static route with a higher AD than the dynamic route, so it remains inactive as a backup. In this case, the static route is floating, but it is still valid and will be used if the OSPF route is lost. The question asks which route is installed, and the OSPF route is installed, not neither.

12
MCQhard

A network engineer configures OSPF on R1 and R2 over a point-to-point link. The interfaces are in the same OSPF area, with matching hello and dead timers, and are on the same IP subnet. However, the command show ip ospf neighbor on both routers shows no neighbors. A firewall sits between R1 and R2. What should the technician do next?

A.Check the firewall rules to verify that multicast address 224.0.0.5 is not being blocked.
B.Verify that the OSPF router IDs on R1 and R2 are unique.
C.Check the OSPF network type on the connecting interfaces.
D.Verify that the MTU on the connecting interfaces matches.
AnswerA

This is correct because OSPF multicast hellos (224.0.0.5) must be permitted through the firewall for neighbors to form. If blocked, routers will not see each other's hellos, resulting in an empty neighbor table.

Why this answer

OSPF uses multicast address 224.0.0.5 for hello packets on all OSPF network types except non-broadcast. With a firewall in the path, the most common reason for a complete lack of neighbor discovery, even when the interface-level OSPF parameters match, is that the firewall is blocking this multicast traffic. Checking the firewall rules directly addresses the most likely layer-3/layer-4 filtering issue and is a non-intrusive first step before examining deeper OSPF-specific settings.

Exam trap

Many candidates would jump to verifying the MTU, recalling that MTU mismatch is a classic OSPF issue. However, an MTU mismatch typically results in neighbors becoming stuck in the EXSTART or EXCHANGE state, not a complete absence of neighbors. The presence of a firewall and no neighbors at all strongly suggests the hellos are being dropped entirely, making the ACL check a higher priority.

Why the other options are wrong

B

Router ID duplication does not explain a completely empty neighbor table; neighbors would still be detected via hellos.

C

Network type mismatch would likely still result in hellos being received and a neighbor entry appearing, just not advancing to full adjacency. The complete absence of neighbors points to a transport issue.

D

Candidates often remember MTU mismatch as a frequent OSPF problem, but it manifests after neighbor discovery, not as a complete lack of neighbors.

13
MCQhard

Based on the exhibit, which route will be used for destination 192.168.10.130?

A.The static route to 192.168.10.128/25
B.The OSPF route to 192.168.10.0/24
C.The default route
D.No route at all
AnswerA

This is correct because 192.168.10.130 is inside the more specific /25 prefix.

Why this answer

The route used will be the one with the longest matching prefix. In practical terms, 192.168.10.130 matches both the /24 and the /25 prefixes shown, but the /25 is more specific. Because longest-prefix match comes first, the router uses the /25 route even though other matching routes are present.

This is a clean route-table interpretation question that is very close to real exam reasoning.

Exam trap

A common exam trap is to select the OSPF route to 192.168.10.0/24 because it appears as a valid route to the destination. Candidates may mistakenly believe that dynamic routing protocols override static routes or that the broader /24 subnet is sufficient. However, the router always prefers the longest prefix match, which is the /25 static route in this case.

Another trap is assuming the default route will be used when multiple routes exist, but default routes only apply when no specific routes match the destination. Misunderstanding these routing principles leads to incorrect answers.

Why the other options are wrong

B

This option is incorrect because the OSPF route to 192.168.10.0/24 has a shorter prefix length (/24) than the static /25 route, so it is less specific and will not be chosen for the destination IP.

C

This option is incorrect because the default route is only used when no other specific routes match the destination. Since both the /24 and /25 routes match, the default route is ignored.

D

This option is incorrect because the destination IP clearly matches multiple routes in the routing table, so the router will select the best match rather than having no route at all.

14
MCQhard

R1 is not forming an OSPF adjacency with R2 on GigabitEthernet0/1. Which mismatch below is the most likely cause?

A.The routers are using different IP subnet masks on the shared link
B.OSPF cannot run on GigabitEthernet interfaces
C.Both routers are in area 0
D.The router IDs must match for adjacency to form
AnswerA

That mismatch can stop OSPF adjacency on the segment.

Why this answer

For OSPF neighbors to form, key settings on a shared segment must match. A subnet mask mismatch on a broadcast network often prevents proper neighbor formation because the routers do not agree on the local network.

Exam trap

A common exam trap is confusing the need for matching router IDs with adjacency formation. While router IDs must be unique within an OSPF domain, they do not need to match for adjacency to form. Another trap is assuming OSPF cannot run on GigabitEthernet interfaces, which is incorrect because OSPF supports all standard interface types.

The most tempting mistake is overlooking the subnet mask mismatch, which silently prevents adjacency by making routers believe they are on different networks, even if other parameters like area ID match. This subtle misconfiguration is often missed during troubleshooting.

Why the other options are wrong

B

Incorrect because OSPF fully supports GigabitEthernet interfaces. There is no restriction on running OSPF on these interfaces in Cisco IOS.

C

Incorrect because both routers being in area 0 is necessary for adjacency on that segment. Matching area IDs help form adjacency rather than prevent it.

D

Incorrect because router IDs must be unique, not identical. Matching router IDs do not cause adjacency to form; in fact, duplicate router IDs cause routing problems but not adjacency failure due to subnet mismatch.

15
MCQhard

A router has a static route for 172.16.10.128/25 and an OSPF-learned route for 172.16.10.0/24. When forwarding traffic to 172.16.10.130, why does the router use the static route instead of the OSPF route?

A.Because the static /25 route is more specific than the OSPF /24 route.
B.Because static routes always beat OSPF even when they are less specific.
C.Because OSPF routes cannot be used for Class B networks.
D.Because the OSPF metric is lower than the static administrative distance.
AnswerA

This is correct because longest-prefix match selects the /25 for 172.16.10.130.

Why this answer

The static route is used because it is the more specific match. In practical terms, route selection starts with prefix specificity. The destination 172.16.10.130 matches both routes shown, but the static /25 is more specific than the OSPF /24. Because longest-prefix match comes first, the static route is chosen regardless of the different route sources.

This is a classic route-selection interpretation question that tests whether you prioritize specificity correctly.

Exam trap

A common exam trap is to incorrectly assume that static routes always override OSPF routes due to their lower administrative distance, regardless of prefix length. Candidates might also believe that OSPF cannot handle Class B networks or that metrics alone determine route selection. The trap lies in ignoring the fundamental routing principle of longest-prefix match, which Cisco routers apply before considering administrative distance or metric.

This misunderstanding leads to incorrect answers and confusion about route selection behavior in Cisco routing tables.

Why the other options are wrong

B

Option B is incorrect because static routes do not always override OSPF routes regardless of specificity. Prefix length is evaluated before administrative distance, so a less specific static route would not override a more specific OSPF route.

C

Option C is incorrect because OSPF can route any IP address range, including Class B networks like 172.16.0.0/16. There is no limitation on OSPF routing based on IP class.

D

Option D is incorrect because the routing decision here is based on prefix length, not on comparing OSPF metric and static route administrative distance. The static route’s longer prefix length takes precedence.

16
MCQhard

A router receives a destination prefix from EIGRP with administrative distance 90 and also from OSPF with administrative distance 110. The prefix length is identical. Which route source is preferred?

A.EIGRP
B.OSPF
C.Both equally
D.Neither, because route sources cannot overlap
AnswerA

This is correct because EIGRP’s default administrative distance of 90 is lower than OSPF’s 110.

Why this answer

The EIGRP route is preferred because its administrative distance is lower. In practical terms, once the prefix length is the same, the router compares the trustworthiness of the route source. Lower administrative distance wins. Since 90 is lower than 110, EIGRP is preferred over OSPF for that destination.

This is an administrative-distance comparison question, not a longest-prefix question. The key is that the prefix length is equal, so source preference becomes the deciding factor.

Exam trap

A frequent exam trap is to assume that OSPF routes might be preferred over EIGRP routes simply because OSPF is a widely used IGP or because of metric comparisons within OSPF. Candidates often confuse administrative distance with routing metrics, mistakenly thinking that the lower metric route is preferred regardless of protocol. However, administrative distance is the first criterion when routes come from different protocols.

Another trap is to think that routes from different protocols cannot overlap or that prefix length alone determines preference. The key is that when prefix lengths are equal, the router uses administrative distance to select the best route, so EIGRP’s lower AD of 90 always beats OSPF’s 110.

Why the other options are wrong

B

This option is incorrect because OSPF’s administrative distance of 110 is higher than EIGRP’s 90, so OSPF routes are less preferred when both advertise the same prefix length.

C

This option is incorrect because routers do not treat routes from different protocols with equal administrative distance; they prefer the route with the lower administrative distance, so both routes are not equally preferred.

D

This option is incorrect because routers can and often do receive overlapping routes from multiple routing protocols and must compare administrative distance to choose the best route.

17
MCQhard

A router learns the same destination prefix from OSPF and from a static route configured with administrative distance 90. Which route is preferred by default?

A.The static route with distance 90
B.The OSPF route, because dynamic routes always beat static routes
C.Both routes equally, because the prefix is identical
D.Neither route, because duplicate information is dropped
AnswerA

This is correct because 90 is lower than OSPF’s default administrative distance of 110.

Why this answer

The static route is preferred because its administrative distance of 90 is lower than OSPF’s default administrative distance of 110. In practical terms, when the prefix length is the same, the router compares route-source trust next. The lower administrative distance wins.

This question is important because many learners remember that static routes are often strong choices but forget that administrative distance can be tuned. Here, that tuning explicitly makes the static route more preferred than OSPF.

Exam trap

A frequent exam trap is believing that dynamic routing protocols like OSPF always take precedence over static routes. Many candidates mistakenly think that dynamic routes inherently override static routes regardless of administrative distance. However, Cisco routers use administrative distance as the primary factor in route selection, not the route source type.

Since the static route in this question has an AD of 90, which is lower than OSPF’s default 110, the static route is preferred. Misunderstanding this can lead to incorrect answers and confusion about route installation in the routing table.

Why the other options are wrong

B

This option is incorrect because route preference is determined by administrative distance, not by a blanket rule that dynamic routes always beat static routes.

C

This option is incorrect because identical prefix length alone does not guarantee equal route preference; administrative distance is the deciding factor.

D

This option is incorrect because routers do not drop duplicate routing information; instead, they choose the best route based on administrative distance.

18
PBQmedium

You are connected to R1 via console. R1 has two paths to the Internet: primary via ISP1 (G0/0) and backup via ISP2 (G0/1). The primary route has an administrative distance of 1, and the backup should only be used if the primary fails. Currently, both routes are active. You need to configure a floating static route for the backup.

Network Topology
G0/0198.51.100.1/30linkG0/1203.0.113.1/30linkR1ISP1ISP2

Hints

  • The existing default route has AD 1.
  • Use a higher administrative distance for the backup route.
  • The backup route should point to the ISP2 next-hop.
A.ip route 0.0.0.0 0.0.0.0 G0/1 200
B.ip route 0.0.0.0 0.0.0.0 G0/1 1
C.ip route 0.0.0.0 0.0.0.0 G0/1 0
D.ip route 0.0.0.0 0.0.0.0 G0/1 255
AnswerA
solution
! R1
ip route 0.0.0.0 0.0.0.0 203.0.113.2 200
end

Why this answer

A floating static route with a higher administrative distance (200) than the primary route (1) ensures it is only used when the primary route is removed from the routing table, providing redundancy.

Exam trap

Remember that a floating static route must have a higher administrative distance than the primary route. Do not confuse 'higher' with 'lower' or use extreme values like 0 or 255. Also, ensure the backup route is configured with the correct next-hop interface or IP address.

Why the other options are wrong

B

The specific factual error is that an AD of 1 does not create a floating static route; it matches the primary route's AD, so both routes are used.

C

The specific factual error is that AD 0 is used for directly connected routes; using it for a static route would override the primary route.

D

The specific factual error is that AD 255 means the route is not trusted and will not be installed; it cannot serve as a backup.

19
MCQhard

An engineer is troubleshooting an OSPFv3 adjacency issue between two routers R1 and R2 connected over a serial link. The link is up/up on both sides, and IPv6 is enabled on the interfaces. However, the 'show ipv6 ospf neighbor' command shows no neighbors. The engineer checks the OSPFv3 configuration. What is the most likely cause of the missing adjacency?

A.The serial interface on R2 is administratively down.
B.OSPFv3 authentication is configured on R1 but not on R2.
C.The IPv6 address on R2 is in a different subnet than R1.
D.The OSPFv3 router-id is not configured on R2.
AnswerB

R1 has IPsec authentication under router ospfv3, but R2 does not. This mismatch prevents adjacency formation.

Why this answer

Option B is correct because OSPFv3 uses IPsec for authentication, unlike OSPFv2 which uses plaintext or MD5 authentication. If authentication is configured on one router but not the other, the OSPFv3 Hello packets will be dropped, preventing neighbor adjacency from forming. The 'show ipv6 ospf neighbor' command will show no neighbors because the routers cannot exchange Hello packets successfully.

Exam trap

Cisco often tests the misconception that OSPFv3 requires matching subnets (like OSPFv2) or that authentication is optional, when in fact OSPFv3 uses IPsec and any mismatch breaks adjacency silently.

Why the other options are wrong

A

The question states the serial link is up/up on both sides, meaning the interface is not administratively down. An administratively down interface would show as 'administratively down' in the interface status, not 'up/up'.

C

Both interfaces have IPv6 addresses in the 2001:DB8:1:1::/64 subnet, so the subnet matches. OSPFv3 does not require interfaces to be in the same subnet for adjacency, but it does require link-local addresses to be reachable. However, the given addresses are global unicast, and the subnet match is not the issue here.

D

The router-id is configured on R2 as 2.2.2.2, as stated in the existing explanation. OSPFv3 requires a router-id, and it is present, so this is not the cause.

20
Multi-Selectmedium

Which three of the following statements about distance vector routing protocols (e.g., RIP, EIGRP) are correct? (Choose all that apply. There are three correct answers.)

Select 4 answers
.They rely on the Bellman-Ford algorithm for route computation.
.RIPv2 uses multicast address 224.0.0.9 to send routing updates.
.EIGRP maintains separate feasible distance and advertised distance values for each route.
.They require a full topological map of the network to calculate the best path.
.EIGRP supports both equal-cost and unequal-cost load balancing by default.
.Split horizon prevents routing loops by not advertising a route back out the interface from which it was learned.

Why this answer

RIPv2 sends updates to the multicast address 224.0.0.9, ensuring only RIPv2 routers process them. EIGRP maintains both feasible distance (best metric to a destination) and advertised distance (metric reported by the next-hop router) to support its loop-free DUAL algorithm. Split horizon prevents routing loops by not advertising a route back out the interface from which it was learned.

The statement about reliance on Bellman‑Ford is false because EIGRP uses DUAL, not Bellman‑Ford; the other two wrong options confuse distance vector behavior with link-state (full topology map) or assume unequal-cost load balancing is default when it requires the variance command.

Exam trap

Cisco often tests the distinction between default behavior and optional features, so the trap here is assuming that EIGRP's unequal-cost load balancing is enabled by default when it actually requires the 'variance' command to activate.

Why the other options are wrong

A

EIGRP, a distance vector protocol listed as an example, uses DUAL, not Bellman-Ford, making the statement inaccurate.

D

Requiring a full topological map is characteristic of link-state protocols, not distance vector protocols.

E

EIGRP does not support unequal-cost load balancing by default; it must be explicitly enabled with the 'variance' command.

21
Matchingmedium

Match each routing concept to its most accurate meaning.

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

Concepts
Matches

Value used to compare trust between route sources

Value used to compare candidate paths within a route source or protocol

Indicator of route specificity

Fallback route used when no better match exists

Why these pairings

Administrative Distance measures route source trustworthiness; Metric determines best path within a protocol; Convergence is the time to reach consistent routing; Route Summarization reduces routing table size; Floating Static Route acts as a backup; ECMP enables load balancing.

Exam trap

The exam often tests your ability to distinguish between Administrative Distance and metric. Remember: AD compares routes from different sources (inter-protocol), while metrics compare routes from the same source (intra-protocol). Also, AD is not a measure of time or hop count.

22
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure IPv4 and IPv6 static routes, a default route, and a floating static route with higher administrative distance, then verify the routing tables.

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 first configures specific static routes, then the default route and floating static route (which can be done in any order but typically after specific routes), and finally verification. The floating static route is configured with a higher AD so it is less preferred.

Exam trap

Do not confuse the order of configuration with the order of preference. Specific routes should be configured first, then the default route and floating static route can be configured in any order (though typically default is configured before floating static). Verification is always the last step.

23
MCQmedium

A network engineer wants a static route to be used only when the OSPF-learned route disappears. Which configuration approach meets that goal?

A.Use a static route with administrative distance 1
B.Use a static route with administrative distance higher than 110
C.Use a static route with metric 0
D.Redistribute the static route into OSPF
AnswerB

OSPF uses AD 110, so the backup static route must be higher.

Why this answer

That is a floating static route. You configure the static route with an administrative distance higher than the OSPF route so it stays in reserve until the dynamic path is lost.

Exam trap

A frequent exam trap is selecting a static route with a default or lower administrative distance than OSPF, such as AD 1, which causes the static route to be preferred immediately, overriding the OSPF route. Another common mistake is thinking that adjusting the metric of the static route or redistributing it into OSPF will create a backup route. Metrics influence path selection within routing protocols but do not affect route preference between static and OSPF routes.

Redistribution simply advertises the static route dynamically and does not provide failover control. These misunderstandings lead to incorrect configurations that do not meet the requirement of using the static route only when the OSPF route disappears.

Why the other options are wrong

A

Using a static route with administrative distance 1 makes it the most preferred route immediately, overriding the OSPF-learned route. This does not meet the requirement of using the static route only when the OSPF route disappears.

C

Setting a static route with metric 0 does not influence route preference between static and OSPF routes because metrics affect path selection within routing protocols, not across different route sources.

D

Redistributing the static route into OSPF advertises it dynamically but does not create a backup route that activates only when the OSPF route disappears. Redistribution is unnecessary for this backup behavior.

24
MCQhard

What is the main purpose of this configuration? ipv6 route 2001:db8:100::/64 GigabitEthernet0/0

A.It creates a specific IPv6 static route to 2001:db8:100::/64 out GigabitEthernet0/0.
B.It enables OSPFv3 on GigabitEthernet0/0.
C.It creates an IPv6 default route.
D.It converts the interface into a tunnel.
AnswerA

This is correct because the command defines a manual route to that destination prefix.

Why this answer

This configuration creates an IPv6 static route to a specific destination prefix through the named outgoing interface. In practical terms, the router is being told exactly how to reach that remote IPv6 network. This is not a default route and not a dynamic-routing statement. It is a manually defined path to one destination prefix.

The key concept is recognizing the difference between a specific static route and a default route.

Exam trap

A frequent exam trap is mistaking the static route command for enabling a routing protocol such as OSPFv3 or assuming it creates a default route. Candidates may also confuse static routes with tunnel interfaces. The command shown explicitly configures a static route to a specific IPv6 prefix via an interface, not a dynamic routing process or a default (::/0) route.

Misreading the prefix or interface can lead to selecting incorrect answers. Recognizing that static routes are manual, precise entries that do not activate protocols or tunnels is essential to avoid this trap.

Why the other options are wrong

B

This option is incorrect because the command shown is a static route configuration, not a command to enable OSPFv3 on an interface. OSPFv3 requires separate routing protocol configuration commands.

C

This option is incorrect because the prefix specified is a specific network (2001:db8:100::/64), not the default IPv6 route (::/0). Therefore, it does not create a default route.

D

This option is incorrect because static route commands do not convert interfaces into tunnels. Tunnel interfaces require explicit tunnel configuration commands, which are not present here.

25
MCQhard

A network administrator has configured HSRP between RouterA and RouterB for VLAN 10. End hosts using the virtual IP 192.168.1.1 as their default gateway experience intermittent connectivity losses, and pings to 192.168.1.1 often fail. The output of 'show standby brief' on both routers shows the state as Active. What is the most likely cause?

A.The virtual IP address is configured on only one router.
B.The routers are configured with mismatched HSRP authentication methods.
C.The HSRP group number on one router is set to 0.
D.The priority on both routers is configured to the same value.
AnswerB

Mismatched authentication (e.g., MD5 vs. text) causes each router to disregard the other's HSRP hellos. Each then assumes no peers exist and becomes Active, leading to both routers claiming the virtual IP and MAC, which results in ARP table flapping and intermittent connectivity.

Why this answer

When both routers show the HSRP state as Active, a 'dual-active' scenario exists, which causes intermittent connectivity because both routers forward traffic for the virtual IP. Mismatched HSRP authentication methods (e.g., one router using plain-text authentication and the other using MD5) prevent the routers from exchanging proper Hello messages, so they fail to negotiate a single Active router. This is the most likely cause because authentication mismatches break the HSRP adjacency, leading to both routers assuming the Active role.

Exam trap

Cisco often tests the concept that HSRP authentication mismatches cause a dual-active failure, while candidates may incorrectly assume that equal priorities or group number 0 are the root cause.

Why the other options are wrong

A

A missing virtual IP on one router does not cause both to be Active; the router without the virtual IP cannot claim the Active role for that address.

C

A group number mismatch does not cause both routers to appear as Active for the same virtual IP; they would be in separate groups.

D

Equal priority does not lead to multiple Active routers; HSRP uses the interface IP address as a tiebreaker to elect a single Active router.

26
MCQhard

R1 and R2 are directly connected. Their interfaces are up/up and belong to the same subnet. R1's OSPF configuration places the interface in area 0, while R2's interface is in area 1. R1 does not show R2 as an OSPF neighbor. What is the most likely cause?

A.The area IDs do not match
B.R1 must use a loopback as the router ID
C.The subnet mask is too small for OSPF to work
D.R2 should be configured as the DR manually
AnswerA

An area mismatch prevents the neighbor relationship.

Why this answer

OSPF neighbors on the same link must agree on the area ID. Here, one side is in area 0 and the other is in area 1, so adjacency never forms even though the interfaces are up and in the same subnet.

Exam trap

A common trap is focusing on router ID or subnet mask instead of recognizing that mismatched area IDs prevent OSPF adjacency.

Why the other options are wrong

B

Incorrect. While using a loopback interface as the router ID is recommended for stability, it is not required for OSPF neighbor adjacency to form.

C

Incorrect. A /30 subnet mask is valid for point-to-point OSPF links and does not prevent neighbor relationships from forming.

D

Incorrect. The Designated Router (DR) election occurs after adjacency formation and does not prevent neighbors from forming if area IDs mismatch.

27
Multi-Selectmedium

Which TWO statements about HSRP active/standby election, priority, and preempt are true?

Select 2 answers
A.The router with the highest priority becomes the active router.
B.If priorities are equal, the router with the highest MAC address becomes active.
C.Preemption is enabled by default on all HSRP routers.
D.The 'show standby' command can be used to verify the active and standby routers, priority, and preemption status.
E.The router with the lowest priority becomes the standby router.
AnswersA, D

HSRP uses priority (0–255, default 100) to determine the active router; the highest priority wins.

Why this answer

In HSRP, the router with the highest priority (default 100, range 0-255) becomes the active router (A). If priorities are equal, the router with the highest IP address on the subnet wins, not the highest MAC address (B). Preemption is disabled by default; 'standby preempt' must be configured for a higher-priority router to take over (C).

The 'show standby' command displays active/standby router roles, priority values, and preemption status, verifying D. The standby router is the one with the second-highest priority, not the lowest (E).

Exam trap

Cisco often tests the misconception that HSRP uses MAC address as a tiebreaker (it uses IP address) and that preemption is enabled by default (it is not).

Why the other options are wrong

B

HSRP tie-breaking uses the highest IP address on the HSRP interface, not the MAC address. The MAC address is used for virtual MAC assignment but does not influence election.

C

Preemption is disabled by default in HSRP; it must be explicitly configured with the 'standby preempt' command. Without preemption, a higher priority router will not take over active role from a lower priority router that is already active.

E

The standby router is the router with the second-highest priority, not the lowest. The lowest priority router would only become standby if all other routers fail, as it is the least preferred.

28
MCQhard

R1 is an IPv6-only branch router. The administrator wants all unknown IPv6 destinations to be sent to the upstream router at 2001:db8:ff::1. Which command best achieves that goal?

A.ipv6 route ::/0 2001:db8:ff::1
B.ip route 0.0.0.0 0.0.0.0 2001:db8:ff::1
C.ipv6 route 2001:db8:ff::/64 ::1
D.ipv6 default-gateway 2001:db8:ff::1
AnswerA

This is correct because ::/0 is the IPv6 default route and the next hop is the upstream router.

Why this answer

The correct configuration is an IPv6 default static route pointing to the upstream next hop. In practical terms, this is the IPv6 version of a route of last resort. The router does not need specific entries for every remote IPv6 network if all unknown traffic should go to the upstream device.

The key distinction is that IPv6 static routing uses IPv6 syntax and the double-colon default prefix representation. This is a foundational branch-routing concept for IPv6 deployments.

Exam trap

A common exam trap is confusing IPv4 and IPv6 routing commands by attempting to use the ip route command with an IPv6 next-hop address. This is invalid because ip route is strictly for IPv4 static routes. Another trap is using ipv6 default-gateway, which is not a valid static routing command and does not install a route in the routing table.

These mistakes cause the router to drop unknown IPv6 traffic since no default route is installed. Candidates must recognize that IPv6 static routes require the ipv6 route command with the ::/0 prefix for default routing.

Why the other options are wrong

B

This option is incorrect because it uses the IPv4 static route syntax (ip route) with an IPv6 next-hop address, which is invalid and will not configure a proper IPv6 route.

C

This command creates a specific static route to the 2001:db8:ff::/64 prefix with a next hop of ::1, which is not a default route and does not forward all unknown IPv6 traffic.

D

The ipv6 default-gateway command is not used for static routing configuration and does not install a default route in the routing table, making it ineffective for forwarding unknown IPv6 destinations.

29
PBQhard

You are connected to R1 via console. R1 must forward traffic to the 203.0.113.0/24 and 2001:db8:1::/48 networks through R2 (10.0.0.2/30, 2001:db8:ff::2/64). The primary path must use a next-hop of 10.0.0.2 for IPv4 and 2001:db8:ff::2 for IPv6. Additionally, configure a floating static default route for IPv4 that uses R3 (192.0.2.2/30) as a backup only when the primary path fails. The current configuration has errors: the IPv4 static route points to a wrong next-hop (10.0.0.5) and the primary default route is missing, causing the floating route (AD 100) to become active instead of serving as a backup. Fix these issues so that both primary and backup routes work correctly.

Network Topology
G0/010.0.0.1/30G0/010.0.0.2/30linkG0/1192.0.2.1/30G0/0192.0.2.2/30linkR1R2R3

Hints

  • Check the directly connected subnet on G0/0 — what IPs are valid?
  • A floating static route must have a higher AD than the primary route.
  • The primary default route is missing — add it with a lower AD.
A.Change the next-hop of the static route to 203.0.113.0/24 from 10.0.0.5 to 10.0.0.2, and add a default route 0.0.0.0/0 via 10.0.0.2 with AD 1. Keep the floating default route 0.0.0.0/0 via 192.0.2.2 with AD 100.
B.Change the next-hop of the static route to 203.0.113.0/24 from 10.0.0.5 to 10.0.0.2, and change the administrative distance of the floating default route from 100 to 1 so it becomes the primary default route.
C.Change the next-hop of the static route to 203.0.113.0/24 from 10.0.0.5 to 10.0.0.2, and change the administrative distance of the floating default route from 100 to 255 so it is never used.
D.Change the next-hop of the static route to 203.0.113.0/24 from 10.0.0.5 to 10.0.0.2, and remove the floating default route because it is unnecessary.
AnswerA
solution
! R1
no ip route 203.0.113.0 255.255.255.0 10.0.0.5
ip route 203.0.113.0 255.255.255.0 10.0.0.2
ip route 0.0.0.0 0.0.0.0 10.0.0.2

Why this answer

The IPv4 static route to 203.0.113.0/24 used a next-hop of 10.0.0.5, which is not a directly connected interface (R1's G0/0 is 10.0.0.1/30, so only .2 is valid). This caused a recursive lookup failure. The floating static default route had AD 100, but a floating route must have an AD higher than the primary route's AD (typically 1) so it is only used when the primary fails; setting AD 100 is correct for backup, but the primary default route was missing.

The fix: change the next-hop for 203.0.113.0/24 to 10.0.0.2, and add a primary default route with AD 1 via 10.0.0.2. The floating route's AD of 100 is fine as backup. IPv6 route was correct.

Exam trap

Watch out for two common traps: (1) Static routes must use a directly connected next-hop; using an IP not on a directly connected subnet causes recursive lookup failure. (2) Floating static routes require a higher AD than the primary route; if the primary route is missing or has a higher AD, the floating route may become active prematurely or not at all.

Why the other options are wrong

B

The floating route must have a higher AD than the primary route to act as a backup; setting it to 1 would make it preferred over the primary default route, violating the requirement.

C

AD 255 is reserved for routes that are not to be installed; a floating route needs an AD higher than the primary but less than 255 to be usable as backup.

D

The floating route is required by the scenario; removing it would eliminate the backup path, which is not the intended fix.

30
Matchingmedium

Match each routing term to its most accurate meaning.

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

Concepts
Matches

Trust comparison between route sources

Protocol-specific value used to compare paths

Preference for the most specific matching route

Fallback route used when no more specific route matches

Why these pairings

Administrative distance is a measure of trustworthiness of the route source; a lower AD is preferred when the same prefix is learned from multiple routing protocols. Metric is a protocol-specific value (e.g., OSPF cost, EIGRP composite) used to choose the best path among routes from the same source. Longest-prefix match is the fundamental routing table lookup rule: the route with the longest subnet mask (most specific) is used regardless of AD or metric.

Default route (0.0.0.0/0) acts as a gateway of last resort, forwarding packets when no more specific route exists.

Exam trap

A common pitfall is believing that a lower metric route always wins over a higher administrative distance route. In reality, AD determines which route makes it into the routing table, then metric selects within that source; longest-prefix match overrides both.

31
PBQhard

You are connected to R1. Configure HSRP on R1 and R2 so that R1 is the active gateway for VLAN 100 with a virtual IP of 192.0.2.254. R1 should preempt and track its G0/1 interface to decrement priority by 20 if it goes down. Currently, both routers show active for the group, and the virtual IP is incorrectly set. Troubleshoot and fix the configuration on R1 only.

Hints

  • Check the virtual IP address in the standby configuration.
  • Ensure R1's priority is higher than R2's to become active.
  • Preempt must be configured to re-elect after a priority change.
A.Change the virtual IP to 192.0.2.254 and set priority to 110.
B.Change the virtual IP to 192.0.2.254 and remove the track command.
C.Change the virtual IP to 192.0.2.254 and configure preempt on R2.
D.Change the virtual IP to 192.0.2.254 and set priority to 100.
AnswerA
solution
! R1
interface GigabitEthernet0/0.100
standby 1 ip 192.168.100.254
standby 1 priority 110
standby 1 preempt

Why this answer

The issue is that both routers are active because the virtual IP on R1 was 192.168.100.254, which is not in the same subnet as the interface IP (192.0.2.1/24), so HSRP couldn't form a common group. Changing the virtual IP to 192.0.2.254 fixes the subnet mismatch. Additionally, setting R1's priority to 110 ensures it becomes the active router because it has preempt configured, and the higher priority overrides R2's default 100.

The track command remains correct as it reduces priority if G0/1 fails.

Exam trap

Trap: Candidates may focus on the track command or preempt, but the primary issue is the virtual IP mismatch and default priority. Always verify the virtual IP belongs to the same subnet as the interface and adjust priority to ensure the desired active router.

Why the other options are wrong

B

Removing the track command would prevent R1 from decrementing priority when G0/1 fails, violating the requirement to track the interface.

C

Configuring preempt on R2 might allow it to take over, but the task only asks to fix R1; the primary issue is the virtual IP mismatch on R1.

D

Setting priority to 100 (the default) without preempt? Actually, R1 already has preempt, but with equal priority, the highest IP wins, which might be R2, so R1 might not become active. Increasing priority to 110 is required.

32
MCQhard

Why does traffic to 172.31.80.10 use the RIP route (172.31.80.0/24) instead of the static route (172.31.0.0/16)?

A.Because the RIP /24 route is more specific than the static /16 route.
B.Because RIP always overrides static routing.
C.Because static routes cannot be used for private IPv4 space.
D.Because the static route is automatically removed whenever RIP is enabled.
AnswerA

This is correct because longest-prefix match selects the /24 route for that destination.

Why this answer

Traffic uses the RIP route because the static route is less specific than the RIP route. In practical terms, longest-prefix match is always evaluated first. Even though the static route is manually configured, the more specific RIP prefix wins because it describes the destination more precisely.

This is a strong route-selection item because it tests whether you can prioritize specificity ahead of route source preference.

Exam trap

A frequent exam trap is assuming that static routes always take precedence over RIP routes because static routes have a lower administrative distance. This misconception ignores the critical role of longest-prefix match in route selection. The router first selects the route with the most specific subnet mask before considering administrative distance.

Therefore, a RIP route with a /24 mask will override a static route with a /16 mask for matching traffic. Another trap is thinking that enabling RIP disables or removes static routes, which is incorrect; static routes remain active unless explicitly removed or overridden by a more specific route.

Why the other options are wrong

B

Incorrect because RIP does not always override static routes. Static routes have a lower administrative distance and are preferred when prefix lengths are equal, so this statement is false.

C

Incorrect because static routes can be used with private IPv4 address space without issue. There is no restriction preventing static routing of private addresses.

D

Incorrect because enabling RIP does not automatically remove static routes. Static routes remain active unless manually removed or overridden by a more specific route.

33
Multi-Selectmedium

Which two statements accurately describe longest-prefix match in routing?

Select 2 answers
A.The most specific matching route is preferred over broader matching routes.
B.A default route is preferred over a matching /24 because it is simpler.
C.Longest-prefix match is evaluated before choosing between broader and narrower matching routes.
D.Routers ignore subnet masks and choose only by administrative distance.
E.A /16 is always more specific than a /24.
AnswersA, C

This is correct because longest-prefix match is based on route specificity.

Why this answer

Longest-prefix match means a router prefers the most specific route that matches the destination. In plain language, if several entries could apply to a packet, the router chooses the one that narrows the destination range most precisely. This is why a /25 can beat a /24, and a /24 can beat a /16, even if all three technically contain the same destination address.

The common mistake is to assume the router always begins with protocol trust or metric. Those factors matter, but only after the router has determined which matching routes share the same prefix length.

Exam trap

A common exam trap is assuming that a default route or a route with a simpler prefix is preferred over a more specific route. Some candidates mistakenly believe that administrative distance or metric always takes precedence over prefix length. However, Cisco routers always apply longest-prefix match first, selecting the most specific route before considering administrative distance or metric.

This misunderstanding can lead to incorrect answers when default routes or broader prefixes appear in the routing table alongside more specific routes.

Why the other options are wrong

B

Option B is incorrect because a default route is less specific than a /24 route and is only used if no more specific route exists, not because it is simpler.

D

Option D is incorrect because routers do not ignore subnet masks; prefix length is fundamental to longest-prefix match and route selection.

E

Option E is incorrect since a /24 prefix is more specific than a /16 prefix, contradicting the statement that a /16 is always more specific.

34
PBQhard

You are connected to R1. Configure R1 so that it uses a floating static route to reach the 203.0.113.0/24 network via R2 only when the primary route (learned via EIGRP) fails. The primary route has an administrative distance of 90. Currently, R1 has no route to 203.0.113.0/24 because EIGRP is down on the direct link. Ensure the floating static route is installed and used.

Network Topology
G0/010.0.0.1/30G0/010.0.0.2/30linkG0/1192.0.2.1/24linkR1R2LAN

Hints

  • The primary route would be learned via EIGRP with AD 90.
  • A floating static route must have an AD higher than 90 to be less preferred.
  • Use the 'ip route' command with an AD value between 91 and 255.
A.ip route 203.0.113.0 255.255.255.0 10.0.0.2 95
B.ip route 203.0.113.0 255.255.255.0 10.0.0.2 90
C.ip route 203.0.113.0 255.255.255.0 10.0.0.2 85
D.ip route 203.0.113.0 255.255.255.0 10.0.0.2
AnswerA
solution
! R1
ip route 203.0.113.0 255.255.255.0 10.0.0.2 95

Why this answer

The issue is that R1 has no route to 203.0.113.0/24 because EIGRP is not working (likely due to misconfiguration or link failure). A floating static route with an administrative distance greater than EIGRP's default AD of 90 is needed. By configuring a static route to 203.0.113.0/24 via next-hop 10.0.0.2 with AD 95, the static route will be used only when EIGRP is down (since 95 > 90, EIGRP is preferred when active).

The command 'ip route 203.0.113.0 255.255.255.0 10.0.0.2 95' accomplishes this.

Exam trap

Remember that floating static routes require an administrative distance higher than the primary route's AD. Do not use the default AD (1) or match the primary AD; always set a higher value.

Why the other options are wrong

B

The AD must be greater than 90 to ensure the static route is only used when EIGRP fails. An AD of 90 does not create a floating static route.

C

A floating static route must have a higher AD than the primary route. An AD of 85 is lower than 90, so it would be preferred over EIGRP.

D

The default AD for static routes is 1, which is lower than EIGRP's 90. Without specifying a higher AD, the static route will be preferred and not act as a floating static route.

35
Matchingmedium

Match each routing term to its description.

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

Concepts
Matches

Trustworthiness of a routing information source

Value used by a routing protocol to choose the best path within that protocol

Route used when no more specific match exists

Combining multiple networks into a smaller set of advertised prefixes

Why these pairings

Administrative distance is the trustworthiness rating of a routing protocol, where a lower number means higher trust. Metric is a value used by a routing protocol to select the best path among multiple routes from that same protocol. A default route is the path of last resort, used when no other specific route matches the destination.

Summarization (route aggregation) combines several network prefixes into a smaller set of advertised prefixes, improving efficiency.

Exam trap

Be careful not to confuse the roles of UDRs and BGP routes. UDRs are static overrides, while BGP is a dynamic protocol. System routes are the baseline defaults.

36
MCQhard

A static route is configured as 198.51.100.0/24 via 192.0.2.9, but the connected network to the next hop goes down. What happens to the static route in the routing table?

A.It remains permanently because static routes never disappear.
B.It is removed because the recursive next hop is no longer reachable.
C.It changes automatically into a default route.
D.It becomes an OSPF external route.
AnswerB

Correct. The router must be able to resolve the next hop.

Why this answer

If the outgoing interface or connected path to the next hop becomes unreachable, the router cannot resolve the recursive next hop and the route is removed from the table.

Exam trap

Remember that static routes are removed if the next hop is unreachable, unlike dynamic routes that may have additional states.

Why the other options are wrong

A

Static routes are not permanent; they are removed from the routing table if the next-hop interface goes down or the next-hop IP becomes unreachable, because the route is no longer valid.

C

A static route does not automatically change into a default route; default routes are explicitly configured (e.g., ip route 0.0.0.0 0.0.0.0 next-hop) and are not derived from other static routes.

D

A static route does not become an OSPF external route automatically; OSPF routes are learned through the OSPF protocol, and a static route remains static unless redistributed into OSPF via configuration.

37
Drag & Dropmedium

Drag and drop the following OSPFv2 neighbor state transitions and DR/BDR election steps into the correct order for a multi-access network with default priority values.

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 OSPF neighbor state progression on a multi-access network is: Down, Init, 2-Way (with DR/BDR election), ExStart (master/slave negotiation), Exchange (DBD exchange), Loading (link-state request and update), and Full. Each option missing the Loading state or placing it incorrectly fails to represent the complete adjacency process.

Exam trap

Many learners forget the Loading state, thinking adjacency jumps directly from Exchange to Full; however, after exchanging database descriptors (DBDs), routers must request and load missing LSAs via Link State Request/Update packets, which occurs in the Loading state.

38
MCQmedium

When two routes to the same destination are learned by OSPF from different paths, what criterion does OSPF use to select the best path?

A.Lowest administrative distance
B.Lowest OSPF cost
C.Highest bandwidth of the first hop only
D.Lowest next-hop IP address
AnswerB

Correct choice.

Why this answer

Within OSPF, the router compares the total path cost to the destination. Lower cost is preferred. Administrative distance is used when comparing routes from different routing sources, not between two OSPF paths.

Exam trap

A common exam trap is selecting administrative distance as the criterion for OSPF route selection. While administrative distance determines route preference between different routing protocols, OSPF uses cost internally to choose the best path. Another trap is assuming OSPF chooses routes based on the highest bandwidth of the first hop only, ignoring the cumulative cost of the entire path.

Candidates may also mistakenly think OSPF uses the lowest next-hop IP address, which is incorrect. These misunderstandings can lead to incorrect answers on OSPF routing questions.

Why the other options are wrong

A

Lowest administrative distance is incorrect because administrative distance is used to compare routes from different routing protocols, not to select between multiple OSPF-learned routes. Within OSPF, all routes have the same administrative distance, so this criterion does not apply.

C

Highest bandwidth of the first hop only is incorrect because OSPF considers the cumulative cost of the entire path, not just the bandwidth of the first hop. Focusing only on the first hop bandwidth ignores the cost of subsequent links.

D

Lowest next-hop IP address is incorrect because OSPF does not use the next-hop IP address as a criterion for route selection. The protocol relies exclusively on the cost metric to determine the best path.

39
PBQhard

You are connected to R1 via console. Configure OSPFv3 for IPv6 on both R1 and R2 so that the loopback0 interface on R2 (IPv6 address 2001:db8:1:2::1/64) is reachable from R1. The link between R1 and R2 uses the subnet 2001:db8:1:1::/64 with R1's G0/0 having IPv6 address 2001:db8:1:1::1/64 and R2's G0/0 having 2001:db8:1:1::2/64. OSPFv3 process ID must be 100 and all interfaces must be in area 0. After configuration, verify OSPFv3 neighbors and the IPv6 route to the loopback0 network.

Hints

  • OSPFv3 uses the 'ipv6 ospf <process-id> area <area-id>' command under each interface.
  • The loopback0 interface on R2 must also be enabled for OSPFv3 to advertise its prefix.
  • A router-id is required for OSPFv3; if not configured explicitly, the router may not form adjacency.
A.On R1: ipv6 router ospf 100, router-id 1.1.1.1, interface g0/0: ipv6 ospf 100 area 0. On R2: ipv6 router ospf 100, router-id 2.2.2.2, interface g0/0: ipv6 ospf 100 area 0, interface loopback0: ipv6 ospf 100 area 0.
B.On R1: ipv6 router ospf 100, router-id 1.1.1.1, interface g0/0: ipv6 ospf 100 area 0. On R2: ipv6 router ospf 100, router-id 2.2.2.2, interface g0/0: ipv6 ospf 100 area 0. No configuration on loopback0.
C.On R1: ipv6 router ospf 100, router-id 1.1.1.1, interface g0/0: ipv6 ospf 100 area 0. On R2: ipv6 router ospf 100, router-id 2.2.2.2, interface g0/0: ipv6 ospf 100 area 0, interface loopback0: ipv6 ospf 100 area 0, and also configure 'network 2001:db8:1:2::/64 area 0' under the OSPFv3 process.
D.On R1: ipv6 router ospf 100, router-id 1.1.1.1, interface g0/0: ipv6 ospf 100 area 0. On R2: ipv6 router ospf 100, router-id 2.2.2.2, interface g0/0: ipv6 ospf 100 area 0, interface loopback0: ipv6 ospf 100 area 0, and also configure 'passive-interface GigabitEthernet0/0' under the OSPFv3 process.
AnswerA
solution
! R1
ipv6 router ospf 100
router-id 1.1.1.1
interface GigabitEthernet0/0
ipv6 ospf 100 area 0

! R2
ipv6 router ospf 100
router-id 2.2.2.2
interface GigabitEthernet0/0
ipv6 ospf 100 area 0
interface Loopback0
ipv6 ospf 100 area 0

Why this answer

To achieve reachability to R2's loopback, OSPFv3 must be enabled on R1's and R2's G0/0 interfaces in area 0, and on R2's loopback0 so its prefix is advertised. Option A shows the minimal correct configuration. Option B omits enabling OSPF on loopback0, so the route to 2001:db8:1:2::/64 is not advertised.

Option C incorrectly uses the 'network' command, which is not supported in OSPFv3; OSPFv3 relies on interface-level 'ipv6 ospf ... area' commands. Option D adds 'passive-interface GigabitEthernet0/0', which prevents OSPF from forming a neighbor adjacency on the link, breaking the required connectivity.

Exam trap

Do not confuse OSPFv2 and OSPFv3 configuration. OSPFv3 uses only interface-level commands, and while setting a loopback as passive is safe, applying 'passive-interface' on a transit link will block neighbor adjacency.

Why the other options are wrong

B

Loopback0 is not enabled for OSPF, so its prefix is not advertised into OSPF.

C

The 'network' command is invalid in OSPFv3 for IPv6; only interface-level 'ipv6 ospf ... area' commands are used.

D

Applying 'passive-interface GigabitEthernet0/0' prevents OSPF from forming a neighbor adjacency on the link, breaking the verification of neighbor state.

40
PBQmedium

You are connected to R1 via console. R1 and R2 are configured with EIGRP AS 100. R1's loopback0 (1.1.1.1/32) should be advertised into EIGRP. However, after configuration, R2 does not have a route to 1.1.1.1/32. You need to verify the EIGRP configuration on R1 and R2 to determine why the route is missing. Use show commands to identify the issue.

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

Hints

  • Check if the loopback interface is configured as passive or if there is a network statement issue.
  • The 'passive-interface default' command makes all interfaces passive unless explicitly configured otherwise.
  • Ensure that the network statement for the loopback includes the correct wildcard mask.
A.Use 'show ip eigrp interfaces' on R1 to verify that EIGRP is enabled on the interface facing R2 and that it is not passive.
B.Use 'show ip eigrp topology' on R1 to confirm that the 1.1.1.1/32 route is in the EIGRP topology table.
C.Use 'show ip route eigrp' on R1 to verify that the 1.1.1.1/32 route is in the routing table.
D.Use 'show ip protocols' on R2 to verify that EIGRP AS 100 is configured and that the network statement includes the subnet of the interface facing R1.
AnswerA
solution
! R1
show ip eigrp neighbors
show ip eigrp topology
show ip route eigrp
show running-config | section router eigrp

! R2
show ip route eigrp

Why this answer

The root cause is that R1's interface facing R2 is passive, preventing EIGRP neighbor adjacency. 'show ip eigrp interfaces' verifies the passive state, identifying why no routes are exchanged. Option B is incorrect because the local topology table may contain the route, but without an active neighbor, it will not be advertised; the topology check alone is insufficient. Option C is incorrect because the routing table may also show the locally connected route, but that does not explain why R2 lacks it.

Option D is incorrect because checking R2's EIGRP configuration does not reveal R1's passive interface, which is the actual problem.

Exam trap

Be careful: 'passive-interface default' makes all interfaces passive, including the one needed for neighbor adjacency. You must use 'no passive-interface' on the specific interface to allow EIGRP to form a neighbor. Also, remember that passive interfaces can still advertise routes, but they do not form adjacencies.

Why the other options are wrong

B

The route being in R1's topology does not guarantee it is advertised to R2; the problem is more likely with the neighbor adjacency or outbound filters.

C

The loopback is a directly connected interface, so it will not appear in the EIGRP routing table; it is injected into EIGRP via the network statement. This command is irrelevant for checking the advertisement.

D

The problem is likely on R1, not R2. R2's configuration may be fine, but if R1 is not sending the route, R2 will never learn it. This command focuses on R2, which is not the source of the issue.

41
MCQmedium

A router output shows this neighbor state: Neighbor ID 10.1.1.1 State FULL/DR Address 192.168.12.1 What does the FULL/DR state indicate?

A.The local router is the DR and adjacency formation has failed
B.The neighbor relationship is complete and the neighbor is the DR on that segment
C.The routers are exchanging only link-state requests
D.The neighbor has been learned through BGP redistribution
AnswerB

Correct. The adjacency is complete, and that neighbor is acting as the DR.

Why this answer

FULL means the OSPF adjacency is fully formed. The /DR suffix indicates that the listed neighbor is the Designated Router for that multiaccess segment.

Exam trap

A frequent exam trap is assuming that the FULL state with /DR means the local router is the Designated Router or that adjacency has failed. In reality, FULL indicates a successful adjacency, and the /DR suffix refers to the neighbor’s role. Candidates often confuse the neighbor ID with the local router’s role, leading to incorrect answers.

Another trap is thinking that exchanging only link-state requests corresponds to FULL state, but that actually occurs earlier in the adjacency process. Understanding the exact meaning of FULL and the DR role is essential to avoid these pitfalls.

Why the other options are wrong

A

Option A incorrectly states that adjacency formation has failed. FULL state actually indicates a successful adjacency, and the /DR suffix refers to the neighbor’s role, not failure.

C

Option C is incorrect because exchanging only link-state requests happens in earlier OSPF states, not in FULL adjacency, which means all exchanges are complete.

D

Option D is invalid because the output shows native OSPF neighbor information, not BGP redistribution, so the neighbor is not learned through BGP.

42
PBQhard

You are connected to R1. Configure static routes so that R1 can reach the IPv4 network 203.0.113.0/24 and the IPv6 network 2001:db8:acad:1::/64 via R2 (G0/0 10.0.0.2/30). Additionally, configure a floating static default route (IPv4) with an administrative distance of 200 via R2, and a fully specified IPv6 default route via R2. Then, verify that the IPv4 static route to 203.0.113.0/24 is correctly installed by checking the routing table. The current configuration has an incorrect next-hop causing recursive routing failure for the IPv4 static route.

Network Topology
G0/010.0.0.1/30G0/010.0.0.2/30linkG0/12001:db8:acad:2::1/64G0/12001:db8:acad:2::2/64linkR2R1R3

Hints

  • Check the next-hop IP of the IPv4 static route; it should not be the router's own interface.
  • IPv6 static routes cannot use an IPv4 next-hop; they require an IPv6 next-hop or an exit interface.
  • After correcting the recursive route, the floating default route will become active.
A.Change the IPv4 static route next-hop from 10.0.0.1 to 10.0.0.2, change the IPv6 static route next-hop from 10.0.0.2 to 2001:db8:acad:2::2, and change the IPv6 default route to use next-hop 2001:db8:acad:2::2.
B.Change the IPv4 static route next-hop from 10.0.0.1 to 10.0.0.2, and change the IPv6 static route to use exit interface G0/0 instead of a next-hop.
C.Change the IPv4 static route next-hop from 10.0.0.1 to 10.0.0.2, and change the IPv4 default route administrative distance to 1.
D.Change the IPv4 static route next-hop from 10.0.0.1 to 10.0.0.2, and change the IPv6 default route to use exit interface G0/0.
AnswerA
solution
! R1
no ip route 203.0.113.0 255.255.255.0 10.0.0.1
ip route 203.0.113.0 255.255.255.0 10.0.0.2
no ipv6 route 2001:db8:acad:1::/64 10.0.0.2
ipv6 route 2001:db8:acad:1::/64 2001:db8:acad:2::2
no ipv6 route ::/0 10.0.0.2
ipv6 route ::/0 2001:db8:acad:2::2

Why this answer

The IPv4 static route to 203.0.113.0/24 incorrectly uses next-hop 10.0.0.1 (R1's own interface) instead of 10.0.0.2 (R2), causing recursive routing failure because R1 tries to reach itself. To fix, change the next-hop to 10.0.0.2. The IPv6 static route to 2001:db8:acad:1::/64 also incorrectly uses an IPv4 next-hop; it must be a fully specified IPv6 next-hop (2001:db8:acad:2::2) or an exit interface.

The IPv4 default route has AD 200 which is correct for a floating route, but it is not shown in the routing table because there is no route to the next-hop; after fixing the recursive route, the default route will appear. The IPv6 default route uses an IPv4 next-hop which is invalid; it should be a fully specified IPv6 route (e.g., ipv6 route ::/0 2001:db8:acad:2::2).

Exam trap

A common trap is using the local interface IP as the next-hop for a static route, which causes recursive routing failure. Also, remember that IPv6 static routes require IPv6 next-hop addresses; using an IPv4 address is invalid. Floating static routes must have a higher AD than the primary route.

Why the other options are wrong

B

The IPv6 static route should use a fully specified next-hop (IPv6 address) rather than just an exit interface to avoid recursive routing failures.

C

Floating static routes require a higher administrative distance (e.g., 200) so they are only used when the primary route is unavailable.

D

A fully specified IPv6 static route includes both the exit interface and the next-hop IPv6 address to ensure proper routing.

43
MCQhard

A technician is troubleshooting an OSPF adjacency problem: R1 and R2 are not forming a neighbor relationship. R1's OSPF configuration includes the command 'network 192.168.1.0 0.0.0.255 area 0'. R2's GigabitEthernet0/0 is configured with IP address 10.1.1.1/30 and is participating in OSPF area 0. The engineer verifies that physical connectivity is fine and OSPF is enabled on R2. What is the most likely cause?

A.The OSPF network type on R1's interface differs from the network type on R2's interface.
B.R1's network statement does not include the subnet of the link connecting R1 and R2.
C.R1's router ID is not manually set and duplicates the router ID of R2.
D.Mismatched OSPF hello and dead intervals between the routers.
AnswerB

The command 'network 192.168.1.0 0.0.0.255 area 0' only enables OSPF on interfaces with an IP address in the 192.168.1.0/24 range. The link uses the 10.1.1.0/30 subnet, so R1's interface (e.g., 10.1.1.2/30) is not matched. Consequently, OSPF is inactive on that interface, and no neighbor relationship can form.

Why this answer

R1's network statement uses a wildcard mask of 0.0.0.255, which exactly matches interfaces with IP addresses in the 192.168.1.0/24 range. The link between R1 and R2 uses the 10.1.1.0/30 subnet, so R1's interface on that link will have an IP address that does not fall within the network command. Because OSPF only activates on interfaces whose primary IP is covered by a network statement, OSPF is not running on R1's connecting interface; no Hello packets are sent, and the adjacency cannot form.

The other options describe possible causes but do not align with the given configuration: no explicit network type change is mentioned, duplicate router-IDs are not indicated, and no timer modification is described.

Exam trap

Many candidates mistakenly believe the OSPF network command is used solely to advertise routes and does not control which interfaces run OSPF. They may overlook the fact that the network command also enables OSPF on interfaces whose IP address falls within the specified range, leading them to choose an incorrect but plausible alternative such as a mismatched network type or duplicate router‑IDs.

Why the other options are wrong

A

Candidates assume that OSPF adjacency failures on Ethernet links are often due to network type mismatches, without considering that the default settings match.

C

Candidates may remember that duplicate router‑IDs break OSPF and jump to this conclusion without first analyzing the simpler configuration issue.

D

Many students learn that timer mismatches are a common OSPF problem and may incorrectly assume they are the cause when the real issue is a basic configuration oversight.

44
MCQhard

R1 and R2 are directly connected. Both are configured in OSPF area 0, and they can successfully ping each other. However, OSPF neighbor adjacency fails. R1's interface is configured with `ip ospf authentication message-digest` and a valid key, while R2's interface has no OSPF authentication configured. What is the most likely cause?

A.The routers are in different OSPF areas.
B.The OSPF authentication settings do not match.
C.The routers need identical hostnames before adjacency can form.
D.The subnet mask prevents OSPF multicast traffic.
AnswerB

This is correct because one side expects MD5 authentication and the other side is not shown with matching authentication.

Why this answer

The most likely cause is an OSPF authentication mismatch. Although the routers have IP connectivity and are in the same OSPF area, OSPF adjacency requires matching security parameters. R1 uses message-digest authentication whereas R2 has none configured, preventing neighbor formation.

The other options are incorrect: the stem confirms they are in the same area (A), OSPF does not require identical hostnames (C), and successful pings prove the subnet mask does not block multicast traffic (D).

Exam trap

A frequent exam trap is assuming that successful ping and matching OSPF areas guarantee neighbor adjacency. Candidates often overlook OSPF authentication mismatches, especially when one router uses message-digest authentication and the other does not. This leads to confusion because the link appears operational at Layer 3, but OSPF packets are discarded silently.

The trap exploits the misconception that IP connectivity alone is sufficient for OSPF adjacency, ignoring the protocol’s security requirements.

Why the other options are wrong

A

Both routers are explicitly in OSPF area 0, so they are not in different areas.

C

OSPF neighbor formation does not depend on matching hostnames; router IDs and interface parameters are what matter.

D

Since the routers can ping each other, IP reachability exists, indicating the subnet mask is not preventing OSPF multicast packets from being delivered.

45
MCQhard

A router has both an OSPF route and a static route to the same destination. The static route has an administrative distance of 200. What is the expected behavior while the OSPF route remains available?

A.The static route remains a backup and is used only if the OSPF route is lost.
B.The static route overrides OSPF immediately because static routes always win.
C.Both routes must be installed simultaneously because they point to the same destination.
D.The router removes the OSPF route because the static route has a manually configured distance.
AnswerA

This is correct because the static route’s administrative distance is higher than OSPF’s, so it floats in reserve.

Why this answer

The static route with an administrative distance of 200 behaves as a floating backup. In plain language, the router keeps it in reserve and prefers the OSPF route while OSPF is healthy, because OSPF’s default administrative distance of 110 is lower and therefore more trusted. The static route does not disappear from the configuration, but it stays out of the active routing table unless the better route is lost.

This is a very common CCNA concept because it shows how routing preference works between different route sources. The higher-distance static route is not useless; it is intentionally configured so that it becomes active only during a failure. That design provides backup routing without interfering with the normal dynamic path. The correct answer is the one describing the static route as a standby or floating route rather than as the preferred path.

Exam trap

Remember that lower administrative distance means higher preference, regardless of whether a route is static or dynamic.

Why the other options are wrong

B

Static routes do not always override dynamic routes; route selection is based on administrative distance. OSPF has a default AD of 110, which is lower than 200, so the OSPF route is preferred. The statement that static routes always win is incorrect because AD values determine preference.

C

Routers install only the best route (lowest AD) for a given destination in the routing table, unless equal-cost multipath (ECMP) is configured with identical metrics. Since OSPF and static routes have different ADs, they are not installed simultaneously; only the OSPF route is used.

D

The router does not remove the OSPF route because the static route has a manually configured distance. The OSPF route has a lower AD (110) than the static route's AD (200), so OSPF remains the preferred route and stays in the routing table.

46
MCQhard

An administrator configured a floating static default route on R1 as a backup to reach 10.10.10.0/24. The primary path is learned via OSPF, and the floating static route uses an administrative distance of 130. After the primary OSPF neighbor fails, traffic to 10.10.10.0/24 is dropped. According to the exhibit, why is the backup default route not being used?

A.The static route specifies an outgoing interface that is down; the next‑hop must be reachable for the route to be used.
B.The administrative distance of 130 is still less than the OSPF default of 110, so it will never be installed.
C.The static route is missing the permanent keyword, which is required for backup routes.
D.The metric of the static route is too high; it should be reduced to 0.
AnswerA

Because the static route uses only the outgoing interface (Serial0/0/0) without a next‑hop IP, the interface must be up/up for the route to be placed in the RIB. Since Serial0/0/0 is down, the entry is invalid.

Why this answer

The floating static default route is not used because the outgoing interface specified in the static route is down. For a static route with an outgoing interface to be considered valid and installed in the routing table, the interface must be in an up/up state. When the primary OSPF neighbor fails, the backup static route cannot be used because its next-hop is unreachable due to the interface being down, causing traffic to be dropped.

Exam trap

Cisco often tests the distinction between static routes with an outgoing interface versus a next-hop IP address, where candidates mistakenly assume a floating static route will automatically become active when the primary route fails, without considering the interface state.

Why the other options are wrong

B

This misinterprets AD: after the primary route is gone, any route with a higher AD (i.e., lower numeric value) is no longer present, so the floating static route should be installed if reachable.

C

Permanent is rarely needed and does not make a route usable when the interface is down; it only keeps the routing table entry present, but traffic cannot be forwarded.

D

Changing a static route metric is not possible, and even if it were, it would not change the fact that the specified interface is down.

47
MCQmedium

Exhibit: R1 shows an OSPF neighbor stuck in EXSTART with R2 on a serial link. What is the most likely cause?

A.An OSPF area mismatch
B.A duplicate router ID on R1 and R2
C.An interface MTU mismatch between the routers
D.A missing default route on R2
AnswerC

EXSTART or EXCHANGE problems commonly occur when the MTU values do not match.

Why this answer

When two OSPF routers stay in EXSTART, the first thing to suspect is an MTU mismatch. They can discover each other, but database exchange does not complete because the DBD packets do not agree on interface MTU.

Exam trap

Be aware that MTU mismatches cause EXSTART issues, while other mismatches prevent adjacency formation.

Why the other options are wrong

A

An OSPF area mismatch prevents routers from forming a full adjacency; they typically remain in the INIT or 2-WAY state, not EXSTART. The EXSTART state indicates that the routers have already exchanged Hello packets and are attempting to negotiate the master/slave relationship, which requires matching area IDs.

B

Duplicate router IDs cause OSPF to behave unpredictably, often resulting in flapping adjacencies or multiple neighbors with the same ID, but they do not typically cause a stuck EXSTART state on a single link. The routers would still progress through the states, but the adjacency may be unstable.

D

A missing default route on R2 does not affect OSPF adjacency formation. OSPF neighbors exchange routing information using multicast Hello and DD packets, which do not require a default route. The adjacency process is independent of the routing table content.

48
PBQhard

You are connected to R1. The network requires HSRP for default gateway redundancy on subnet 192.168.1.0/24. R2 should be the active router, and R1 the standby. Currently, both routers show as active. Configure R1 with priority 90, enable preempt, ensure the virtual IP is 192.168.1.254, and configure tracking of interface GigabitEthernet0/1 (subnet 203.0.113.0/30) so that if R1's tracked interface goes down, its priority decreases by 20. Verify the final state with 'show standby brief'.

Network Topology
G0/0192.168.1.1/24G0/0192.168.1.2/24G0/1203.0.113.1/30R2switchR1ISP

Hints

  • Both routers show active; check priority values and preempt configuration.
  • The virtual IP must match on both routers; verify it's 192.168.1.254.
  • Use 'standby 1 track' with the correct interface and decrement value.
A.interface GigabitEthernet0/0 standby version 2 standby 1 ip 192.168.1.254 standby 1 priority 90 standby 1 preempt standby 1 track GigabitEthernet0/1 20
B.interface GigabitEthernet0/0 standby version 2 standby 1 ip 192.168.1.254 standby 1 priority 110 standby 1 preempt standby 1 track GigabitEthernet0/1 20
C.interface GigabitEthernet0/0 standby version 2 standby 1 ip 192.168.1.254 standby 1 priority 90 standby 1 preempt standby 1 track GigabitEthernet0/1 30
D.interface GigabitEthernet0/0 standby version 2 standby 1 ip 192.168.1.254 standby 1 priority 90 standby 1 preempt standby 1 track GigabitEthernet0/0 20
AnswerA
solution
! R1
interface GigabitEthernet0/0
standby 1 priority 90
standby 1 preempt
standby 1 track GigabitEthernet0/1 20
end

Why this answer

The scenario requires R2 to be the HSRP active router. By default, both routers have priority 100, and HSRP election would select the router with the higher IP address as active if priorities are equal. To ensure R2 becomes active, R1's priority must be lowered to 90.

Additionally, tracking interface GigabitEthernet0/1 with a decrement of 20 is configured so that if R1's uplink fails, its priority drops to 70, further preventing it from becoming active. The correct configuration on R1 sets priority 90, enables preempt, and tracks the correct interface with decrement 20. Options B, C, and D are wrong because: B sets a higher priority (110) which would make R1 active; C uses an incorrect decrement of 30; and D tracks the wrong interface (Gig0/0 instead of Gig0/1).

Exam trap

Trap: Candidates may think that increasing priority ensures redundancy, but the requirement specifies R2 as active, so R1's priority must be lower. Also, ensure the tracked interface is the correct one (Gig0/1) and the decrement value matches exactly.

Why the other options are wrong

B

The priority value is higher than the default, which would make R1 active instead of standby.

C

The decrement value does not match the required 20; it is 30.

D

The tracked interface is wrong; it should be GigabitEthernet0/1, not GigabitEthernet0/0.

49
MCQmedium

Which WAN technology is most closely associated with establishing a direct point-to-point data-link connection between two routers over a serial link?

A.PPP
B.CAPWAP
C.SNMP
D.STP
AnswerA

This is correct because PPP is a point-to-point WAN encapsulation commonly used on serial links.

Why this answer

PPP is the WAN technology most closely associated with point-to-point serial connections between routers. In practical terms, it is a Layer 2 WAN encapsulation method commonly discussed in traditional serial WAN contexts. It supports features such as authentication and link negotiation that make it more flexible than older basic encapsulations.

This is one of the classic CCNA WAN topics.

Exam trap

Don't confuse general WAN technologies like Frame Relay and MPLS with protocols specifically designed for point-to-point serial links.

Why the other options are wrong

B

CAPWAP is a control and provisioning protocol for wireless access points and controllers, not a WAN encapsulation for serial links. It operates at the application layer and is used in wireless LAN architectures, not for point-to-point data-link connections.

C

SNMP is an application-layer protocol for network management and monitoring, used to collect statistics and configure devices. It does not provide data-link layer encapsulation or establish point-to-point connections over serial links.

D

STP is a Layer 2 protocol that prevents loops in Ethernet switched networks by blocking redundant paths. It has no role in WAN serial links, which are point-to-point and inherently loop-free.

50
MCQhard

A packet destined for 10.1.1.130 arrives at the router. Based on the routing table, which route will be used?

A.The static route to 10.1.1.128/25
B.The default route
C.The OSPF route to 10.1.1.0/24
D.The OSPF route to 10.1.0.0/16
AnswerA

This is correct because 10.1.1.130 belongs to the 10.1.1.128/25 range, and /25 is the longest matching prefix shown.

Why this answer

Routers do not choose the route with the lowest administrative distance first when several routes match a destination. They begin with the most specific matching prefix. In practical terms, the router looks for the narrowest route that still contains the destination address. The packet is going to 10.1.1.130. That address fits inside 10.1.1.128/25, and it also fits inside 10.1.1.0/24 and 10.1.0.0/16. But /25 is the most specific of those matches, so the router uses it.

Only after determining that two routes have the same prefix length would the router consider administrative distance and metric. The default route is ignored because more specific matches exist.

Exam trap

A frequent exam trap is to mistakenly select the default route or a less specific OSPF route because they appear in the routing table. Candidates often overlook that routers prioritize the longest prefix match before considering administrative distance or route type. This leads to choosing the default route or a broader subnet like 10.1.1.0/24 or 10.1.0.0/16 instead of the more specific static route 10.1.1.128/25.

Misunderstanding this can cause incorrect answers and confusion about how Cisco routers forward packets.

Why the other options are wrong

B

The default route is incorrect because it is the least specific route and only used when no other matching routes exist; here, more specific routes are available.

C

The OSPF route to 10.1.1.0/24 is less specific than the /25 static route, so it is not selected despite matching the destination IP address.

D

The OSPF route to 10.1.0.0/16 is the least specific among the options and will not be chosen when more specific routes like /24 or /25 exist.

51
PBQhard

You are connected to R1. The network consists of three routers: R1, R2, and R3. R1 must reach the loopback network 203.0.113.0/24 on R3 via two paths: a primary static route through R2's G0/0 (192.0.2.2) and a floating static route through R2's G0/1 (198.51.100.2) with an administrative distance of 150. Additionally, R1 already has a default route pointing to 192.0.2.2. Configure the two static routes to 203.0.113.0/24 on R1 as described. The default route does not need to be changed. Verify that the primary route is active and the floating route is used only if the primary fails.

Network Topology
G0/0192.0.2.1/30G0/0192.0.2.2/30G0/0192.0.2.2/30Lo0203.0.113.1/24R2R1R3

Hints

  • Check the administrative distance of the floating static route; it should be higher than the primary route's AD.
  • Verify that both next-hop addresses are directly connected to R1.
  • Ensure the default route is present and pointing to the correct next-hop.
A.Configure ip route 203.0.113.0 255.255.255.0 192.0.2.2 and ip route 203.0.113.0 255.255.255.0 198.51.100.2 150. The default route is already configured. No further changes needed.
B.Configure ip route 203.0.113.0 255.255.255.0 192.0.2.2 and ip route 203.0.113.0 255.255.255.0 198.51.100.2 150. Also, remove the existing default route and re-add it with a higher administrative distance.
C.Configure ip route 203.0.113.0 255.255.255.0 192.0.2.2 150 and ip route 203.0.113.0 255.255.255.0 198.51.100.2. The default route is already configured.
D.Configure ip route 203.0.113.0 255.255.255.0 192.0.2.2 and ip route 203.0.113.0 255.255.255.0 198.51.100.2. The default route is already configured. No administrative distance is needed because the router will automatically prefer the route with the lower metric.
AnswerA
solution
! R1
configure terminal
no ip route 203.0.113.0 255.255.255.0 198.51.100.2 150
ip route 203.0.113.0 255.255.255.0 198.51.100.2 150
end
show ip route 203.0.113.0

Why this answer

The correct answer is option A because it correctly configures the primary static route to 203.0.113.0/24 via 192.0.2.2 (default AD 1) and the floating static route via 198.51.100.2 with AD 150, ensuring the primary route is preferred. The default route to 192.0.2.2 is already configured and does not need modification. Options B, C, and D are incorrect: B wrongly adds a higher AD to the default route, C inverts the ADs on the two routes, and D omits the required AD on the floating route, causing both routes to have equal AD and potential load balancing or conflict.

Exam trap

A common trap is confusing which route gets the higher administrative distance. Remember: the floating (backup) route gets the higher AD, so it is only used when the primary route fails. Also, do not modify the default route unless specified.

Always verify that the next-hop addresses are directly connected to avoid recursive routing issues.

Why the other options are wrong

B

The specific factual error is that the default route configuration is correct as given; there is no need to modify it. Changing the AD of the default route could cause routing issues.

C

The specific factual error is swapping the administrative distances: the primary route should have a lower AD than the floating route. Here, the primary route has AD 150 and the floating route has AD 1, causing the backup to be preferred.

D

The specific factual error is that static routes without an AD default to 1, so both routes would have equal AD. The floating route must have a higher AD (e.g., 150) to act as a backup.

52
PBQhard

You are connected to R1 via the console. Configure OSPFv2 on R1 and R2 to establish a single-area OSPF adjacency in area 0. The link between R1 (G0/0) and R2 (G0/0) uses 10.0.0.0/30, and both routers must use an MTU of 1500. The current configuration has mismatched hello/dead timers and an area mismatch, preventing adjacency. Fix all issues so that R1 and R2 become fully adjacent.

Network Topology
G0/010.0.0.1/30G0/010.0.0.2/30linkR1R2

Hints

  • Check the OSPF area configured under the network statement on R1.
  • Compare the hello and dead intervals on both routers; they must match.
  • After fixing area and timers, verify the adjacency with show ip ospf neighbor.
A.On R1, change the network statement to area 0 and set the hello interval to 5 under interface G0/0.
B.On R2, change the network statement to area 1 and set the hello interval to 10 under interface G0/0.
C.On R1, change the network statement to area 0 and set the MTU to 1500 under interface G0/0.
D.On R2, change the network statement to area 0 and set the dead interval to 40 under interface G0/0.
AnswerA
solution
! R1
configure terminal
router ospf 1
no network 10.0.0.0 0.0.0.3 area 1
network 10.0.0.0 0.0.0.3 area 0
exit
interface GigabitEthernet0/0
ip ospf hello-interval 5
end

Why this answer

The adjacency fails because of two mismatches: the OSPF area on R1 is area 1 while R2 uses area 0, and the hello/dead timers differ (R1: 10/40, R2: 5/20). To fix, on R1 change the network statement to area 0 and adjust the hello interval to 5 (which also automatically sets dead to 20). Option B is wrong because it places the adjacency in area 1 (not area 0) and does not fix the timer mismatch on R2.

Option C is wrong because it does not address the hello/dead timer mismatch; the MTU is already correct at 1500. Option D is wrong because it leaves the hello interval mismatched (10 vs 5) and alters the dead interval unnecessarily; the dead interval is automatically derived from the hello interval.

Exam trap

Watch out for multiple mismatches: area ID and timers. Do not assume MTU is the issue when it is explicitly stated as matching. Also remember that changing the hello interval automatically adjusts the dead interval (4x hello).

Why the other options are wrong

B

This places the adjacency in area 1, not area 0 as required, and does not fix the timer mismatch on R2.

C

This does not fix the hello/dead timer mismatch; MTU is already matching at 1500.

D

This leaves the hello interval mismatched (10 vs 5) and alters the dead interval unnecessarily; R2 needs hello interval set to 5, not dead interval.

53
PBQhard

You are troubleshooting connectivity from R1 to the 203.0.113.0/24 network. R1 is a multilayer switch running routed ports. Currently, R1 has two paths to reach that network: one via R2 (192.0.2.2) and one via R3 (198.51.100.2). The path via R2 is preferred, but after a link failure between R1 and R2, traffic should automatically fail over to the R3 path. However, after the failure, traffic is still being sent to R2. Examine the routing table and configuration, then fix the issue so that the floating static route takes over correctly when the primary route is lost.

Hints

  • The primary static route does not have an exit interface specified, so it relies on recursive lookup. When the next-hop becomes unreachable, the route may still be present if there is another route to the next-hop.
  • Check if the static route is using the 'permanent' keyword (not shown in config, but possible).
  • To make the route interface-dependent, specify the exit interface in the static route command.
A.Replace the primary static route with one that uses an exit interface: ip route 203.0.113.0 255.255.255.0 GigabitEthernet1/0/1 192.0.2.2
B.Increase the administrative distance of the floating static route to 255
C.Add the permanent keyword to the floating static route
D.Change the administrative distance of the primary static route to 200 and the floating static route to 1
AnswerA
solution
! R1
no ip route 203.0.113.0 255.255.255.0 192.0.2.2
ip route 203.0.113.0 255.255.255.0 GigabitEthernet1/0/1 192.0.2.2

Why this answer

The issue is that the primary static route to 203.0.113.0/24 via 192.0.2.2 has an administrative distance of 1 (default), and the backup floating static route via 198.51.100.2 has an AD of 200. When the next-hop interface (Gi1/0/1) goes down, the route via 192.0.2.2 should be removed from the routing table because its next-hop is unreachable. However, the show output indicates that the route remains, which suggests that the static route is configured with the 'permanent' keyword or that the next-hop is still considered reachable via some other mechanism (e.g., a recursive lookup to a still-active route).

In this case, the most common fix is to add the 'track' option or to remove the static route and re-add it without the 'permanent' keyword, or to ensure that the static route uses an interface instead of just an IP address. The correct solution is to replace the primary static route with one that uses an exit interface, so that the route is automatically removed when the interface goes down. For example: 'ip route 203.0.113.0 255.255.255.0 GigabitEthernet1/0/1 192.0.2.2'.

This causes the route to be directly dependent on the interface state.

Exam trap

Be careful: static routes with only a next-hop IP address may remain in the routing table if the next-hop is still reachable via a recursive route. Always consider using an exit interface or a track object to ensure proper failover. Also, the 'permanent' keyword prevents route removal even if the next-hop is unreachable.

Why the other options are wrong

B

The specific factual error: An administrative distance of 255 is reserved for routes that are not considered valid; they are not installed in the routing table.

C

The specific factual error: The permanent keyword forces the route to stay in the routing table regardless of reachability, which is the opposite of what is needed.

D

The specific factual error: The AD values determine route preference; swapping them changes which route is preferred but does not address the removal of the route when the next-hop is unreachable.

54
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure OSPFv3 for IPv6 on a Cisco IOS-XE 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

To configure OSPFv3 for IPv6, first enable IPv6 routing globally with 'ipv6 unicast-routing'. Next, enter OSPFv3 configuration mode using 'router ospfv3 1' to set process parameters. Then, apply OSPFv3 on each interface with 'ipv6 ospf <process-id> area <area-id>'.

Finally, verify adjacencies with 'show ipv6 ospf neighbor'.

Exam trap

Many learners assume OSPFv3 configuration is identical to OSPFv2; while the 'router ospfv3' command is valid and often needed for router-id assignment, the primary interface-level command 'ipv6 ospf area' is where adjacency parameters are applied.

55
MCQmedium

A router learns 10.10.10.0/24 from OSPF and EIGRP at the same time. OSPF reports a metric of 20, and EIGRP reports a metric of 30720. Which route is installed in the routing table by default?

A.The OSPF route, because 20 is lower than 30720
B.The EIGRP route, because its administrative distance is lower
C.Both routes, because they point to the same prefix
D.Neither route, because the metrics are not comparable
AnswerB

Correct. EIGRP wins because its default administrative distance is lower than OSPF.

Why this answer

When the same prefix is learned from different routing protocols, the router compares administrative distance first. EIGRP internal routes use AD 90, while OSPF uses AD 110, so the EIGRP route is preferred.

Exam trap

Remember, administrative distance is the first criterion for route selection between different protocols, not the metric.

Why the other options are wrong

A

Metrics from different routing protocols are not comparable because each protocol uses its own metric calculation (e.g., OSPF uses cost based on bandwidth, EIGRP uses composite metric based on bandwidth and delay). The router uses administrative distance to choose between routes from different protocols, not metric values.

C

A router installs only the best route to a destination in the routing table, unless equal-cost load balancing is configured. Since OSPF and EIGRP have different administrative distances, only the route with the lower AD is installed. Both routes cannot be installed simultaneously for the same prefix.

D

The router does compare routes from different protocols using administrative distance, not metrics. Since the metrics are from different protocols, they are not directly comparable, but the router still selects one route based on AD. Therefore, one route will be installed.

56
MCQhard

A router has a static default route with administrative distance 250 and also learns a default route through OSPF. What is the main design purpose of the static default route?

A.To serve as a backup default route if the OSPF default is lost.
B.To override the OSPF default route immediately.
C.To make the router ignore all default routes.
D.To turn the default route into a host route.
AnswerA

This is correct because the high administrative distance makes it a standby route.

Why this answer

The main purpose is to act as a backup route of last resort if the OSPF-learned default route disappears. In practical terms, the very high administrative distance keeps the static default out of the active table while the OSPF default is available. It remains in reserve only for failure conditions.

This is a classic floating-static-default design. It provides resilience without replacing the primary dynamic path.

Exam trap

A common exam trap is assuming that a static default route with a high administrative distance will override the OSPF default route immediately. Candidates might think the static route takes precedence because it is manually configured, but in reality, the administrative distance value controls route preference. Since 250 is much higher than OSPF’s 110, the static route remains inactive while OSPF’s route is available.

This misunderstanding can lead to incorrect answers about route selection and failover behavior in Cisco routing exams.

Why the other options are wrong

B

This option is incorrect because a static route with an administrative distance of 250 does not override the OSPF default route, which has a lower AD of 110. The high AD prevents immediate override.

C

This option is incorrect because the static default route does not cause the router to ignore all default routes. Instead, it remains as a backup and only becomes active if the OSPF route disappears.

D

This option is incorrect because administrative distance does not change the route prefix or convert a default route into a host route. It only influences route preference and selection.

57
MCQhard

A router learns 10.0.0.0/8 from OSPF and 10.10.0.0/16 from a static route. Which route is used for traffic to 10.10.20.1?

A.The OSPF 10.0.0.0/8 route
B.The static 10.10.0.0/16 route
C.The default route if present
D.Neither route, because the networks overlap
AnswerB

This is correct because it is the more specific matching route.

Why this answer

The static /16 route is used because it is more specific than the OSPF /8 route. In practical terms, even though both routes match the destination, the router chooses the one that narrows the destination range more precisely. Since 10.10.20.1 belongs to 10.10.0.0/16, that entry wins.

This question reinforces that longest-prefix match comes first. The broader OSPF route still matters for other destinations inside 10.0.0.0/8, but not for this one.

Exam trap

A frequent mistake is to assume that the OSPF route will be used simply because it is dynamically learned, or because it covers a larger network range. Candidates often overlook that the router applies longest-prefix match first, which means the more specific static route with a /16 mask takes precedence over the broader /8 OSPF route. This misunderstanding leads to incorrect answers, as the router does not ignore static routes in favor of OSPF when the static route is more specific.

Remember, overlapping routes are common, and the router always chooses the route with the most specific subnet mask matching the destination.

Why the other options are wrong

A

The OSPF 10.0.0.0/8 route is less specific than the static 10.10.0.0/16 route. Since the router uses longest-prefix match, the broader /8 route is not selected for traffic destined to 10.10.20.1.

C

The default route would only be used if no more specific matching routes exist. Since both OSPF and static routes match, and the static route is more specific, the default route is not used here.

D

Overlapping networks are common in routing tables and do not prevent route selection. The router resolves overlapping prefixes by choosing the longest-prefix match, so this option is incorrect.

58
Drag & Dropmedium

Drag and drop the following steps into the correct order to determine the best route to a destination using a routing table.

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 follows Cisco's route selection logic: 1. Extract the destination IP (the lookup key). 2. Find all matching routes in the routing table. 3.

Apply longest prefix match – the most specific route (longest subnet mask) is always preferred, regardless of administrative distance. 4. If multiple routes share that longest prefix length, compare administrative distances. 5. The route with the lowest administrative distance wins. 6.

If AD values are equal (same routing protocol is typical), compare metrics. 7. The route with the lowest metric becomes the best route. This hierarchy – longest match > AD > metric – is fundamental to Cisco router behavior.

59
MCQmedium

What is the operational purpose of configuring the IPv6 route ::/0?

A.It provides a fallback path for unknown remote IPv6 destinations.
B.It enables OSPFv3 on the upstream interface.
C.It converts link-local addresses into global unicast addresses.
D.It summarizes all IPv6 routes into one /64 route.
AnswerA

This is correct because ::/0 defines the route of last resort for IPv6.

Why this answer

The configured route is a default route. In practical terms, it gives the router one simple next hop for any remote IPv6 destination that is not matched by a more specific entry. That is exactly what a small branch router often needs when it has a single upstream path.

This is the same design logic as an IPv4 default route, but with IPv6 syntax and addressing.

Exam trap

A frequent exam trap is mistaking the IPv6 default route (::/0) for a command that enables OSPFv3 or performs address translation. Some candidates incorrectly believe that the static route command configures OSPFv3 or converts link-local addresses to global unicast addresses. Another common error is interpreting ::/0 as a summary route with a /64 prefix, which it is not.

Understanding that ::/0 is specifically a default route that provides a fallback path for all unknown IPv6 destinations is crucial to avoid these misconceptions.

Why the other options are wrong

B

Option B is incorrect because the static route command does not enable OSPFv3. OSPFv3 requires separate configuration commands and is a dynamic routing protocol, unlike static routes.

C

Option C is incorrect because routing does not convert link-local addresses into global unicast addresses. Address types remain consistent, and routing forwards packets based on existing address formats.

D

Option D is incorrect because ::/0 is a default route covering all IPv6 addresses, not a summary route with a /64 prefix. Summarization involves aggregating multiple routes into a larger prefix, which is not the case here.

60
MCQhard

A router has routes to 10.50.0.0/16, 10.50.10.0/24, and 10.50.10.128/25. Which route is used for traffic to 10.50.10.140?

A.10.50.0.0/16
B.10.50.10.0/24
C.10.50.10.128/25
D.The default route
AnswerC

This is correct because .140 falls inside the 10.50.10.128/25 range.

Why this answer

The /25 route is used because it is the most specific matching prefix. In practical terms, 10.50.10.140 belongs to the upper half of the 10.50.10.0/24 space, which is exactly what 10.50.10.128/25 describes. Even though the /24 and /16 also match, longest-prefix match prefers the narrowest route.

This is a direct route-selection question. It reinforces that the router chooses the route that describes the destination most precisely.

Exam trap

A frequent exam trap is choosing a less specific route such as 10.50.0.0/16 or 10.50.10.0/24 because they also include the destination IP address. Candidates might overlook the importance of the subnet mask length and assume any matching route is acceptable. This mistake ignores the longest-prefix match rule, which always prefers the route with the most bits matching the destination IP.

Selecting a broader route leads to incorrect routing decisions and fails to reflect Cisco’s routing behavior.

Why the other options are wrong

A

The route 10.50.0.0/16 is the least specific among the options because it covers a large range of IP addresses. Although it matches the destination IP 10.50.10.140, it is overridden by more specific routes with longer subnet masks, so it is not chosen.

B

The route 10.50.10.0/24 is more specific than the /16 but less specific than the /25. Since 10.50.10.140 falls within the /25 subnet, the router prefers the /25 route over this /24 route, making this option incorrect.

D

The default route is only used when no other matching routes exist. Since multiple specific routes match 10.50.10.140, the router will not use the default route, so this option is incorrect.

61
Drag & Dropmedium

Drag and drop the following OSPFv2 DR/BDR election steps into the correct order for a multiaccess network where a new router is added after the DR and BDR have already been elected.

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

When a new router joins a multiaccess network that already has DR/BDR, it goes through the ExStart state with both the DR and BDR, then forms full adjacencies with both, regardless of its OSPF priority. Options A, B, and C are incorrect because they either describe adjacencies with only the DR, or claim the new router becomes DR/BDR, which cannot happen when DR/BDR are already elected.

Exam trap

A router with OSPF priority 0 never becomes DR or BDR, but it still forms full adjacencies with both the existing DR and BDR.

62
MCQhard

A network administrator is troubleshooting a connectivity issue between two remote sites connected via a WAN link. Hosts on VLAN 10 at Site A (192.168.10.0/24) cannot ping the server at Site B (10.10.20.100). The router at Site A has a default route configured with the next-hop IP address 10.10.10.2. The administrator checks the routing table on Router A and notices that the default route is not installed. What is the most likely cause of the problem?

A.The static route for 10.10.20.0/24 is missing from the routing table.
B.The GigabitEthernet0/0 interface is administratively down.
C.The default route is not configured; the gateway of last resort is missing.
D.The next-hop router 10.10.10.2 is unreachable.
AnswerD

A static route with a next-hop IP is only installed in the routing table when that next-hop is reachable. Since the default route is missing from the routing table, the next-hop 10.10.10.2 must be unreachable, making option D the correct diagnosis.

Why this answer

Option D is correct because the default route uses a next-hop IP (10.10.10.2) and will only be installed in the routing table if that next-hop is reachable. Since the router’s routing table shows no default route, the most likely cause is that the next-hop 10.10.10.2 is unreachable, preventing the static route from being used. This explains why traffic fails despite the configuration.

Exam trap

Cisco often tests the misconception that a default route alone guarantees connectivity, when in reality the next-hop must be reachable; candidates may overlook verifying the next-hop's availability.

Why the other options are wrong

A

The routing table shows a static route to 10.10.20.0/24 via 10.10.10.2, so the route is present. The issue is not a missing route.

B

The interface is shown as directly connected with a local address, indicating it is up and operational. An administratively down interface would show 'administratively down' in the status.

C

The output shows 'Gateway of last resort is 10.10.10.2 to network 0.0.0.0', confirming the default route is configured.

63
Matchingmedium

Drag and drop the FHRP protocols on the left to their key characteristics on the right.

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

Concepts
Matches

Cisco proprietary; active/standby; virtual MAC 0000.0c07.acXX

Open standard; master/backup; virtual MAC 0000.5e00.01XX

Cisco proprietary; active/active load balancing; virtual MAC 0007.b400.XXYY

Supports IPv6; uses group numbers 0-4095

Supports IPv4 and IPv6; uses virtual router ID 1-255

Why these pairings

HSRP and GLBP are Cisco proprietary; VRRP is open standard. GLBP uniquely supports load balancing. IRDP is not a true FHRP.

Virtual IP and preemption are common characteristics.

Exam trap

The exam often tests whether you know that VRRP is the open standard, while HSRP and GLBP are Cisco proprietary. Also, IRDP is a common distractor because it is a router discovery protocol but not a true FHRP.

64
PBQmedium

You are connected to R1 via console. R1 is a router that has two paths to the Internet: one via ISP1 with next-hop 203.0.113.1, and a backup via ISP2 with next-hop 203.0.113.2. The primary path should be via ISP1, but if it fails, traffic should automatically use ISP2. Currently, R1 has a static default route to ISP1 only. You need to configure a floating static route to ISP2 with an administrative distance of 150 to provide backup connectivity. Additionally, you must ensure that the backup route is only used when the primary route is not available.

Network Topology
G0/0203.0.113.10/30203.0.113.1linkG0/1203.0.113.14/30203.0.113.2linkR1ISP1ISP2

Hints

  • A floating static route has a higher administrative distance than the primary route.
  • The default administrative distance for static routes is 1, so you need a distance greater than that.
  • When the primary route disappears (e.g., interface down), the floating route will appear in the routing table.
A.ip route 0.0.0.0 0.0.0.0 203.0.113.2 150
B.ip route 0.0.0.0 0.0.0.0 203.0.113.2 1
C.ip route 0.0.0.0 0.0.0.0 203.0.113.2 250
D.ip route 0.0.0.0 0.0.0.0 203.0.113.2
AnswerA
solution
! R1
ip route 0.0.0.0 0.0.0.0 203.0.113.2 150

Why this answer

By setting the administrative distance to 150, the backup static route is less preferred than the primary static route (distance 1). If the primary route is removed due to a failure, the floating route is installed, providing backup connectivity.

Exam trap

Do not confuse the metric with administrative distance. For static routes, the AD is used to determine preference. A floating static route must have a higher AD than the primary route to act as a backup.

Also, note that the question specifies the exact AD value to use.

Why the other options are wrong

B

The administrative distance should be higher than the primary route's AD (1) to make it less preferred. Setting it to 1 makes it equal, not a backup.

C

The question explicitly states 'with an administrative distance of 150'. Using 250 is not what was asked, though it would be technically valid.

D

The default AD is 1, which equals the primary route's AD. This does not create a floating route; both routes are equally preferred.

65
PBQhard

You are connected to R1. Configure OSPFv2 on R1 and R2 so that they form a full adjacency and can exchange routes. Currently, the adjacency is stuck in EXSTART state. Identify and fix the issue, then verify the adjacency becomes FULL.

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

Hints

  • Check the hello and dead intervals on both routers using 'show ip ospf interface'.
  • The adjacency is stuck in EXSTART, often caused by mismatched MTU or timer values.
  • On R1, the timers are set to 10 and 40; on R2 they are 5 and 20. They must match.
A.On R1, configure 'ip ospf hello-interval 5' and 'ip ospf dead-interval 20' under interface GigabitEthernet0/0.
B.On R1, configure 'ip ospf network point-to-point' under interface GigabitEthernet0/0.
C.On R2, configure 'ip ospf hello-interval 10' and 'ip ospf dead-interval 40' under interface GigabitEthernet0/0.
D.On R1, configure 'ip ospf dead-interval 40' under interface GigabitEthernet0/0.
AnswerA
solution
! R1
interface GigabitEthernet0/0
ip ospf hello-interval 5
ip ospf dead-interval 20

Why this answer

The adjacency is stuck in EXSTART because the OSPF hello and dead timers are mismatched between R1 and R2. R1 has hello-interval 10 and dead-interval 40, while R2 has hello-interval 5 and dead-interval 20. OSPF requires these timers to match for adjacency formation.

To fix this, adjust the timers on R1 to match R2 (or vice versa). On R1, configure 'ip ospf hello-interval 5' and 'ip ospf dead-interval 20' under interface GigabitEthernet0/0. After correction, the adjacency should progress to FULL.

Exam trap

Be careful to identify which router you are configuring. The question states you are connected to R1, so changes should be made on R1. Also, remember that OSPF requires both hello and dead intervals to match, not just one.

Why the other options are wrong

B

The specific factual error is that the adjacency is stuck due to timer mismatch, not network type mismatch.

C

The specific factual error is that the configuration should be applied to R1, not R2, as per the question context.

D

The specific factual error is that both hello and dead intervals must match; changing only one leaves a mismatch.

66
PBQmedium

You are connected to R1 via console. R1 is connected to R2 via GigabitEthernet0/0 and to R3 via GigabitEthernet0/1. OSPF has been configured, but R1 is not forming a full adjacency with R2. You run `show ip ospf neighbor` on R1 and see R2 stuck in EXSTART state. You also run `show ip ospf interface GigabitEthernet0/0` and see the network type is broadcast. You need to identify and resolve the issue.

Network Topology
G0/010.0.0.1/30G0/010.0.0.2/30linkG0/110.0.1.1/30G0/110.0.1.2/30linkR1R2R3

Hints

  • Check the OSPF neighbor state with show ip ospf neighbor.
  • The issue may be related to the OSPF network type.
  • R1 and R2 are connected via a point-to-point link.
A.Change the OSPF network type on R1's GigabitEthernet0/0 interface to point-to-point.
B.Increase the OSPF hello interval on R1's GigabitEthernet0/0 interface to match R2's hello interval.
C.Configure the OSPF priority on R1's GigabitEthernet0/0 interface to 0 to prevent it from becoming the DR.
D.Add the 'ip ospf network broadcast' command on R1's GigabitEthernet0/0 interface.
AnswerA
solution
! R1
interface GigabitEthernet0/0
ip ospf network point-to-point
end

Why this answer

R1's Gi0/0 defaults to OSPF broadcast network type, while R2 is likely configured as point-to-point. This mismatch prevents the routers from forming a full adjacency, often leaving them stuck in EXSTART or 2-WAY state. Changing R1's interface to point-to-point aligns the network types, allowing adjacency to form.

The other options are incorrect because hello interval mismatches (B) or DR priority (C) are not the root cause, and adding the broadcast command (D) would not fix a point-to-point mismatch.

Exam trap

Candidates often forget that Ethernet interfaces default to broadcast OSPF network type, even on point-to-point links. They may focus on mismatched timers or priorities, but the key is to recognize that the broadcast network type introduces DR/BDR election, which is not needed on a direct link.

Why the other options are wrong

B

The specific factual error: Changing hello intervals is not the standard fix for a point-to-point link not forming adjacency; the network type is the primary issue.

C

The specific factual error: Setting priority to 0 does not eliminate the DR/BDR election process; it only ensures the router does not participate as DR/BDR.

D

The specific factual error: The broadcast network type is already the default on Ethernet; the command is redundant and does not address the need for a point-to-point network type.

67
Drag & Dropmedium

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

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

IPv6 unicast routing must be enabled first, as OSPFv3 relies on the router being IPv6 aware. Next, the OSPFv3 process is created globally. The interface must then be IPv6-enabled to auto-generate the link-local address used by OSPFv3 for forming adjacencies.

After that, the interface is added to OSPFv3 Area 0. Finally, the 'show ospfv3 neighbor' command is used to verify that an adjacency has formed.

68
MCQhard

A network administrator is troubleshooting a connectivity issue on a subnet where two routers, R1 and R2, are configured with HSRP to provide a virtual gateway. Hosts on the subnet can ping the virtual IP address but cannot reach destinations outside the subnet. The administrator discovers that R1 is the active HSRP router. What is the most likely root cause of the problem?

A.Configure a default route on R1 pointing to the next-hop router.
B.Enable preemption on both routers to ensure the higher-priority router stays active.
C.Change the virtual MAC address on R2 to match the one on R1.
D.Increase the hello timer on R1 to match the hold timer on R2.
AnswerA

This is correct because R1 is the Active HSRP router and is responsible for forwarding traffic from hosts to external networks. Without a default route, R1 drops packets destined outside the subnet.

Why this answer

Hosts can ping the virtual IP address, so HSRP is functioning locally. The failure to reach external destinations indicates a routing problem, not an HSRP issue. The active router, R1, must have a default route pointing to the next-hop router to forward traffic beyond the subnet.

Incorrect options address HSRP settings (preemption, MAC address, timers) that are irrelevant because the virtual gateway is already reachable.

Exam trap

Cisco often tests the misconception that HSRP configuration alone provides full connectivity, when in fact the routers still need proper routing (e.g., a default route) to forward traffic beyond the subnet.

Why the other options are wrong

B

Preemption is not needed because the current Active router already has the higher priority (110 vs 100). Preemption only becomes relevant when a higher-priority router recovers after a failure and needs to reclaim the Active role. The issue here is routing, not HSRP state stability.

C

The virtual MAC address is automatically derived from the HSRP group number and is the same for both routers when they are in the same group. R2's local virtual MAC is different because it is used only when R2 becomes Active. The mismatch in the output is normal and does not affect connectivity.

D

The hello and hold timers are consistent (3 sec hello, 10 sec hold) and are not causing any issues. Adjusting timers would not fix the routing problem. The root cause is the lack of a default route on the Active router.

69
MCQmedium

A network engineer is configuring HSRP on a pair of Cisco routers to provide first-hop redundancy for a subnet. The goal is to ensure that the router with the highest IPv4 address always becomes the active router, and that it automatically reclaims the active role after a failure. The engineer configures priority 100 on both routers. Which additional configuration is required to meet these objectives?

A.Configure priority 150 on one router and priority 50 on the other.
B.Configure the preempt command on both routers.
C.Configure the standby 1 priority 100 command on both routers.
D.Configure the standby 1 priority 100 on one router and standby 1 priority 50 on the other.
AnswerB

With equal priority, HSRP elects the active router based on the highest IP address. The preempt command ensures that if a router with a higher IP address (and equal priority) recovers after a failure, it will preempt the current active router and reclaim the active role, as required.

Why this answer

Option B is correct because HSRP uses priority to determine the active router, but without the preempt command, a router with a higher priority will not take over the active role if it comes online after a failure. Since both routers have the same priority (100), the router with the highest IPv4 address will become active initially, but to ensure it automatically reclaims the active role after a failure, preempt must be enabled on both routers. This allows the router with the higher IP address (and equal priority) to preempt the current active router when it recovers.

Exam trap

Cisco often tests the misconception that priority alone determines active router selection and that preempt is only needed when priorities differ, but the trap here is that without preempt, even with equal priorities, the router with the higher IP address will not reclaim the active role after a failure.

Why the other options are wrong

A

Configuring different priorities (150 and 50) would force the router with priority 150 to become active regardless of IP address, contradicting the requirement to use the highest IPv4 address for election. HSRP uses priority as the primary criterion; only when priorities are equal does the highest IP address break the tie.

C

The command 'standby 1 priority 100' is already implied by setting priority 100; it does not enable preemption. With equal priority and no preempt, both routers will remain in standby state indefinitely because HSRP cannot determine an active router without a tiebreaker or preemption. The active router election requires either a priority difference or preempt to resolve the tie.

D

Configuring different priorities (100 and 50) would make the router with priority 100 active regardless of IP address, which violates the requirement to use the highest IPv4 address for election. The requirement explicitly states that priorities must remain equal so that the highest IP address determines the active router.

70
Multi-Selectmedium

Exhibit: R1 learns 192.168.50.0/24 from multiple sources. Which two statements are correct about the route that will be installed in the routing table?

Select 2 answers
A.The static route is preferred because its administrative distance is lowest
B.The OSPF route is preferred because cost 20 is lower than RIP metric 2
C.The eBGP route would win over the static route because BGP is more dynamic
D.If the static route were removed, the eBGP route would beat OSPF and RIP
E.RIP would be chosen before OSPF because hop count is simpler
AnswersA, D

Administrative distance is compared before metric across different routing sources.

Why this answer

The router chooses the route with the lowest administrative distance first. If administrative distance ties, it then compares the metric within that routing source. In this case the static route wins because AD 1 beats eBGP 20, OSPF 110, and RIP 120.

Exam trap

A common exam trap is assuming that the routing protocol with the lowest metric always wins, regardless of administrative distance. For example, candidates might incorrectly believe that OSPF with a cost of 20 beats eBGP with an AD of 20 or that RIP’s hop count of 2 beats OSPF’s cost of 20. This mistake arises from confusing metrics with administrative distance.

Metrics are only compared within the same routing protocol, while administrative distance is the primary factor when routes come from different sources. Ignoring this can lead to selecting incorrect answers about route preference.

Why the other options are wrong

B

This option is incorrect because metrics such as OSPF cost and RIP hop count are not compared across different routing protocols. Administrative distance is the primary factor in route selection between protocols.

C

This option is incorrect because the dynamic nature of BGP does not override the administrative distance rule. Static routes with AD 1 are always preferred over eBGP routes with AD 20.

E

This option is incorrect because simplicity of metric calculation (hop count) does not influence route preference. Administrative distance is the deciding factor, and RIP’s higher AD (120) makes it less preferred than OSPF (110).

71
Multi-Selectmedium

Which three options accurately describe characteristics of OSPFv2 in a single area? (Choose three.)

Select 3 answers
.OSPF uses cost as its metric, which is derived from the bandwidth of the interface.
.Hello packets are used to discover neighbors and maintain adjacencies.
.The designated router (DR) is elected on broadcast multiaccess networks to reduce LSAs flooding.
.OSPFv2 supports IPv6 routing natively without any additional configuration.
.Link-state advertisements (LSAs) are sent periodically every 30 seconds by default.
.OSPF routers in the same area must be configured with the same router ID.

Why this answer

OSPFv2 uses cost as its metric, derived from interface bandwidth using the formula cost = reference bandwidth / interface bandwidth (default reference bandwidth is 100 Mbps). Hello packets are used to discover neighbors, maintain adjacencies, and act as keepalives (default every 10 seconds on broadcast networks). The designated router (DR) is elected only on broadcast multiaccess networks (e.g., Ethernet) to reduce LSA flooding.

The incorrect options: OSPFv2 does not natively support IPv6 (OSPFv3 is needed for IPv6); LSAs are refreshed every 30 minutes, not 30 seconds; router IDs must be unique across the OSPF domain, not the same in an area.

Exam trap

Common mistakes include thinking OSPF uses hop count or bandwidth alone as metric, that the DR is elected on all network types, or that Hello packets are only for initial discovery rather than ongoing adjacency maintenance.

Why the other options are wrong

D

OSPFv2 does not natively support IPv6; OSPFv3 is required for IPv6 routing.

E

Link-state advertisements (LSAs) are refreshed every 30 minutes by default, not every 30 seconds.

F

OSPF router IDs must be unique throughout the OSPF domain; routers in the same area can have different router IDs.

72
MCQhard

Exhibit: A router has both an OSPF-learned default route and a floating static default route. Which route is currently active?

A.The static route, because static routes always override dynamic routes
B.The OSPF default route, because AD 110 beats the floating static AD 150
C.Both routes load-balance automatically
D.Neither route, because a default route cannot be learned by OSPF
AnswerB

That is exactly why the OSPF default is active.

Why this answer

A floating static route only takes over when its administrative distance is set higher than the preferred route and the preferred route disappears. The routing table shows the OSPF default because AD 110 is lower than the floating static AD 150.

Exam trap

A frequent exam trap is believing that static routes always override dynamic routes simply because they are manually configured. This misconception leads to selecting the static route as active regardless of administrative distance. In reality, Cisco routers use administrative distance to determine route preference, and a floating static route is deliberately configured with a higher AD to act as a backup.

The router prefers the OSPF route with AD 110 over the floating static route with AD 150, so the static route is inactive unless the OSPF route fails. Misunderstanding this can cause incorrect answers about route selection in routing tables.

Why the other options are wrong

A

This option incorrectly states that static routes always override dynamic routes. In Cisco routing, static routes only override dynamic routes if their administrative distance is lower. Since the floating static route has a higher AD (150) than OSPF (110), it is not preferred here.

C

This option is incorrect because load balancing only occurs between routes with equal administrative distances and metrics. Here, the OSPF and floating static routes have different ADs, so only the route with the lower AD is active.

D

This option is false because OSPF can advertise and learn default routes using the 'default-information originate' command. Therefore, OSPF can carry a default route, making this statement incorrect.

73
MCQhard

A junior network engineer configured a floating static route on Router R1 to provide backup connectivity to a remote network 10.10.10.0/24. The primary connection uses OSPF. However, after the primary link fails, hosts on R1 cannot reach the remote network. The OSPF adjacency is down, and the floating static route is not appearing in the routing table. Based on the exhibit, what is the most likely cause of the issue?

A.The floating static route is missing from the configuration.
B.The static route's next-hop becomes unreachable after the primary OSPF link fails.
C.The administrative distance of the static route is too high.
D.The default route is overriding the static route to 10.10.10.0/24.
AnswerB

The floating static route points to a next-hop that is only reachable via the OSPF-learned path. Once the primary link fails and OSPF is down, the router loses the route to that next-hop, preventing the static route from being installed.

Why this answer

Option B is correct because the floating static route's next-hop becomes unreachable after the primary OSPF link fails. In the exhibit, the next-hop IP is likely configured to an address that is only reachable via OSPF; when that adjacency drops, the router has no route to the next-hop, so it cannot recursively resolve the static route. As a result, the route does not appear in the routing table.

Option A is wrong because the route is present in the configuration (as a floating static route). Option C is wrong because the administrative distance of the floating static route is intentionally higher than OSPF's so that it only installs when OSPF fails; this is correct behavior. Option D is wrong because a default route would not override a more specific static route to 10.10.10.0/24.

Exam trap

Cisco often tests the misconception that a floating static route will automatically appear when the primary route fails, without considering that the next-hop must be directly connected or recursively resolvable via a remaining route.

Why the other options are wrong

A

The exhibit shows the static route is configured, so the issue is not that it is missing.

C

An administrative distance of 200 is appropriate for a floating static route to be less preferred than OSPF (AD 110) but still usable as a backup.

D

A default route (0.0.0.0/0) does not override a more specific route like 10.10.10.0/24; the longest prefix match rule ensures the specific route is preferred.

74
PBQhard

You are connected to R1. Configure OSPFv3 for IPv6 on R1 and R2 so that the loopback0 interface on R1 (IPv6 address 2001:db8:1::1/64) can ping the loopback0 interface on R2 (IPv6 address 2001:db8:2::1/64). The routers are connected via their GigabitEthernet0/0 interfaces using IPv6 addresses 2001:db8:12::1/64 (R1) and 2001:db8:12::2/64 (R2). OSPFv3 process ID 100 must be used, and all interfaces must be in area 0.

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

Hints

  • OSPFv3 for IPv6 is configured under the 'ipv6 router ospf' process, not 'router ospf'.
  • Each interface that should participate in OSPFv3 must have the 'ipv6 ospf <process-id> area <area-id>' command.
  • Don't forget to set a router-id; otherwise the OSPFv3 process may not start.
A.R1(config)# ipv6 unicast-routing R1(config)# ipv6 router ospf 100 R1(config-rtr)# router-id 1.1.1.1 R1(config-rtr)# interface gigabitethernet0/0 R1(config-if)# ipv6 ospf 100 area 0 R1(config-if)# interface loopback0 R1(config-if)# ipv6 ospf 100 area 0 R2(config)# ipv6 unicast-routing R2(config)# ipv6 router ospf 100 R2(config-rtr)# router-id 2.2.2.2 R2(config-rtr)# interface gigabitethernet0/0 R2(config-if)# ipv6 ospf 100 area 0 R2(config-if)# interface loopback0 R2(config-if)# ipv6 ospf 100 area 0
B.R1(config)# ipv6 unicast-routing R1(config)# ipv6 router ospf 100 R1(config-rtr)# router-id 1.1.1.1 R1(config-rtr)# network 2001:db8:12::0/64 area 0 R1(config-rtr)# network 2001:db8:1::0/64 area 0 R2(config)# ipv6 unicast-routing R2(config)# ipv6 router ospf 100 R2(config-rtr)# router-id 2.2.2.2 R2(config-rtr)# network 2001:db8:12::0/64 area 0 R2(config-rtr)# network 2001:db8:2::0/64 area 0
C.R1(config)# ipv6 unicast-routing R1(config)# ipv6 router ospf 100 R1(config-rtr)# router-id 1.1.1.1 R1(config-rtr)# interface gigabitethernet0/0 R1(config-if)# ipv6 ospf 100 area 0 R2(config)# ipv6 unicast-routing R2(config)# ipv6 router ospf 100 R2(config-rtr)# router-id 2.2.2.2 R2(config-rtr)# interface gigabitethernet0/0 R2(config-if)# ipv6 ospf 100 area 0
D.R1(config)# ipv6 unicast-routing R1(config)# ipv6 router ospf 100 R1(config-rtr)# router-id 1.1.1.1 R1(config-rtr)# interface gigabitethernet0/0 R1(config-if)# ipv6 ospf 100 area 0 R1(config-if)# interface loopback0 R1(config-if)# ipv6 ospf 100 area 0 R2(config)# ipv6 unicast-routing R2(config)# ipv6 router ospf 100 R2(config-rtr)# router-id 1.1.1.1 R2(config-rtr)# interface gigabitethernet0/0 R2(config-if)# ipv6 ospf 100 area 0 R2(config-if)# interface loopback0 R2(config-if)# ipv6 ospf 100 area 0
AnswerA
solution
! R1
ipv6 router ospf 100
router-id 1.1.1.1
interface Loopback0
ipv6 ospf 100 area 0
interface GigabitEthernet0/0
ipv6 ospf 100 area 0

Why this answer

OSPFv3 for IPv6 requires enabling IPv6 unicast routing globally and configuring OSPFv3 on interfaces. The missing step was enabling OSPFv3 process 100 and assigning area 0 to the interfaces. On R1, the commands 'ipv6 router ospf 100' and 'router-id 1.1.1.1' create the OSPFv3 process, then 'ipv6 ospf 100 area 0' under each interface enables OSPFv3 on those interfaces.

Similar commands on R2 with a unique router-id complete the configuration. Verification with 'show ospfv3 neighbor' should show R2's router-id, and 'show ipv6 route ospf' should display the remote loopback network.

Exam trap

The most common trap is using OSPFv2-style 'network' commands for OSPFv3. Remember that OSPFv3 uses interface-level configuration. Also, ensure all interfaces that need to be advertised (including loopbacks) have OSPFv3 enabled, and that router-ids are unique.

Why the other options are wrong

B

The specific factual error is that OSPFv3 uses interface-level configuration, not network statements like OSPFv2 for IPv4.

C

The specific factual error is that OSPFv3 must be enabled on all interfaces that should participate in the routing process, including loopback interfaces.

D

The specific factual error is that OSPF router-ids must be unique. Using the same router-id on both routers prevents proper neighbor formation.

75
MCQhard

Two routers are directly connected and running OSPF. Their IP addresses and hello timers match, but they still do not become neighbors. One side is configured for area 0 and the other for area 1 on the shared link. What is the most likely cause?

A.The interfaces are in different OSPF areas on the shared link.
B.The routers need identical hostnames.
C.The link must be converted to a trunk.
D.The routers must use static routes first.
AnswerA

This is correct because OSPF neighbors on the same segment must agree on the area.

Why this answer

An OSPF area mismatch is the most likely cause. In plain language, the routers may be physically connected and able to exchange packets, but OSPF still requires that both sides agree on the area associated with the shared segment. If one interface belongs to area 0 and the other belongs to area 1, the routers do not view the segment in the same OSPF context and the adjacency fails.

This is a classic CCNA troubleshooting case because the addressing can look perfect while the protocol still refuses to form a neighbor relationship. OSPF is strict about several interface-level values, and the area assignment is one of the most important.

Exam trap

A frequent exam trap is assuming that matching IP addresses and hello timers alone guarantee OSPF adjacency. Candidates often overlook the OSPF area configuration, which must be identical on both sides of a shared link. This mistake leads to confusion because the routers appear connected and can exchange packets, but OSPF adjacency never forms.

The trap is focusing on interface parameters like timers or IP addressing while ignoring the fundamental requirement that both interfaces must belong to the same OSPF area to establish neighbor relationships.

Why the other options are wrong

B

This option is incorrect because router hostnames do not affect OSPF neighbor relationships. OSPF adjacency depends on interface-level parameters, not device names, so identical hostnames are not required.

C

This option is incorrect because converting the link to a trunk is irrelevant for OSPF adjacency on routed interfaces. OSPF operates on Layer 3 interfaces, and trunking is a Layer 2 concept used for VLAN tagging, not required for OSPF neighbor formation.

D

This option is incorrect because static routes are not necessary for OSPF adjacency. OSPF dynamically discovers neighbors and exchanges routing information without requiring preconfigured static routes.

Page 1 of 5 · 344 questions totalNext →

Ready to test yourself?

Try a timed practice session using only IP Routing questions.