Courseiva

CCNA 200-301 v2 (200-301) — Questions 226300

1389 questions total · 19pages · All types, answers revealed

Page 3

Page 4 of 19

Page 5
226
PBQhard

You are troubleshooting a client connectivity issue on PC1, which is connected to switch SW1. PC1 reports that it cannot access the internet, but it can ping its default gateway (192.168.1.1). The network uses VLAN 10 for the client subnet. Examine the following show outputs: On PC1, ipconfig shows IP 192.168.1.10, default gateway 192.168.1.1, DNS server 192.168.1.1. On SW1, show running-config includes 'interface Vlan10' with IP 192.168.1.1 255.255.255.0, but no 'ip dns server' and no 'ip name-server' commands. SW1's show ip route displays a default route via 203.0.113.1. Identify the root cause. Configure the necessary fix on the appropriate device to restore full connectivity.

Network Topology
G0/1G0/1203.0.113.1/30203.0.113.1/30PC1SW1RouterInternet

Hints

  • Check DNS configuration on the switch.
  • The PC's DNS server is likely the default gateway (switch).
  • The switch needs to be configured to forward DNS queries.
A.Configure 'ip dns server' and 'ip name-server 8.8.8.8' on SW1.
B.Configure 'ip default-gateway 192.168.1.1' on SW1.
C.Configure 'ip route 0.0.0.0 0.0.0.0 203.0.113.1' on SW1.
D.Configure 'ip domain-lookup' on SW1.
AnswerA
solution
! SW1
ip name-server 8.8.8.8

Why this answer

PC1 is configured with DNS server 192.168.1.1, which is the switch SW1. However, SW1 lacks DNS forwarding capability. To enable DNS relay on the switch, both the 'ip dns server' command (to activate the DNS forwarder) and 'ip name-server 8.8.8.8' (to point to an upstream resolver) are required.

Option A provides the necessary configuration to restore DNS resolution and internet connectivity.

Exam trap

Do not assume that internet connectivity issues are always routing problems. When a client can ping the gateway but cannot access websites, the issue is often DNS. Also, remember that 'ip name-server' configures DNS servers, while 'ip domain-lookup' only enables the DNS client feature.

Why the other options are wrong

B

A default gateway is needed only for management traffic from the switch itself, not for DNS forwarding; the switch already communicates with the router via its default route.

C

A static default route is already present and unrelated to DNS resolution; adding another route would not solve the name resolution failure.

D

The 'ip domain-lookup' command only enables the DNS client on the switch itself, not DNS forwarding for clients like PC1.

Why candidates pick the wrong answer

B

Candidates might confuse 'ip default-gateway' with a default route or think that the gateway is missing because PC1 cannot reach the internet, but PC1 can ping the gateway, so the gateway is reachable.

C

Candidates often assume that internet connectivity issues are always due to missing default routes, especially when the client can ping the gateway but not the internet. However, PC1 can ping the gateway, so routing is likely fine.

D

Candidates might think that enabling DNS lookup is sufficient, but without a server address, the switch cannot forward queries. This command alone does not fix client DNS resolution.

227
MCQhard

After securing a switch by running 'ip ssh version 2' and generating RSA keys with 'crypto key generate rsa modulus 1024', remote SSH connections fail with a 'key exchange error'. A check of the SSH client’s documentation reveals it requires a minimum 2048-bit RSA key for SSH version 2. What should the technician do next?

A.Verify IP connectivity between the client and the switch by issuing a ping from the client to the switch.
B.Check the SSH client configuration on the host to ensure it accepts 1024-bit keys.
C.Regenerate the RSA key pair on the switch with a 2048-bit modulus using the command 'crypto key generate rsa modulus 2048'.
D.Disable SSH version 2 on the switch and revert to SSH version 1, which does not enforce key length restrictions.
AnswerC

Regenerating the key pair with a higher modulus directly resolves the key-strength mismatch. The switch will then present a 2048-bit key during the SSH handshake, fixing the key exchange error. The existing 'ip ssh version 2' setting remains active after rekeying.

Why this answer

The error is caused by the SSH client requiring a minimum 2048-bit RSA key for SSH version 2, but the switch was configured with a 1024-bit key. The correct solution is to regenerate the RSA key pair with a 2048-bit modulus using 'crypto key generate rsa modulus 2048', which satisfies the client's security requirement and allows SSH version 2 to establish a secure connection.

Exam trap

Cisco often tests the misconception that any SSH connection failure is a connectivity or configuration issue, when in fact it is a cryptographic key length mismatch that requires regenerating the RSA key pair with a larger modulus.

Why the other options are wrong

A

Assuming that a connection failure always starts at Layer 1 or 3, ignoring the specific error message that points to an application-layer mismatch.

B

Misplaced troubleshooting – attempting to relax security instead of fixing the server’s key size to meet the documented standard.

D

Drastic and insecure step that misdiagnoses the root cause; the issue is key size, not protocol version.

228
MCQhard

A router allows SSH management from anywhere on the internal network. A new policy requires that only the management subnet 10.50.50.0/24 be allowed to initiate SSH to the device. Which approach best enforces that requirement?

A.Restrict SSH access so only the 10.50.50.0/24 management subnet is permitted
B.Replace SSH with Telnet so the traffic is easier to identify
C.Enable PortFast on all access switches
D.Raise the Syslog severity threshold
AnswerA

Restricting SSH access to only the 10.50.50.0/24 management subnet is the correct action because it applies a standard access control list (ACL) on the VTY lines or a control-plane ACL, limiting which source IP addresses can initiate SSH sessions. This directly addresses the router's exposure by shrinking the attack surface to a dedicated, trusted management network, while still allowing authorized engineers to administer the device securely. Other measures like changing protocols or enabling switch features do not constrain the SSH source in any way, so this is the only option that implements the stated policy of source-based restriction.

Why this answer

The best approach is to use an access control mechanism that limits SSH access to the approved source subnet. In practical terms, SSH is the correct secure protocol, but protocol choice alone is not enough. The device should also restrict who is allowed to reach that management service. That usually means applying an ACL or equivalent source restriction focused on the management subnet.

This is a common management-plane security pattern: use a secure protocol, then limit the set of trusted sources that are allowed to use it.

Exam trap

A frequent exam trap is selecting an option that changes the management protocol, such as replacing SSH with Telnet, because it seems to simplify access control. However, Telnet is insecure as it transmits data in clear text, exposing credentials to interception. Another trap is choosing unrelated features like PortFast or syslog severity thresholds, which do not control access to management services.

Candidates may also overlook the need to apply an ACL to restrict source IPs, mistakenly believing that enabling SSH alone enforces the policy. This misunderstanding leads to incomplete security configurations that fail the requirement to limit SSH access to the management subnet.

Why the other options are wrong

B

Incorrect because replacing SSH with Telnet reduces security by transmitting data unencrypted, exposing credentials and management traffic to interception, which violates best practices and the policy’s intent to secure management access.

C

Incorrect because enabling PortFast affects Spanning Tree Protocol port states to speed up network convergence and does not provide any control over router management access or SSH session initiation.

D

Incorrect because raising the syslog severity threshold only changes the level of logged messages and does not restrict or control which hosts can initiate SSH connections to the router.

When would these options actually be correct?

B

In a different scenario where the exam question asks about simplifying network traffic analysis for a legacy system that only supports Telnet, replacing SSH with Telnet could be considered correct if the focus is on identifying and monitoring traffic rather than security.

C

If the question asked about optimizing switch port performance during network convergence or reducing the time for devices to connect to the network, enabling PortFast could be the correct answer, as it helps improve efficiency in such scenarios.

D

If the question asked about improving log management and reducing the volume of log messages generated by SSH access attempts, raising the Syslog severity threshold could be the correct answer. This would be appropriate in a scenario focused on log management rather than access control.

Why candidates pick the wrong answer

B

Students might think that Telnet is simpler to filter because it uses a well-known port (23), but they overlook the critical security disadvantage. The question focuses on restricting access, not on ease of identification.

C

PortFast is a common Cisco feature that students learn about, and they might confuse it with security features like port security or access lists. The name 'PortFast' might be misassociated with 'fast access control'.

D

Students might think that raising the severity threshold reduces logging and thus 'hides' management traffic, but this does not enforce access control. They may confuse logging with access filtering.

229
PBQhard

You are connected to SW1 via the console. The network uses Rapid-PVST+ and you need to ensure that SW1 becomes the root bridge for VLAN 10 and VLAN 20. Additionally, configure PortFast and BPDU Guard on interface GigabitEthernet0/1, which connects to a workstation. After configuration, the workstation is moved and the port goes err-disabled. Diagnose the cause and recover the port without reloading the switch.

Network Topology
Gi0/1Gi0/2SW1workstationother switch

Hints

  • Use 'spanning-tree vlan <vlan> priority <value>' to set root bridge priority (lower values are preferred).
  • A port in err-disabled due to BPDU Guard must be manually recovered with 'shutdown' and 'no shutdown' after removing the BPDU source.
  • Check which VLANs the switch is currently root for using 'show spanning-tree'.
A.Configure spanning-tree vlan 10 priority 4096 and spanning-tree vlan 20 priority 4096. Then on interface GigabitEthernet0/1, configure spanning-tree portfast and spanning-tree bpduguard enable. After removing the BPDU source, use 'shutdown' and 'no shutdown' to recover the port.
B.Configure spanning-tree vlan 10,20 root primary and spanning-tree portfast on Gi0/1; then use 'errdisable recovery cause bpduguard' to automatically recover the port.
C.Configure spanning-tree vlan 10,20 priority 0 and spanning-tree bpduguard enable on Gi0/1; then use 'no spanning-tree bpduguard' to recover the port.
D.Configure spanning-tree vlan 10,20 priority 4096 and spanning-tree portfast on Gi0/1; then use 'clear spanning-tree detected-protocols' to recover the port.
AnswerA
solution
! SW1
spanning-tree vlan 10 priority 4096
spanning-tree vlan 20 priority 4096
interface GigabitEthernet0/1
shutdown
no shutdown

Why this answer

SW1 is currently the root for VLAN 10 but not for VLAN 20. To become root for both VLANs, set the spanning-tree priority to a lower value (e.g., 4096) for each VLAN. The port Gi0/1 went err-disabled because it received a BPDU, which is unexpected on a PortFast edge port with BPDU Guard enabled.

To recover, first identify and remove the BPDU source (likely another switch connected to that port), then use 'shutdown' followed by 'no shutdown' on the interface to bring it back up.

Exam trap

Do not confuse 'root primary' with a guaranteed root election; always check for lower priorities. Also, remember that err-disabled ports require manual intervention (shutdown/no shutdown) unless you configure errdisable recovery. BPDU Guard err-disables the port; simply disabling BPDU Guard does not recover it.

Why the other options are wrong

B

The 'root primary' command does not guarantee root status if another switch has a priority lower than 24576. The question expects manual recovery, not automatic.

C

Priority 0 is not incorrect but is not the standard recommendation. The recovery method is wrong: disabling BPDU Guard does not clear the err-disabled state.

D

The command 'clear spanning-tree detected-protocols' does not clear the err-disabled state; it only resets the port's protocol state.

Why candidates pick the wrong answer

B

Candidates may think 'root primary' is a guaranteed method and that 'errdisable recovery' is the standard way to recover err-disabled ports.

C

Candidates might think that setting the lowest priority (0) is best and that removing the guard will fix the issue.

D

Candidates may confuse this command with recovery commands or think it resets the port's error condition.

230
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.

231
MCQhard

A network technician is troubleshooting a connectivity issue for a PC connected to switch port Gi1/0/12. The PC can ping its default gateway (192.168.10.1) but cannot ping a server at 192.168.20.10. The switch is configured with VLAN 10 for the access port and is connected to a router-on-a-stick. The technician runs 'show vlan brief' and 'show interfaces trunk' on the switch. What is the most likely cause of the problem?

A.The trunk port Gi1/0/24 is not in trunking mode.
B.The router is missing a subinterface for VLAN 20.
C.The switch port Gi1/0/12 is not assigned to VLAN 10.
D.The PC has a duplicate IP address with the server.
AnswerB

This is the correct answer because the router is configured for router-on-a-stick inter-VLAN routing but only has a subinterface for VLAN 10. Since the router lacks a subinterface with the appropriate 802.1Q encapsulation and an IP address in the VLAN 20 subnet, it simply drops or ignores VLAN 20 frames arriving over the trunk. Even though the switch and trunk are configured correctly, VLAN 20 hosts have no default gateway on the router and therefore cannot route traffic to VLAN 10 or any other network.

Why this answer

The PC can ping its default gateway (192.168.10.1) but not the server at 192.168.20.10, indicating Layer 3 routing is failing between VLANs. Since the switch is configured with VLAN 10 for the access port and uses a router-on-a-stick, the router must have a subinterface for VLAN 20 to route traffic to the server's subnet. The absence of a subinterface for VLAN 20 prevents the router from forwarding packets from VLAN 10 to VLAN 20, making option B correct.

Exam trap

Cisco often tests the misconception that a trunk misconfiguration (option A) is the cause, but the PC's ability to ping the gateway confirms the trunk is working for VLAN 10, so the real issue is the missing subinterface for the destination VLAN.

Why the other options are wrong

A

The trunk port Gi1/0/24 is in 'on' mode and trunking, as shown in 'show interfaces trunk'. Therefore, the trunk is operational and not the cause of the issue.

C

The 'show vlan brief' output shows that port Gi1/0/12 is assigned to VLAN 10, so the PC is in the correct VLAN. This is not the issue.

D

A duplicate IP address would cause connectivity issues to the gateway as well, but the PC can ping the gateway successfully. Therefore, duplicate IP is not the problem.

Why candidates pick the wrong answer

A

Students might assume that trunk ports need to be manually configured as trunks, but the output confirms it is already trunking. They may overlook the verification step.

C

Students may suspect a VLAN assignment error because the PC cannot reach the server, but the output confirms correct assignment. They might not check the output carefully.

D

Students might think duplicate IP could cause intermittent issues, but the symptom of being able to ping the gateway rules it out. They may not consider that duplicate IP would affect all communication.

232
Multi-Selectmedium

Which TWO statements correctly describe EtherChannel configuration and verification with LACP?

Select 2 answers
A.LACP uses the modes 'active' and 'passive' to negotiate an EtherChannel.
B.LACP uses the modes 'desirable' and 'auto' to negotiate an EtherChannel.
C.The command 'show etherchannel summary' displays the status of each port-channel as SU (in use) or SD (shutdown).
D.The command 'show etherchannel summary' displays the status of each port-channel as UP or DOWN.
E.LACP 'active' mode can only form an EtherChannel with another interface in 'active' mode.
AnswersA, C

LACP's negotiation uses 'active' and 'passive' modes: an interface in active mode sends LACP PDUs to initiate channel formation, while a passive interface only replies when it receives those PDUs. A working EtherChannel requires at least one side to be active, since two passive interfaces will never begin negotiation. This is analogous to PAgP's desirable/auto pair but is standardized under IEEE 802.3ad.

Why this answer

LACP (IEEE 802.3ad) defines two negotiation modes: 'active' (sends LACP frames and initiates negotiation) and 'passive' (responds only to received LACP frames). An EtherChannel forms only when at least one side is in 'active' mode; two 'passive' sides will never negotiate. Option C is correct because the 'show etherchannel summary' command displays the port-channel status as 'SU' (in use, Layer 2) or 'SD' (administratively down/shutdown), not simply 'UP' or 'DOWN'.

Exam trap

Cisco often tests the distinction between LACP modes ('active'/'passive') and PAgP modes ('desirable'/'auto'), and the trap here is that candidates confuse the proprietary PAgP terms with the standards-based LACP terms, or assume 'show etherchannel summary' shows simple UP/DOWN like interface status.

Why the other options are wrong

B

The modes 'desirable' and 'auto' are used by PAgP (Cisco proprietary), not LACP. LACP uses 'active' and 'passive' modes for negotiation.

D

The 'show etherchannel summary' command does not display 'UP' or 'DOWN' in plain text; it uses two-letter codes like SU (Layer 2 up), SD (shutdown), etc. This is a common misinterpretation of the output format.

E

LACP 'active' mode can form an EtherChannel with either 'active' or 'passive' mode. If both sides are passive, the channel will not form because neither initiates negotiation.

Why candidates pick the wrong answer

B

Students often confuse LACP and PAgP modes because both are used for EtherChannel negotiation. 'Desirable' and 'auto' sound similar to 'active' and 'passive', leading to incorrect selection.

D

Test-takers may assume that the command shows simple 'UP' or 'DOWN' status because many other Cisco show commands use those terms, but EtherChannel summary uses a different coding system.

E

Students might think that both sides must be in the same mode for negotiation to succeed, similar to how some other protocols require matching modes. However, LACP allows active-passive pairing.

233
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

A static default route ::/0 is the IPv6 equivalent of 0.0.0.0/0, serving as the route of last resort. When the routing table contains no more-specific entry for a destination, the router forwards the packet to the next hop defined by this default route. This allows reachability to any IPv6 network not explicitly known, not just summarizing routes.

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.

When would these options actually be correct?

B

If the question were to ask about the configuration of OSPFv3 on a router and how it interacts with IPv6 routing, then selecting this option could be correct if it was stated that enabling OSPFv3 would automatically configure routes for IPv6 traffic on the upstream interface.

C

In a different exam scenario where the question asks about the functionality of a NAT64 device or an IPv6 transition mechanism, this option could be correct if it describes a process that translates link-local addresses for global communication. The question would need to focus on address translation mechanisms.

D

In a different exam scenario where the question asks about the benefits of route summarization in an IPv6 network, option D would be correct. For example, if the question stated, 'What is the advantage of summarizing multiple IPv6 routes into a single route?', then this option would be appropriate.

Why candidates pick the wrong answer

B

Students may confuse the IPv6 static route configuration with OSPFv3 because both involve IPv6 routing. The presence of an IPv6 address or next-hop might be mistaken for an OSPFv3 neighbor or network statement, especially if they are not familiar with the exact syntax of OSPFv3.

C

Test-takers might think that routing involves changing addresses, similar to NAT (Network Address Translation). The concept of link-local and global unicast addresses can be confusing, leading to the incorrect assumption that a default route converts between them.

D

Students may confuse the concept of a default route (::/0) with route summarization because both involve a less specific prefix. The notation ::/0 might be misinterpreted as a summary of all IPv6 routes, but summarization typically uses a prefix length that is longer than /0 and covers a contiguous block of addresses.

234
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.

When would these options actually be correct?

A

In a different scenario where the router only has the route 10.50.0.0/16 available and no more specific routes exist for the 10.50.10.0 subnet, traffic to 10.50.10.140 would use this route due to its broader coverage.

B

In a different scenario where the question specifies that the router only has the routes 10.50.0.0/16 and 10.50.10.0/24, and traffic to 10.50.10.140 is being routed without any more specific routes, option B would be correct as it would be the best match available.

D

If the question specified that the router had no specific routes for the 10.50.10.140 address and only had a default route configured, then the correct answer would be the default route. For example, 'What route will be used if the only available route is the default route?'

Why candidates pick the wrong answer

A

Students might think that because 10.50.10.140 is within the 10.50.0.0/16 range, the /16 route would be used. However, they forget that routers always prefer the most specific (longest prefix) match.

B

Students may see that 10.50.10.140 is within the 10.50.10.0/24 range and assume the /24 route is the best match, overlooking the existence of a more specific /25 route that also matches.

D

Students might think that if a destination is not explicitly listed, the default route is used. However, here there are explicit matching routes, so the default route is not applicable.

235
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

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.

Why candidates pick the wrong answer

A

Students often assume that if a ping fails, the destination network must be missing from the routing table, but here the route exists.

B

A common troubleshooting step is to check interface status, and if a student sees no obvious issue, they might incorrectly suspect the interface is down.

C

Students may confuse the absence of a specific route with a missing default route, but the default route is present here.

236
PBQhard

You are connected to a Multilayer Switch MLS1. Configure the switch so that interface GigabitEthernet1/0/1 is an access port for VLAN 10, with voice VLAN 110 for an IP phone, and enable PoE. Additionally, interface GigabitEthernet1/0/2 must be an access port for VLAN 20 to connect an AP. Verify the configuration using 'show interfaces switchport' and 'show power inline'.

Network Topology
G1/0/1G1/0/2SiMLS1IP PhoneAP

Hints

  • Use 'switchport mode access' to set the port as an access port.
  • For the IP phone port, apply both 'switchport access vlan' and 'switchport voice vlan' commands.
  • PoE is enabled by default but ensure 'power inline auto' is configured.
A.interface GigabitEthernet1/0/1 switchport mode access switchport access vlan 10 switchport voice vlan 110 power inline auto interface GigabitEthernet1/0/2 switchport mode access switchport access vlan 20
B.interface GigabitEthernet1/0/1 switchport mode trunk switchport trunk allowed vlan 10,110 power inline auto interface GigabitEthernet1/0/2 switchport mode access switchport access vlan 20
C.interface GigabitEthernet1/0/1 switchport mode access switchport access vlan 10 switchport voice vlan 110 power inline never interface GigabitEthernet1/0/2 switchport mode access switchport access vlan 20
D.interface GigabitEthernet1/0/1 switchport mode access switchport access vlan 110 switchport voice vlan 10 power inline auto interface GigabitEthernet1/0/2 switchport mode access switchport access vlan 20
AnswerA
solution
! MLS1
interface GigabitEthernet1/0/1
switchport mode access
switchport access vlan 10
switchport voice vlan 110
power inline auto
exit
interface GigabitEthernet1/0/2
switchport mode access
switchport access vlan 20
exit

Why this answer

It configures Gi1/0/1 as an access port in VLAN 10 with voice VLAN 110 and PoE enabled, and Gi1/0/2 as an access port in VLAN 20. Option B is wrong because it uses 'switchport mode trunk' instead of 'switchport mode access'. For a voice VLAN, the port should be an access port, not a trunk.

Option C is wrong because it disables PoE with 'power inline never', but the IP phone requires power. Option D is wrong because it assigns the access VLAN as 110 and voice VLAN as 10, reversing the intended roles. Verify with 'show interfaces switchport' and 'show power inline'.

Exam trap

Watch out for the difference between access and trunk ports when a voice VLAN is involved. The voice VLAN is configured on an access port, not a trunk. Also, ensure PoE is enabled (auto) and not disabled (never).

Finally, do not confuse the access VLAN with the voice VLAN.

Why the other options are wrong

B

The specific factual error is using 'switchport mode trunk' instead of 'switchport mode access'. Access ports are used for end devices like IP phones and APs, not trunks.

C

The specific factual error is using 'power inline never' which disables PoE. The correct command to enable PoE is 'power inline auto'.

D

The specific factual error is reversing the VLAN assignments: 'switchport access vlan 110' and 'switchport voice vlan 10' instead of the correct order.

Why candidates pick the wrong answer

B

Candidates might think a trunk is needed to carry both data (VLAN 10) and voice (VLAN 110), but Cisco's voice VLAN feature uses an access port with a separate voice VLAN.

C

Candidates might confuse 'never' with 'auto' or think that PoE is enabled by default and no command is needed, but explicitly disabling it is wrong.

D

Candidates might confuse which VLAN is for data and which is for voice, especially if they are not familiar with the typical voice VLAN configuration.

237
Drag & Dropmedium

Drag and drop the following steps into the correct order to describe the TCP three-way handshake process between a client and a server.

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 TCP three-way handshake begins with the client sending a SYN (A) to initiate the connection. The server replies with a SYN-ACK (B) to acknowledge the client's SYN and provide its own sequence number. Finally, the client sends an ACK (C) to confirm the server's SYN, completing the handshake.

Option D, "Server sends ACK (ack=x+1)," is not part of the three-way handshake; an ACK from the server would be redundant at this stage and actually occurs during the four-way connection termination, not establishment.

Exam trap

The most common trap is confusing the order of the handshake or thinking the server sends a plain ACK instead of a SYN-ACK. Remember: the client always initiates with SYN, the server replies with SYN-ACK, and the client finishes with ACK.

Why candidates pick the wrong answer

D

Candidates might think the server acknowledges the client's SYN with a simple ACK, but the SYN flag must also be set to establish the connection.

238
MCQhard

A host is configured with IP address 10.10.40.78/28. Which subnet contains that host?

A.10.10.40.48/28
B.10.10.40.64/28
C.10.10.40.72/28
D.10.10.40.80/28
AnswerB

With a /28 prefix length, the subnet mask is 255.255.255.240, and each subnet contains 16 addresses. The network address .64 starts the block .64–.79, where .64 is the network ID and .79 is the broadcast address. The host .78 is between these two, making it a valid host address within this subnet. Therefore, 10.10.40.64/28 is the correct network that contains .78.

Why this answer

A /28 subnet has a block size of 16. In simple terms, the fourth-octet ranges are 0–15, 16–31, 32–47, 48–63, 64–79, 80–95, and so on. Because 78 falls inside the 64–79 block, the network address for this host’s subnet is 10.10.40.64/28.

This style of subnetting question checks whether you can move from prefix length to block size and then place the host into the correct range. The common mistake is choosing the nearest familiar-looking number instead of the actual block boundary.

Exam trap

Avoid selecting a subnet range based on the nearest familiar-looking number; always calculate the correct block boundary.

Why the other options are wrong

A

The subnet 10.10.40.48/28 includes addresses 10.10.40.48 through 10.10.40.63. The host address 10.10.40.78 is outside this range, so it does not belong to this subnet.

C

The subnet 10.10.40.72/28 is not a valid subnet because /28 subnets have boundaries that are multiples of 16. The valid subnet starting addresses for /28 are 0, 16, 32, 48, 64, 80, etc. 72 is not a multiple of 16, so this is not a valid network address.

D

The subnet 10.10.40.80/28 includes addresses 10.10.40.80 through 10.10.40.95. The host address 10.10.40.78 is below this range, so it does not belong to this subnet.

When would these options actually be correct?

A

If the question asked for the subnet that includes the IP address 10.10.40.50, then option A (10.10.40.48/28) would be correct, as it would encompass the range of IPs from 10.10.40.48 to 10.10.40.63, including 10.10.40.50.

C

If the exam question asked for the subnet that includes the IP address 10.10.40.72, then option C would be correct, as it would represent the subnet containing that specific address.

D

If the question asked which subnet contains the IP address 10.10.40.80, then option D would be correct, as 10.10.40.80/28 encompasses the range from 10.10.40.80 to 10.10.40.95.

Why candidates pick the wrong answer

A

Students might mistakenly think that because 78 is close to 48, it could be in the same subnet, but they overlook the subnet boundaries defined by the /28 prefix length.

C

Students might think that any address can be a subnet start, especially if they see that 72 is close to 78, but they forget that subnet boundaries must align with the prefix length.

D

Students might confuse the host address with the network address or think that 78 is close to 80, but they fail to recognize that the subnet starts at 80, not 78.

239
Matchingmedium

Match each REST-style method to the action it most commonly represents.

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

Concepts
Matches

Retrieve information

Submit or create data

Update or replace a resource

Remove a resource

Why these pairings

REST methods are standardized: GET retrieves, POST creates, PUT replaces, PATCH partially modifies, DELETE removes, and HEAD retrieves only headers.

Exam trap

The exam often tests the distinction between PUT (full replacement) and PATCH (partial modification). Many candidates incorrectly assign PUT to 'update' and PATCH to 'replace'.

When would these options actually be correct?

B

If the question asked to match methods to actions in a non-standard API design (e.g., a legacy system where POST updates, PUT creates, PATCH deletes, DELETE replaces), this option would be correct.

C

If the exam question defined PUT as 'Update entire resource' and PATCH as 'Replace specific fields' (non-standard but possible in some contexts), or if the question asked for 'most common' actions in a system where PUT is used for updates and PATCH for full replacement.

D

If the question defined PATCH as 'Update' and PUT as 'Replace' (e.g., in a non-standard API design scenario), then D would match. For example, a question that says 'Match each method to its most common action in a system where PUT replaces entire resources and PATCH updates fields' would make D correct.

Why candidates pick the wrong answer

B

Candidates often confuse POST and PUT, mistakenly thinking POST can update and PUT can create, and may misremember PATCH and DELETE actions.

C

Candidates often confuse PUT and PATCH because both are used for modifying resources, and many APIs use PUT for updates, leading to the misconception that PUT is the standard update method.

D

Candidates often confuse PATCH and PUT because both modify resources; they may think 'Update' is a general term for PATCH, overlooking that PUT is for full replacement and PATCH for partial changes.

240
MCQmedium

A branch router has only one WAN link connected to an Ethernet handoff from the provider. Which static default route is generally the better choice?

A.ip route 0.0.0.0 0.0.0.0 GigabitEthernet0/0
B.ip route 0.0.0.0 0.0.0.0 198.51.100.1
C.ip route 255.255.255.255 255.255.255.255 198.51.100.1
D.No static default route should ever be used on Ethernet.
AnswerB

This command installs a default route (0.0.0.0/0) with a next-hop IP of 198.51.100.1. On an Ethernet multiaccess link, specifying the next-hop address is preferable because the router will ARP for that specific gateway and use the resolved MAC as the frame destination, while also tracking reachability via ARP. This approach avoids relying solely on the interface being up and works cleanly on provider Ethernet handoffs, where the next-hop is a known device.

Why this answer

On multiaccess Ethernet, pointing the default route to a next-hop IP address is usually cleaner because the router can resolve the next hop with ARP. Using only the exit interface on Ethernet can make the router treat many destinations as directly connected and trigger unnecessary ARP behavior.

Exam trap

A common exam trap is selecting a static default route that specifies only the exit Ethernet interface without a next-hop IP address. While this configuration can work, it causes the router to treat all unknown destinations as directly connected on the Ethernet segment. This behavior triggers excessive ARP requests for every unknown IP address, leading to network inefficiency and potential delays.

Candidates might incorrectly assume that specifying the interface alone is sufficient, but on multiaccess Ethernet links, this is suboptimal and can cause routing issues.

Why the other options are wrong

A

Configuring 'ip route 0.0.0.0 0.0.0.0 GigabitEthernet0/0' specifies only the exit interface. On multiaccess Ethernet, this causes the router to ARP for every unknown destination, which is inefficient and less ideal.

C

Configuring 'ip route 255.255.255.255 255.255.255.255 198.51.100.1' creates a host route, which matches only one IP address, not all unknown destinations. Therefore, it is not a valid default route.

D

The statement that no static default route should ever be used on Ethernet is incorrect. Static default routes are valid and commonly used on Ethernet interfaces, especially for WAN links.

When would these options actually be correct?

A

In a different scenario where a router has multiple WAN links and the question asks for a static route to be configured for a specific interface, option A could be correct if the interface is indeed the exit point for traffic. For example, if the question specifies routing traffic out of a specific GigabitEthernet interface without a defined next-hop IP.

C

In a scenario where a router needs to direct traffic specifically to a single host IP address (e.g., a management server) rather than a default route, the command 'ip route 255.255.255.255 255.255.255.255 198.51.100.1' would be appropriate for routing traffic intended only for that host.

D

In a scenario where the question specifies that a router is connected to multiple WAN links, and the requirement is to ensure no static routes are used for redundancy or load balancing, option D could be correct. This would imply that dynamic routing protocols are preferred for managing multiple paths.

Why candidates pick the wrong answer

A

Students often think specifying the exit interface is simpler and sufficient, especially when the router has only one WAN link. They may confuse this with point-to-point links where interface-only static routes are appropriate.

C

Students might mistakenly think that using all 255s in the destination and mask represents a default route, confusing it with the concept of 'any' or 'all' networks. This is a common misconfiguration due to misunderstanding of IP addressing.

D

Some students may believe that dynamic routing protocols are always required on Ethernet links, or they may confuse Ethernet with non-broadcast multiaccess (NBMA) networks where static routes can be problematic. This option is an overgeneralization.

241
MCQhard

A named standard ACL is configured to permit only the 192.168.30.0/24 subnet, but users from 192.168.31.0/24 are still passing traffic. What is the most likely reason?

A.Standard ACLs cannot match source addresses
B.The ACL is probably applied in the wrong place or direction for the traffic flow
C.Named ACLs ignore wildcard masks
D.The deny any line must appear before the permit
AnswerB

Standard ACLs match only the source IP address, so they cannot safely filter based on destination or service. Placement and direction are therefore crucial: if the ACL is applied on the wrong interface or in the wrong inbound/outbound direction, the permit statement will never be evaluated against the traffic it is meant to allow. A common mistake is applying a standard ACL too close to the source, where it may block transit traffic, or on the wrong interface, so the intended packets bypass the filter entirely.

Why this answer

Standard ACLs filter traffic based solely on the source IP address. If users from 192.168.31.0/24 are still passing traffic despite the ACL permitting only 192.168.30.0/24, the most likely reason is that the ACL is applied in the wrong place or direction. For example, if the ACL is applied inbound on an interface where traffic from 192.168.31.0/24 does not enter, or outbound on an interface where the traffic does not exit, the filter will not affect the intended flow.

The implicit deny statement denies all unmatched traffic, so if the ACL were correctly placed, traffic from 192.168.31.0/24 would be denied.

Exam trap

Remember that ACLs must be applied in the correct direction to affect traffic flow as intended.

Why the other options are wrong

A

Standard ACLs can match source addresses; they just cannot match destination addresses or port numbers. The question states the ACL is configured to permit only 192.168.30.0/24, so it is correctly matching the source.

C

Named ACLs do support wildcard masks; the wildcard mask is required when specifying the source network in both standard and extended ACLs.

D

In a standard ACL, the implicit deny any is already at the end, so adding an explicit 'deny any' before the permit would block all traffic, including the intended subnet. The correct order is permit first, then deny any is unnecessary.

When would these options actually be correct?

A

A question that asks 'Which type of ACL cannot filter based on destination IP address?' would make this correct, as standard ACLs only match source addresses.

C

In a question about IPv6 ACLs, where named ACLs use prefix-length instead of wildcard masks, a candidate might mistakenly think wildcard masks are ignored for IPv4 named ACLs.

D

In an extended ACL scenario where you want to explicitly deny all traffic after permitting specific traffic, placing 'deny any' before the permit would be incorrect; but if the question asked about the order of ACEs in a named ACL where the implicit deny is overridden, you might need to add 'deny any' at the end to ensure all other traffic is denied.

Why candidates pick the wrong answer

A

Candidates may confuse standard ACLs with extended ACLs, thinking standard ACLs cannot match any IP address, or they may misremember the capabilities of standard ACLs.

C

Candidates may confuse named ACLs with other features that don't use wildcard masks (e.g., prefix lists) or misunderstand that the 'ip access-list standard' command still requires a wildcard mask.

D

Candidates often confuse the implicit deny any rule and think they must explicitly add it, or they misremember ACL processing order, believing that deny statements must come before permit statements.

242
MCQhard

A company wants to reduce the chance that unused switch ports can be exploited. Which action best aligns with that goal?

A.Administratively shut down unused switch ports
B.Convert all unused ports into trunk ports
C.Enable Telnet on all unused ports
D.Advertise every unused port into OSPF
AnswerA

Administratively shutting down unused switch ports places the interface in an administratively disabled state (shutdown), which prevents the port from sending or receiving any frames and precludes any dynamic negotiation such as DTP or CDP. This reduces the attack surface by ensuring no rogue device connected to a wall jack or patch panel can gain Layer 2 connectivity, and it is a fundamental hardening measure prescribed by Cisco and industry frameworks like CIS Controls. For maximum effect, use the 'interface range' command to apply shutdown consistently across all unused ports.

Why this answer

The best action is to administratively disable unused ports and apply hardening where appropriate. In plain language, an unused port is still a possible entry point if it remains active and unmonitored. Shutting it down reduces exposure and aligns with the broader principle of minimizing unnecessary attack surface. This is a simple but effective part of switch hardening.

Leaving unused ports active may feel convenient, but it creates opportunities for unauthorized connections. The correct answer is the one focused on disabling resources that are not needed rather than on unrelated technologies.

Exam trap

A frequent exam trap is selecting options that involve enabling protocols or configurations unrelated to physical port security, such as enabling Telnet or advertising ports in OSPF. These options may seem to increase control or visibility but do not reduce the risk of unauthorized access through unused switch ports. Another trap is converting unused ports into trunk ports, which actually increases exposure by allowing multiple VLANs to traverse ports that should be inactive.

The key mistake is confusing Layer 2 port hardening with Layer 3 routing or management protocol configurations, which do not address the fundamental risk of an active but unused physical port.

Why the other options are wrong

B

Converting unused ports into trunk ports is incorrect because it increases network exposure by allowing multiple VLANs on ports that should remain inactive, thereby expanding potential attack vectors.

C

Enabling Telnet on all unused ports is wrong as Telnet is an insecure management protocol that does not address physical port security and can expose the network to interception and unauthorized access.

D

Advertising every unused port into OSPF is irrelevant because OSPF is a Layer 3 routing protocol that does not manage or secure Layer 2 switch ports, so it does not reduce exploitation risk.

When would these options actually be correct?

B

If the question were about optimizing network performance and ensuring that multiple VLANs can communicate over unused ports, converting them to trunk ports would be appropriate. This would apply in a scenario where the company is looking to utilize all switch ports efficiently rather than securing them.

C

If the exam question asked about enabling remote management on specific ports for monitoring purposes, and if those ports were secured and actively monitored, then enabling Telnet could be considered appropriate in that context.

D

In a scenario where the question asks how to ensure that all network interfaces, including unused ones, are included in OSPF for monitoring purposes, advertising unused ports could be correct. This would be relevant in a context where visibility into all interfaces is prioritized over security concerns.

Why candidates pick the wrong answer

B

Students might think trunking is a way to 'secure' ports by limiting them to a specific role, but trunk ports are actually more complex and vulnerable if not properly secured.

C

Some might confuse Telnet with SSH or think that enabling a management protocol on ports provides some form of control, but Telnet is outdated and insecure.

D

Students may associate OSPF with network security features like authentication, but OSPF advertisement is unrelated to switch port hardening.

243
MCQhard

A network technician notices CDP native VLAN mismatch warnings between switches SW1 and SW2 on their trunk link. The technician runs 'show interfaces trunk' on SW1 and sees native VLAN 1, then on SW2 and sees native VLAN 99. Data traffic is currently passing, but the mismatch can cause broadcast loops. What should the technician do next?

A.Add VLAN 99 to the allowed VLAN list on the trunk interface of SW1.
B.Remove the trunk configuration and set both interfaces as access ports in VLAN 1.
C.Enable spanning‑tree PortFast on the trunk ports.
D.Configure the native VLAN to match on both ends of the trunk.
AnswerD

The root cause is a configured native VLAN mismatch (1 vs 99). Changing one switch’s native VLAN to match the other (or setting both to a common VLAN) immediately resolves the CDP warning and eliminates the potential for broadcast loops caused by the mismatch. This is the most direct and least disruptive next step.

Why this answer

The correct action is to configure the native VLAN to match on both ends of the trunk. CDP reports a native VLAN mismatch when the native VLANs differ on the two sides of a trunk link. Although data traffic may still pass because 802.1Q does not tag frames on the native VLAN, the mismatch can cause broadcast loops and security risks, as frames from one native VLAN may be misinterpreted on the other side.

Setting both sides to the same native VLAN (e.g., VLAN 1 or VLAN 99) resolves the mismatch and ensures proper Layer 2 behavior.

Exam trap

Cisco often tests the misconception that data traffic passing means the configuration is fine, but the trap here is that the native VLAN mismatch can still cause serious issues like broadcast loops and security vulnerabilities, even if user data appears to work.

Why the other options are wrong

A

Common misconception: the warning message implies a VLAN is not allowed, but native VLAN mismatch means the trunk ports disagree on the native VLAN, not that a VLAN is missing from the allowed list.

B

Over‑reaction: candidates might think a trunk problem requires eliminating the trunk, but the correct approach is to correct the native VLAN parameter on the existing trunk.

C

Wrong feature: PortFast addresses access port convergence, not VLAN mismatches. Candidates may reach for any familiar command, but it targets the wrong layer and port type.

244
MCQhard

A host is configured with 192.168.60.33/26. Which address is the network address of its subnet?

A.192.168.60.0
B.192.168.60.32
C.192.168.60.64
D.192.168.60.63
AnswerA

The /26 prefix length corresponds to a 255.255.255.192 subnet mask, dividing the fourth octet into blocks of 64 addresses. Since the host address 192.168.60.33 falls within the range 0 through 63, the network address for this block is 192.168.60.0, where all host bits are zero. Valid /26 network boundaries occur at multiples of 64: .0, .64, .128, and .192, so .0 is the only correct network address for this host.

Why this answer

A /26 uses blocks of 64 addresses. In practical terms, the fourth-octet ranges are 0–63, 64–127, 128–191, and 192–255. Since 33 falls within the 0–63 block, the network address is 192.168.60.0.

This is a straightforward boundary-identification question, but it catches people who memorize masks without understanding block sizes. The right approach is to find the correct block first, then take the first address in that block as the network address.

Exam trap

Avoid confusing the first usable host address with the network address. Always identify the block range first.

Why the other options are wrong

B

The /26 subnet mask has a block size of 64, not 32. The network addresses for /26 are 0, 64, 128, and 192. 192.168.60.32 is not a valid network address because it is not a multiple of 64.

C

192.168.60.64 is the network address of the next /26 subnet (64–127). The host address 192.168.60.33 belongs to the 0–63 range, not the 64–127 range.

D

192.168.60.63 is the broadcast address of the 192.168.60.0/26 subnet, not the network address. The network address is always the first address in the subnet (all host bits set to 0).

When would these options actually be correct?

B

If the question asked for the first usable IP address in the subnet for 192.168.60.33/26, then option B (192.168.60.32) would be the correct answer, as it is the first address available for hosts in that subnet.

C

If the question asked for the network address of a subnet defined by a host IP of 192.168.60.65 with a subnet mask of /26, then option C (192.168.60.64) would be the correct answer, as it would represent the network address for that subnet.

D

If the question asked for the broadcast address of the subnet containing the host 192.168.60.33/26, then 192.168.60.63 would be the correct answer, as it represents the highest address in that subnet range.

Why candidates pick the wrong answer

B

Students often confuse /26 with /27, which has a block size of 32. Since 192.168.60.32 is a valid network address for a /27 subnet, they might mistakenly apply the same logic to a /26.

C

A test-taker might incorrectly calculate the subnet boundary by rounding up to the next multiple of 64, forgetting that the network address is the first address of the range containing the host.

D

Students sometimes confuse the broadcast address (last address) with the network address (first address), especially when the broadcast address ends in .63, which is close to the host address .33.

245
Multi-Selectmedium

Which TWO statements accurately describe the use of packet capture tools for troubleshooting Layer 2/3 issues?

Select 2 answers
A.A packet capture that shows ARP requests with no ARP replies indicates a Layer 3 routing issue.
B.A packet capture that shows frames with the same source and destination MAC addresses but different 802.1Q VLAN tags indicates a possible trunk misconfiguration.
C.A packet capture that shows ICMP echo requests but no echo replies confirms a Layer 2 switching loop.
D.A packet capture that shows ICMP echo requests leaving a router but no echo replies returning suggests a Layer 3 routing problem.
E.A packet capture that shows TCP SYN packets with no SYN-ACK replies indicates a Layer 1 physical issue.
AnswersB, D

Normal trunking behavior requires consistent 802.1Q tags for frames between the same source and destination MAC addresses along a given path. If captures show identical MAC pairs with differing VLAN tags, the switchports are likely mismatched—for example, one side has the VLAN removed from the allowed list, or native VLAN settings are inconsistent. This misconfiguration causes frames to be placed on the wrong VLAN or dropped entirely, leading to connectivity failures and possible inter-VLAN leakage.

Why this answer

Frames with identical source and destination MAC addresses but different 802.1Q VLAN tags indicate the same device is reachable on multiple VLANs, which commonly results from a misconfigured trunk (e.g., native VLAN mismatch or inconsistent allowed VLAN lists). Option D is correct because seeing ICMP echo requests leave a router but no echo replies return suggests the reply is blocked or dropped at some intermediate Layer 3 hop, pointing to a routing problem rather than a Layer 2 issue. Option A is wrong: ARP requests without replies point to a Layer 2 problem (e.g., unreachable destination or filtering), not a Layer 3 routing issue.

Option C is wrong: ICMP echo requests without replies could have many causes (ACLs, firewalls, routing) – a switching loop would typically generate excessive broadcasts, not just missing replies. Option E is wrong: TCP SYN without SYN-ACK typically indicates a Layer 4 filtering or unreachable server issue, or possibly a Layer 3 routing problem, not a pure Layer 1 physical fault.

Exam trap

Cisco often tests the distinction between Layer 2 and Layer 3 troubleshooting by making candidates incorrectly attribute ARP failures to Layer 3 routing issues, when ARP is strictly a Layer 2 protocol used for MAC address resolution within the same subnet.

Why the other options are wrong

A

ARP operates at Layer 2 (Data Link layer) and is used to resolve IP addresses to MAC addresses. A lack of ARP replies indicates a Layer 2 connectivity issue, such as a misconfigured VLAN, incorrect cabling, or a switch port problem, not a Layer 3 routing issue.

C

ICMP echo requests without replies typically indicate a Layer 3 issue, such as no route back to the source, or a firewall blocking the replies. Layer 2 loops cause broadcast storms, duplicate frames, and MAC address flapping, not a simple lack of ICMP replies.

E

TCP SYN packets without SYN-ACK replies often indicate a firewall blocking the connection, a service not listening on the destination port, or a Layer 4-7 issue. Layer 1 physical issues would typically result in no packets being received at all, not just missing SYN-ACKs.

Why candidates pick the wrong answer

A

Students may confuse ARP with routing protocols or think that ARP is part of IP (Layer 3), leading them to incorrectly associate ARP failures with routing problems.

C

Students may think that any connectivity issue is due to a loop, especially when they hear 'no replies' and associate it with network problems. However, loops manifest differently in packet captures.

E

Students may assume that any lack of response is due to a physical problem, but TCP handshake failures are more commonly caused by higher-layer issues like access control lists or server configuration.

246
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.

Why candidates pick the wrong answer

B

Candidates may think that any static route works as a backup, but without a higher AD, both routes are active simultaneously.

C

Candidates might think a higher AD is always better, but the question specifies a particular value.

D

Candidates may forget to specify the AD, assuming the route will automatically be a backup, but without a higher AD, it is not a floating route.

247
Multi-Selectmedium

Which three statements are true about the operation of Dynamic Host Configuration Protocol (DHCP) in an enterprise network? (Choose three.)

Select 3 answers
.A DHCP client sends a DHCPDISCOVER message as a broadcast to locate a DHCP server.
.A DHCP server uses the client's MAC address to uniquely identify and assign an IP address.
.DHCP options, such as default gateway and DNS server, are included in DHCPOFFER and DHCPACK messages.
.A DHCP relay agent is required only if the client and server are on the same subnet.
.The DHCPREQUEST message is always sent as a unicast directly to the DHCP server.
.DHCP ensures that IP addresses are permanently assigned and never expire.

Why this answer

The DHCP client sends a DHCPDISCOVER message as a broadcast (destination IP 255.255.255.255) because it does not yet know the IP address of any DHCP server. The server uses the client's MAC address (from the CHADDR field) to uniquely identify the client and assign an IP address. DHCP options like default gateway and DNS server are carried in the DHCPOFFER and DHCPACK messages as part of the Options field, allowing the server to provide essential network configuration parameters.

Exam trap

Cisco often tests the misconception that DHCPREQUEST is always unicast, but in the initial DORA exchange, it is broadcast until the client receives an ACK and configures its IP; the trap here is confusing the renewal process with the initial lease acquisition.

248
PBQhard

You are troubleshooting a wireless client connectivity issue on the Cisco WLC at 192.168.1.100. The client reports it can see the SSID 'CorpNet' and successfully associates, but cannot obtain an IP address or reach network resources. The WLAN is already configured with WPA3 security, and the SSID should remain hidden. Identify and correct the configuration issue.

Hints

  • Check which interface the WLAN is mapped to.
  • The management interface is not meant for client data traffic.
  • Use the 'config wlan interface' command to change the binding.
A.The WLAN is mapped to the management interface. Use 'config wlan interface 1 CorpNet_VLAN' to assign the correct interface.
B.The SSID is not hidden. Use 'config wlan disable-broadcast-ssid 1 enable' to hide the SSID.
C.WPA3 is not enabled on the WLAN. Use 'config wlan security wpa akm 6 enable' to enable WPA3.
D.The WLAN is disabled. Use 'config wlan enable 1' to enable the WLAN.
AnswerA
solution
! WLC
config wlan interface 1 CorpNet_VLAN

Why this answer

The WLAN is incorrectly mapped to the management interface, which places client traffic in the management VLAN instead of the correct CorpNet_VLAN. As a result, clients cannot obtain IP addresses or communicate beyond the WLC. Reassigning the WLAN to the CorpNet_VLAN interface with 'config wlan interface 1 CorpNet_VLAN' resolves the issue by placing client data in the proper VLAN.

Exam trap

Clients seeing the SSID indicates the WLAN is enabled and broadcasting; association can complete even on the wrong interface. The actual symptom is a lack of IP connectivity, not an association failure. Always check the WLAN-to-interface mapping when clients associate but cannot reach network services.

Why the other options are wrong

B

Hiding the SSID is already satisfied; changing broadcast settings would make the SSID visible, contradicting the requirement.

C

WPA3 is already enabled on the WLAN, so there is no need to configure security. The client associates successfully, proving security is not the issue.

D

The WLAN is enabled because the client can see the SSID and associates; enabling it again would not fix the VLAN mismatch.

Why candidates pick the wrong answer

B

Candidates might pick this because they focus on the requirement to keep the SSID hidden and assume it is currently broadcast, but the client's ability to see the SSID does not mean it is broadcast; hidden SSIDs can still be seen by clients that know the SSID.

C

Candidates might pick this because the question mentions WPA3 clients, leading them to think the issue is with WPA3 configuration, but the association failure occurs at a lower layer.

D

Candidates might pick this because they assume a common issue is a disabled WLAN, but the symptom of seeing the SSID rules that out.

249
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure an LACP EtherChannel on two Cisco switches using active mode.

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

First create the logical port-channel interface and configure its properties, then assign physical interfaces to it using channel-group with active mode to initiate LACP negotiation.

Exam trap

Cisco exams often test the correct order of EtherChannel configuration: always create the port-channel interface first. Also, distinguish between LACP modes (active/passive) and PAgP modes (desirable/auto).

Why candidates pick the wrong answer

B

Candidates might think the physical interfaces are configured first because they are the actual ports, but the logical interface must be created first.

C

Candidates may confuse passive mode with active mode or think any channel-group mode works, but the question explicitly requires active mode.

D

Candidates may mix up PAgP and LACP modes, as both have similar-sounding modes (desirable vs. active).

250
Matchingmedium

Match each switching feature to its most accurate purpose.

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

Concepts
Matches

Speeds an edge port into forwarding state

Disables an edge port if a BPDU is received

Limits and controls MAC address use on a switch port

Helps block rogue DHCP behavior and build trusted bindings

Why these pairings

Which accurately pairs each switching feature with its purpose: Spanning Tree Protocol (STP) prevents loops in a switched network by blocking redundant paths; VLAN Trunking Protocol (VTP) manages the addition, deletion, and renaming of VLANs across the network; EtherChannel aggregates multiple physical links into a single logical link for increased bandwidth and redundancy; Port Security limits the number of MAC addresses allowed on a switch port to prevent unauthorized access; Dynamic Trunking Protocol (DTP) automatically negotiates trunking between switches; and Rapid PVST+ provides fast convergence for each VLAN using multiple spanning tree instances. The other options contain incorrect pairings, such as mixing up STP with VLAN management or EtherChannel with loop prevention.

Exam trap

Cisco exams often test the specific purpose of each switching feature. Common traps include confusing STP with VTP (loop prevention vs. VLAN management) or misunderstanding Rapid PVST+ as a trunk negotiation protocol.

Ensure you can differentiate each feature's role.

When would these options actually be correct?

B

This option would be correct if the question asked to match each feature to its opposite or least accurate purpose, or if the exam intentionally reversed all pairings to test knowledge of incorrect associations.

C

If the question asked to match features with incorrect purposes (e.g., 'Match each switching feature to its most inaccurate purpose'), then option C would be correct because it pairs each feature with a purpose that is the opposite of its actual function.

D

This option would be correct if the question asked to match features to incorrect purposes (e.g., 'Match each switching feature to its most inaccurate purpose'). In that case, all mappings would be intentionally wrong.

Why candidates pick the wrong answer

B

Candidates may confuse the purposes of similar-sounding features (e.g., STP and VTP both involve 'protocol' and 'VLAN' in their names) or rely on memorization without understanding each feature's specific role.

C

Candidates may confuse the roles of STP and EtherChannel (both involve redundancy), VTP and VLAN management (VTP manages VLANs, but STP is often associated with VLANs in PVST+), and DTP with trunking (DTP negotiates trunks, but Port Security is about MAC addresses).

D

Candidates may confuse the roles of STP and Rapid PVST+ (both deal with loops/convergence) and mix up VTP and Port Security (both involve VLANs/MACs), leading to a scrambled but plausible-sounding set of mismatches.

251
Multi-Selectmedium

Which two statements accurately compare SLAAC and DHCPv6?

Select 2 answers
A.SLAAC allows a host to form its own address using information from router advertisements.
B.DHCPv6 can be used to provide host configuration in a more server-driven way.
C.SLAAC requires NAT to function.
D.DHCPv6 replaces the need for router advertisements completely.
E.Neither SLAAC nor DHCPv6 can provide any addressing information to hosts.
AnswersA, B

SLAAC (Stateless Address Autoconfiguration) enables a host to automatically configure its own IPv6 address by using the prefix information contained in router advertisements sent by a local router. The host generates the interface identifier portion of the address, typically using EUI-64 or a random value, and combines it with the advertised prefix to create a unique global or link-local address. This process is stateless because the router does not track or assign individual addresses to hosts.

Why this answer

SLAAC and DHCPv6 are both IPv6 host-configuration approaches, but they are not the same. In practical terms, SLAAC lets a host build its own address using router advertisements and the advertised prefix, while DHCPv6 can be used to provide addressing information or other configuration in a more server-driven way. Depending on design, IPv6 networks can use one, the other, or a mixture of behaviors.

The key is not to oversimplify. SLAAC is not “IPv6 DHCP,” and DHCPv6 is not the only way IPv6 hosts learn how to operate. Router advertisements remain very important.

Exam trap

Do not assume DHCPv6 is the only way to configure IPv6 addresses or settings; SLAAC also plays a crucial role.

Why the other options are wrong

C

SLAAC does not require NAT because IPv6 has a vast address space, eliminating the need for address translation. NAT is a workaround for IPv4 address exhaustion and is not used in native IPv6 networks. SLAAC relies on router advertisements to provide prefix information, and hosts generate their own addresses without any translation.

D

DHCPv6 does not replace router advertisements; in fact, router advertisements are still required for hosts to determine the default gateway and other network parameters. Even when DHCPv6 is used, hosts rely on RAs to learn the on-link prefix and to decide whether to use stateful or stateless configuration.

E

Both SLAAC and DHCPv6 can provide addressing information to hosts. SLAAC allows hosts to form their own addresses from prefix information in RAs, while DHCPv6 can assign addresses and other configuration parameters. Therefore, the statement that neither can provide addressing information is false.

When would these options actually be correct?

C

In a question that asks about IPv6 address configuration in a specific scenario where NAT is being discussed in conjunction with SLAAC, such as in a hybrid network environment that uses both IPv4 and IPv6, this option could be correct if it stated that SLAAC can work with NAT for IPv4 addresses.

D

If the exam question stated that DHCPv6 is the sole method for IPv6 address assignment without mentioning SLAAC, then option D would be correct. For example, a question could ask about the exclusive use of DHCPv6 in a network design that does not utilize any form of SLAAC.

E

In a question that specifically asks about protocols that do not provide addressing information, such as 'Which of the following protocols do not assign IP addresses to hosts?', option E would be correct if the focus were solely on protocols that lack this capability.

Why candidates pick the wrong answer

C

Students often confuse IPv6 SLAAC with IPv4 DHCP, where NAT is commonly used in conjunction with private addressing. The misconception that SLAAC might need NAT arises from a misunderstanding of IPv6's address abundance and the role of NAT in IPv4.

D

Test-takers may think that since DHCPv6 provides addresses and other configuration, it can fully replace RAs. However, RAs are essential for neighbor discovery and default gateway information, which DHCPv6 does not provide.

E

This option might be chosen by students who are confused about the capabilities of SLAAC and DHCPv6, perhaps thinking that only one of them provides addressing. The wording 'neither' is a common distractor that tests understanding of both protocols.

252
MCQmedium

Which wireless security method is considered strongest among these choices for modern enterprise WLAN deployments?

A.WEP
B.WPA
C.WPA2 with AES
D.Open authentication
AnswerC

WPA2 with AES is the strongest option because it employs AES-CCMP, a 128-bit block cipher operating in counter mode with CBC-MAC for integrity, which together provide robust confidentiality, data-origin authentication, and replay protection. The per-frame key derivation and the cryptanalytic resistance of AES make brute-force or keystream-reuse attacks infeasible, making it the only listed option that meets modern wireless security standards.

Why this answer

WPA2 with AES provides substantially stronger security than WEP, legacy WPA, or open authentication. In current enterprise environments, WPA2 and WPA3 are the expected baseline approaches depending on platform support.

Exam trap

A frequent exam trap is selecting WPA instead of WPA2 with AES because WPA sounds like a newer or stronger protocol than WEP. However, WPA uses TKIP, which is less secure and considered legacy. Another trap is underestimating the insecurity of open authentication, which provides no encryption and leaves WLAN traffic exposed.

Candidates might also mistakenly think WEP is acceptable due to its historical use, but it is deprecated and easily cracked. The key mistake is not recognizing that WPA2 with AES is the current minimum security standard for enterprise wireless networks, making it the strongest choice among the options.

Why the other options are wrong

A

WEP is deprecated and insecure because it uses weak RC4 encryption with static keys, which attackers can easily crack, making it unsuitable for modern enterprise WLANs.

B

WPA improves on WEP by introducing TKIP but still uses weaker encryption than WPA2 with AES, so it is not the strongest choice for enterprise wireless security.

D

Open authentication provides no encryption or authentication, leaving wireless traffic exposed to interception and unauthorized access, so it is not a secure method.

When would these options actually be correct?

A

If the exam question asked for the wireless security method that was historically used in early WLANs or in legacy systems, WEP could be considered correct. For example, a question might specify 'Which wireless security method was commonly used before WPA and is still found in some older devices?'

B

In a scenario where the exam question asks for the best security method for a legacy system that only supports WPA, or if the question specifies a context where backward compatibility is prioritized over security, then WPA could be considered the correct answer.

D

If the exam question asked for the simplest method of connecting devices in a controlled environment where security is not a concern, such as a guest network for temporary access, then open authentication could be considered correct.

Why candidates pick the wrong answer

A

Students may think WEP is acceptable because it was the original Wi-Fi security standard and is still found in legacy devices, but it provides no real security today.

B

WPA is often confused with WPA2 because of similar names, and students may assume it is still secure since it is an improvement over WEP.

D

Students might think 'open' means easy to use or that it is acceptable for some scenarios, but it offers no security and is not considered a wireless security method.

253
PBQhard

You are connected to R1. The network currently permits all HTTP traffic from hosts on the 192.168.1.0/24 LAN to reach the web server at 203.0.113.10, but SSH traffic (TCP port 22) from the same LAN is being blocked. Additionally, you must ensure that no other traffic from the LAN reaches the server. Configure an extended ACL on R1 to allow only HTTP and SSH from the LAN to the server, and apply it inbound on the correct interface. Verify your solution.

Network Topology
G0/0192.168.1.1/24G0/1203.0.113.1/30hostsLAN:R1WANServer

Hints

  • The current ACL is blocking SSH but allowing everything else; you need to reverse the logic.
  • Apply the new ACL inbound on the interface facing the LAN (GigabitEthernet0/0).
  • Remember that an implicit deny all exists at the end of every ACL; do not add a permit ip any any.
A.Remove the existing ACL from the interface, delete the ACL, create a new extended ACL that permits tcp from 192.168.1.0/24 to host 203.0.113.10 for ports 80 and 22, and apply it inbound on GigabitEthernet0/0.
B.Modify the existing ACL BLOCK_SSH by adding a permit statement for HTTP and changing the deny SSH to permit SSH, then reapply it inbound on GigabitEthernet0/0.
C.Create a new extended ACL that permits tcp from 192.168.1.0/24 to host 203.0.113.10 for ports 80 and 22, and apply it inbound on GigabitEthernet0/1 (the WAN interface).
D.Create a new extended ACL that permits tcp from 192.168.1.0/24 to host 203.0.113.10 for ports 80 and 22, and apply it outbound on GigabitEthernet0/0.
AnswerA
solution
! R1
interface GigabitEthernet0/0
no ip access-group BLOCK_SSH in
exit
no ip access-list extended BLOCK_SSH
ip access-list extended LAN_TO_SERVER
permit tcp 192.168.1.0 0.0.0.255 host 203.0.113.10 eq 80
permit tcp 192.168.1.0 0.0.0.255 host 203.0.113.10 eq 22
exit
interface GigabitEthernet0/0
ip access-group LAN_TO_SERVER in
end

Why this answer

The existing ACL BLOCK_SSH is applied inbound on GigabitEthernet0/0 and explicitly denies SSH from the LAN to the server, but permits all other IP traffic (including HTTP). The requirement is to allow only HTTP and SSH, blocking everything else. The solution is to remove the current ACL from the interface, delete the ACL, create a new extended ACL that permits tcp from the LAN to the server for ports 80 (HTTP) and 22 (SSH), and implicitly deny all other traffic, then reapply it inbound on GigabitEthernet0/0.

Exam trap

The trap is that candidates may try to modify the existing ACL without realizing it contains a permit ip any any statement that would still allow all traffic. Also, they may apply the ACL on the wrong interface or in the wrong direction. Always check the existing ACL entries and apply ACLs inbound on the interface closest to the source.

Why the other options are wrong

B

The specific factual error is that the existing ACL contains a permit ip any any statement that would override any specific denies, allowing all traffic.

C

The specific factual error is that ACLs should be applied inbound on the interface where the traffic enters the router, not on the outbound interface towards the destination.

D

The specific factual error is that outbound ACLs filter traffic exiting the interface, but the traffic from LAN to server enters the router via GigabitEthernet0/0 and exits via another interface (e.g., WAN). An outbound ACL on GigabitEthernet0/0 would not affect traffic going to the server.

Why candidates pick the wrong answer

B

Candidates pick this because they think they can edit the existing ACL without considering the existing permit ip any any statement, and they want to avoid deleting and recreating the ACL.

C

Candidates pick this because they mistakenly think the ACL should be applied on the interface facing the server to filter traffic going out, but inbound ACLs are more efficient and standard practice.

D

Candidates pick this because they confuse inbound and outbound ACL application, thinking that outbound on the LAN interface will filter traffic leaving the LAN, but the traffic is actually entering the router from the LAN.

254
MCQhard

A host is configured with 10.10.10.33/27. What is the broadcast address of its subnet?

A.10.10.10.31
B.10.10.10.63
C.10.10.10.32
D.10.10.10.64
AnswerB

10.10.10.63 is correct because the /27 prefix length gives a block size of 2^(32-27)=32 addresses, meaning subnets align on boundaries of 32 in the last octet. The host 10.10.10.33 falls within the 10.10.10.32 to 10.10.10.63 range, and the broadcast address is always the highest (last) address in that subnet block, which is 10.10.10.63. This matches the definition of a directed broadcast for that subnet.

Why this answer

A /27 uses address blocks of 32. In practical terms, the ranges are 0–31, 32–63, 64–95, and so on. Because .33 falls inside the 32–63 block, the broadcast address is the last address in that block, which is 10.10.10.63.

This is a classic subnet-boundary question. The trick is to identify the correct block first and then choose its last address as the broadcast.

Exam trap

Don't confuse the network address or the next subnet's start with the broadcast address. Always calculate the correct range first.

Why the other options are wrong

A

10.10.10.31 is the broadcast address of the previous /27 subnet (10.10.10.0–10.10.10.31), not the subnet containing .33.

C

10.10.10.32 is the network address (subnet ID) of the subnet containing .33, not the broadcast address. The network address is the first address in the block.

D

10.10.10.64 is the network address of the next /27 subnet (10.10.10.64–10.10.10.95), not the broadcast address of the subnet containing .33.

When would these options actually be correct?

A

If the question were to ask for the broadcast address of the subnet 10.10.10.0/27, then 10.10.10.31 would be the correct answer, as it is the highest address in that subnet range.

C

In a different question where the subnet mask is /26 and the host IP is 10.10.10.33, option C (10.10.10.32) would be the correct answer, as it would then represent the network address of that subnet.

D

If the question specified a different subnet mask, such as /26, then the broadcast address would be 10.10.10.63, making option D (10.10.10.64) the next valid address in that subnet, which could be considered for a different context.

Why candidates pick the wrong answer

A

Students often mistakenly think that because .33 is close to .31, the broadcast might be .31, or they confuse the network address with the broadcast address.

C

Students may incorrectly assume that the network address is the broadcast address, especially when they see that .32 is the start of the subnet and .33 is the first usable host.

D

Students might think that because .33 is near the end of the block, the broadcast could be the next network address, or they may miscalculate the block boundaries.

255
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.

Why candidates pick the wrong answer

B

Candidates pick this because they know that OSPF hello/dead intervals must match for adjacency, but they overlook that the default network type on Ethernet is broadcast, which can cause delays or failures on point-to-point links.

C

Candidates pick this because they think preventing DR election will speed up adjacency, but the election still happens, and on a point-to-point link, the broadcast network type itself is suboptimal.

D

Candidates pick this because they may think the network type is not set correctly, but they fail to realize that broadcast is the default and that point-to-point is the appropriate type for a direct link.

256
Matchingmedium

Drag and drop the wireless terms on the left to the correct descriptions on the right. Options: A: SSID: The network name broadcast by an access point to identify the wireless network. B: BSSID: The MAC address of the access point's radio interface, used to uniquely identify a BSS. C: RSSI: A measurement of the power level of the received radio signal, indicating signal strength. D: DFS: A mechanism that allows wireless devices to avoid interference with radar systems by dynamically selecting channels.

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

Concepts
Matches

Uses only the 5 GHz band and supports up to 160 MHz channel bonding

Introduces OFDMA and supports both 2.4 GHz and 5 GHz bands

Uses Simultaneous Authentication of Equals (SAE) for secure pre-shared key authentication

A single AP and its associated clients, identified by a BSSID

Centralized management device that handles AP configuration, roaming, and security policies

Why these pairings

SSID (Service Set Identifier) is the network name broadcast by an access point to identify the wireless network, allowing clients to distinguish between different networks. BSSID (Basic Service Set Identifier) is the MAC address of the AP's radio interface, uniquely identifying a specific BSS. RSSI (Received Signal Strength Indicator) measures the power level of the received radio signal, indicating signal strength.

DFS (Dynamic Frequency Selection) is a mechanism that allows wireless devices to avoid interference with radar systems by dynamically selecting channels. Each term correctly matches the provided description.

Exam trap

A common mistake is confusing BSSID with SSID—BSSID is the MAC address, not the network name. Another trap is thinking RSSI is a percentage, but it is a relative measurement of signal power, often represented as a negative dBm value.

257
MCQhard

A host reaches websites by IP address but fails when using hostnames. Which service is the strongest suspect?

A.DNS
B.STP
C.PAT
D.Port security
AnswerA

The Domain Name System resolves fully qualified domain names to IP addresses, acting as the network's directory service. When a host can reach websites by IP address but cannot by hostname, the DNS resolution process has failed—either the configured DNS server is unreachable, the resolver is misconfigured, or a DNS query is timing out. This matches the symptom exactly because only name-to-address translation is broken, while the underlying IP connectivity remains intact.

Why this answer

The strongest suspect is DNS. In plain language, the host can already reach the remote system when given the numeric address directly, which suggests the underlying IP connectivity works. The missing piece is the translation of hostnames into IP-related information, and that is exactly the role of DNS.

This is one of the most common real troubleshooting patterns because it cleanly separates connectivity problems from name-resolution problems. If IP works but names fail, DNS becomes the most likely area to investigate.

Exam trap

A frequent exam trap is selecting NAT or PAT as the cause of hostname resolution failure because these services involve IP address translation. However, NAT and PAT affect IP connectivity and address translation between private and public networks, not the translation of hostnames to IP addresses. Another trap is choosing STP, which is unrelated to IP services and only manages Layer 2 loop prevention.

Candidates might also confuse port security with DNS, but port security controls switch port access and does not resolve hostnames. The key mistake is overlooking that DNS is the sole service responsible for converting hostnames into IP addresses, which is why it is the strongest suspect when name-based access fails but IP-based access succeeds.

Why the other options are wrong

B

STP (Spanning Tree Protocol) is unrelated to hostname resolution. It prevents Layer 2 switching loops and does not affect IP connectivity or DNS services, so it cannot cause hostname resolution failures.

C

PAT (Port Address Translation) manages IP address translation for outbound traffic but does not handle hostname-to-IP translation. If PAT were failing, IP connectivity itself would be affected, not just hostname resolution.

D

Port security controls access to switch ports by limiting which MAC addresses can connect. It does not perform or affect hostname resolution or IP address translation, so it is not related to the problem.

When would these options actually be correct?

B

If the exam question involved a scenario where a network switch is misconfigured, causing broadcast storms that disrupt network traffic, STP could be the correct answer. In that case, the question might ask about the cause of connectivity issues affecting all network devices, including hostname resolution.

C

In a scenario where a question asks about issues related to IP address translation and connectivity for multiple devices behind a single public IP, a candidate might be asked to identify the service responsible for translating internal IPs to a public IP. In this case, PAT would be the correct answer.

D

If the question were about a network where a specific switch port was configured to allow only certain MAC addresses, and a device with an unrecognized MAC address was trying to access a server by hostname, port security could be the correct answer, as it would block the device's access.

Why candidates pick the wrong answer

B

Students might confuse STP with DNS because both are network services, but STP operates at Layer 2 and is unrelated to name resolution. The acronym similarity to other protocols may also cause confusion.

C

Students may think that PAT is involved in name resolution because it deals with addresses and ports, but PAT does not perform DNS functions. The scenario's symptom of working IP access but failing hostnames is a classic DNS issue, not a NAT issue.

D

Students might think port security could block DNS traffic specifically, but port security operates at the MAC layer and cannot selectively filter by protocol or service. The name 'port security' might be misinterpreted as securing DNS port 53, but that is not its function.

258
MCQmedium

Exhibit: A switch port connected to an end host is stuck in a blocking state much longer than expected after a reboot. Which configuration change most directly speeds host access while still keeping loop protection elsewhere?

A.Enable PortFast on the access port
B.Disable STP globally
C.Change the trunk native VLAN
D.Set the port to half-duplex
AnswerA

Enable PortFast on the access port to bypass the STP listening and learning states, allowing the port to transition directly to forwarding. This is the standard solution for host-facing ports where no switches are connected and loops cannot occur. It ensures the end host obtains an IP address quickly.

Why this answer

PortFast should be enabled on access ports that connect to end devices. It lets the port move to forwarding quickly without waiting through normal STP listening and learning delays. Disabling STP globally removes all loop protection, which contradicts the requirement to keep loop protection elsewhere.

Changing the trunk native VLAN is irrelevant to an access port's STP state transition. Adjusting duplex has no effect on STP timers and would not speed up host access.

Exam trap

Avoid confusing STP parameters like hello time with features like PortFast that directly affect port state transitions.

Why the other options are wrong

B

Disabling STP globally removes all loop protection, which is not desired because loop protection elsewhere is still needed.

C

Changing the trunk native VLAN does not affect STP port state transitions and is irrelevant for an access port.

D

Setting the port to half-duplex has no impact on STP listening/learning timers and would not speed up host access.

When would these options actually be correct?

B

In a different scenario where the question asks how to quickly troubleshoot a network experiencing severe broadcast storms due to misconfigured switches, disabling STP globally could be a temporary measure to restore connectivity while resolving the underlying issues.

C

In a different scenario where the question asks about resolving VLAN mismatches on a trunk link, changing the trunk native VLAN could be the correct answer. For example, if the native VLAN on both ends of the trunk is misconfigured, it could lead to connectivity issues that this action would resolve.

D

In a scenario where a question asks how to configure a port for legacy devices that only support half-duplex communication, setting the port to half-duplex would be the correct answer. This would be relevant if the question specifically focused on compatibility with older hardware.

Why candidates pick the wrong answer

B

A student might think that disabling STP entirely would eliminate the blocking state delay, but they overlook the critical need for loop prevention in a network with potential redundant paths.

C

A test-taker might confuse native VLAN issues with STP delays, especially if they have encountered problems where native VLAN mismatch causes connectivity issues, but those are unrelated to the blocking state duration.

D

Students might associate half-duplex with slower performance and incorrectly assume it could speed up STP convergence, or they may confuse duplex mismatch issues with STP delays.

259
PBQhard

You are connected to R1. Configure IPv4 and IPv6 addressing on interfaces G0/0 and G0/1 so that R1 can reach R2's loopback0 (198.51.100.1/32) and R2 can reach R1's loopback0 (203.0.113.1/32). The current configuration has a wrong subnet mask on R1 G0/0 and a missing default gateway on R2, causing reachability failures. Additionally, configure IPv6 using EUI-64 on R1 G0/1 and static IPv6 on R2 G0/1 to enable IPv6 ping between the two routers. All devices are routers.

Network Topology
G0/010.0.0.1/30G0/010.0.0.2/30linkG0/1192.168.1.1/24linkR1R2R2 (G0/1 192.168.2.1/24)

Hints

  • Check the subnet mask on R1 G0/0: it does not match R2's /30.
  • R2 has no route to reach R1's loopback or the 192.168.1.0/24 network; it needs a default gateway.
  • R2's IPv6 address is on a different subnet (2001:db8:2::/64) than R1's (2001:db8:1::/64); they must be on the same subnet.
A.On R1 G0/0, change subnet mask to 255.255.255.252; on R2, add ip route 0.0.0.0 0.0.0.0 10.0.0.1; for IPv6, on R2 G0/1 change address to 2001:db8:1::2/64.
B.On R1 G0/0, change subnet mask to 255.255.255.0; on R2, add ip route 0.0.0.0 0.0.0.0 10.0.0.1; for IPv6, on R2 G0/1 change address to 2001:db8:1::2/64.
C.On R1 G0/0, change subnet mask to 255.255.255.252; on R2, add ip route 0.0.0.0 0.0.0.0 10.0.0.2; for IPv6, on R2 G0/1 change address to 2001:db8:2::2/64.
D.On R1 G0/0, change subnet mask to 255.255.255.252; on R2, add ip route 0.0.0.0 0.0.0.0 10.0.0.1; for IPv6, on R2 G0/1 change address to 2001:db8:1::2/64 and on R1 G0/1 use static IPv6 instead of EUI-64.
AnswerA
solution
! R1
interface GigabitEthernet0/0
ip address 10.0.0.1 255.255.255.252
exit
interface GigabitEthernet0/1
ipv6 address 2001:db8:1::/64 eui-64
exit

! R2
interface GigabitEthernet0/1
ip address 192.168.1.2 255.255.255.0
ipv6 address 2001:db8:1::2/64
exit
ip route 0.0.0.0 0.0.0.0 10.0.0.1

Why this answer

The primary IPv4 issues are a subnet mask mismatch on the point-to-point link and a missing default gateway on R2. On R1 G0/0, the mask is /24 instead of /30; while both routers can reach each other directly, the mismatched subnet mask causes routing inconsistencies because R1 advertises the link as a /24, potentially affecting routing decisions. Fixing the mask to /30 ensures both routers agree on the subnet.

R2 lacks a route to R1's loopback and the 192.168.1.0/24 network, so a default route via 10.0.0.1 resolves reachability. For IPv6, R1 G0/1 uses EUI-64, and R2 G0/1 must be on the same subnet (2001:db8:1::/64); R2's address was incorrectly set to 2001:db8:2::2/64, so changing it to 2001:db8:1::2/64 enables IPv6 ping.

Exam trap

Watch for subnet mask mismatches on point-to-point links; both ends must use the same mask. Also, ensure default routes point to the correct next-hop IP (the neighbor's interface IP). For IPv6, both interfaces must be on the same subnet to communicate directly.

Why the other options are wrong

B

The subnet mask on R1 G0/0 should be /30 to match R2, not /24.

C

The default gateway must be the neighbor's IP address, and IPv6 subnets must match for direct communication.

D

The requirement states EUI-64 on R1 G0/1, so static is not allowed.

Why candidates pick the wrong answer

B

Candidates might think keeping the /24 mask is fine because it is a larger subnet, but the mismatch prevents direct communication.

C

Candidates may confuse the next-hop IP or think IPv6 subnets can be different as long as they are unique.

D

Candidates might think static is simpler and still works, but the question explicitly mandates EUI-64.

260
Matchingeasy

Match each network service to its primary function.

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

Concepts
Matches

Resolves hostnames to IP addresses

Assigns IP configuration to clients

Synchronizes device time

Collects and stores log messages

Why these pairings

Each network service has a distinct primary function: DNS translates names to IPs, DHCP automates IP assignment, NTP synchronizes time, SNMP manages devices, FTP transfers files, and HTTP serves web content.

Exam trap

A common trap is confusing DNS with DHCP because both involve IP addresses. Remember: DNS resolves names to IPs, while DHCP assigns IPs. Also, avoid mixing up DNS with other services like NTP or SNMP.

When would these options actually be correct?

B

This option would be correct if the question asked 'Which protocol dynamically assigns IP addresses to devices on a network?' and the answer choices included DHCP, but mistakenly listed DNS as the protocol.

C

If the question asked 'Which protocol synchronizes time across network devices?' then 'NTP' would be correct, but DNS is never used for time synchronization.

D

In a question asking 'Which protocol is used to manage and monitor network devices?', DNS would be incorrect, but if the question were 'Which service provides name resolution for network management systems?', then DNS would be correct as it resolves hostnames of managed devices.

Why candidates pick the wrong answer

B

Candidates may confuse DNS with DHCP because both are essential network services that involve IP addresses, and the acronyms sound similar.

C

Candidates may confuse DNS with NTP because both are critical network services that operate at the application layer and are often mentioned together in networking contexts.

D

Candidates may confuse DNS with network management services because both are essential for network operations and often appear together in network administration contexts.

261
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.

262
MCQmedium

An engineer configures NAT overload on a router for inside users. Which resource is primarily used to let many internal hosts share one public IPv4 address?

A.IPv6 extension headers
B.TCP and UDP port numbers
C.Different source MAC addresses on the WAN
D.Separate routing tables per client
AnswerB

NAT overload, also known as Port Address Translation (PAT), multiplexes thousands of inside private IP addresses onto a single public IPv4 address by tracking the Layer 4 TCP or UDP source port number. Each active session is uniquely identified by the combination of destination address/port and the translated source address/port, allowing the router to reverse the translation correctly when returning traffic arrives.

Why this answer

PAT distinguishes sessions by using Layer 4 port numbers. That is what allows many inside devices to use the same outside IP address at the same time without conflicting with each other.

Exam trap

Don't confuse static or dynamic NAT with PAT; only PAT allows multiple hosts to share a single IP using port numbers.

Why the other options are wrong

A

IPv6 extension headers are used for additional functionality in IPv6 packets, such as fragmentation or security, and are not involved in NAT overload (PAT) which operates at Layer 4 using port numbers.

C

Source MAC addresses are used for Layer 2 forwarding within a local network and are not preserved across a router's WAN interface; NAT operates at Layer 3 and above, not using MAC addresses for translation.

D

Routers do not maintain separate routing tables per client; routing tables are based on destination networks, not individual hosts. NAT overload uses a single routing table and relies on port numbers for translation.

When would these options actually be correct?

A

In a question asking about the benefits of IPv6 over IPv4, specifically regarding how IPv6 handles multiple connections without the need for NAT, an option about IPv6 extension headers could be correct. For instance, if the question focused on how IPv6 improves address space management and connection handling.

C

In a scenario where the question asks about how to distinguish between multiple devices on a network segment using MAC addresses, such as in a discussion about VLANs or Ethernet switching, this option could be correct. For example, a question could ask how a switch manages traffic from multiple devices on the same subnet.

D

In a question where the focus is on advanced routing techniques for isolating traffic from different clients, such as in a multi-tenant environment, the option could be correct if it specifies that separate routing tables are used to manage distinct traffic flows for each client without overlap.

Why candidates pick the wrong answer

A

Students might confuse extension headers with the concept of 'extending' address translation, but they are unrelated to port-based multiplexing.

C

Students may think that different MAC addresses could help identify hosts, but MAC addresses are stripped when packets leave the local subnet and are not used in NAT overload.

D

The idea of per-client tables might seem logical for tracking multiple hosts, but it is not how routing or NAT operates; the correct mechanism is port-based multiplexing.

263
MCQhard

A trunk link between two switches is operational, but one side shows a native VLAN mismatch warning. What is the main concern with that condition?

A.Untagged traffic may be associated with different VLANs on each end of the trunk
B.All tagged VLAN traffic is automatically converted to routed traffic
C.The mismatch forces OSPF adjacency reset on all routers
D.The trunk can carry only one VLAN until the mismatch is cleared
AnswerA

On an IEEE 802.1Q trunk, the native VLAN is the only VLAN whose frames are sent untagged. If the two switches have different native VLANs configured, untagged frames arriving on the trunk are placed into the receiving switch's configured native VLAN, which may be a different VLAN than the one used by the sending switch. This causes the untagged traffic to be silently associated with the wrong VLAN, breaking Layer 2 segmentation and potentially creating a security or bridging loop, while tagged VLAN traffic still works normally.

Why this answer

A native VLAN mismatch can cause untagged traffic to be interpreted as belonging to different VLANs on each end of the trunk. In plain language, the two switches disagree about where untagged frames belong. That can lead to confusing traffic behavior, reachability problems for certain flows, and operational warnings. It is not always a total outage, but it is a design inconsistency that should be corrected.

This matters because trunks carry multiple VLANs, and the native VLAN defines how untagged traffic is handled. If both ends do not agree, the logical treatment of those frames becomes inconsistent. The correct answer is the one that focuses on misclassification of untagged traffic, not on unrelated routing behavior.

Exam trap

Be careful not to confuse native VLAN mismatches with general trunk failures or issues affecting tagged traffic.

Why the other options are wrong

B

A native VLAN mismatch does not convert tagged traffic into routed traffic. Tagged frames continue to be switched based on their VLAN tags, and the trunk remains a Layer 2 link. The mismatch only affects untagged frames on the native VLAN.

C

A native VLAN mismatch is a Layer 2 trunking issue and does not directly affect OSPF or any routing protocol. OSPF adjacency is a Layer 3 process and would only be impacted if the mismatch caused connectivity loss for the router interfaces, but the mismatch itself does not force OSPF adjacency resets.

D

A native VLAN mismatch does not prevent the trunk from carrying other tagged VLANs. Tagged frames for other VLANs are still forwarded correctly because they are not affected by the native VLAN configuration. The trunk can carry multiple VLANs, but the native VLAN traffic is misdirected.

When would these options actually be correct?

B

In a question focused on VLAN configuration and routing protocols, where the context involves a scenario of VLAN tagging and routing behavior, this option could be correct if it specifically states that tagged traffic is being routed due to a misconfiguration, leading to confusion in the network.

C

If the question were about the impact of VLAN mismatches on OSPF routing protocols, specifically asking how such mismatches can disrupt OSPF neighbor relationships, this option could be correct. For example, if the question stated that a native VLAN mismatch could lead to OSPF adjacency issues due to improper handling of untagged traffic, then this option would apply.

D

In a different scenario, if the question specified that the trunk link was configured to allow only a single VLAN due to a specific policy or configuration, then this option could be correct. For example, if the question stated that the trunk was intended to support only a management VLAN, the mismatch could lead to confusion about which VLAN is being carried.

Why candidates pick the wrong answer

B

Students might confuse the native VLAN mismatch with a scenario where the trunk is misconfigured as a routed port, or they may think that the mismatch causes the trunk to behave like a Layer 3 link. However, trunk ports remain Layer 2 regardless of native VLAN issues.

C

Students might associate any VLAN mismatch with routing protocol issues because they have seen scenarios where VLAN misconfigurations lead to routing problems. However, the native VLAN mismatch specifically does not trigger OSPF events.

D

Students might think that any mismatch on a trunk would cause the entire trunk to fail or limit its functionality. However, the native VLAN mismatch only affects untagged traffic, not the entire trunk.

264
MCQmedium

A router is configured with an access list intended to block Telnet from 192.168.10.0/24 to 10.1.1.10, but Telnet still works. What is the most likely reason?

A.The ACL must use wildcard mask 255.255.255.0 instead of 0.0.0.255
B.The ACL is applied in the wrong place or direction
C.Standard ACLs should always be used for Telnet filtering
D.The router must run PAT before ACLs can filter Telnet
AnswerB

This is an attachment problem, not a syntax problem: the ACL itself may be perfectly valid, but it is not doing its job because it is bound to the wrong interface or direction. To filter Telnet into the router, the ACL must be applied to the VTY lines with the access-class command; to filter transit traffic, it must be applied to the correct interface with the proper inbound or outbound keyword. A misapplied ACL is effectively invisible to traffic, which is why the filter appears to have no effect.

Why this answer

The most common reason an ACL fails to block traffic is incorrect application—either it is applied to the wrong interface or in the wrong direction. For Telnet traffic from 192.168.10.0/24 to 10.1.1.10, the ACL must be applied inbound on the interface closest to the source or outbound on the interface closest to the destination. Option A is incorrect because the wildcard mask 0.0.0.255 is correct for matching the 192.168.10.0/24 network; 255.255.255.0 is a subnet mask, not a wildcard mask.

Option C is false—standard ACLs can only filter by source IP and cannot match the destination port (Telnet), so an extended ACL is actually required. Option D is unrelated; PAT (Port Address Translation) has no bearing on whether an ACL can filter Telnet traffic.

Exam trap

Cisco often tests the concept that an ACL's effectiveness depends on its placement and direction, not just its content, and the trap here is that candidates focus on the wildcard mask or ACL type while overlooking the fundamental requirement of correct application.

Why the other options are wrong

A

The wildcard mask 255.255.255.0 would match only the exact host 192.168.10.0, not the entire /24 subnet. Cisco ACLs use wildcard masks where 0 means match and 1 means ignore; for a /24, the correct mask is 0.0.0.255.

C

Standard ACLs can only filter based on source IP address and cannot match specific protocols like Telnet (TCP port 23) or destination addresses. Extended ACLs are required to filter Telnet traffic from a specific source to a specific destination.

D

PAT (Port Address Translation) is unrelated to ACL filtering. ACLs operate independently of NAT/PAT; they filter traffic based on Layer 3 and Layer 4 information regardless of whether translation is configured.

When would these options actually be correct?

A

In a different scenario where the question specifies that the ACL is incorrectly configured to allow traffic from a broader range, such as 192.168.0.0/16, the option could be correct if it required a wildcard mask of 255.255.255.0 to block a specific subnet.

C

In a scenario where the question specifies that only standard ACLs are allowed for filtering traffic, and the configuration is incorrectly using an extended ACL to block Telnet, this option would be correct. For example, if the question states that only standard ACLs can be used to filter access to a specific service, then this option would apply.

D

In a different scenario where a question states that a router is configured with NAT and ACLs, and the ACL is not filtering Telnet traffic as expected, the correct answer could be that PAT must be configured correctly for ACLs to function as intended. This would imply that NAT is interfering with the ACL's ability to filter traffic.

Why candidates pick the wrong answer

A

Students often confuse wildcard masks with subnet masks, thinking that 255.255.255.0 is the correct way to specify a /24 network, but in ACLs the logic is inverted.

C

Some students think standard ACLs are simpler and sufficient for all filtering, but they lack the granularity needed for protocol-specific or destination-specific rules.

D

Students may confuse the order of operations or think that NAT must be applied before ACLs can work, but ACLs are processed before or after NAT depending on direction, and PAT is not a prerequisite for ACL functionality.

265
Multi-Selectmedium

Which four of the following are characteristics of Dynamic Trunking Protocol (DTP) and VLAN Trunking Protocol (VTP) used in Cisco switching? (Choose four.)

Select 4 answers
.DTP is a Cisco proprietary protocol used to negotiate trunking between two switches.
.VTP allows synchronization of VLAN information across switches in the same VTP domain.
.A switch configured with 'switchport mode dynamic desirable' actively attempts to form a trunk using DTP.
.VTP pruning helps reduce unnecessary broadcast traffic by limiting flooded traffic to only switches that need the VLAN.
.VTP transparent mode stores and forwards VTP advertisements but also modifies the VLAN database based on received updates.
.DTP can form a trunk regardless of whether both ends are configured with 'switchport nonegotiate'.

Why this answer

The four correct statements are: (1) DTP is a Cisco proprietary protocol for negotiating trunk links; (2) VTP synchronizes VLAN information across switches in the same VTP domain; (3) 'switchport mode dynamic desirable' actively sends DTP frames to form a trunk; (4) VTP pruning reduces unnecessary broadcast traffic by limiting flooded traffic to only switches that need the VLAN. The two incorrect statements: VTP transparent mode forwards VTP advertisements but does **not** modify its VLAN database based on received updates—it only passes them through. DTP **cannot** form a trunk when both ends are configured with 'switchport nonegotiate' because that command disables DTP frame transmission entirely, preventing trunk negotiation.

Exam trap

Cisco often tests the distinction between DTP modes (dynamic desirable vs. dynamic auto) and the fact that VTP can cause catastrophic VLAN propagation errors if revision numbers are not reset before adding a switch to a production network.

266
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

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.

Why candidates pick the wrong answer

A

Students often think that setting a higher priority on one router is the standard way to control active router selection, but they overlook the specific requirement that the highest IP address must determine the active role. This option seems like a straightforward way to ensure one router is active.

C

Students might think that explicitly configuring the priority again is necessary or that it somehow enables preemption. They may confuse the priority command with the preempt command, assuming that setting priority automatically includes preemption behavior.

D

This option appears to be a common HSRP configuration where one router is given higher priority to be active. Students may not read the requirement carefully and assume that setting different priorities is the correct approach, missing the specific condition that the highest IP address should be the deciding factor.

267
MCQhard

A host sends a packet larger than the outgoing interface MTU, and the IPv4 header has the Don't Fragment bit set. What will a router do with the packet?

A.Fragment it anyway and forward the pieces
B.Drop it and typically return an ICMP message indicating fragmentation is needed
C.Translate it to IPv6 and forward it
D.Broadcast it so another router can handle fragmentation
AnswerB

When a router receives an IPv4 packet larger than the outgoing interface MTU and the Don't Fragment (DF) bit is set, it cannot fragment the packet. Instead, it drops the packet and typically sends an ICMPv4 Type 3 Code 4 (Destination Unreachable: fragmentation needed and DF set) message back to the source. This ICMP message includes the MTU of the next-hop link, which allows the sender to perform Path MTU Discovery and adjust its packet size accordingly. This behavior is defined in RFC 792 and RFC 1191, and it prevents silent packet loss by informing the sender of the required size.

Why this answer

The router drops the packet because the packet is too large for the next link and the sender has explicitly said the packet must not be fragmented. In IPv4, the Don't Fragment bit tells routers not to break the packet into smaller pieces. If the outgoing interface MTU is smaller than the packet size, the router cannot legally forward it as-is and cannot fragment it, so the normal result is to drop the packet and usually send back an ICMP unreachable message indicating that fragmentation is needed.

In plain terms, the router is telling the sender, 'This packet is too big for the path you chose, and you told me I am not allowed to split it.' This behavior is central to path MTU discovery.

Exam trap

A common exam trap is to assume that routers will fragment any oversized IPv4 packet regardless of the Don't Fragment bit. Candidates might select the option that routers fragment the packet anyway, ignoring the DF bit. This is incorrect because the DF bit explicitly prevents fragmentation.

Another tempting mistake is to think that routers might broadcast the packet to other routers or convert it to IPv6 to solve the problem, which does not happen. Understanding that the router must drop the packet and send an ICMP message is critical to avoid this trap.

Why the other options are wrong

A

Fragmenting the packet despite the DF bit being set violates the sender's explicit instruction to avoid fragmentation. Routers must respect the DF bit and cannot fragment in this case.

C

Routers do not convert IPv4 packets to IPv6 to handle MTU or fragmentation issues. These are different protocols, and such conversion is not a standard router behavior.

D

Routers do not broadcast oversized packets to other routers for fragmentation. The forwarding decision and fragmentation handling are local to the router, so the packet is dropped if it cannot be forwarded.

When would these options actually be correct?

A

In a different scenario where a packet is received without the Don't Fragment bit set and exceeds the MTU, a router could fragment it into smaller packets to fit the MTU size and forward the fragments accordingly. This would be a valid situation for option A to be correct.

C

In a different scenario where a question asks about a router's behavior when handling a packet that is too large but does not have the Don't Fragment bit set, translating the packet to IPv6 could be a valid option if the router supports IPv6 and is configured to perform such translations.

D

In a different scenario where the question states that the packet is allowed to be fragmented, a router might broadcast the packet to other routers in a network that supports fragmentation to handle oversized packets collectively. This could occur in a network with specific configurations allowing such behavior.

Why candidates pick the wrong answer

A

Students may think that routers always fragment oversized packets as a normal forwarding behavior, overlooking the DF bit's role in preventing fragmentation.

C

Students might confuse the concept of protocol translation with a general 'fix-all' solution, or think that IPv6's larger MTU could bypass the issue, but the packet remains IPv4 and translation is unrelated.

D

Students may incorrectly believe that broadcasting can help find a router with a larger MTU, but broadcasting is not used for unicast forwarding and does not resolve the fragmentation issue.

268
Matchingeasy

Match each DHCPv4 message in the DORA process to its role.

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

Concepts
Matches

Client looks for DHCP servers

Server proposes an address and lease details

Client asks to use the offered address

Server confirms the lease

Why these pairings

The DORA process includes Discover (client broadcast), Offer (server response), Request (client accepts), and Ack (server confirms). Additional messages like NAK and Decline handle errors.

Exam trap

Do not confuse the order or roles of DHCP messages. Remember that the client initiates with Discover, then the server Offers, the client Requests, and the server Acknowledges. The mnemonic DORA helps: Discover, Offer, Request, Ack.

When would these options actually be correct?

B

This option would be correct if the question asked: 'Which DHCP message does a server send to offer an IP address to a client?' In that context, the server's Offer message is the correct answer.

C

This option would be correct for a question asking to match the DHCP Request message: 'Client requests the offered IP address' is the role of the Request message in the DORA process.

D

This option would be correct if the question asked to match the DHCPACK message to its role: 'Server acknowledges the lease.'

Why candidates pick the wrong answer

B

Candidates may confuse the roles of Discover and Offer messages, mistakenly thinking the server initiates the process with a Discover message or that the server's response is also called Discover.

C

Candidates may confuse the sequence of DORA messages, thinking the client's request for an IP address occurs during the Discover phase rather than the Request phase.

D

Candidates may confuse the roles of different DHCP messages, especially the Discover and Acknowledgment steps, due to the similar-sounding names or misremembering the sequence.

269
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

The static route is preferred because it has the lowest administrative distance (AD) of any source for this prefix. By default, Cisco assigns a static route an AD of 1, while eBGP, OSPF, and RIP have AD values of 20, 110, and 120 respectively. A router selects the route with the lowest AD; metrics are only compared within the same routing source, so the static route wins decisively.

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).

When would these options actually be correct?

B

If the question asked which route is preferred when comparing OSPF and RIP routes for the same prefix, and both have the same administrative distance (e.g., both are redistributed into each other), then OSPF with cost 20 would be preferred over RIP with hop count 2 because OSPF has a lower metric.

C

If the question stated that the static route had a higher administrative distance (e.g., configured with 'ip route 192.168.50.0 255.255.255.0 10.0.0.1 200'), then eBGP (AD 20) would be preferred over that static route.

E

If the question stated that all routes have the same administrative distance (e.g., all are learned via the same routing protocol), then RIP would be chosen over OSPF only if the metric (hop count) is lower than OSPF's cost. However, this scenario is unlikely because OSPF and RIP have different ADs.

Why candidates pick the wrong answer

B

Candidates mistakenly compare metric values across different routing protocols, not realizing that administrative distance is the primary tiebreaker when routes from different protocols compete.

C

Candidates may mistakenly believe that dynamic protocols always override static routes, or they confuse the concept of 'more dynamic' with lower administrative distance.

E

Candidates may confuse metric with administrative distance, or assume that a simpler metric like hop count is always preferred over a more complex one like cost.

270
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.

271
MCQhard

A switch displays the following output: Switch# show interfaces trunk Port Mode Encapsulation Status Native vlan Gi1/0/24 on 802.1q trunking 99 Port Vlans allowed on trunk Gi1/0/24 10,20,30 Port Vlans active in management domain Gi1/0/24 10,20,30,40 Users in VLAN 40 cannot reach resources across this trunk. What is the most likely reason?

A.VLAN 40 is active, so spanning tree must be blocking it
B.VLAN 40 is not in the native VLAN, so it cannot cross the trunk
C.VLAN 40 is not permitted on the trunk
D.802.1Q trunks can carry only three VLANs at a time
AnswerC

Correct. This is correct. The allowed VLAN list controls which VLANs are transported across the trunk. Because VLAN 40 is absent from that list, users in VLAN 40 cannot use that trunk to reach resources on the far side.

Why this answer

The trunk is not carrying VLAN 40 because VLAN 40 is missing from the allowed VLAN list (only 10, 20, 30 are allowed). Option A is incorrect because spanning tree does not block VLANs by default without evidence of a loop; the output shows no STP blocking. Option B is incorrect because native VLAN only affects tagging, not whether a VLAN can traverse a trunk; all VLANs can cross a trunk if permitted.

Option D is incorrect because 802.1Q can carry up to 4094 VLANs, not just three. The key distinction is that a VLAN may be active on the switch but still fail to cross a specific trunk if it is not in the allowed list.

Exam trap

Ensure you differentiate between VLANs configured on the switch and those allowed on the trunk. Just because a VLAN is active doesn't mean it's allowed on a trunk.

Why the other options are wrong

A

Spanning Tree Protocol (STP) can block a VLAN if there is a loop, but the output shows VLAN 40 is active in the management domain and not listed as blocked. The explicit absence of VLAN 40 from the allowed VLAN list is the direct cause, not STP.

B

The native VLAN is only for untagged traffic on an 802.1Q trunk. All other VLANs are tagged and can cross the trunk regardless of the native VLAN. VLAN 40 is not the native VLAN, but that does not prevent it from being carried if permitted.

D

802.1Q has no limit of three VLANs per trunk; it can support up to 4094 VLANs. The output shows only three VLANs allowed because of configuration, not a protocol limitation.

When would these options actually be correct?

A

In a different scenario, if a question stated that VLAN 40 is configured but the switch output showed that spanning tree was blocking the port due to a loop, then this option would be correct. For example, if the question indicated that VLAN 40 was indeed allowed but was not reachable due to spanning tree blocking it.

B

In a different scenario, if the question stated that VLAN 40 was configured as the native VLAN and the trunk port was set to only allow tagged traffic, then this option would be correct. This would mean VLAN 40's untagged traffic would not be transmitted across the trunk.

D

In a different scenario where the question states that a switch is configured to only allow a maximum of three VLANs on a trunk, and the output confirms that only three VLANs are listed, this option would be correct. The question would need to specify a limitation on the number of VLANs allowed on the trunk.

Why candidates pick the wrong answer

A

Students may confuse STP blocking with VLAN filtering, especially when a VLAN is active but not forwarding. However, STP blocking would affect all VLANs on a port, not a single VLAN, and the trunk status shows 'trunking' indicating STP is not blocking the entire port.

B

There is a common misconception that only the native VLAN can cross a trunk, or that non-native VLANs require special configuration. In reality, any VLAN can be tagged and carried as long as it is in the allowed list.

D

The output shows exactly three VLANs in the allowed list, which might lead a student to think there is a limit. However, this is just a coincidence of the configuration, not a protocol constraint.

272
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

The OSPF default route is preferred because its administrative distance (AD) is 110, which is lower than the floating static route's configured AD of 150. In Cisco IOS, when multiple routes exist for the same destination prefix, the route with the lowest AD is installed in the routing table. Since the OSPF route has a better (lower) AD, it becomes the active default route. The static route remains in the configuration as a backup and will only be used if the OSPF route disappears.

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.

When would these options actually be correct?

A

This option would be correct if the question stated that the static route had a lower AD than the dynamic route (e.g., a static route with AD 1) or if the dynamic route was not present in the routing table. For example: 'A router has both an EIGRP-learned route and a static route with AD 5. Which route is active?'

C

If both routes had the same administrative distance (e.g., both OSPF routes or both static routes with equal AD) and equal metric, the router would load-balance traffic across them.

D

This option would be correct if the question stated that the router is running RIP instead of OSPF, because RIP does not support a default route in its standard updates (unless configured with 'default-information originate' in some implementations, but traditionally RIP does not propagate a default route).

Why candidates pick the wrong answer

A

Candidates often memorize that static routes are preferred over dynamic routes in general, but they forget that administrative distance can be modified, making a dynamic route preferred if its AD is lower.

C

Candidates may assume that multiple default routes always load-balance, not realizing that different route sources have different ADs and only the best AD route is installed.

D

Candidates may mistakenly believe that OSPF cannot generate or learn a default route, confusing it with older protocols like RIPv1 that lack default route propagation.

273
MCQhard

A network administrator has configured a DHCP server on VLAN 100 with an IP address of 192.168.100.10/24. Clients on VLAN 200 (192.168.200.0/24) report that they cannot obtain an IP address via DHCP. The router is configured with a DHCP relay on the VLAN 200 interface. The administrator checks the router configuration and verifies that the relay is in place, but clients still fail to get an address. The switch that the router and clients connect to has DHCP snooping enabled. What is the most likely cause of this issue?

A.The DHCP server is on a different subnet and the relay address is incorrect.
B.DHCP snooping is blocking the relay agent because the relay interface is not trusted.
C.The DHCP server is unreachable from the router.
D.The ip helper-address command is missing from the VLAN 200 interface.
AnswerB

The 'show ip dhcp relay information trusted' output shows 'Not configured', which means the relay agent is not trusting the DHCP server's responses. This causes the switch to drop DHCP server responses when DHCP snooping is enabled. The fix is to configure 'ip dhcp relay information trusted' on the interface facing the DHCP server.

Why this answer

The scenario states that DHCP snooping is enabled on the switch. When DHCP snooping is active, it discards DHCP messages received on untrusted ports. The router's VLAN 200 interface, which is configured as a DHCP relay agent, must be configured as a trusted port for DHCP snooping; otherwise, the relayed messages are silently dropped.

Option A is incorrect because the relay address is correctly pointing to the DHCP server's subnet. Option C is too generic and unlikely since the router and switch are directly connected. Option D is incorrect because the relay is verified to be in place.

Therefore, the most likely cause is DHCP snooping blocking the relay agent due to the relay interface not being trusted.

Exam trap

Cisco often tests the misconception that a correctly configured DHCP relay alone guarantees DHCP operation, ignoring that DHCP snooping can silently drop relayed messages if the relay interface is not trusted.

Why the other options are wrong

A

The relay address 192.168.100.10 is correctly configured to point to the DHCP server on VLAN 100. The issue is not with the relay address being incorrect.

C

The DHCP server is on the same router (VLAN 100 interface) and is reachable; the relay configuration is correct. The server is not unreachable.

D

The exhibit shows 'ip helper-address 192.168.100.10' is configured on GigabitEthernet0/1, which is the VLAN 200 interface. The command is present.

Why candidates pick the wrong answer

A

Students often think that DHCP relay requires the server to be on a different subnet, but here the server is on a different VLAN (100) and the relay address is correct. They might assume the address is wrong because clients are on a different subnet.

C

A common troubleshooting step is to check reachability. Since clients cannot get IP addresses, one might assume the server is unreachable, but the router can reach it directly.

D

The 'ip helper-address' command is essential for DHCP relay. If a student misses the exhibit or misreads it, they might think the command is missing.

274
MCQhard

A multilayer switch has SVIs for VLAN 10 and VLAN 20, but hosts in those VLANs still cannot reach each other. The SVIs are up/up. Which additional condition is most likely required?

A.IP routing must be enabled on the multilayer switch
B.Every access port must be converted to a trunk
C.DHCP snooping must be disabled globally
D.The switch must remove all VLAN assignments
AnswerA

IP routing must be enabled globally on the multilayer switch (via the 'ip routing' command) so it can forward packets between the Layer 3 SVIs for VLAN 10 and VLAN 20. Without this, the switch operates only at Layer 2 and will not perform a routing lookup, so frames arriving in one VLAN cannot be forwarded out the other VLAN's SVI. Each SVI must also be up/up and assigned an IP address in a distinct subnet for the routing table to have valid directly connected routes.

Why this answer

If the SVIs are up but inter-VLAN traffic still fails, the most likely missing condition is that IP routing is not enabled on the multilayer switch. In plain language, the switch has the VLAN gateway interfaces present, but it has not been told to behave as a Layer 3 router between them. Without IP routing enabled, the SVIs can exist and still not actually route traffic between VLANs.

This is a classic multilayer-switch design issue because many learners assume the presence of SVIs alone automatically creates routing. In reality, routed forwarding between VLANs still requires the switch to operate as a Layer 3 device. That is why enabling routing is the best answer.

Exam trap

Don't assume SVIs automatically enable routing; IP routing must be explicitly configured.

Why the other options are wrong

B

Converting all access ports to trunk ports is unnecessary and incorrect for inter-VLAN routing. Access ports belong to a single VLAN, and hosts connect via access ports. Trunk ports are used to carry multiple VLANs between switches, not to connect end hosts.

Changing all ports to trunks would break connectivity for hosts.

C

DHCP snooping is a security feature that filters DHCP messages and does not affect Layer 3 routing between VLANs. Disabling it would not enable inter-VLAN communication. The issue is routing, not DHCP.

D

Removing all VLAN assignments would break the network entirely, as hosts would lose their VLAN membership and connectivity. VLANs are essential for segmenting the network; removing them would not solve the routing issue.

When would these options actually be correct?

B

In a scenario where the question specifies that all devices in VLAN 10 and VLAN 20 are connected to access ports and the switch is configured to only allow trunking for inter-VLAN traffic, converting access ports to trunk ports would be necessary for communication between the VLANs.

C

In a different exam scenario, if the question stated that hosts in VLAN 10 and VLAN 20 were unable to obtain IP addresses due to rogue DHCP servers, then disabling DHCP snooping globally could allow the hosts to receive valid IP addresses and communicate with each other.

D

In a different scenario where a question asks about a switch that has misconfigured VLANs and the requirement is to reset the switch to a default state to troubleshoot connectivity issues, removing all VLAN assignments would be the correct step to start fresh.

Why candidates pick the wrong answer

B

Students may confuse trunking with the need to carry multiple VLANs across links. They might think that to route between VLANs, all ports must be trunks, but in reality, routing happens at Layer 3 on the SVI, not at the access port level.

C

DHCP snooping can interfere with IP address assignment, and students might assume that without proper DHCP, hosts cannot communicate. However, the question states hosts cannot reach each other, implying a routing problem, not a DHCP issue.

D

A student might think that VLANs are causing the isolation and that removing them would allow all hosts to be in the same broadcast domain. However, this would defeat the purpose of VLANs and is not a valid solution for inter-VLAN routing.

275
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

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.

Why candidates pick the wrong answer

A

Students might think the route is missing because it does not appear in the routing table, but the configuration is present.

C

Students may confuse administrative distance values and think 200 is too high, but it is actually correct for backup purposes.

D

Students might think a default route can override other routes, but it only applies when no more specific match exists.

276
PBQhard

You are connected to R1, a multilayer switch acting as the root bridge for VLAN 10. The network has experienced a loop, and interface GigabitEthernet0/1 on R1 is currently in err-disabled state due to a BPDU guard violation. Configure the switch to recover automatically from err-disable state after 300 seconds, then verify that the interface comes back up.

Hints

  • The errdisable recovery command is in global configuration mode.
  • Use the 'show errdisable recovery' command to check the current causes and timers.
  • The interface will not recover immediately; you can use 'clear errdisable interface Gi0/1' to test manually.
A.Configure 'errdisable recovery cause bpduguard' and 'errdisable recovery interval 300' globally, then verify with 'show interfaces status'.
B.Configure 'spanning-tree portfast bpduguard default' and 'errdisable recovery interval 300' globally, then verify with 'show spanning-tree'.
C.Configure 'errdisable recovery cause all' and 'errdisable recovery interval 300' globally, then verify with 'show errdisable recovery'.
D.Configure 'errdisable recovery cause bpduguard' and 'errdisable recovery interval 300' on interface GigabitEthernet0/1, then verify with 'show interfaces GigabitEthernet0/1'.
AnswerA
solution
! R1
errdisable recovery cause bpduguard
errdisable recovery interval 300

Why this answer

The interface Gi0/1 is in err-disabled state because BPDU Guard detected an unexpected BPDU on a PortFast-enabled access port. To recover automatically, configure errdisable recovery cause bpduguard and set the recovery interval to 300 seconds with errdisable recovery interval 300. After applying these commands, the interface will automatically come out of err-disable state after 300 seconds.

The blocking port on Gi0/2 is expected because R1 is the root bridge and Gi0/2 is an alternate port providing redundancy; no action is needed for that blocking state.

Exam trap

The trap is that candidates may confuse enabling BPDU guard with configuring recovery, or they may think recovery commands are applied per-interface. Remember that errdisable recovery is a global setting, and you must specify the exact cause unless you want to recover from all causes.

Why the other options are wrong

B

The specific factual error: 'spanning-tree portfast bpduguard default' enables BPDU guard, not recovery. Recovery requires 'errdisable recovery cause bpduguard'.

C

The specific factual error: Using 'cause all' is not the best practice; the question implies a specific cause. Also, the verification command is correct but the configuration is not precise.

D

The specific factual error: errdisable recovery is a global configuration command, not interface-specific.

Why candidates pick the wrong answer

B

Candidates pick this because they confuse enabling BPDU guard with configuring recovery, and they may think 'show spanning-tree' shows errdisable status.

C

Candidates pick this because 'cause all' seems like a catch-all solution, and they may not realize that specific recovery is preferred.

D

Candidates pick this because they think recovery settings should be applied directly to the affected interface, similar to other interface-specific commands.

277
Multi-Selectmedium

Which TWO statements correctly describe the behavior of PortFast and BPDU Guard on a Cisco switch?

Select 2 answers
A.PortFast immediately transitions a port from blocking to forwarding state, bypassing listening and learning.
B.BPDU Guard disables a PortFast-enabled port if it receives any BPDU.
C.PortFast allows BPDUs to pass through the port normally, but the port remains in forwarding state.
D.BPDU Guard prevents the port from becoming a root port or designated port by ignoring superior BPDUs.
E.BPDU Guard is typically configured on trunk ports to prevent loops between switches.
AnswersA, B

PortFast is a feature applied to access ports connecting end hosts, allowing the port to skip the listening and learning states and transition directly from blocking to forwarding. This reduces the time a host takes to start sending traffic by avoiding the 30-second STP convergence delay. It does not disable STP; the switch still participates in STP but the port is forwarding immediately.

Why this answer

PortFast immediately transitions an access port from blocking to forwarding, bypassing listening and learning (Option A). BPDU Guard errdisables a PortFast-enabled port if any BPDU is received, protecting against accidental loops (Option B). Option C is incorrect because PortFast does not alter BPDU handling; the port still processes BPDUs and reverts to normal STP if one is received.

Option D is false because BPDU Guard disables the port entirely rather than ignoring BPDUs. Option E is incorrect because BPDU Guard is typically configured on access ports connected to end devices, not on trunk ports.

Exam trap

Cisco often tests the misconception that PortFast itself blocks or filters BPDUs, when in fact it only accelerates the transition to forwarding; BPDU Guard is a separate feature that must be explicitly enabled to disable the port upon BPDU reception.

Why the other options are wrong

C

PortFast does not filter BPDUs; it still processes them normally. If a BPDU is received on a PortFast port, the port will still participate in STP and may transition to a blocking state, defeating the purpose of PortFast. The statement incorrectly claims BPDUs pass through while the port remains forwarding, which is not true.

D

BPDU Guard does not affect STP election processes; it simply err-disables the port upon receiving any BPDU. It does not ignore superior BPDUs or prevent the port from becoming a root or designated port. That behavior is associated with Root Guard, not BPDU Guard.

E

BPDU Guard is intended for access ports with PortFast, not for trunk ports. Trunk ports between switches are expected to exchange BPDUs for normal STP operation; applying BPDU Guard on a trunk would cause the port to err-disable upon receiving legitimate BPDUs, disrupting the network.

Why candidates pick the wrong answer

C

Students may confuse PortFast with BPDU filtering or think that PortFast ignores BPDUs entirely. The phrase 'allows BPDUs to pass through normally' might seem plausible because PortFast does not block BPDUs, but the key error is that the port does not remain in forwarding state if a BPDU is received.

D

The description of 'ignoring superior BPDUs' sounds similar to the function of Root Guard, which prevents a port from becoming a root port. Students often mix up BPDU Guard and Root Guard because both involve BPDU handling and port protection.

E

Students might think that BPDU Guard prevents loops, and since trunk ports can be involved in loops, they might assume it is appropriate. However, the correct loop prevention on trunk ports is achieved through STP itself, not BPDU Guard.

278
Multi-Selecteasy

A company wants all routers and switches to use a common time source so log timestamps line up during incident review. Which two statements about NTP are correct?

Select 2 answers
A.It helps synchronize device clocks
B.Consistent time improves correlation of syslog and other event data
C.It advertises Layer 3 reachability between routers
D.It encrypts data traffic between endpoints by default
AnswersA, B

NTP uses a hierarchical stratum model to distribute UTC time from authoritative sources down to client routers and switches, typically over UDP port 123. Each device adjusts its local clock gradually to eliminate drift and jitter, converging on a mutually consistent time reference. This is the core synchronization mechanism that makes a common time base possible across all networking devices.

Why this answer

NTP (Network Time Protocol) is used to synchronize device clocks (option A) so that event timestamps are consistent across network devices, which improves correlation of syslog and other event data (option B). Option C is incorrect because NTP does not advertise Layer 3 reachability; that is a function of routing protocols like OSPF or EIGRP. Option D is incorrect because NTP does not encrypt data traffic by default; it only synchronizes time and does not provide encryption.

Exam trap

A common exam trap is mistaking NTP for a routing or security protocol. Some candidates incorrectly believe NTP advertises Layer 3 reachability like routing protocols (e.g., OSPF or EIGRP) or that it encrypts data traffic by default. This confusion arises because NTP is often mentioned alongside other network services, but its sole purpose is to synchronize device clocks.

Selecting options related to routing or encryption when the question focuses on time synchronization leads to incorrect answers. Understanding that NTP only aligns time across devices helps avoid this trap.

Why the other options are wrong

C

This option is incorrect because advertising Layer 3 reachability is the role of routing protocols like OSPF or EIGRP, not NTP, which only synchronizes time.

D

This option is incorrect as NTP does not encrypt data traffic by default; it is a time synchronization protocol and does not provide encryption services.

When would these options actually be correct?

C

In a question about routing protocols that advertise Layer 3 reachability between routers, such as 'Which protocol advertises Layer 3 reachability?' then options like OSPF or EIGRP would be correct, but NTP would not.

D

If the question asked 'Which protocol encrypts data traffic between endpoints by default?' or 'Which protocol provides confidentiality for IP communications?', then IPsec (or a similar encryption protocol) would be correct, not NTP.

Why candidates pick the wrong answer

C

Candidates may confuse NTP with routing protocols because both involve network communication and time synchronization is sometimes associated with network discovery or keepalive mechanisms.

D

Candidates may confuse NTP with security protocols or assume that any network protocol provides encryption, especially if they have limited experience with NTP's actual function.

279
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.

Why candidates pick the wrong answer

B

Candidates familiar with OSPFv2 for IPv4 might mistakenly apply the same 'network' command syntax to OSPFv3.

C

Candidates might think that only the transit link needs OSPFv3, forgetting that loopback networks must also be advertised to be reachable.

D

Candidates might overlook the need for unique router-ids, especially if they are focused on other configuration details.

280
MCQhard

A switch port should allow an IP phone and attached PC to operate correctly. The phone should place voice traffic in VLAN 200 while the PC remains in VLAN 20. Which configuration approach best supports that design?

A.Configure the port with an access VLAN for data and a voice VLAN for the phone
B.Configure the port as a routed port with no switchport
C.Configure the port as an EtherChannel member
D.Use a native VLAN only and disable all tagging
AnswerA

Cisco IP phones contain a small 3-port switch that places PC traffic on the configured access VLAN while the phone itself uses a distinct voice VLAN advertised via CDP. This design keeps data and voice in separate Layer 2 broadcast domains, allows separate QoS policies and subnets, and works over a single physical cable without a trunk to the desktop. The access VLAN carries untagged PC frames, while the voice VLAN uses 802.1Q tagging on the phone uplink, making coexistence correct.

Why this answer

The best approach is to configure the access VLAN for user data and the voice VLAN separately. In plain language, the PC should remain a normal untagged data endpoint in VLAN 20, while the phone can tag its own voice traffic for VLAN 200. Cisco access-port designs support this exact use case and allow the switch to keep voice and user traffic logically separated without requiring two physical ports.

This is a classic CCNA edge-port design. It is not a general trunking problem, and it does not require EtherChannel or router subinterfaces. The important idea is that one switchport can support an access VLAN and a voice VLAN together in a way designed specifically for IP phones with downstream PCs.

Exam trap

Avoid assuming trunk mode is needed for VLANs; understand access vs. voice VLANs for edge ports.

Why the other options are wrong

B

A routed port (no switchport) is used for Layer 3 routing between switches or routers, not for connecting end devices like IP phones and PCs. It does not support VLAN assignment or the coexistence of multiple VLANs on a single port, making it unsuitable for this scenario.

C

EtherChannel is used to aggregate multiple physical links into a single logical link for increased bandwidth and redundancy. It does not provide any mechanism to separate voice and data traffic into different VLANs on a single port, and it is not relevant to the requirement of connecting an IP phone and PC.

D

Using a native VLAN only and disabling all tagging would place all traffic (voice and data) in the same VLAN, which contradicts the requirement to separate voice into VLAN 200 and data into VLAN 20. The native VLAN is used for untagged traffic on a trunk, but this design requires distinct VLANs with tagging for voice.

When would these options actually be correct?

B

In a scenario where a question asks for a configuration to route traffic between different VLANs without needing Layer 2 switching, such as when connecting to a router or Layer 3 switch, configuring the port as a routed port would be appropriate.

C

In a scenario where the question specifies that multiple switch ports need to be aggregated for increased bandwidth without the need for VLAN separation, configuring the port as an EtherChannel member would be correct. For instance, if the question states that both devices operate in the same VLAN and require load balancing, this option would be appropriate.

D

In a scenario where a network design requires a simple setup with only one VLAN for both voice and data traffic, and where VLAN tagging is not needed due to the network's limited complexity, this option could be correct.

Why candidates pick the wrong answer

B

Students might confuse a routed port with a trunk port or think that routing is needed to separate voice and data traffic, but the correct approach is to use switchport features like voice VLAN, not routed ports.

C

A test-taker might think that EtherChannel can be used to carry multiple VLANs, but that is the function of a trunk, not EtherChannel. EtherChannel itself does not affect VLAN assignment; it simply bundles links.

D

Students may think that the native VLAN can be used to carry both voice and data without tagging, but that would not achieve VLAN separation. The voice VLAN feature specifically uses tagging for voice traffic while keeping data untagged in the access VLAN.

281
MCQhard

A network engineer notices that a root port on a switch has transitioned to a loop-inconsistent state. The port was previously receiving BPDUs normally, but after a suspected unidirectional fiber cut, it no longer receives BPDUs. What is the most likely cause?

A.BPDU Guard is enabled on the port, causing it to be placed in error-disabled state.
B.Loop Guard is active on the root port and transitioned it to loop-inconsistent state upon BPDU loss.
C.UDLD has detected a unidirectional link and has shut down the port.
D.Root Guard is preventing the port from transitioning to designated forwarding after losing BPDUs.
AnswerB

Loop Guard is precisely designed to monitor BPDU reception on blocked or alternate ports. When a unidirectional link failure occurs and BPDUs are no longer received, Loop Guard places the port into the loop-inconsistent state, blocking all traffic to prevent a potential loop. The 'loop-inconsistent' state is a clear indicator of this feature.

Why this answer

Loop Guard is a Spanning Tree Protocol (STP) enhancement that prevents alternate or root ports from becoming designated forwarding ports when BPDUs are no longer received. When a unidirectional fiber cut causes BPDU loss on a root port, Loop Guard transitions the port to the loop-inconsistent state, blocking traffic until BPDUs are received again. This matches the scenario exactly, making option B correct.

Exam trap

Cisco often tests the distinction between Loop Guard (reacts to BPDU loss) and UDLD (detects unidirectional links via proprietary keepalives), where candidates mistakenly choose UDLD because the question mentions a unidirectional fiber cut, but the key clue is the specific 'loop-inconsistent' state, which is unique to Loop Guard.

Why the other options are wrong

A

BPDU Guard is a protective feature that disables a port upon receiving a BPDU, not upon losing BPDUs. The symptom here is a loss of BPDUs, not a reception of unexpected BPDUs.

C

UDLD acts by shutting down the port or putting it in errdisable state, while the scenario explicitly shows the port in a loop-inconsistent state, indicating an STP-based protection mechanism.

D

Root Guard would block a port if it received a BPDU with better root information, not when BPDUs stop arriving. It also does not produce a loop-inconsistent state.

282
MCQmedium

A router is configured for PAT overload. What does the inside global address represent for an internal PC?

A.The private IP address assigned to the internal PC
B.The public address that represents the internal PC to external networks
C.The remote server address as seen from the inside host
D.The MAC address of the outside interface
AnswerB

In PAT overload, the inside global address is the public IPv4 address, often shared by many internal hosts, that appears as the source address in packets sent to external networks. The router rewrites each internal host's private source IP and port into this public address plus a unique port number, so external servers reply to the translated public address. This correctly describes what that field represents.

Why this answer

With NAT overload, the inside local address is the private address on the internal host. The inside global is the translated public address that represents that inside host to the outside network.

Exam trap

A frequent exam trap is mistaking the inside global address for the inside local address. Candidates often confuse the private IP assigned to the internal PC (inside local) with the public IP address used externally (inside global). Another pitfall is mixing up inside global with outside local or outside global addresses, which relate to remote hosts rather than internal devices.

This confusion can lead to incorrect NAT configuration interpretations or troubleshooting errors. Remember, the inside global address is the public IP visible to external networks representing the internal PC, not the private IP assigned inside the LAN.

Why the other options are wrong

A

Option A incorrectly identifies the inside global address as the private IP address assigned to the internal PC. This is actually the inside local address, which is the private IP used within the internal network and not visible externally.

C

Option C confuses the inside global address with outside local or outside global addresses, which refer to remote servers or external hosts from the internal perspective. The inside global address specifically represents the internal PC externally.

D

Option D incorrectly associates the inside global address with the MAC address of the outside interface. NAT translation deals with IP addresses and ports, not MAC addresses, so this option is invalid.

When would these options actually be correct?

A

If the question asked 'What does the inside local address represent for an internal PC?', then option A would be correct, as inside local is the private IP assigned to the host.

C

If the question were 'What does the inside local address represent for an internal PC during PAT?', then the correct answer would be the private IP address of the internal PC. Alternatively, if the question asked about the destination address in a packet from the inside host to a remote server, option C could be correct.

Why candidates pick the wrong answer

A

Candidates often confuse 'inside global' with 'inside local' because both terms involve the internal host, leading them to mistakenly think the global address is the PC's own private IP.

C

Candidates may confuse the inside global address (the translated source address) with the destination address of the remote server, especially when thinking about how packets are seen from the inside host's perspective.

D

Students might associate 'address' with MAC addresses due to familiarity with MAC addressing in Ethernet, but NAT specifically deals with IP addresses.

283
PBQmedium

You are connected to SW1 via the console. SW1 is a Layer 2 switch. Port GigabitEthernet0/1 connects to a PC in VLAN 10, and port GigabitEthernet0/2 connects to a server in VLAN 20. Both ports are currently in VLAN 1. Configure SW1 to assign GigabitEthernet0/1 to VLAN 10 and GigabitEthernet0/2 to VLAN 20, and verify the configuration.

Network Topology
G0/1G0/2SW1PCServer

Hints

  • Use switchport mode access to configure the port as an access port.
  • Use switchport access vlan to assign the VLAN.
A.interface GigabitEthernet0/1 switchport mode access switchport access vlan 10 interface GigabitEthernet0/2 switchport mode access switchport access vlan 20 end show vlan brief
B.interface GigabitEthernet0/1 switchport mode trunk switchport trunk allowed vlan 10 interface GigabitEthernet0/2 switchport mode trunk switchport trunk allowed vlan 20 end show interfaces trunk
C.vlan 10 name PC_VLAN vlan 20 name Server_VLAN interface GigabitEthernet0/1 switchport mode access switchport access vlan 10 interface GigabitEthernet0/2 switchport mode access switchport access vlan 20 end show vlan brief
D.interface GigabitEthernet0/1 switchport access vlan 10 interface GigabitEthernet0/2 switchport access vlan 20 end show vlan brief
AnswerA
solution
! SW1
interface GigabitEthernet0/1
switchport mode access
switchport access vlan 10
interface GigabitEthernet0/2
switchport mode access
switchport access vlan 20

Why this answer

Access ports carry traffic for a single VLAN. By assigning G0/1 to VLAN 10 and G0/2 to VLAN 20, the PC and server are placed in their respective VLANs.

Exam trap

Do not confuse access ports with trunk ports. Access ports are for end devices; trunk ports are for switch-to-switch connections. Also, remember that 'switchport mode access' is required before assigning a VLAN; otherwise, the port may not behave as expected.

Why the other options are wrong

B

Trunk ports are not appropriate for end devices; they are designed for inter-switch links.

C

The question does not require creating or naming VLANs; it only asks to assign ports to existing VLANs.

D

The 'switchport mode access' command is required to explicitly set the port as an access port; otherwise, the port might negotiate trunking.

Why candidates pick the wrong answer

B

Candidates may confuse trunk ports with access ports or think that 'trunk allowed vlan' assigns a port to a VLAN.

C

Candidates may think they need to create VLANs before assigning ports, but VLANs 10 and 20 are assumed to exist or are created automatically when assigned.

D

Candidates may assume that 'switchport access vlan' alone is sufficient, but the mode must be set to access for the command to take effect properly.

284
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

OSPF requires that the interfaces on a directly connected link belong to the same area for the neighbour adjacency to form. In this scenario, the two routers are configured with area 0 and area 1 respectively on the shared link, which violates the OSPF rule that the area ID must match on the connecting interface. This mismatch prevents the exchange of hello packets from progressing to the 2-Way state, directly satisfying the stem’s condition that hello timers and IP addresses are correct yet adjacency fails.

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.

When would these options actually be correct?

B

In a different scenario, if the question asked about OSPF neighbor formation issues and specifically mentioned that hostname mismatches can affect certain OSPF features like authentication or logging, then this option could be correct.

C

In a different scenario where the question specifies that OSPF is being used over a network that requires VLAN segmentation, and the routers are configured on different VLANs, converting the link to a trunk would be necessary for OSPF to function properly across those VLANs.

D

In a different question, if the scenario described routers that were configured to use static routes exclusively and were not establishing OSPF neighbors due to misconfiguration, then the requirement for static routes could be the correct answer. For example, if the question stated that both routers were configured for static routing only and OSPF was not enabled, this option would be valid.

Why candidates pick the wrong answer

B

Students might think that hostnames must match because they confuse OSPF with other protocols like EIGRP, which uses a router ID that can be derived from the hostname, or because they assume consistency in naming is required for network devices to communicate.

C

Test-takers might confuse OSPF with VLAN trunking or think that because OSPF can run over VLANs, the link must be a trunk. However, OSPF can run on access ports or routed ports without any trunk configuration.

D

Some students believe that a router must have a route to the neighbor's network before forming an adjacency, but OSPF uses multicast hello packets to discover neighbors directly connected on the same link, regardless of existing routing table entries.

285
Matchingmedium

Match each programmability term to its most accurate description.

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

Concepts
Matches

Structured representation of configuration or state

Common machine-readable data format

Specific API target or path

Credential-like access value

Why these pairings

Each term is correctly matched with its standard definition in software development and API contexts.

Exam trap

Candidates often confuse APIs with programming languages or protocols. Remember that an API is an interface, not a language or a protocol itself. It enables communication between different software systems.

When would these options actually be correct?

B

If the question asked 'Which programming language is commonly used to write automation scripts for network devices?' then Python would be a correct answer, but the term 'API' would not match that description.

C

If the question asked to match a term like 'router' or 'modem' to the description 'A hardware component that connects network devices to the internet', then this option would be correct.

D

In a question asking 'Which security protocol encrypts data transmitted over a network?', options like TLS, IPsec, or SSL would be correct. If the question were about a protocol that provides encryption, D would be correct if it named a specific encryption protocol.

Why candidates pick the wrong answer

B

Candidates may confuse APIs with scripting languages because both are used in network automation, and they often use APIs via scripts, leading to the misconception that an API is a language.

C

Candidates may confuse the term 'API' with 'access point' or assume that any technology term related to networking could be a physical device, leading them to select a hardware-related description.

D

Candidates may confuse API with security terms because APIs often use encryption (e.g., HTTPS) and are involved in secure communications, leading them to think API itself is a security protocol.

286
MCQhard

An administrator wants to permit SSH management access but block Telnet access to a device. Which statement best reflects that design goal?

A.SSH is preferred because it provides encrypted remote administration, unlike Telnet
B.Telnet is preferred because it provides stronger confidentiality than SSH
C.SSH can be used only on Layer 2 switches and not routers
D.Blocking Telnet automatically disables all AAA functions
AnswerA

This is correct because SSH protects management traffic with encryption, while Telnet sends it in clear text.

Why this answer

Permitting SSH while blocking Telnet is a hardening decision because SSH encrypts management traffic and Telnet does not. The administrator wants remote access to remain available with credentials and session data protected. Option A is correct: SSH provides encrypted remote administration.

Option B is wrong: Telnet offers no confidentiality. Option C is wrong: SSH works on routers and Layer 3 switches, not only Layer 2 switches. Option D is wrong: blocking Telnet does not disable AAA; AAA can still function over SSH or local authentication.

Exam trap

Avoid assuming that enabling both protocols or disabling both achieves security goals. Focus on encryption as the key factor.

Why the other options are wrong

B

Telnet transmits credentials and data in plaintext, so it lacks confidentiality and is less secure than SSH.

C

SSH can be configured on routers, Layer 3 switches, and any device that supports IP connectivity, not just Layer 2 switches.

D

Blocking Telnet only disables unencrypted remote access; AAA functions (e.g., authentication, authorization, accounting) remain operational via SSH or other methods.

When would these options actually be correct?

B

In a hypothetical scenario where a question asks which protocol provides stronger confidentiality in a specific legacy system that has been configured to use Telnet with additional encryption layers, option B could be considered correct. This would imply that the context allows for Telnet to be enhanced beyond its standard capabilities.

C

In a different exam scenario, if the question stated that SSH is only supported on Layer 2 switches and asked which protocol should be used for secure management of Layer 2 devices, then option C would be correct as it aligns with the constraints of that specific context.

D

If a question stated that blocking Telnet access would also disable AAA functions due to a specific device configuration or policy that ties AAA to Telnet sessions, then this option would be correct. For example, if a legacy system required Telnet for AAA operations, blocking it could impact those functionalities.

Why candidates pick the wrong answer

B

A student might confuse the terms 'confidentiality' and 'authentication' or mistakenly think that an older protocol like Telnet could be more secure due to simplicity. Some might also assume that because Telnet is widely used in legacy environments, it must have some security advantage.

C

A test-taker might confuse SSH with a Layer 2 protocol or think that because Telnet is often used for console access on switches, SSH might be restricted. The similarity in names between SSH and other Layer 2 protocols (like STP) could also cause confusion.

D

A student might think that Telnet is a required component for AAA, especially if they have seen AAA configured with Telnet in lab scenarios. The acronym AAA and its association with remote access could lead to the mistaken belief that disabling Telnet breaks AAA.

287
Drag & Drophard

Drag and drop the following steps into the correct order to describe how a router selects the best path and forwards a packet, using the routing table lookup process from destination IP to forwarding decision.

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

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

Why this order

The router first identifies the destination IP, then finds the best matching route using longest prefix match, and forwards to the next hop.

Exam trap

The exam trap here is that candidates often confuse the order of steps, especially placing the longest prefix match before examining the destination IP. Remember: you must know the destination before you can look it up in the routing table.

Why candidates pick the wrong answer

B

Candidates might think the lookup process starts with the routing table because that is where the decision is made, but the destination IP must be extracted first.

C

Candidates might confuse the order because in some contexts, the next hop is known from the routing table entry, but the lookup must happen first.

D

Candidates might think the next hop is predetermined, but it depends on the destination and the routing table.

288
Multi-Selectmedium

Which TWO statements accurately describe how AI and ML concepts are applied to network operations?

Select 2 answers
A.Intent-based networking translates business intent into network policies and continuously validates that the network meets those intentions.
B.Anomaly detection uses ML models to identify deviations from normal traffic baselines, which can indicate security threats or performance issues.
C.Predictive analytics uses historical data to forecast future network conditions and automatically reconfigures network devices to prevent issues.
D.ML models in network operations are trained exclusively on labeled datasets to detect known attack signatures.
E.Rule-based systems are preferred over ML for anomaly detection because they can adapt to new, unknown patterns without manual updates.
AnswersA, B

Intent-based networking (IBN) is a policy-driven framework that captures business intent in natural language or declarative models and translates it into device-level configurations. It continuously validates the actual network state against the intended state using telemetry, model-driven assurance, and closed-loop feedback, taking corrective action when a divergence is detected. This continuous validation differentiates IBN from traditional automation, which merely pushes scripts without ongoing policy verification.

Why this answer

Intent-based networking (IBN) captures business intent in a declarative model, translates it into network policies (e.g., via Cisco DNA Center), and continuously validates that the network state matches the intended outcome using assurance and closed-loop analytics. Option B is correct because anomaly detection leverages ML models to establish a baseline of normal traffic and then flags deviations, which can indicate security threats or performance issues. Option C is incorrect because predictive analytics forecasts future network conditions but does not automatically reconfigure devices; that requires closed-loop automation.

Option D is false because ML models in network operations are not trained exclusively on labeled data; unsupervised learning can detect unknown patterns without labeled datasets. Option E is false because rule-based systems cannot adapt to new, unknown patterns without manual updates, whereas ML models are better suited for anomaly detection due to their ability to learn and generalize from data.

Exam trap

Cisco often tests the distinction between 'predictive analytics' (which forecasts but does not automatically reconfigure) and 'closed-loop automation' (which does), leading candidates to overstate the capabilities of predictive analytics in option C.

Why the other options are wrong

C

Predictive analytics forecasts future network conditions (e.g., link utilization trends) but does not automatically reconfigure devices; automation requires separate closed-loop systems like Cisco DNA Assurance with RMA (reactive, proactive, predictive) workflows. The statement incorrectly combines prediction with automatic reconfiguration.

D

ML models in network operations can be trained using both supervised learning (labeled data for known attacks) and unsupervised learning (unlabeled data to discover unknown patterns). The statement incorrectly claims exclusive use of labeled datasets, ignoring unsupervised anomaly detection which is critical for identifying novel threats.

E

Rule-based systems are static and cannot adapt to new, unknown patterns without manual rule updates. ML models, especially unsupervised learning, excel at detecting anomalies without predefined rules. The statement reverses the strengths of rule-based and ML approaches.

Why candidates pick the wrong answer

C

Students may confuse predictive analytics with closed-loop automation, assuming that forecasting inherently triggers corrective actions. In reality, prediction and automation are distinct functions that can be integrated but are not synonymous.

D

Test-takers may associate ML with supervised learning (e.g., signature-based detection) and overlook unsupervised methods. This confusion arises because traditional security tools often rely on labeled signatures, but modern AI/ML expands to unsupervised learning.

E

Students might think rule-based systems are more reliable because they are deterministic and easier to understand. However, they fail to recognize that ML's adaptability is precisely what makes it superior for detecting unknown patterns in dynamic network environments.

289
Matchingmedium

Match each HTTP method to the action it most commonly performs in a REST API.

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

Concepts
Matches

Retrieve a resource

Create a new resource

Update or replace a resource

Remove a resource

Why these pairings

All listed mappings are correct according to RESTful API conventions. GET retrieves a resource, POST creates a new resource, PUT replaces an existing resource, and PATCH applies a partial update.

Exam trap

In this question, focus on the four methods given: GET, POST, PUT, PATCH. The most common pitfall is confusing PUT (full replacement) with PATCH (partial update). Also, remember that POST is for creating resources, not for updating or reading.

Do not apply the DELETE concept here.

290
Matchingmedium

Match each STP or switch protection feature to the problem it is mainly designed to prevent.

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

Concepts
Matches

Reduces delay for an end-host access port to reach forwarding

Err-disables a PortFast port that unexpectedly receives a BPDU

Prevents an access or designated port from becoming a new root port because of superior BPDUs

Helps stop a non-designated port from transitioning to forwarding when BPDUs stop arriving

Why these pairings

STP protection features prevent specific problems: Root Guard protects root bridge election, BPDU Guard prevents loops on access ports, Loop Guard handles BPDU loss, UDLD detects unidirectional links, and PortFast speeds up port transition.

Exam trap

The exam trap is confusing BPDU Guard with Root Guard or Loop Guard. Remember that BPDU Guard specifically protects against rogue switches by shutting down the port if a BPDU is received on a PortFast port.

291
Multi-Selecthard

Which two statements accurately compare IPv4 private addresses and public addresses?

Select 2 answers
A.Private IPv4 addresses are not directly Internet-routable.
B.Public IPv4 addresses are intended to be globally unique and routable.
C.Private IPv4 addresses always require OSPF to function inside a LAN.
D.Public IPv4 addresses cannot exist on Internet-facing devices.
E.Private and public IPv4 addresses are both automatically translated by ARP.
AnswersA, B

Correct because RFC 1918 defines private ranges (10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16) that are not globally routable; Internet routers are configured to discard packets with these source or destination addresses. This is enforced by ISPs and core routers to prevent conflicts and routing loops, since these addresses are reused by countless internal networks. To access the Internet, private addresses must be translated to a public address using NAT.

Why this answer

Private IPv4 addresses are intended for internal use and are not directly routable on the public Internet. In plain language, they are designed for use inside organizations, homes, and other local environments without consuming globally unique public space. Public addresses, by contrast, are intended to be unique and routable across the Internet. This is one of the main reasons NAT became so common in IPv4 environments.

CCNA questions often test this distinction because learners sometimes confuse “valid inside a LAN” with “routable everywhere.” Private addressing is extremely useful, but it does not eliminate the need for translation or public addressing when reaching the Internet. The two correct statements are the ones that preserve that basic separation between internal-use ranges and globally routable address space.

Exam trap

Be careful not to confuse the routability of private addresses with their validity within a LAN. Private addresses need NAT for Internet access.

Why the other options are wrong

C

Private IPv4 addresses do not require OSPF or any specific routing protocol to function inside a LAN; they can operate with static routes or any dynamic routing protocol. OSPF is just one option and is not mandatory.

D

Public IPv4 addresses are specifically used on Internet-facing devices to enable global reachability. Without public addresses, devices would not be directly accessible from the Internet.

E

ARP (Address Resolution Protocol) resolves IP addresses to MAC addresses on a local network segment and does not perform any translation between private and public addresses. NAT (Network Address Translation) handles that translation.

When would these options actually be correct?

C

If the question were to ask about the requirements for routing protocols in a specific network setup that exclusively uses OSPF for all internal communications, then this statement could be correct. For example, a scenario where a network design mandates OSPF for all routing, including private addresses, would validate this option.

D

If the exam question stated that 'Public IPv4 addresses are only used in private networks' or 'Public IPv4 addresses are never assigned to devices that connect directly to the Internet,' then option D would be correct. Such a scenario would misrepresent the nature of public IP addresses.

E

In a question that asks about the functions of ARP in a network where both private and public addressing schemes are in use, one might state that ARP is involved in the translation process, making this option correct in that context.

Why candidates pick the wrong answer

C

Students might associate private addresses with internal networks and mistakenly think OSPF is commonly used there, but OSPF is not a requirement for private address operation.

D

A student might confuse public addresses with private ones, thinking public addresses are only for internal use, but the opposite is true.

E

The acronym 'ARP' might be confused with 'NAT' or 'PAT' by students who are not clear on the functions of each protocol.

292
Multi-Selectmedium

Which TWO statements accurately describe the responsibilities of the OSI model's Transport layer?

Select 2 answers
A.It provides logical addressing and routing to determine the best path for data.
B.It segments data from the upper layers and manages end-to-end flow control.
C.It converts data into electrical signals for transmission over the physical medium.
D.It provides reliable or unreliable delivery of data between applications on different hosts.
E.It encapsulates data into frames and adds source and destination MAC addresses.
AnswersB, D

The Transport layer is responsible for segmenting data received from upper-layer protocols into smaller, manageable units called segments. TCP, for example, implements end-to-end flow control using a sliding window, which prevents a fast sender from overwhelming a slower receiver by adjusting the amount of data transmitted before requiring an acknowledgment. This explicit segmentation and flow-control management is separate from the delivery-reliability service, though both are Transport-layer duties.

Why this answer

The Transport layer (Layer 4) segments data from upper layers and manages end-to-end flow control using mechanisms like TCP's sliding window to prevent overwhelming a slow receiver. Option D is correct because the Transport layer provides either reliable delivery (TCP) or unreliable delivery (UDP) between applications on different hosts, ensuring data reaches the appropriate application via port numbers. Option A is incorrect because logical addressing and routing are functions of the Network layer (Layer 3).

Option C is incorrect because converting data into electrical signals is the responsibility of the Physical layer (Layer 1). Option E is incorrect because encapsulating data into frames with MAC addresses is a function of the Data Link layer (Layer 2).

Exam trap

Cisco often tests the distinction between Transport layer flow control (end-to-end) and Network layer congestion control (path-based), leading candidates to confuse Layer 4 segmentation with Layer 3 routing functions.

Why the other options are wrong

A

Logical addressing and routing are Network layer (Layer 3) functions, not Transport layer responsibilities.

C

Converting data into electrical signals is the Physical layer (Layer 1) function, not Transport layer.

E

Encapsulation into frames with MAC addresses is a Data Link layer (Layer 2) function, not Transport layer.

Why candidates pick the wrong answer

A

Students often confuse the Transport layer with the Network layer because both deal with end-to-end delivery. However, the Network layer handles logical addressing and routing, while the Transport layer manages the connection between applications.

C

Students may think that all layers eventually convert data to signals, but this specific conversion is exclusive to the Physical layer. The Transport layer works with segments and does not interact directly with the physical medium.

E

Students often confuse encapsulation at different layers. The Transport layer adds a header with port numbers, but framing and MAC addressing occur at the Data Link layer. This confusion is common when learning the OSI model.

293
MCQmedium

A network engineer is troubleshooting a connectivity issue between two hosts on different subnets. The sending host has constructed a packet with a destination IP address of 192.168.2.10. As the packet travels down the OSI model layers on the sending host, which Protocol Data Unit (PDU) name is assigned to the data at the Transport layer after TCP segments are created, and at which layer does the IP address get encapsulated?

A.PDU is a frame; IP address is added at the Data Link layer.
B.PDU is a segment; IP address is added at the Network layer.
C.PDU is a packet; IP address is added at the Transport layer.
D.PDU is a datagram; IP address is added at the Transport layer.
AnswerB

At the Transport layer, TCP encapsulates the application data into a segment, adding source and destination port numbers. This segment is then passed down to the Network layer, where the IP header—containing source and destination IP addresses—is added to create a packet. This is the correct sequence of encapsulation for TCP/IP communication.

Why this answer

At the Transport layer, TCP divides data into segments, so the PDU is called a segment, making B correct. The destination IP address (192.168.2.10) is added at the Network layer, where the IP header encapsulates the segment into a packet. Option A is wrong because a frame is a Data Link layer PDU, and IP addresses are not added at that layer.

Option C is wrong because the PDU at the Transport layer is a segment, not a packet, and IP addresses are added at the Network layer, not the Transport layer. Option D is wrong because 'datagram' typically refers to UDP’s Transport layer PDU (not TCP), and IP addresses are not added at the Transport layer.

Exam trap

Cisco often tests the precise PDU naming per layer (segment for TCP at Transport, packet for IP at Network) and the layer where IP addresses are added, tricking candidates who confuse 'packet' with 'segment' or think IP addresses are added at the Transport layer.

Why the other options are wrong

A

The PDU at the Transport layer is a segment, not a frame. Frames are the PDU at the Data Link layer (Layer 2). Additionally, IP addresses are added at the Network layer (Layer 3), not the Data Link layer.

C

A packet is the PDU at the Network layer (Layer 3), not the Transport layer. The IP address is added at the Network layer, not the Transport layer. The Transport layer PDU is a segment (for TCP) or a datagram (for UDP).

D

A datagram is the PDU for UDP at the Transport layer, but the question specifies TCP segments. Even if it were UDP, the IP address is still added at the Network layer, not the Transport layer.

Why candidates pick the wrong answer

A

Students often confuse the Data Link layer with the Network layer because both involve addressing (MAC vs. IP). The term 'frame' is commonly associated with encapsulation, leading to the mistaken belief that IP addresses are added at Layer 2.

C

The term 'packet' is widely used in networking and often misapplied to any encapsulated data unit. Students may incorrectly associate the IP address with the Transport layer because both are involved in end-to-end communication.

D

Students may recall that UDP uses datagrams and think that the IP address is part of the Transport layer encapsulation. However, IP addressing is always a Network layer function, regardless of the Transport protocol.

294
PBQhard

You are connected to R1, a multilayer switch acting as the STP root bridge. Configure Root Guard on the designated port toward R2 (G0/1), Loop Guard on the uplink port G0/2, and BPDU Guard on PortFast-enabled access port G0/3. After configuration, a superior BPDU is received on G0/1, causing it to be blocked by Root Guard; later, an unauthorized BPDU on G0/3 triggers err-disable. Troubleshoot and verify the expected port states.

Hints

  • Root Guard only blocks a port when it receives a superior BPDU; it does not affect normal operation.
  • Loop Guard prevents alternate or root ports from becoming designated in case of BPDU loss.
  • BPDU Guard err-disables a PortFast port immediately upon BPDU reception.
A.G0/1 is in blocking state (Root Guard), G0/2 is in forwarding state (Loop Guard), G0/3 is in err-disable state (BPDU Guard).
B.G0/1 is in forwarding state (Root Guard), G0/2 is in blocking state (Loop Guard), G0/3 is in err-disable state (BPDU Guard).
C.G0/1 is in err-disable state (Root Guard), G0/2 is in forwarding state (Loop Guard), G0/3 is in blocking state (BPDU Guard).
D.G0/1 is in blocking state (Root Guard), G0/2 is in loop-inconsistent state (Loop Guard), G0/3 is in err-disable state (BPDU Guard).
AnswerA
solution
! R1
interface GigabitEthernet0/1
no spanning-tree guard root
spanning-tree guard root
end
interface GigabitEthernet0/3
shutdown
no shutdown
end

Why this answer

The root guard on G0/1 correctly blocked the port when a superior BPDU was received, preventing an unauthorized root bridge. Loop Guard was applied specifically to the uplink port G0/2 to prevent forwarding loops in case of uni-directional link failure. BPDU Guard on G0/3 placed the port into err-disable state upon receiving an unexpected BPDU, which protects the PortFast edge port.

To restore G0/3, you must manually shut/no shut the interface after removing the offending device.

Exam trap

Do not confuse the actions of Root Guard (blocking) with BPDU Guard (err-disable). Root Guard blocks the port temporarily; BPDU Guard err-disables the port until manual intervention. Also, Loop Guard does not block immediately; it only reacts when BPDUs stop.

Why the other options are wrong

B

Root Guard blocks the port upon receiving a superior BPDU, not forwards. Loop Guard transitions to blocking only after BPDU loss, not while BPDUs are still received.

C

Root Guard results in a blocking state, not err-disable. BPDU Guard results in err-disable, not blocking.

D

Loop Guard does not immediately place the port in loop-inconsistent state; it only does so after BPDU loss. Here, BPDUs are still being received.

Why candidates pick the wrong answer

B

Candidates may confuse Root Guard with BPDU Guard, thinking it err-disables, or think Loop Guard always blocks the port.

C

Candidates may think Root Guard err-disables because it's a security feature, or confuse the actions of Root Guard and BPDU Guard.

D

Candidates may think Loop Guard always puts the port in a special state, but it only activates upon BPDU loss.

295
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure NTP with authentication on a Cisco router.

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

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

Why this order

First, define the NTP authentication key using the ntp authentication-key command to create the key that will be used. Second, enable NTP authentication globally with ntp authenticate so that the router requires keys for NTP associations. Third, specify which keys are trusted with ntp trusted-key so the router accepts those keys.

Fourth, associate the NTP server with the key using the ntp server command with the key option, linking the server to the trusted key. Finally, verify the authenticated association using show ntp associations to confirm the configuration is working. This order is required because the key must exist before it can be trusted, authentication must be enabled before keys are checked, and the server must be configured with the key only after it is trusted.

296
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure Root Guard on designated ports, Loop Guard on non-designated ports, and BPDU Guard on PortFast ports, and then recover a port that enters err-disabled due to BPDU Guard.

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

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

Why this order

The correct order begins with Root Guard on designated ports to prevent them from becoming root ports upon receiving superior BPDUs. Next, Loop Guard is applied to non-designated ports (alternate/backup) to protect against unidirectional link failures. Then, BPDU Guard is placed on PortFast-enabled ports to shut them down if a BPDU is received, preventing rogue switch connections.

Finally, recovery from BPDU Guard err-disable requires a manual interface reset (shutdown/no shutdown) because the errdisable cause 'bpduguard' has no automatic timeout.

Exam trap

Cisco exams often test the specific port roles for each STP protection feature. Remember: Root Guard is for designated ports, Loop Guard is for non-designated ports (alternate/backup), and BPDU Guard is for PortFast ports. Also, recovery from err-disabled due to BPDU Guard requires manual interface reset, not just waiting or removing the configuration.

Why candidates pick the wrong answer

B

Candidates might confuse the port roles for each feature or think that a switch reload is a valid recovery method for err-disabled ports.

C

Candidates might think that errdisable timeout automatically recovers the port without manual intervention, or they may confuse the port roles for each feature.

D

Candidates might think that BPDU Guard should be applied to all ports for maximum protection, or that removing the cause of err-disable is sufficient for recovery.

297
PBQhard

You are connected to R1. The network administrator has partially configured IPv4 and IPv6 on the interfaces. However, PC1 (connected to R1's G0/1) cannot reach PC2 (connected to R2's G0/1). Configure R1 and R2 so that PC1 can ping PC2. Fix any addressing errors. Use IPv4 subnet 192.0.2.0/30 for the link between R1 and R2, and 198.51.100.0/24 for the PC LANs. For IPv6, use 2001:db8:1::/64 on R1's G0/1 and 2001:db8:2::/64 on R2's G0/1, with R1's G0/1 using EUI-64 and R2's G0/1 using a static address 2001:db8:2::1/64.

Hints

  • Check the subnet mask on the link between R1 and R2.
  • IPv6 EUI-64 requires the interface to be up and unicast-routing enabled.
  • Ensure both routers have routes to each other's LANs.
A.On R1, change the subnet mask on G0/0 from /24 to /30. On R1 G0/1, issue 'ipv6 address 2001:db8:1::/64 eui-64' and 'no shutdown'. Enable 'ipv6 unicast-routing' globally on both routers.
B.On R1, change the subnet mask on G0/0 from /24 to /30. On R1 G0/1, issue 'ipv6 address 2001:db8:1::/64 eui-64' and 'no shutdown'. No need to enable IPv6 unicast-routing because it is on by default.
C.On R1, change the subnet mask on G0/0 from /24 to /30. On R1 G0/1, issue 'ipv6 address 2001:db8:1::/64' (without eui-64) and 'no shutdown'. Enable 'ipv6 unicast-routing' globally on both routers.
D.On R1, change the subnet mask on G0/0 from /24 to /30. On R1 G0/1, issue 'ipv6 address 2001:db8:1::/64 eui-64' and 'no shutdown'. Enable 'ipv6 unicast-routing' globally on both routers. Also, change the default gateway on PC1 to 2001:db8:1::1.
AnswerA
solution
! R1
interface GigabitEthernet0/0
ip address 192.0.2.1 255.255.255.252
exit
interface GigabitEthernet0/1
ipv6 address 2001:db8:1::/64 eui-64
no shutdown
exit
ipv6 unicast-routing

! R2

Why this answer

The issue is a subnet mask mismatch on the link between R1 and R2: R1 uses /24 (255.255.255.0) while R2 uses /30 (255.255.255.252). This prevents R1 from having a route to R2's LAN. Fix R1's G0/0 mask to /30.

Additionally, R1's G0/1 IPv6 EUI-64 command is missing the interface identifier; the correct command is 'ipv6 address 2001:db8:1::/64 eui-64' but the interface must be enabled with 'no shutdown'. Also ensure IPv6 unicast-routing is enabled. The PCs have correct gateways.

Exam trap

Watch for subnet mask mismatches on point-to-point links; they break routing. Also, remember that IPv6 unicast-routing is disabled by default and must be enabled. EUI-64 requires the 'eui-64' keyword and generates an address based on MAC, not a static ::1.

Why the other options are wrong

B

The specific factual error is that IPv6 unicast-routing is disabled by default on Cisco routers.

C

The specific factual error is that the command without 'eui-64' assigns a static address, not an EUI-64 address.

D

The specific factual error is assuming the EUI-64 address ends with ::1, which is not guaranteed.

Why candidates pick the wrong answer

B

Candidates may think IPv6 routing is enabled by default, similar to IPv4, but it is not.

C

Candidates might forget the 'eui-64' keyword or think it is optional, but the question explicitly requires EUI-64.

D

Candidates often assume the first usable address (::1) is the router's address, but EUI-64 generates a different interface ID.

298
MCQhard

Why is a northbound API valuable to orchestration systems in a controller-based architecture?

A.It provides a defined software interface through which orchestration tools can interact with the controller.
B.It allows network devices to communicate directly with each other without the controller.
C.It is a physical interface used to connect the controller to the orchestration system.
D.It is a physical cable standard for controller uplinks.
AnswerA

A northbound API exposes network services through a clearly defined, machine-readable interface, commonly REST/JSON or NETCONF, allowing orchestration tools to programmatically query state and push configuration. This abstraction layer hides the underlying device specifics so that the orchestrator can manage the controller as a single logical entity. It is precisely this software contract that makes automated, policy-driven network orchestration possible.

Why this answer

A northbound API is valuable because it provides a defined software interface for orchestration systems to interact with the controller programmatically. Option B is incorrect because northbound APIs do not enable direct device-to-device communication; that is a function of the data plane. Option C is incorrect because northbound APIs are logical software interfaces, not physical cables or ports.

Option D is also incorrect as it mischaracterizes the API as a hardware standard.

Exam trap

A common exam trap is mistaking the northbound API for a physical connection or confusing it with southbound APIs that communicate with network devices.

Why the other options are wrong

B

This describes direct device communication or southbound APIs, not the northbound API used by orchestration.

C

Northbound APIs are logical software interfaces, not physical cable standards or hardware.

When would these options actually be correct?

B

In a question asking about the benefits of a centralized control architecture that eliminates the need for individual forwarding devices, option B could be correct. For instance, if the question specified a scenario where a software-defined networking (SDN) solution abstracts forwarding functions, this option would be valid.

C

In a question that asks about the benefits of simplifying network security protocols in a specific context, such as a hypothetical scenario where a system is designed to operate in a fully trusted environment, this option could be correct if the focus is on reducing complexity in that context.

D

In a question focused on the physical infrastructure of a network controller, such as 'What is the standard for connecting controllers to forwarding devices?' option D could be correct if it referred to a specific cable standard used for such connections.

Why candidates pick the wrong answer

B

Students might think that since the controller abstracts device details, the physical forwarding devices become unnecessary. However, the controller only manages them; the devices themselves are still required for data plane operations.

C

Some might assume that because the API simplifies interaction, security controls are bypassed. However, security is a critical aspect of API design, and authentication/authorization are enforced to prevent unauthorized access.

D

The term 'northbound' might be confused with physical directions or cabling, leading students to think it refers to a specific type of cable or port. In networking, 'northbound' refers to the direction of traffic flow toward higher-level management systems.

299
PBQmedium

You are connected to R1 via the console. R1 is a router that needs to provide DHCP services for hosts on VLAN 10 (192.168.10.0/24) and VLAN 20 (192.168.20.0/24). The DHCP server is located on VLAN 10 at 192.168.10.100, but hosts on VLAN 20 cannot reach it directly. Configure R1 to forward DHCP broadcasts from VLAN 20 to the DHCP server.

Network Topology
G0/0.10192.168.10.1/24G0/0.20192.168.20.1/24DHCP ServerVLAN 10R1VLAN 20Hosts

Hints

  • The helper address should be placed on the interface that receives the DHCP broadcast.
  • The helper address is the server's IP address.
  • Only one command is needed.
A.interface GigabitEthernet0/0.20 encapsulation dot1Q 20 ip helper-address 192.168.10.100
B.interface GigabitEthernet0/0.10 encapsulation dot1Q 10 ip helper-address 192.168.10.100
C.interface GigabitEthernet0/0.20 encapsulation dot1Q 20 ip dhcp relay information option
D.ip dhcp pool VLAN20 network 192.168.20.0 255.255.255.0 default-router 192.168.20.1
AnswerA
solution
! R1
interface GigabitEthernet0/0.20
ip helper-address 192.168.10.100

Why this answer

The ip helper-address command enables the router to forward UDP broadcasts (including DHCP) to a specific server. Placing it on the VLAN 20 subinterface ensures that DHCP requests from VLAN 20 are unicast to the server on VLAN 10.

Exam trap

The key trap is placing the ip helper-address on the wrong interface. Remember: the helper-address must be on the interface that receives the client's broadcast, not on the server's interface. Also, do not confuse ip helper-address with DHCP server configuration or relay option commands.

Why the other options are wrong

B

The ip helper-address must be configured on the interface that receives the client broadcasts (VLAN 20), not the server's VLAN.

C

This command enables relay agent information insertion, not the actual forwarding of DHCP packets to a server.

D

The question states the DHCP server is at 192.168.10.100, so R1 should relay, not serve.

Why candidates pick the wrong answer

B

Candidates may think the helper-address should be on the server's subnet because the server is there.

C

Candidates may confuse DHCP relay options with the basic relay function.

D

Candidates may think they need to configure DHCP pools on the router to provide IP addresses.

300
Drag & Dropmedium

Drag and drop the following steps into the correct order to isolate and resolve interface CRC errors, duplex mismatches, and flapping on a Cisco IOS-XE switch.

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

Start with checking statistics to identify issues, then verify duplex and cable, replace hardware if needed, and finally confirm resolution.

Exam trap

Candidates often jump to hardware replacement or configuration changes without first gathering data. Always start with 'show interface' statistics to pinpoint the issue before taking corrective action.

Why candidates pick the wrong answer

B

Candidates might think hardware is the most common cause and jump to replacement first, but best practice is to gather evidence first.

C

Candidates might think verifying configuration is the first step, but statistics provide the evidence needed to guide further actions.

D

Candidates might think monitoring is a good starting point, but it is a passive step that should follow active troubleshooting.

Page 3

Page 4 of 19

Page 5