Courseiva

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

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

Page 5

Page 6 of 19

Page 7
376
Matchingmedium

Drag and drop the switch port configuration commands on the left to the correct descriptions on the right.

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

Concepts
Matches

Statically configures the port as an access port

Sets the data VLAN for an access port

Assigns the VLAN for IP phone voice traffic

Permanently sets the interface as a trunk port

Restricts which VLANs traverse the trunk

Why these pairings

The command 'switchport mode access' statically sets the port as an access port. 'switchport access vlan 10' assigns VLAN 10 as the data VLAN for connected devices. 'switchport voice vlan 20' defines the VLAN used by a Cisco IP phone for voice traffic. 'switchport mode trunk' forces the port into permanent trunking mode. 'switchport trunk allowed vlan 100,200' restricts the trunk to carry only VLANs 100 and 200.

377
Multi-Selectmedium

Which TWO commands can a network technician use on a modern Linux host to verify the IP address configuration and test reachability to a remote server?

Select 2 answers
A.ip addr
B.ifconfig
C.tracert
D.ping
E.nslookup
AnswersA, D

ip addr, part of the iproute2 suite, is the modern replacement for ifconfig, displaying all interfaces, their IPv4/IPv6 addresses, MAC addresses, and administrative state. It only inspects local interface configuration; it does not generate any network traffic toward a remote host, so it cannot verify end-to-end reachability.

Why this answer

The `ip addr` command (option A) is the modern Linux utility for displaying IP address configuration, replacing the deprecated `ifconfig`. The `ping` command (option D) uses ICMP Echo Request/Reply messages to test Layer 3 reachability to a remote server. `ifconfig` (option B) is deprecated and not expected for current certification exams; `tracert` (option C) is a Windows command; `nslookup` (option E) performs DNS lookups but does not verify IP configuration or connectivity.

Exam trap

Cisco often tests the distinction between Windows and Linux commands, so the trap here is that candidates may mistakenly select `tracert` (a Windows command) instead of recognizing that the Linux equivalent is `traceroute`, or they may choose `ifconfig` without knowing it is deprecated in favor of `ip addr`.

Why the other options are wrong

B

Although `ifconfig` can still display IP settings, it is a deprecated legacy command and the question expects the modern `ip addr` from the iproute2 suite.

C

`tracert` is the Windows traceroute utility; the Linux command is `traceroute`.

E

`nslookup` is a DNS troubleshooting tool and cannot verify interface IP configuration or test basic reachability like `ping`.

Why candidates pick the wrong answer

B

Students often remember `ifconfig` from older Linux courses or Windows (where it is `ipconfig`). The similar name and historical use make it a common distractor, even though it is no longer the recommended tool.

C

The similarity between `tracert` and `traceroute` leads students to believe they are interchangeable. Without knowing the OS-specific naming, a test-taker might incorrectly select this option.

E

Students may confuse name resolution with connectivity testing, thinking that if a name resolves, the host is reachable. However, DNS resolution can succeed even if the host is down or unreachable.

378
PBQmedium

You are connected to R1 via the console. R1 and R2 are running OSPFv2 in area 0. R1's router ID is 1.1.1.1, and R2's router ID is 2.2.2.2. Both routers are connected via GigabitEthernet0/0 on the 192.168.12.0/30 subnet. You need to ensure that R1 does not send OSPF hello messages out of its Loopback0 interface, while still advertising the loopback network into OSPF.

Network Topology
Lo010.0.0.1/32G0/0192.168.12.2/30R1R2

Hints

  • The command is configured under the OSPF process.
  • Use the keyword 'passive-interface' followed by the interface name.
  • This prevents OSPF from sending hello messages on that interface.
A.Configure the passive-interface Loopback0 command under the OSPF process.
B.Remove the network 192.168.12.0 0.0.0.3 area 0 command from the OSPF configuration.
C.Configure the ip ospf passive-interface command on GigabitEthernet0/0.
D.Configure the network 192.168.12.0 0.0.0.3 area 0 command under the OSPF process.
AnswerA
solution
! R1
router ospf 1
passive-interface Loopback0

Why this answer

Configuring the Loopback0 interface as passive under the OSPF process suppresses the sending of hello messages on that interface, preventing unnecessary adjacencies. The network is still advertised because OSPF includes the subnet in its LSAs.

Exam trap

Trap: Candidates may confuse passive-interface with removing network statements or applying it to the wrong interface. Remember that passive-interface suppresses hellos but still advertises the network, and it should be applied to the interface that should not form adjacencies, not the transit link.

Why the other options are wrong

B

The specific factual error is that the network statement for the transit link is necessary for OSPF adjacency; removing it would break the OSPF neighbor relationship.

C

The specific factual error is that applying passive-interface to the transit link would prevent the OSPF neighbor relationship from forming, which is not the goal.

D

The specific factual error is that adding a network statement does not suppress hello messages; it only includes the interface in the OSPF process.

Why candidates pick the wrong answer

B

Candidates might think that removing the network statement from the transit link would stop hello messages on that interface, but it would actually prevent the adjacency entirely.

C

Candidates might confuse the interface to be made passive, thinking that making the transit link passive would solve the problem, but it would break the adjacency.

D

Candidates might think that adding a network statement for the transit link would somehow affect hello suppression on Loopback0, but it is unrelated.

379
MCQmedium

Which command enables IPv6 routing on a Cisco router?

A.ipv6 unicast-routing
B.ipv6 enable
C.ip routing ipv6
D.ipv6 route enable
AnswerA

The global configuration command 'ipv6 unicast-routing' is the correct and required command to enable IPv6 routing on a Cisco router. It enables IPv6 packet forwarding on all interfaces and allows the router to route IPv6 traffic between networks. Without this command, the router will not forward IPv6 packets but will still process traffic explicitly addressed to itself.

Why this answer

The global configuration command 'ipv6 unicast-routing' enables IPv6 forwarding on a Cisco router. 'ipv6 enable' is an interface-level command used to enable IPv6 on a specific interface, not globally. 'ip routing ipv6' and 'ipv6 route enable' are syntactically invalid commands that do not exist in Cisco IOS.

Exam trap

Be careful not to confuse interface-specific commands with global routing commands. Remember that enabling IPv6 globally requires a specific command.

Why the other options are wrong

B

'ipv6 enable' is an interface command, not a global command to enable IPv6 routing.

C

'ip routing ipv6' is not a valid Cisco IOS command.

D

'ipv6 route enable' is not a valid Cisco IOS command.

When would these options actually be correct?

B

In a scenario where the question asks for a command to enable IPv6 on an interface, such as 'Which command would you use to enable IPv6 on a specific interface?', 'ipv6 enable' would be the correct answer.

C

If the exam question asked for a command related to configuring IPv6 routing protocols or managing IPv6 routes, 'ip routing ipv6' could be interpreted as a command for enabling IPv6 routing in that context, especially if it was framed around routing protocol configurations.

D

In a different scenario, if the question were about enabling a specific IPv6 routing protocol or feature that uses a command similar to 'ipv6 route enable', this option could be correct. For example, if the question asked about enabling a specific routing protocol that requires a similar command structure, it could be valid.

Why candidates pick the wrong answer

B

Students often confuse 'ipv6 enable' with enabling IPv6 routing because the command name suggests enabling IPv6. However, it only configures IPv6 on an interface, not the routing process.

C

Test-takers might guess this command because it resembles 'ip routing' for IPv4, assuming a similar pattern for IPv6. However, Cisco uses a different keyword structure for IPv6.

D

The phrase 'route enable' sounds like it would enable routing, and 'ipv6 route' is a valid command for static routes, so students might incorrectly assume this command enables the routing process.

380
MCQmedium

A network engineer is tasked with monitoring a large enterprise network that requires high-frequency, real-time data collection from thousands of routers and switches. The engineer needs a solution that minimizes CPU overhead on the network devices and supports push-based data delivery. Which technology should the engineer choose for this requirement?

A.SNMPv2c with frequent polling intervals
B.Streaming telemetry
C.NetFlow
D.IPFIX
AnswerB

Streaming telemetry uses a push-based model in which devices continuously stream operational data (e.g., CPU, memory, interface counters) to collectors via protocols like gRPC with GPB or JSON encoded data over a long-lived session. This dramatically reduces overhead on the device because the collector subscribes to specific data paths and the device sends updates at configured cadence or on event-driven triggers, eliminating the need for repeated request-response polling. This approach scales to thousands of devices and provides near-real-time visibility, making it the optimal choice for large-scale network monitoring.

Why this answer

Streaming telemetry uses a push model (e.g., gRPC or UDP-based dial-out) to continuously send structured data (YANG-modeled, often encoded in GPB or JSON) from network devices to a collector, which eliminates the need for periodic polling. This minimizes CPU overhead because the device only encodes and transmits data when a subscription triggers an update, rather than processing repeated SNMP GET requests. It is designed for high-frequency, real-time data collection at scale, making it ideal for monitoring thousands of routers and switches with minimal performance impact.

Exam trap

Cisco often tests the distinction between pull-based (SNMP) and push-based (telemetry) models, and the trap here is that candidates may confuse NetFlow or IPFIX as 'push-based' monitoring tools for device health metrics, when they are actually designed for traffic flow analysis and lack the structured, high-frequency, model-driven data collection that streaming telemetry provides.

Why the other options are wrong

A

SNMPv2c uses a pull model where the manager polls devices for data. Frequent polling intervals increase CPU usage on network devices and can cause scalability issues with thousands of devices, making it unsuitable for high-frequency, real-time data collection with minimal overhead.

C

NetFlow is designed for traffic flow analysis, capturing details like source/destination IPs and ports, not for collecting device health metrics such as CPU or memory. Its export mechanism can be CPU-intensive and does not provide the push-based efficiency needed for real-time monitoring of device status.

D

IPFIX is an extension of NetFlow for flexible flow export and shares the same focus on traffic flows, not device health metrics. Like NetFlow, it does not offer the push-based, low-overhead data delivery required for real-time monitoring of thousands of devices.

Why candidates pick the wrong answer

A

Students may think SNMP is the standard for network monitoring and that increasing polling frequency can achieve real-time data, but they overlook the CPU overhead and scalability limitations of the pull model.

C

Students may confuse NetFlow with a general monitoring tool because it exports data, but they fail to recognize its specific focus on traffic flows rather than device metrics.

D

Students might think IPFIX is more advanced and could be used for device monitoring, but it is still flow-based and not designed for telemetry data collection.

381
MCQeasy

A host sends traffic to a web server on another subnet. Which address is used as the destination MAC address in the first Ethernet frame sent by the host?

A.The MAC address of the remote web server
B.The MAC address of the local default gateway
C.The MAC address of the DNS server
D.The broadcast MAC address
AnswerB

The host's routing table indicates that the destination IP is not on the local subnet, so the packet must be sent to the default gateway. The destination MAC in the Ethernet frame is therefore the gateway's interface MAC, resolved via ARP, while the destination IP address remains that of the web server. The gateway then strips the frame and forwards the packet toward the remote subnet, changing the frame headers at each hop while preserving the IP addresses.

Why this answer

When a host wants to communicate with a device on a different subnet, it cannot reach that device directly. The host must send the frame to its default gateway, which is the router that connects to other subnets. Therefore, the destination MAC address in the first Ethernet frame is the MAC address of the local default gateway, not the remote web server (A).

The DNS server (C) is used for name resolution, not for forwarding traffic. The broadcast MAC address (D) would send the frame to all devices on the local subnet, which is not appropriate for unicast communication to a remote destination.

Exam trap

Remember that the destination MAC address for remote communication is the default gateway's, not the remote host's.

Why the other options are wrong

A

The MAC address of the remote web server is not used because the remote host is on a different subnet and cannot be reached directly at Layer 2.

C

The DNS server is used for domain name resolution, not for forwarding data frames to remote subnets.

D

The broadcast MAC address would send the frame to all devices on the local subnet, which is incorrect for unicast traffic to a remote destination.

When would these options actually be correct?

A

In a different scenario where a question asks about the MAC address used in a direct communication between two devices on the same local network, the MAC address of the remote web server would be the correct answer if both devices are on the same subnet and can communicate directly.

C

In a different exam scenario, if the question asked about the MAC address used when a host is sending a DNS query to a DNS server within the same local subnet, then the correct answer would be the MAC address of the DNS server, as the host would communicate directly with it without needing to go through a gateway.

D

If the question were to ask about the initial frame sent by a host to discover all devices on the local network, such as during an ARP request for an IP address, the destination MAC address would be the broadcast MAC address (FF:FF:FF:FF:FF:FF).

Why candidates pick the wrong answer

A

Students may think that the destination MAC address should always be the final destination's MAC, but this is only true for devices on the same subnet. For off-subnet traffic, the MAC address of the default gateway is used.

C

Students might confuse the role of DNS in name resolution with the process of determining the next-hop MAC address. They may think that the DNS server provides the MAC address or is involved in the forwarding decision.

D

Students may recall that ARP uses broadcast to find the MAC address of the default gateway, but the actual data frame uses the learned unicast MAC address, not a broadcast. They might mistakenly think the data frame itself is broadcast.

382
Multi-Selectmedium

Which two statements accurately describe why logs and accounting records both matter in secure operations?

Select 2 answers
A.They improve visibility into events and activity after access occurs.
B.They help with accountability and incident review.
C.They replace the need for authentication entirely.
D.They are useful only on wireless guest networks.
E.They automatically create access policies for administrators.
AnswersA, B

This is correct because both support post-event understanding and investigation.

Why this answer

Logs and accounting records both matter because security is not only about preventing access, but also about understanding what happened. In practical terms, logs can provide event visibility and system context, while accounting records can add traceability for user activity and access sessions. Together they improve incident review and operational accountability.

This is a visibility-and-traceability question, not a pure prevention question.

Exam trap

Don't confuse logs and accounting records with access control measures; they are about visibility and traceability, not prevention.

Why the other options are wrong

C

Logs and accounting records do not replace authentication; they complement it by recording who accessed what and when. Authentication is still required to verify identity before access is granted, and logs only capture activity after authentication occurs.

D

Logging and accounting are essential across all network segments, including wired, wireless, VPN, and data center environments. Limiting them to wireless guest networks would leave other critical areas unmonitored, creating security gaps.

E

Logs and accounting records are passive records of events; they do not automatically create or modify access policies. Policy creation requires administrative action based on analysis of logs, not the logs themselves.

When would these options actually be correct?

C

In a question focused on theoretical frameworks for security models, such as 'What are the implications of eliminating authentication in a secure system?', option C could be correct if discussing a hypothetical scenario where logs are used as the sole method of access control, which is not practical but could be a point of discussion.

D

In a question focused specifically on the security measures applicable to wireless guest networks, where the context emphasizes the unique challenges and requirements of managing guest access, this option could be correct if it stated that logs are particularly useful in that scenario.

E

If the exam question were to ask about automated systems that utilize logs to dynamically adjust access controls based on user behavior, then this option could be correct. For example, a question about a security system that analyzes logs to enforce real-time access policies would validate this statement.

Why candidates pick the wrong answer

C

Students might think that because logs provide visibility into user actions, they could substitute for authentication. However, authentication is a prerequisite for logging meaningful data, and without it, logs cannot identify who performed an action.

D

A student might associate accounting with guest network portals that require login, but accounting is a broader concept used in AAA (Authentication, Authorization, and Accounting) for all network access, not just guest networks.

E

Some might confuse accounting with authorization, thinking that because accounting tracks usage, it can automatically adjust policies. However, accounting is about recording, not enforcing or defining access rules.

383
MCQhard

A user connects a small unmanaged switch to an access port, and the port immediately transitions to err-disabled. Which feature most likely caused this behavior?

A.UDLD aggressive
B.BPDU Guard
C.Root guard
D.Loop guard
AnswerB

BPDU Guard is a spanning-tree protection feature applied to PortFast-enabled edge ports. When any BPDU is received on such a port, the switch immediately shuts the interface down and places it in an err-disabled state, because a legitimate access port should never receive BPDUs. This prevents an unauthorized user switch from participating in spanning tree and creating a Layer 2 loop.

Why this answer

BPDU Guard is the correct answer because it is specifically designed to protect access ports configured with PortFast. When an unauthorized switch is connected to such a port, BPDU Guard detects the incoming BPDU and immediately places the port into err-disabled state, preventing potential loops or topology changes. UDLD aggressive detects unidirectional links but does not cause err-disabled due to BPDU reception.

Root guard blocks ports that attempt to become the root bridge by placing them in root-inconsistent state (not err-disabled). Loop guard prevents alternate/root ports from becoming designated in the absence of BPDUs, putting the port into loop-inconsistent state, again not err-disabled.

Exam trap

Remember that BPDU Guard specifically targets BPDUs on PortFast ports, not general security or loop prevention.

Why the other options are wrong

A

UDLD aggressive detects unidirectional links but does not cause err-disabled on receiving BPDUs; it operates at Layer 1/2 for fiber links.

C

Root guard prevents a port from becoming the root bridge by moving it to root-inconsistent state, not err-disabled.

D

Loop guard prevents alternate/root ports from becoming designated when BPDUs stop, putting the port in loop-inconsistent state, not err-disabled.

When would these options actually be correct?

A

If the question were about a scenario where a unidirectional link was created due to a faulty cable or misconfiguration, and the port transitioned to err-disabled due to UDLD aggressive detecting this condition, then option A would be the correct answer.

C

In a scenario where a switch is configured to prevent a specific port from becoming the root port due to a topology change, a question might ask about the impact of connecting a device that sends BPDUs. In this case, root guard would be the correct answer if the port was configured to block root port transitions.

D

If the question were about a scenario where a switch port is experiencing a loop due to misconfigured trunking or multiple connections creating a loop, then loop guard would be the correct answer. In that case, the question would focus on preventing loops rather than the behavior of access ports.

Why candidates pick the wrong answer

A

Students may confuse UDLD with BPDU Guard because both are spanning-tree protection features that can place a port in err-disable state, but they operate on different triggers.

C

Root guard and BPDU Guard both involve BPDU processing and can cause port state changes, leading students to mistakenly think root guard would also err-disable the port.

D

The name 'loop guard' suggests it prevents loops, and students might assume it would react to an unauthorized switch by disabling the port, but its actual mechanism is different.

384
Multi-Selectmedium

Which TWO interface issues can be identified by analyzing the output of the 'show interfaces' command?

Select 2 answers
A.Duplex mismatch
B.Routing protocol misconfiguration
C.Speed mismatch
D.VLAN mismatch
E.STP topology change
AnswersA, C

A duplex mismatch occurs when one device is manually set to full duplex and the other is auto-negotiating or set to half duplex, often on a point-to-point link. The full-duplex side does not defer and sends anytime, while the half-duplex side only transmits when it senses the wire free, leading to collisions and late collisions on the half-duplex side; 'show interfaces' will display late collisions, runts, CRC errors, or excessive input errors on one or both sides. This is a classic Layer 1/physical problem that shows up clearly in interface counters.

Why this answer

The 'show interfaces' command displays interface statistics and operational status, including duplex and speed settings. A duplex mismatch occurs when one end of a link is set to full-duplex and the other to half-duplex, leading to collisions and CRC errors visible in the output. Speed mismatch is also detectable because the interface will show the negotiated speed or errors like 'input errors' if the speeds do not match.

Exam trap

Cisco often tests that 'show interfaces' reveals physical-layer issues like duplex and speed mismatches, but candidates mistakenly think it also shows Layer 2 or Layer 3 problems such as VLAN or routing misconfigurations.

Why the other options are wrong

B

Routing protocol misconfiguration is a Layer 3 issue that does not manifest in the 'show interfaces' output, which focuses on Layer 1 and Layer 2 interface statistics. To diagnose routing issues, you would use commands like 'show ip route' or 'show ip protocols'.

D

A VLAN mismatch is a Layer 2 issue that does not appear in the 'show interfaces' output; it is diagnosed using 'show vlan' or 'show interfaces trunk'. The 'show interfaces' command shows physical and data link layer statistics, not VLAN membership.

E

STP topology changes are not directly visible in 'show interfaces'; they are monitored using 'show spanning-tree' or 'debug spanning-tree events'. The 'show interfaces' command does not provide information about spanning-tree state changes.

Why candidates pick the wrong answer

B

Students might think that interface errors could be caused by routing problems, but routing protocols operate above the interface level and do not affect interface counters directly.

D

Students may confuse interface errors with VLAN mismatches because both involve Layer 2, but VLAN mismatches are not reflected in interface counters like CRC errors or collisions.

E

Students might think that interface counters could indicate STP issues, but STP topology changes are control plane events that do not affect interface statistics like input errors or collisions.

385
MCQhard

A network technician is troubleshooting an inter-VLAN routing issue on a multilayer switch. Hosts on VLAN 10 can reach the SVI for VLAN 10 (10.0.10.1) but cannot reach hosts on VLAN 20. The technician has verified that 'ip routing' is enabled and that the 'show ip route' command displays directly connected routes for both VLANs. No static routes are configured. What should the technician do next?

A.Check the ARP table for entries on VLAN 20.
B.Issue the 'show ip routing' command again to confirm routing is enabled.
C.Configure a default route pointing to the next-hop gateway.
D.Verify the VLAN membership of the destination host on VLAN 20.
AnswerA

The Layer 3 routing table is correct; the problem is likely that the switch lacks a Layer 2 MAC address for the destination host on VLAN 20. Examining the ARP cache will confirm whether the switch can map the destination IP to a MAC address, and if not, will show that ARP resolution is failing, which explains the connectivity break.

Why this answer

The hosts on VLAN 10 can reach the SVI (10.0.10.1) but not hosts on VLAN 20, which indicates that Layer 3 routing is working (ip routing enabled, directly connected routes present). The issue is likely that the switch does not have the MAC address of the destination host in VLAN 20 in its ARP table, so it cannot forward frames to that host. Checking the ARP table for VLAN 20 entries will reveal whether the switch has resolved the Layer 3-to-Layer 2 address mapping for the destination.

Exam trap

Cisco often tests the misconception that if 'ip routing' is enabled and routes are present, inter-VLAN routing should work, but they trap candidates by omitting the critical step of ARP resolution, which is required to deliver frames to the destination host's MAC address.

Why the other options are wrong

B

This option revisits a step already completed and verified, making it redundant. Candidates might think double-checking routing is safe, but the scenario explicitly states routing is working as expected.

C

Some candidates might believe inter-VLAN communication requires a default route, but directly connected routes already provide full reachability without static routing. This action is overly drastic and misdirected.

D

Candidates often jump to VLAN misconfigurations when inter-VLAN communication fails, even when routing is confirmed. The scenario already establishes the VLAN 20 host's location; the next logical layer to inspect is ARP resolution.

386
MCQhard

Refer to the exhibit. A network administrator is troubleshooting connectivity to devices in VLAN 10 on a Layer 3 switch. The administrator issues the show ip interface brief command on SW1 and sees the output displayed. What is the most likely reason that the VLAN 10 SVI is not functioning?

A.No active ports are assigned to VLAN 10.
B.The VLAN 10 SVI has been administratively shut down.
C.The IP address configured on the VLAN 10 SVI is incorrect for the subnet.
D.The switch ports assigned to VLAN 10 are all configured as trunk ports.
AnswerA

The SVI for VLAN 10 will not transition to up/up until at least one switch port is in the up/up state and actively assigned to VLAN 10 (either as an access port in that VLAN or as a trunk port that has VLAN 10 allowed and active). With no active member ports, the switch considers the VLAN to have no operational Layer 2 presence, so the SVI's line protocol remains down even though the VLAN exists and is configured with an IP address. This is a standard Cisco IOS behavior: the SVI's status mirrors the presence of an active port in the associated VLAN, not merely the VLAN's existence.

Why this answer

The VLAN 10 SVI will remain in a down/down state if there are no active ports assigned to VLAN 10, because a Layer 3 switch requires at least one active Layer 2 interface in the VLAN to bring the SVI up. This is a fundamental behavior of Cisco switches: the SVI is operationally down until the VLAN has at least one active port in a non-blocking state. The show ip interface brief output would show the VLAN10 interface as 'down/down' rather than 'administratively down' or 'up/up'.

Exam trap

Cisco often tests the subtle distinction between an SVI being 'down/down' due to no active ports in the VLAN versus 'administratively down' due to a shutdown command, and candidates may incorrectly assume a misconfigured IP address or trunk port issue is the cause.

Why the other options are wrong

B

Candidates often confuse 'down' with 'administratively down', assuming any disabled interface will show 'down'. They need to distinguish the two statuses.

C

Some candidates think a misconfigured IP address can cause an interface to be down, but status does not reflect IP configuration.

D

A common misunderstanding is that trunk ports do not make a VLAN active; in reality, a trunk carrying VLAN 10 can activate the SVI as long as the trunk is up/up and the VLAN is not pruned.

387
MCQmedium

A wireless client can see two SSIDs from the same company: Corp and Guest. Which statement best explains what an SSID represents in this situation?

A.It is the wireless network name presented to clients for a specific WLAN.
B.It is the encryption algorithm securing the WLAN.
C.It is the radio antenna inside the AP.
D.It is the management IP address of the controller.
AnswerA

An SSID (Service Set Identifier) is the human-readable network name that an access point broadcasts in beacon and probe response frames so clients can identify and select a specific WLAN. It distinguishes multiple wireless networks on the same radio by presenting a unique name, up to 32 bytes, while the BSSID differentiates APs within the same SSID. This is why a wireless client sees the SSID as the network name before associating, making it the correct definition.

Why this answer

An SSID is the name that identifies a specific wireless LAN to clients. In practical terms, Corp and Guest are two different WLAN identifiers presented to users, even if they are broadcast by the same physical access point infrastructure. The SSID tells the client which wireless network it is trying to join.

This matters because people often confuse SSIDs with the access point itself or with the security protocol. The SSID is the network identifier, not the hardware or the encryption standard.

Exam trap

Do not confuse SSIDs with physical devices or security protocols; they are identifiers for networks.

Why the other options are wrong

B

The SSID is simply the network name broadcast by the access point; encryption algorithms like WPA2 or WPA3 are configured separately on the WLAN and are not part of the SSID itself.

C

An SSID is a logical identifier, not a physical component. The radio antenna is hardware that transmits and receives wireless signals, but it does not define the network name.

D

The management IP address of a wireless controller is used for administrative access to the controller, not for client connectivity. Clients use the SSID to identify and connect to a WLAN, not the controller's IP.

When would these options actually be correct?

B

In a different question, if asked about the components of WLAN security, such as 'What is the role of encryption in a WLAN?', option B could be correct if it specifically referred to the encryption algorithm securing the WLAN, such as WPA2 or AES.

C

In a different question, if asked about the components of a wireless access point and their functions, stating that the radio antenna is a critical part of the AP could be correct. For example, a question could ask, 'What component of an AP is responsible for signal transmission and reception?'

D

In a different question, if it asked for the role of the management IP address in a wireless network setup, stating that it is the management IP address of the controller would be correct, as it directly relates to how the controller is accessed and managed.

Why candidates pick the wrong answer

B

Students often confuse the SSID with security settings because both are configured when setting up a wireless network, and the SSID is commonly associated with the security type in client connection dialogs.

C

Since the SSID is broadcast over the air via the antenna, some learners mistakenly think the SSID is a property of the antenna itself, rather than a configurable parameter on the access point.

D

In centralized WLAN architectures, the controller manages multiple APs and their SSIDs, so a student might incorrectly associate the controller's IP with the SSID, especially when configuring the controller via its management interface.

388
MCQmedium

A routing table entry begins with the code C. What does that code indicate?

A.A route learned through EIGRP
B.A connected network
C.A candidate default route
D.A static route to a classful network
AnswerB

The code 'C' in a Cisco IOS routing table represents a connected (directly attached) network. This entry is automatically generated when an interface has a valid IP address configured and is in the up/up state, and it carries an administrative distance of 0, meaning it is the most trustworthy source of routing information.

Why this answer

In Cisco routing table output, C indicates a directly connected network. These routes are installed when an interface is up and has an address in that subnet.

Exam trap

A frequent exam trap is mistaking the 'C' code for a static route or a route learned via a routing protocol like EIGRP. Some candidates incorrectly assume 'C' means candidate default or static, but Cisco IOS uses 'S' for static routes and 'D' for EIGRP-learned routes. Misreading these codes can lead to incorrect conclusions about how a route was learned or its trustworthiness.

Remember, 'C' always means the route is directly connected to the router, which is fundamental for understanding routing behavior and troubleshooting.

Why the other options are wrong

A

Option A is incorrect because EIGRP-learned routes are marked with 'D' in Cisco IOS routing tables, not 'C'. The letter 'D' stands for 'Dynamically learned' via EIGRP, so 'C' cannot represent EIGRP routes.

C

Option C is incorrect because candidate default routes are not indicated by 'C'. Cisco uses 'S*' or other notations for candidate default routes, so 'C' does not represent default routes.

D

Option D is incorrect because static routes use the code 'S' in Cisco routing tables. The code 'C' never represents static routes, so this option is invalid.

When would these options actually be correct?

A

If the question asked what code represents a route learned through EIGRP, then option A would be correct. For example, a question could state, 'What code indicates a route learned via EIGRP in a routing table?'

C

In a different question, if asked what code represents a route that is a candidate for becoming the default route, option C would be correct. This would require a context where the question specifies default routes and their candidates.

D

If the question were to ask about a routing table entry that begins with the code S, then option D would be correct, as it would indicate a static route to a classful network. This would clarify the context of static routes in relation to classful addressing.

Why candidates pick the wrong answer

A

Some students may associate 'C' with 'Cisco' or think it stands for 'Cisco protocol', but EIGRP is a Cisco proprietary protocol. However, the routing table codes are standardized: 'C' for connected, 'D' for EIGRP, 'O' for OSPF, etc.

C

The word 'candidate' starts with 'C', so students might mistakenly think 'C' stands for 'candidate'. However, in Cisco IOS, 'C' is exclusively for connected networks, and default routes are shown with a '*' or as a static route with 'S*'.

D

Students might confuse 'C' with 'classful' or think that static routes are also 'connected' in a sense, but the routing table codes are distinct. The 'C' code is only for networks directly attached to the router's interfaces.

389
PBQhard

You are connected via the console to R1, a new Cisco ISR 4321 router. The network team requires that all routers be reachable via SSH for management. R1's management interface is GigabitEthernet0/0 with IP 192.168.1.1/24. You need to configure SSH on R1, including a hostname, domain name, RSA key pair of 1024 bits, local user 'admin' with secret 'cisco123', and enable SSH version 2. Additionally, configure the vty lines to accept only SSH connections and use local authentication.

Network Topology
G0/0192.168.1.1/24linkR1Management Network

Hints

  • You need to set hostname and domain name before generating RSA keys.
  • Use 'crypto key generate rsa modulus 1024' to create the key pair.
  • Configure vty lines to only allow SSH and use local authentication.
A.R1(config)# hostname R1 R1(config)# ip domain-name example.com R1(config)# crypto key generate rsa modulus 1024 R1(config)# username admin secret cisco123 R1(config)# ip ssh version 2 R1(config)# line vty 0 4 R1(config-line)# transport input ssh R1(config-line)# login local
B.R1(config)# hostname R1 R1(config)# ip domain-name example.com R1(config)# crypto key generate rsa general-keys modulus 1024 R1(config)# username admin password cisco123 R1(config)# ip ssh version 2 R1(config)# line vty 0 4 R1(config-line)# transport input ssh telnet R1(config-line)# login local
C.R1(config)# hostname R1 R1(config)# ip domain-name example.com R1(config)# crypto key generate rsa modulus 1024 R1(config)# username admin secret cisco123 R1(config)# ip ssh version 2 R1(config)# line vty 0 4 R1(config-line)# transport input all R1(config-line)# login local
D.R1(config)# hostname R1 R1(config)# ip domain-name example.com R1(config)# crypto key generate rsa modulus 1024 R1(config)# username admin secret cisco123 R1(config)# ip ssh version 2 R1(config)# line vty 0 4 R1(config-line)# transport input ssh R1(config-line)# password cisco123 R1(config-line)# login
AnswerA
solution
! R1
hostname R1
ip domain-name example.com
crypto key generate rsa modulus 1024
username admin secret cisco123
line vty 0 4
transport input ssh
login local

Why this answer

SSH configuration requires a hostname, domain name, RSA key pair, local username, and vty line settings. The command sequence ensures SSH version 2 is used and only SSH connections are accepted on the vty lines.

Exam trap

Watch for subtle differences: 'username secret' vs 'username password', 'transport input ssh' vs 'transport input all' or 'transport input ssh telnet', and 'login local' vs 'login'. Also ensure the hostname and domain name are set before generating RSA keys.

Why the other options are wrong

B

Using 'password' instead of 'secret' stores the password in plaintext; allowing Telnet alongside SSH does not restrict to SSH only.

C

'transport input all' permits Telnet and other protocols, which is not restrictive enough.

D

Using 'password' and 'login' on vty lines enables password-only authentication, not local user authentication.

Why candidates pick the wrong answer

B

Candidates may think 'password' is acceptable or forget that 'transport input ssh' alone is needed to restrict to SSH.

C

Candidates might think 'all' is safe or forget that the default allows Telnet; they may not realize 'all' includes insecure protocols.

D

Candidates may confuse line password authentication with local authentication, or think 'login' is sufficient without specifying 'local'.

390
MCQmedium

Which feature helps prevent a rogue DHCP server from handing out addresses on a campus switch network?

A.PortFast
B.DHCP snooping
C.HSRP
D.LLDP
AnswerB

DHCP snooping is a Layer 2 security feature on switches that filters DHCP traffic by designating trusted ports (typically uplinks to known DHCP servers) and untrusted ports (end-user access ports). It builds a DHCP snooping binding table of legitimate leases and drops DHCPOFFER or DHCPACK messages arriving on untrusted ports, which directly blocks a rogue DHCP server from successfully handing out IP addresses. This is the standard mitigation for rogue DHCP server attacks.

Why this answer

DHCP snooping classifies interfaces as trusted or untrusted and can block unauthorized DHCP server replies arriving on untrusted ports.

Exam trap

Avoid confusing PortFast (which skips STP convergence) with DHCP-specific features like DHCP Snooping.

Why the other options are wrong

A

PortFast is a Spanning Tree Protocol feature that immediately transitions an access port to the forwarding state, bypassing the listening and learning states. It does not inspect or validate DHCP messages, so it cannot prevent a rogue DHCP server from handing out addresses.

C

HSRP (Hot Standby Router Protocol) provides first-hop redundancy by allowing multiple routers to share a virtual IP address, ensuring gateway availability. It does not inspect DHCP traffic or provide any mechanism to block unauthorized DHCP servers.

D

LLDP (Link Layer Discovery Protocol) is a vendor-neutral protocol used for discovering neighboring devices and their capabilities by exchanging information such as device type, management addresses, and VLAN IDs. It has no role in DHCP security or filtering DHCP messages.

When would these options actually be correct?

A

In a different exam scenario, a question might ask about features that optimize switch port behavior for end devices in a network where rapid connectivity is crucial. In that case, a question could ask about improving the speed of port activation for devices like VoIP phones, making PortFast the correct answer.

C

If the exam question asked about ensuring high availability and redundancy for gateway devices in a network, HSRP would be the correct answer, as it allows multiple routers to work together to present a single virtual IP address to clients.

D

If the exam question asked about protocols that enhance network management and device discovery, LLDP would be the correct answer. For example, a question could focus on how to identify and manage devices on a switch network, where LLDP plays a crucial role.

Why candidates pick the wrong answer

A

Students might think PortFast provides security because it is often used on edge ports where end devices connect, and they may confuse its rapid transition with a security feature that blocks unauthorized servers.

C

Because HSRP involves IP address management and redundancy, some students might mistakenly believe it can also manage or secure DHCP address assignment, especially since both operate at Layer 3.

D

LLDP is a Layer 2 protocol that operates on switches, and students might confuse it with DHCP snooping because both are associated with network discovery and management, but they serve entirely different purposes.

391
MCQhard

Refer to the exhibit. A network administrator is troubleshooting connectivity issues. Hosts on the 192.168.10.0/24 network cannot reach servers on the 192.168.20.0/24 network, but they can successfully reach other networks, including the Internet. The administrator runs the show ip access-lists command on the router (output shown). What is the most likely cause?

A.The ACL is applied in the wrong direction on the interface.
B.The ACL is missing a permit statement for the 192.168.20.0/24 destination.
C.The order of the ACL entries causes the deny statement to match first.
D.The implicit deny at the end is blocking the traffic to 192.168.20.0/24.
AnswerC

Extended IP access list 110 processes entries sequentially. Entry 10 denies traffic from 192.168.10.0/24 to 192.168.20.0/24, and entry 20 permits the same source to any destination. Because the deny is listed first, it is matched before the permit, causing the traffic to be dropped.

Why this answer

The ACL is processed top-down, and the first matching entry determines the action. In this scenario, the deny statement for 192.168.10.0/24 to 192.168.20.0/24 appears before any permit statement for that traffic, so packets from the 192.168.10.0/24 network to the 192.168.20.0/24 network are denied immediately, even if a later permit statement would have allowed them. This explains why hosts can reach other networks (including the Internet) but not the 192.168.20.0/24 servers.

Exam trap

Cisco often tests the concept of ACL order of operations, where candidates mistakenly think that a later permit statement will override an earlier deny, or that the implicit deny is the culprit when an explicit deny is actually matching first.

Why the other options are wrong

A

Candidates may assume any ACL misbehavior is due to wrong interface direction, ignoring that the specific symptom (only 192.168.20.0 is unreachable) points to the deny rule itself.

B

Candidates often focus on what an ACL ‘lacks’ rather than the sequence, missing that the existing permit any covers the destination but is shadowed by the earlier deny.

D

Candidates might recall that all ACLs have an implicit deny, but they fail to realize that a packet matching an earlier deny is already discarded, and the implicit deny only applies to unmatched traffic.

392
MCQhard

A network administrator implements a set of spanning-tree enhancements to secure the switching infrastructure. Later, a help desk ticket reports that a user in a remote office cannot connect to any network resources. While investigating, the administrator notices that the switch port connecting the remote office switch to the distribution switch is in a 'root-inconsistent' state and is blocking traffic. Which protection feature, if misapplied, most likely caused this issue?

A.Loop Guard
B.Root Guard
C.BPDU Guard
D.BPDU Filter
AnswerB

Root Guard ensures that a port cannot become a root port. When a superior BPDU is received on a Root Guard-enabled port, the port transitions to a root-inconsistent state and blocks traffic, exactly as described in the scenario.

Why this answer

Root Guard is the correct answer because it forces an interface to be a designated port. If a switch receives a superior BPDU (indicating a root bridge with a lower bridge ID) on a Root Guard-enabled port, the port is placed into a 'root-inconsistent' state and blocks traffic to prevent the attached switch from becoming the root bridge. This matches the symptom described: a port in 'root-inconsistent' state blocking traffic after spanning-tree enhancements were applied.

Exam trap

Cisco often tests the distinction between 'root-inconsistent' (Root Guard) and 'loop-inconsistent' (Loop Guard) states, and the trap here is that candidates confuse the two or assume BPDU Guard is responsible for any BPDU-related blocking.

Why the other options are wrong

A

A loop-inconsistent state is different from the root-inconsistent state observed. Loop Guard acts when BPDUs stop arriving, not when they appear with a superior root claim.

C

While BPDU Guard also reacts to incoming BPDUs, it puts the port in err-disabled (shutdown) state, not a blocking state named 'root-inconsistent'. The symptom described is not error-disabled.

D

BPDU Filter would not cause the port to show a root-inconsistent state. The symptom is a protective blocking state, which BPDU Filter does not provide.

393
MCQhard

Two routers are directly connected over IPv6 and should form an OSPFv3 adjacency, but they do not. Link-local addressing is present on both interfaces. Which issue is most likely to prevent the adjacency?

A.The interfaces are assigned to different OSPFv3 areas.
B.The routers need matching hostnames before OSPFv3 can start.
C.IPv6 requires a /64 only for routing protocols to function.
D.OSPFv3 cannot run on directly connected interfaces.
AnswerA

OSPFv3 requires that all routers on the same link share the same area ID; if one interface belongs to area 0 and the other to area 1, the Area ID field in the Hello packet doesn't match, and the packet is silently dropped. The neighbor state stays in DOWN because OSPFv3 cannot form an adjacency when the area numbers are different. This is a core OSPF principle: neighbors must be configured with the same area on the connecting link.

Why this answer

An area mismatch is a strong and direct explanation. In plain language, even though the routers can have valid IPv6 addressing and proper link-local communication on the interface, OSPFv3 still requires the two ends of the shared segment to agree on the area context for the adjacency. If one side places the interface in one area and the other side places it in another, the routers will not treat each other as valid neighbors.

This is very similar in principle to OSPF for IPv4. Link-local addressing matters in OSPFv3, but the protocol still enforces key neighbor-formation checks. The correct answer is the one that focuses on a required protocol match rather than on a vague issue like hostname or cable color.

Exam trap

Focus on OSPFv3 configuration requirements like area matching, not on distractors such as hostnames or prefix length.

Why the other options are wrong

B

OSPFv3 adjacency formation does not depend on hostnames; hostnames are only used for identification in show commands and have no impact on routing protocol operation.

C

OSPFv3 can use any valid IPv6 prefix length, including /64, /126, or /127, for the link between routers. The /64 requirement is for SLAAC, not for routing protocols.

D

OSPFv3 is specifically designed to run on directly connected interfaces, just like OSPFv2. It forms adjacencies over directly connected links to exchange routing information.

When would these options actually be correct?

B

In a different scenario, if the question specified that OSPFv3 requires routers to have matching hostnames for a specific proprietary implementation or feature, then this option could be correct. For example, if the exam asked about a vendor-specific OSPFv3 implementation that enforces hostname matching for security reasons.

C

In a different exam scenario, if the question stated that OSPFv3 was configured on a link with a prefix length other than /64 and asked whether this would affect OSPFv3 operation, then this option could be correct, as it would imply a misunderstanding of the requirements for OSPFv3.

D

In a different scenario where the question states that OSPFv3 is being configured on a non-directly connected interface, such as a point-to-point link that requires additional encapsulation, this option could be correct if the exam asks about the limitations of OSPFv3 in that context.

Why candidates pick the wrong answer

B

Students might confuse hostname requirements with other protocols like EIGRP that use router IDs, or mistakenly think that matching hostnames are needed for neighbor relationships.

C

The /64 prefix is commonly associated with IPv6 and often required for features like SLAAC, leading students to incorrectly assume it is mandatory for all IPv6 operations, including routing.

D

Students might confuse OSPFv3 with other protocols that require intermediate devices, or think that IPv6 routing protocols have different adjacency requirements.

394
MCQhard

Two switches are configured for LACP EtherChannel. One side is set to passive and the other side is also set to passive. What is the most likely outcome?

A.The EtherChannel will not form because neither side initiates LACP negotiation.
B.The EtherChannel always forms because passive mode is preferred.
C.The links automatically become a routed interface.
D.The switches delete the bundle configuration automatically.
AnswerA

In LACP, passive mode places the port in a listening state and does not transmit negotiation packets; it only responds to incoming LACP PDUs. Since both switches are configured passive, neither sends an LACP PDU, so the negotiation never begins. Consequently, the EtherChannel remains down and the individual ports stay in their normal operational state as separate access/trunk links.

Why this answer

The EtherChannel will not form because LACP passive mode only listens for negotiation; it does not initiate it. When both sides are set to passive, neither side sends LACP packets, so the bundle cannot be established. This is a deterministic outcome, not merely unlikely.

Exam trap

Ensure at least one side is set to active in LACP configurations to avoid non-formation of the channel.

Why the other options are wrong

B

Passive mode does not initiate LACP negotiation; it only responds to incoming LACPDUs. Therefore, with both sides passive, no LACPDUs are exchanged, and the EtherChannel will not form. The statement that passive mode is preferred is incorrect; active mode is typically used on at least one side to initiate the channel.

C

LACP operates at Layer 2 and does not change the interface type. The ports remain switchports (Layer 2) unless explicitly configured with 'no switchport'. LACP mode has no effect on Layer 3 routing functionality.

D

LACP configuration is not automatically deleted when negotiation fails. The configuration remains in the running-config, and the ports will simply not form an EtherChannel. The administrator must manually remove the configuration if desired.

When would these options actually be correct?

B

In a different scenario where both switches are configured to use LACP but one switch is set to active mode while the other is set to passive, this option could be correct. In such a case, the active switch would initiate the negotiation, allowing the EtherChannel to form successfully.

C

If the question were to state that both switches are configured for LACP but with one switch set to active mode and the other to passive, the links could potentially become routed interfaces if the configuration allows for it. This scenario would require specific routing configurations to be in place.

D

In a different scenario where a switch is configured to automatically remove any EtherChannel configurations if no negotiation occurs within a certain timeout period, this option could be correct. For instance, a question could specify that the switches have a timeout setting that triggers deletion of the bundle if no active negotiation is detected.

Why candidates pick the wrong answer

B

Students may confuse passive mode with desirable mode in PAgP, where desirable-desirable forms a channel. Since LACP passive is similar to PAgP auto, they might incorrectly assume that passive-passive works, but LACP requires at least one active side.

C

Some students might think that because LACP is a protocol that runs between switches, it could automatically enable routing, but that is not the case. The confusion may arise from the fact that some EtherChannel configurations can be used for routed interfaces, but the LACP mode itself does not cause that.

D

Students might think that if the EtherChannel does not form, the switch would automatically clean up the configuration to avoid errors, but Cisco switches do not automatically remove configured port-channel interfaces or channel-group assignments.

395
MCQhard

Why is a northbound API generally more useful to orchestration software than a human-readable CLI screen?

A.Because the API provides a structured interface intended for software interaction.
B.Because CLI output cannot be read by humans.
C.Because APIs remove the need for authentication.
D.Because orchestration software cannot use HTTPS.
AnswerA

This is correct because a northbound API exposes network functions through a structured, software-friendly interface, typically using JSON or XML models. This enables orchestration tools to programmatically query state, push configuration changes, and validate results in a predictable, machine-readable format. Such structured interaction is far more efficient and reliable for automation than screen-scraping or manual commands.

Why this answer

A northbound API is more useful because it is designed for structured software interaction. In practical terms, orchestration systems need predictable data and predictable request methods. Human-readable CLI output is optimized for people, not for stable machine parsing. APIs provide the cleaner contract between the controller and the automation platform.

This is a core programmability idea. Human-readable output is useful for operators, but structured APIs are better for software systems.

Exam trap

A common exam trap is to confuse the usability of CLI output with its suitability for automation. While CLI screens are indeed human-readable and essential for manual network management, they are not designed for software consumption due to inconsistent formatting and lack of structured data. Another trap is to mistakenly believe that APIs remove security requirements like authentication; in fact, APIs enforce strict authentication and authorization to protect network resources.

Misunderstanding these points can lead to incorrect answers that underestimate the importance of structured, secure interfaces in network automation.

Why the other options are wrong

B

This option is incorrect because CLI output is specifically designed to be human-readable; the problem is not readability but the lack of structured data suitable for software parsing.

C

This option is incorrect because APIs still require authentication and authorization to secure network access; they do not remove the need for security controls.

D

This option is incorrect because orchestration software commonly uses HTTPS-based APIs for secure communication; the inability to use HTTPS is not a valid reason for preferring APIs over CLI.

When would these options actually be correct?

B

In a different question asking about the limitations of CLI tools in terms of accessibility for visually impaired users, this option could be correct. If the question focused on the challenges of interpreting CLI output for non-technical users, it could also apply.

C

In a different context, a question might ask about a hypothetical API designed for internal use within a secure network where authentication is not needed due to trusted access. In that scenario, the statement could be considered correct.

D

In a different question that asks about the limitations of orchestration software in environments where only non-secure HTTP is available, option D could be correct. For example, if the question specifies that the orchestration software is designed to operate in a legacy system without HTTPS support, then this option would be valid.

Why candidates pick the wrong answer

B

Students might confuse the verbosity or complexity of CLI output with being unreadable, especially when dealing with large amounts of data. However, the key point is that CLI is human-readable, whereas APIs are machine-readable.

C

Some students might think that because APIs are automated, they bypass security checks. However, automation does not eliminate security; APIs enforce authentication and authorization just like any other interface.

D

Students might confuse northbound APIs with other protocols that do not use HTTPS, or they might think that orchestration software uses only proprietary protocols. However, modern orchestration tools widely adopt HTTPS for its security and ubiquity.

396
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 state.

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

Only option A correctly follows the sequence of configuring Root Guard on designated ports, Loop Guard on non-designated ports, BPDU Guard on PortFast ports, then enabling errdisable recovery globally, and finally manually re-enabling the port. Option B assigns Loop Guard to designated ports and Root Guard to non-designated ports, which is incorrect. Option C correctly assigns protections but starts with BPDU Guard, deviating from the specified order.

Option D assigns Root Guard to non-designated ports and Loop Guard to designated ports, which is incorrect.

Exam trap

The exam trap is confusing which protection goes on which port role. Remember: Root Guard protects designated ports from becoming root; Loop Guard protects non-designated ports from becoming forwarding; BPDU Guard protects PortFast ports. Also, recovery order: global first, then interface re-enable.

Why candidates pick the wrong answer

B

Candidates may confuse the port roles for Root Guard and Loop Guard, or think that manual re-enablement should precede global recovery configuration.

C

Candidates might think BPDU Guard should be configured first because it's commonly used, or they may not realize the correct recovery sequence.

D

Candidates often confuse the port roles for Root Guard and Loop Guard, thinking Root Guard protects against loops (which is Loop Guard's function).

397
Matchingeasy

Match the data format to its most accurate characteristic.

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

Concepts
Matches

Lightweight format commonly used by REST APIs

Markup-style format that uses opening and closing tags

Human-friendly format that relies heavily on indentation

Simple tabular format with comma-separated values

Why these pairings

JSON is lightweight and key-value based, XML uses tags and attributes, YAML relies on indentation, CSV is for tabular data, Protobuf is a binary schema-driven format, and HTML is for web page structure.

Exam trap

Avoid confusing the characteristics of different data formats. Remember that JSON uses key-value pairs, XML uses tags, YAML uses indentation, CSV is tabular, Protobuf is binary, and HTML is for web structure.

When would these options actually be correct?

B

If the question asked 'Which data format is schema-driven and uses tags and attributes?' then XML would be the correct answer.

C

If the question asked 'Which data format uses indentation for structure and is often used for configuration files?', then YAML would be the correct answer.

D

In a question asking 'Which data format is commonly used for exporting spreadsheet data and is characterized by comma-separated values?', CSV would be the correct answer.

Why candidates pick the wrong answer

B

Candidates may confuse XML's schema support (XSD) with binary encoding, or associate 'schema-driven' with structured formats like XML without realizing it's text-based.

C

Candidates may confuse YAML with XML because both are used for data serialization, and they might incorrectly associate tags/attributes with YAML due to lack of familiarity with YAML's syntax.

D

Candidates may confuse CSV with HTML due to both being used in web contexts, or mistakenly think CSV can define page structure because it can be embedded in web pages.

398
Matchingmedium

Match each wireless term to its most accurate meaning.

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

Concepts
Matches

Centralized platform used to manage access points

Name that identifies the wireless network to clients

Wireless security standard

Protocol associated with AP-to-controller communication

Why these pairings

SSID is the human-readable network name. BSSID is the unique MAC address of an AP radio. ESSID is the same SSID used across multiple APs in an extended network.

Beacons are management frames that advertise the network. Probe requests are sent by clients to find APs. Association is the process of connecting a client to an AP.

Exam trap

Do not confuse SSID with BSSID, Beacon frames, or Association. SSID is simply the network name; the other terms refer to different concepts.

When would these options actually be correct?

B

If the question asked 'What is the BSSID?' or 'Which term refers to the MAC address of an access point's radio?', then this option would be correct.

C

If the question asked 'Which term describes a management frame sent by access points to advertise the network?' then 'Beacon frame' would be correct, but 'SSID' is not a frame.

D

If the question asked 'Match each wireless term to its most accurate meaning' and the term was 'Association' or 'Authentication', then option D's description would be correct for that term.

Why candidates pick the wrong answer

B

Candidates may confuse SSID with BSSID because both are associated with wireless networks and the terms sound similar, leading to a mix-up of their definitions.

C

Candidates confuse the SSID (the name) with the beacon frame that carries it, because the SSID is commonly seen in beacon transmissions.

D

Candidates may confuse the SSID broadcast (which is part of the connection process) with the entire connection process itself, or they may think SSID refers to the act of identifying the network during connection.

399
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure AAA with a RADIUS server and 802.1X port authentication 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 by entering global configuration mode and enabling AAA with 'aaa new-model'. Next, create an authentication method list using 'aaa authentication dot1x default group radius' to define the method for 802.1X. Then, configure the RADIUS server parameters using 'radius-server host' and 'radius-server key' so the switch knows where to send authentication requests; note that the method list can reference the 'radius' group even before the server is specified.

Finally, enable 802.1X system-wide with the global command 'dot1x system-auth-control' to activate 802.1X globally. This order ensures each prerequisite is met before the next step.

Exam trap

A common mistake is omitting the global 'dot1x system-auth-control' command, which is required to enable 802.1X system-wide before configuring interface-level authentication.

400
MCQmedium

A switch interface connected to another switch must carry VLANs 10, 20, and 30 only. Which command best enforces that requirement on the trunk?

A.switchport trunk allowed vlan 10,20,30
B.switchport access vlan 10,20,30
C.switchport mode dynamic auto
D.switchport trunk native vlan 10,20,30
AnswerA

The correct command for a trunk interface is `switchport trunk allowed vlan 10,20,30`; it explicitly defines the allowed VLAN list for IEEE 802.1Q tagging. By specifying only VLANs 10, 20, and 30, the administrator ensures that frames from other VLANs are not forwarded across this trunk, providing precise traffic segmentation between the two switches.

Why this answer

The correct command is the one that explicitly sets the allowed VLAN list on the trunk. In plain language, the administrator wants the inter-switch link to carry only the named VLANs instead of every VLAN by default. Cisco trunks can transport multiple VLANs, but that does not mean every VLAN should always be permitted. Restricting the allowed list supports cleaner design and helps reduce unnecessary VLAN transport.

This is a common CCNA switching task because it distinguishes between creating a trunk and controlling what the trunk actually carries. Simply enabling trunking is not enough when the requirement names exact VLANs. The answer must directly restrict the allowed list rather than change the native VLAN or apply an unrelated access-port command.

Exam trap

A common exam trap is selecting commands that do not correctly restrict VLANs on a trunk. For example, using 'switchport access vlan 10,20,30' is invalid because access ports support only one VLAN. Another trap is confusing the native VLAN setting with allowed VLANs; 'switchport trunk native vlan' only defines the untagged VLAN and does not filter VLANs.

Also, relying on dynamic trunk negotiation commands like 'switchport mode dynamic auto' does not restrict VLANs and can lead to trunks carrying all VLANs by default. These mistakes cause VLAN traffic to flow where it shouldn’t, violating design requirements.

Why the other options are wrong

B

Incorrect because 'switchport access vlan' applies only to access ports and cannot specify multiple VLANs; it does not configure trunk VLANs.

C

Incorrect because 'switchport mode dynamic auto' controls trunk negotiation but does not limit which VLANs are allowed on the trunk.

D

Incorrect because 'switchport trunk native vlan' sets only one native VLAN for untagged traffic and does not restrict the allowed VLAN list.

When would these options actually be correct?

B

In a different scenario where the question asks for the configuration of a switch port that should only allow traffic from a single VLAN, such as 'Which command sets the access VLAN for a port to VLAN 10?' this option would be correct, as it would specify the single VLAN for that access port.

C

In a scenario where the question asks for configuring a switch port to automatically negotiate trunking without specifying VLAN restrictions, 'switchport mode dynamic auto' would be the correct answer. For example, if the question required enabling trunking without VLAN filtering, this command would be appropriate.

D

In a different scenario where the question asks for configuring the native VLAN for untagged traffic on a trunk link, and it specifies that VLAN 10 should be the native VLAN while VLANs 20 and 30 are allowed, then 'switchport trunk native vlan 10' would be the correct command.

Why candidates pick the wrong answer

B

Students might confuse 'access vlan' with 'trunk allowed vlan' because both involve VLAN configuration. The word 'access' might be misinterpreted as allowing access to multiple VLANs, but it is strictly for a single VLAN on an access port.

C

Students may think 'dynamic auto' automatically handles VLANs or that it implies trunking with specific VLANs. However, it only controls trunk negotiation, not the allowed VLAN list.

D

Students might confuse 'native vlan' with 'allowed vlan' because both are trunk-related commands. The word 'native' might be misread as 'allowed', leading to the incorrect assumption that it can specify multiple VLANs.

401
Multi-Selectmedium

Which TWO statements accurately describe Network Address Translation (NAT) types?

Select 2 answers
A.Static NAT creates a fixed one-to-one mapping between a local and global address and is typically used to allow external connectivity to internal servers.
B.Dynamic NAT assigns a public IP from a pool for the duration of a translation, but it does not modify Layer 4 port numbers.
C.PAT only translates TCP packets because it uses port numbers, leaving UDP translation unsupported.
D.Static NAT entries are automatically removed after periods of inactivity to free up public addresses.
E.With PAT, if the public IP address pool is exhausted, new translations fail because PAT requires unique public IPs for each private host.
AnswersA, B

Static NAT permanently maps a private IP to a public IP, enabling inbound access to internal resources like web servers.

Why this answer

Static NAT creates a permanent, one-to-one mapping between an inside local (private) IP address and an inside global (public) IP address. This fixed mapping is typically used to make internal servers, such as a web or email server, reachable from the internet using a consistent public address.

Exam trap

Cisco often tests the misconception that PAT only works with TCP, but in reality PAT supports both TCP and UDP, and the trap here is that candidates confuse PAT's use of port numbers with a protocol limitation.

Why the other options are wrong

C

PAT works with any transport protocol that has port fields—TCP, UDP, and even ICMP through the identifier field.

D

Only dynamic translations (from dynamic NAT or PAT) have idle timeouts; static mappings are permanent.

E

This statement describes dynamic NAT pool exhaustion, not PAT, which uses port multiplexing.

402
MCQmedium

What problem is HSRP designed to solve?

A.Layer 2 switching loops
B.Loss of the default gateway if one router fails
C.Duplicate MAC addresses on trunks
D.Wireless interference
AnswerB

HSRP (Hot Standby Router Protocol) is a Cisco-proprietary First Hop Redundancy Protocol designed to eliminate the single point of failure that a default gateway represents. It allows two or more routers to share a virtual IP address and virtual MAC address, so hosts send traffic to the virtual gateway regardless of which physical router is active. If the active router fails or its upstream link goes down, the standby router assumes the virtual IP/MAC in seconds, preserving seamless connectivity to external networks.

Why this answer

HSRP provides a virtual default gateway so hosts continue forwarding traffic even if one physical gateway router fails.

Exam trap

Avoid confusing HSRP with load balancing or security protocols. Remember, HSRP is about redundancy, not traffic distribution or encryption.

Why the other options are wrong

A

Layer 2 switching loops are prevented by Spanning Tree Protocol (STP), not by HSRP. HSRP operates at Layer 3 to provide default gateway redundancy, not loop prevention.

C

Duplicate MAC addresses on trunks are typically caused by misconfigurations or bridging loops, not by HSRP. HSRP uses a virtual MAC address that is unique and does not cause duplication issues.

D

Wireless interference is a physical layer issue related to radio frequency signals, not something HSRP addresses. HSRP is a Layer 3 redundancy protocol for routers.

When would these options actually be correct?

A

If the exam question asked about protocols designed to prevent Layer 2 issues or improve redundancy at Layer 2, such as STP or Rapid STP, then this option could be correct. For example, a question might ask, 'What protocol is used to prevent Layer 2 switching loops in a network?'

C

In a question asking about protocols or solutions specifically designed to manage or mitigate issues with MAC address conflicts in a switched environment, such as 'What protocol can help resolve duplicate MAC address issues on a trunk link?', option C would be the correct answer.

D

If the exam question asked about protocols or solutions that mitigate wireless network issues, such as interference from other devices or overlapping channels, then this option could be correct in that context.

Why candidates pick the wrong answer

A

Students may confuse HSRP with protocols that handle redundancy at Layer 2, such as STP, because both involve failover scenarios. The term 'redundancy' can be misleading.

C

Because HSRP involves virtual MAC addresses, students might think it could lead to duplicate MACs, but HSRP is designed to avoid this by using a standardized virtual MAC format.

D

Students might associate 'redundancy' with wireless failover, but HSRP is specifically for wired router redundancy, not wireless connectivity issues.

403
MCQhard

Based on the exhibit, which route will be used to reach 172.20.10.33?

A.The static route to 172.20.10.32/27
B.The OSPF route to 172.20.10.0/24
C.The default route
D.No route, because the destination does not match any prefix.
AnswerA

This is correct because 172.20.10.33 falls in the more specific /27 prefix.

Why this answer

The route used will be the one with the longest matching prefix. In practical terms, 172.20.10.33 matches both the /24 and the /27 shown, but the /27 is more specific. That means the router selects the /27 route before considering the broader /24 or any default route.

This is exactly the kind of route-table interpretation the CCNA exam likes because it rewards precise thinking about prefix boundaries.

Exam trap

A common exam trap is to select the OSPF route or the default route instead of the static route with the longer prefix. Candidates often mistakenly believe that dynamic routing protocols like OSPF always take precedence or that default routes are used when any route exists. However, Cisco routers first evaluate the longest prefix match before considering administrative distance.

Ignoring this can lead to incorrect answers because the more specific /27 static route will always be preferred over the broader /24 OSPF route or the default route for the destination 172.20.10.33.

Why the other options are wrong

B

This option is incorrect because the OSPF route to 172.20.10.0/24 is less specific than the static /27 route. The router prefers the longer prefix match, so it will not use the /24 route when a /27 route exists.

C

The default route is not used here because there are more specific routes available that match the destination IP. Default routes only apply when no other matching routes exist.

D

This option is incorrect because the destination IP clearly matches both the /24 and /27 prefixes shown in the routing table. Therefore, the router does have routes to reach 172.20.10.33.

When would these options actually be correct?

B

In a different scenario where the question asks which route is preferred for all traffic destined for the 172.20.10.0/24 network, the OSPF route would be correct, as it encompasses the entire subnet including 172.20.10.33.

C

In a different question setup where the routing table only contains a default route (0.0.0.0/0) and no specific routes for the destination IP, the default route would be the only option available to reach 172.20.10.33.

D

In a different scenario, if the question specified that the routing table had no entries for 172.20.10.33 or that the routing protocols were disabled, then option D would be correct, indicating that the destination cannot be reached due to the absence of any matching route.

Why candidates pick the wrong answer

B

Students may think that OSPF, being a dynamic routing protocol, is always preferred over static routes, or they may overlook the importance of prefix length in route selection.

C

Students might assume that if a destination is not explicitly listed, the default route will be used, but here the destination does match explicit routes, so the default is not considered.

D

A student might incorrectly think that because 172.20.10.33 is not exactly the network address or broadcast address, it does not match the prefix, but any IP within the range matches.

404
Matchingmedium

Match each HTTP method to the most accurate action it commonly represents in REST-style APIs.

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

Concepts
Matches

Retrieve existing information

Submit or create data

Update or replace an existing resource

Remove a resource

Why these pairings

HTTP methods correspond to CRUD operations in REST: GET for read, POST for create, PUT for full update, PATCH for partial update, DELETE for delete, and HEAD for headers only.

Exam trap

The trap is assuming GET can perform any operation beyond retrieval. Remember that GET must be safe and idempotent; it should never modify or delete resources. Always associate GET with read-only operations.

When would these options actually be correct?

B

If the question asked 'Which HTTP method is used to retrieve a representation of a resource?' then GET would be correct, but the action 'Create a new resource' is incorrect for GET.

C

In a question asking about HTTP methods for a non-RESTful API or a poorly designed system, or if the question specifically asks for the method used to send update data via query parameters (though this is not standard REST).

D

If the question asked about a non-standard or legacy API where a GET request with a specific query parameter (e.g., ?action=delete) triggers deletion, or in a poorly designed API that misuses HTTP methods, then GET could be associated with deletion.

Why candidates pick the wrong answer

B

Candidates may confuse GET with POST due to common misuse in web forms where GET is sometimes used to submit data, or they may not clearly distinguish between HTTP method semantics.

C

Candidates may confuse GET with POST or PUT, or think that sending data in the URL (e.g., /resource?update=value) constitutes an update, overlooking the semantic meaning of HTTP methods.

D

Candidates may confuse the action with the method if they have seen APIs that use GET for deletion via query parameters, or they may not fully understand the standard HTTP method semantics and think any action can be performed with any method.

405
MCQmedium

Why is disabling unused services on network devices considered a sound security practice?

A.Because it reduces unnecessary attack surface and exposure on the device.
B.Because it automatically improves routing convergence.
C.Because it guarantees the device cannot be misconfigured.
D.Because it converts the device into a controller.
AnswerA

Every enabled network service (e.g., HTTP server, SNMP, Telnet, CDP) creates listening ports and daemons that can be probed or exploited. Disabling unused services eliminates those potential entry points, shrinking the attack surface and reducing the device's exposure to malicious traffic or reconnaissance. This aligns with the security principle of least privilege, where only essential functions remain active.

Why this answer

It is considered sound because every enabled service is a potential attack surface or management exposure point. In practical terms, if a service is not needed, leaving it enabled creates unnecessary risk without business value. Reducing what is listening or available on a device helps limit opportunities for misuse or exploitation.

Option B is incorrect because disabling unused services does not affect routing protocol convergence; that is a routing protocol function. Option C is wrong because no single security practice can guarantee the device cannot be misconfigured; misconfiguration remains possible through other means. Option D is nonsensical because disabling services does not turn the device into a controller.

Exam trap

Don't confuse the primary goal of security practices with secondary benefits like performance or compliance.

Why the other options are wrong

B

Disabling unused services does not affect routing convergence, which depends on routing protocols and network topology. Service hardening and routing optimization are separate concerns.

C

Disabling services reduces risk but does not guarantee prevention of misconfiguration; human error can still occur in other settings. Security hardening is a layered approach, not a silver bullet.

D

Disabling services does not change a device's role; a router remains a router, and a switch remains a switch. Converting a device to a controller requires specific software and configuration changes.

When would these options actually be correct?

B

In a question focused on optimizing network performance or improving routing protocols, an option stating that disabling unused services improves routing convergence could be correct if it implies that reducing unnecessary processes allows for faster protocol updates. For example, if the question asked how to enhance routing efficiency by minimizing resource usage, this option could apply.

C

In a question focused on best practices for device configuration management, where the emphasis is on ensuring devices are locked down to prevent any configuration errors, this option could be correct if it stated that disabling services helps prevent misconfigurations by limiting available options.

D

In a question asking about the benefits of enabling specific services on a network device to enhance its role as a controller, option D could be correct. For instance, if the question specifies that enabling certain services is necessary for the device to function as a controller in a network management scenario, then this option would apply.

Why candidates pick the wrong answer

B

Students might think that reducing services frees up CPU or memory, potentially improving routing performance, but convergence is not directly impacted by disabling unused services.

C

The word 'guarantees' might mislead students into thinking that disabling services eliminates all configuration errors, but it only reduces the attack surface.

D

Students might confuse 'disabling services' with 'enabling controller functions' in SDN environments, but these are distinct actions.

406
PBQhard

You are connected to the console of R1, a Cisco router that is part of a larger network. The network operations team uses Ansible to manage configurations. You need to write an Ansible playbook that configures an interface description on R1. The playbook should use the ios_config module.

Hints

  • The ios_config module uses 'parents' to specify the configuration context.
  • The playbook should target the correct host group.
  • Remember to include the YAML front matter.
A.--- - name: Configure interface description hosts: R1 gather_facts: no tasks: - name: Add description to Gi0/0 ios_config: lines: - description Link to Core parents: interface GigabitEthernet0/0
B.--- - name: Configure interface description hosts: R1 gather_facts: no tasks: - name: Add description to Gi0/0 ios_config: lines: - interface GigabitEthernet0/0 - description Link to Core
C.--- - name: Configure interface description hosts: R1 gather_facts: no tasks: - name: Add description to Gi0/0 ios_command: commands: - configure terminal - interface GigabitEthernet0/0 - description Link to Core
D.--- - name: Configure interface description hosts: R1 gather_facts: no tasks: - name: Add description to Gi0/0 ios_config: lines: - description Link to Core parents: GigabitEthernet0/0
AnswerA
solution
! R1
---
- hosts: routers
  gather_facts: no
  tasks:
    - name: Configure interface description
      ios_config:
        lines:
          - description WAN Link
        parents: interface GigabitEthernet0/0

Why this answer

The playbook uses the ios_config module to add the description line under the interface configuration. The 'parents' parameter sets the context to 'interface GigabitEthernet0/0'. The playbook must be saved as a .yml file and run with ansible-playbook.

Exam trap

A common trap is confusing ios_config with ios_command, or incorrectly formatting the 'parents' parameter. Remember that ios_config is for configuration changes and requires the 'parents' parameter to specify the exact command that enters the configuration context, such as 'interface GigabitEthernet0/0'.

Why the other options are wrong

B

The specific factual error: The 'lines' parameter should only contain the configuration commands to be applied under the parent context, not the parent command itself.

C

The specific factual error: The ios_command module does not handle configuration mode properly and is not intended for configuration tasks; it sends commands and returns output without state management.

D

The specific factual error: The 'parents' parameter expects the exact command that enters the configuration context, such as 'interface GigabitEthernet0/0', not just the interface name.

Why candidates pick the wrong answer

B

Candidates might think that including the 'interface' command in the lines list would work, similar to how one would type commands in the CLI sequentially.

C

Candidates might confuse ios_command with ios_config, thinking that any command can be sent via ios_command, including configuration commands.

D

Candidates might assume that the 'parents' parameter only needs the interface name, similar to how some other automation tools might accept abbreviated context identifiers.

407
Multi-Selectmedium

Which two statements accurately describe why SSH is preferred over Telnet for device administration?

Select 2 answers
A.SSH is generally considered the more secure choice for remote CLI administration.
B.Telnet is generally considered less secure for remote device administration.
C.SSH eliminates the need for authentication and authorization policy.
D.Telnet is required before SSH can operate.
E.SSH is used only on wireless controllers and nowhere else.
AnswersA, B

SSH is generally considered the more secure choice for remote CLI administration because it encrypts all traffic, providing data confidentiality and integrity. It also uses cryptographic host keys to authenticate the server, and supports secure password and public-key authentication for the user. These protections make SSH the preferred protocol for managing network devices remotely over untrusted networks.

Why this answer

SSH is preferred because it encrypts all traffic, including authentication credentials, making it secure for remote CLI administration, whereas Telnet transmits data in plaintext and is considered less secure. Option C is incorrect because SSH does not eliminate authentication; it requires authentication and often enforces stronger policies. Option D is false because SSH and Telnet are independent protocols; Telnet is not required for SSH to operate.

Option E is wrong because SSH is used on routers, switches, firewalls, and many other devices, not only wireless controllers.

Exam trap

Don't confuse protocol security features with ease of configuration or performance. Focus on security benefits.

Why the other options are wrong

C

SSH does not eliminate the need for authentication and authorization policies; it only provides a secure transport layer. Network devices still require AAA (Authentication, Authorization, and Accounting) or local username/password configurations to control access.

D

Telnet is not a prerequisite for SSH; they are independent protocols. SSH can be configured and used on a device without Telnet ever being enabled. In fact, many devices have SSH enabled by default while Telnet is disabled for security reasons.

E

SSH is not limited to wireless controllers; it is widely used on routers, switches, firewalls, servers, and many other network devices. It is a universal protocol for secure remote administration across all types of infrastructure.

When would these options actually be correct?

C

If the question were to ask about a hypothetical protocol that provides access without any authentication or authorization requirements, then this option could be correct. For example, a question about a fictional remote access method that operates without security measures would validate this statement.

D

In a different context, a question might ask about the relationship between protocols in a specific network setup where Telnet is used to establish a baseline for understanding SSH's enhancements. In that case, it could be framed that Telnet must be configured first before transitioning to SSH for secure communications.

E

In a question specifically asking about the use of SSH in a wireless networking context, where the focus is solely on wireless controllers, stating that SSH is used only on those devices could be correct if the question explicitly limits the scope to that environment.

Why candidates pick the wrong answer

C

Students might think that encryption alone handles security entirely, overlooking that access control policies are separate from the encryption protocol. The term 'secure' in SSH can be misinterpreted as covering all security aspects.

D

Some might think SSH is an extension or upgrade of Telnet, similar to how HTTPS is related to HTTP. However, SSH is a completely different protocol with its own handshake and encryption mechanisms.

E

A student might have only seen SSH used on wireless controllers in a lab or specific scenario, leading to the incorrect assumption that it is exclusive to those devices. The broad applicability of SSH is often underestimated.

408
Matchingmedium

Drag each automation or API concept from the left to its corresponding description on the right. Not all descriptions are used. Concepts: - Northbound API - Southbound API - JSON - HTTPS

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

Concepts
Matches

Application-facing interface to the controller

Controller-facing interface toward managed infrastructure

Structured data format

Secure transport for API communication

Why these pairings

Northbound API: the application-facing interface of an SDN controller, allowing apps to request services. Southbound API: the interface that enables the controller to configure managed devices, such as OpenFlow. JSON: a structured data format using key/value pairs and arrays, lightweight and machine‑friendly.

HTTPS: secure, encrypted transport for API communications, protecting data in transit. Distractors: 'Human-readable serialization format' describes YAML, not JSON or APIs. 'Protocol for network device configuration' might refer to NETCONF or CLI, not HTTPS or the APIs listed.

Exam trap

Be careful not to confuse JSON and YAML: JSON uses brackets and is machine-friendly, while YAML uses indentation and is human-friendly. Also, remember that Ansible uses YAML, not XML.

409
MCQhard

Two OSPF routers connected on an Ethernet link remain in the INIT state. Which issue is the most likely cause?

A.The routers have identical router IDs
B.The routers cannot exchange Hellos bidirectionally on the segment
C.The routers have already reached FULL and are waiting to install routes
D.The routers are using the same OSPF process ID
AnswerB

In OSPF, the INIT state means that a router has received a Hello packet from a neighbor but did not find its own Router ID listed in that Hello, so bidirectional communication is not yet confirmed. This situation often arises from mismatched OSPF network types, incorrect subnet masks, or outbound/inbound Hello filtering on the Ethernet segment. Until both routers see each other's Router IDs in their respective Hello packets, they cannot proceed to 2-WAY and beyond, leaving the adjacency perpetually stuck in INIT.

Why this answer

INIT means a router is seeing Hellos from its neighbor but does not see its own router ID in the neighbor field of received Hellos. A common cause is one-way communication or a mismatched multicast/adjacency problem, often at Layer 2.

Exam trap

A common exam trap is to assume that duplicate router IDs cause routers to remain stuck in the INIT state. While duplicate router IDs do cause adjacency issues, they typically result in different neighbor states or error messages, not the INIT state specifically. Another trap is to think that using the same OSPF process ID on both routers causes adjacency failure; however, the process ID is locally significant and does not affect neighbor formation.

Misinterpreting the INIT state as a sign of routers already being fully adjacent or waiting to install routes is also incorrect, as FULL is a later state. The key is to recognize that INIT indicates one-way Hello communication, often due to Layer 2 or multicast issues.

Why the other options are wrong

A

Duplicate router IDs cause adjacency problems but usually result in neighbor states other than INIT or generate specific error messages. INIT state more commonly indicates one-way Hello communication rather than duplicate router ID issues.

C

Incorrect. FULL is the final OSPF neighbor state indicating full adjacency and route exchange completion. INIT is an early state and does not mean routers are waiting to install routes.

D

Incorrect. The OSPF process ID is locally significant and does not affect neighbor adjacency formation. Using the same or different process IDs on routers does not cause them to remain stuck in the INIT state.

When would these options actually be correct?

A

In a different scenario, if the question asked about OSPF routers failing to establish adjacency due to configuration errors, such as a misconfigured network segment where router IDs are incorrectly set to the same value, this option could be correct. For example, if the routers were on a point-to-point link and the question specified that they could not form a neighbor relationship due to identical router IDs, then this would be valid.

C

In a different scenario where the question states that two OSPF routers are already in the FULL state and are experiencing issues with route installation, this option would be correct, indicating that they are waiting for route updates or processing.

D

In a scenario where the question specifies that two OSPF routers are on different networks but have been configured with the same OSPF process ID, the option would be correct if the question asks about potential issues in establishing OSPF adjacency. In this case, the process ID conflict would prevent proper neighbor formation.

Why candidates pick the wrong answer

A

Students may confuse the symptoms of duplicate router IDs with one-way communication, as both can prevent full adjacency. However, duplicate IDs are detected during the exchange of Database Description packets, not during the Hello phase.

C

Students might think that after reaching FULL, routers wait for a timer to install routes, confusing OSPF with other protocols like EIGRP. However, OSPF installs routes immediately upon reaching FULL.

D

Students often confuse the OSPF process ID with the area ID or autonomous system number, thinking they must match for adjacency. However, only area ID, subnet mask, Hello/dead intervals, and authentication must match.

410
PBQhard

You are connected to R1, a Cisco ISR 4331 router running IOS-XE. Your task is to enable SNMP v2c with community string 'public' (read-only) and 'private' (read-write), and configure SNMP v3 with a user 'admin' using SHA authentication (password 'Cisco123') and AES 128 encryption (password 'Cisco456'). Additionally, configure SNMP traps to be sent to a management server at 203.0.113.10 for both v2c and v3. Finally, enable NetFlow export to a collector at 203.0.113.20, using version 9. Verify your configuration using 'show snmp' and 'show ip cache flow'.

Hints

  • Remember to apply NetFlow on an interface for traffic capture.
  • SNMPv3 user requires both auth and priv passwords.
  • Use 'snmp-server enable traps' before configuring trap hosts.
A.snmp-server community public RO snmp-server community private RW snmp-server user admin v3group v3 auth sha Cisco123 priv aes 128 Cisco456 snmp-server enable traps snmp-server host 203.0.113.10 version 2c public snmp-server host 203.0.113.10 version 3 auth admin ip flow-export destination 203.0.113.20 2055 ip flow-export version 9
B.snmp-server community public snmp-server community private snmp-server user admin v3 auth md5 Cisco123 priv des56 Cisco456 snmp-server enable traps snmp-server host 203.0.113.10 version 2c public snmp-server host 203.0.113.10 version 3 auth admin ip flow-export destination 203.0.113.20 2055 ip flow-export version 9
C.snmp-server community public RO snmp-server community private RW snmp-server user admin v3 auth sha Cisco123 priv aes 128 Cisco456 snmp-server enable traps snmp-server host 203.0.113.10 version 2c private snmp-server host 203.0.113.10 version 3 auth admin ip flow-export destination 203.0.113.20 2055 ip flow-export version 9
D.snmp-server community public RO snmp-server community private RW snmp-server user admin v3 auth sha Cisco123 priv aes 128 Cisco456 snmp-server enable traps snmp-server host 203.0.113.10 version 2c public snmp-server host 203.0.113.10 version 3 auth admin ip flow-export destination 203.0.113.20 2055 ip flow-export version 5
AnswerA
solution
! R1
snmp-server community public RO
snmp-server community private RW
snmp-server user admin v3 auth sha Cisco123 priv aes 128 Cisco456
snmp-server enable traps
snmp-server host 203.0.113.10 version 2c public
snmp-server host 203.0.113.10 version 3 auth admin
ip flow-export destination 203.0.113.20 2055
ip flow-export version 9
interface GigabitEthernet0/1
ip flow ingress
exit

Why this answer

The router lacks SNMP and NetFlow configuration. For SNMP v2c, you must define community strings with 'snmp-server community public RO' and 'snmp-server community private RW'. For SNMP v3, you create a user within a group; the command requires a group name, e.g., 'snmp-server user admin v3group v3 auth sha Cisco123 priv aes 128 Cisco456'.

Traps are enabled and sent to 203.0.113.10 via v2c with the public community and v3 with the admin user. NetFlow export uses version 9 to collector 203.0.113.20. Verification commands show SNMP details and flow cache export settings.

Exam trap

Watch out for common mistakes: using MD5/DES instead of SHA/AES for SNMPv3, forgetting RO/RW keywords on community strings, using the wrong community string for traps, and selecting the wrong NetFlow version. Always verify the exact requirements in the question.

Why the other options are wrong

B

The specific factual error: SNMPv3 user is configured with MD5 and DES instead of SHA and AES 128; community strings are missing RO/RW keywords.

C

The specific factual error: The v2c trap host uses 'private' instead of 'public' community string.

D

The specific factual error: NetFlow export version is set to 5 instead of 9.

Why candidates pick the wrong answer

B

Candidates might pick this because MD5 and DES are older but still commonly seen in legacy configurations, and they may forget to specify RO/RW for community strings.

C

Candidates might pick this because they confuse which community string is used for traps; they may think the read-write community is needed for sending traps.

D

Candidates might pick this because version 5 is still widely used and they may not remember that version 9 is required for template-based export.

411
MCQhard

An EtherChannel should form using LACP between two switches. One side is configured for LACP active, and the other side is configured for LACP active. What is the expected result if the other link settings also match?

A.The EtherChannel should form if the other interface settings are compatible.
B.The channel fails because both sides must be passive.
C.The channel becomes a routed interface automatically.
D.All VLAN tags are removed from the bundle by default.
AnswerA

A valid LACP EtherChannel can form with both switches in active mode because active interfaces actively transmit LACP protocol data units (PDUs) and negotiate the bundle. As long as the physical interface settings (speed, duplex, allowed VLANs, trunk encapsulation, and switchport mode) are consistent on both sides, the channel will come up. The active/active pairing is a standard and robust configuration for dynamic link aggregation.

Why this answer

The EtherChannel should form successfully if the underlying link settings are compatible. LACP active/active is a valid combination, as both switches actively negotiate the bundle. However, the channel does not automatically become a routed interface (option C is incorrect because EtherChannel can operate as Layer 2 or Layer 3 depending on configuration, not automatically due to LACP mode).

Additionally, VLAN tags are not removed by default from the bundle (option D is incorrect; VLAN tagging is preserved based on the switchport mode and allowed VLAN settings). The key troubleshooting point is to ensure that other interface parameters such as speed, duplex, and VLAN settings match across the member ports.

Exam trap

Don't confuse LACP active/active with incompatible settings; they are designed to negotiate successfully.

Why the other options are wrong

B

LACP passive/passive is the pairing that fails to form an EtherChannel because both sides wait for the other to initiate negotiation, resulting in no LACP PDUs being sent. Active/active is a valid and functional combination.

C

LACP operates at Layer 2 and does not change the interface type; the EtherChannel remains a Layer 2 port-channel unless explicitly configured with 'no switchport' or an IP address. The question does not mention any Layer 3 configuration.

D

EtherChannel formation does not alter VLAN tagging; if the interfaces are trunk ports, VLAN tags remain intact. The bundle simply aggregates bandwidth while preserving existing VLAN configurations.

When would these options actually be correct?

B

In a different scenario, if the question stated that both sides were configured for LACP passive, then this option would be correct. The question would need to specify that both switches cannot negotiate the EtherChannel actively, thus requiring one side to be passive for the channel to form.

C

In a different scenario where the question states that the EtherChannel is configured with 'no switchport' command on both ends, indicating that the interfaces are intended to be routed, this option would be correct as the interfaces would indeed become routed interfaces.

D

In a different question, if it asked about a specific configuration where the EtherChannel is set up to operate in a mode that strips VLAN tags, such as when using a specific type of trunking protocol that does not support VLANs, this option would be correct.

Why candidates pick the wrong answer

B

Students may confuse LACP modes with PAgP, where desirable/desirable is needed, or mistakenly think that both sides must be passive for compatibility.

C

Some might think that bundling links automatically creates a routed interface, confusing EtherChannel with features like routed ports or SVI.

D

Test-takers might incorrectly assume that bundling strips VLAN information, perhaps confusing EtherChannel with features like VLAN pruning or access port behavior.

412
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure and recover from a BPDU Guard violation on a PortFast-enabled access port using Cisco IOS-XE CLI commands.

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

Only Option A correctly lists the steps to configure and manually recover from a BPDU Guard violation on a PortFast-enabled port. Option B is invalid because the command 'clear spanning-tree bpduguard' does not exist; the proper recovery is shutdown/no shutdown. Option C incorrectly applies the global command 'spanning-tree portfast bpduguard default' in interface mode; it should be used in global configuration mode.

Option D includes an unnecessary 'Enter interface configuration mode' step after the global recovery command and does not reflect the correct sequence for automatic recovery.

Exam trap

Confusing the global default command 'spanning-tree portfast bpduguard default' with the interface command 'spanning-tree bpduguard enable'. Also, remember that the 'errdisable recovery cause bpduguard' command is a global configuration command, not a privileged EXEC command.

Why candidates pick the wrong answer

B

Candidates might think that clearing the BPDU guard error is sufficient to recover the port, similar to clearing other error conditions.

C

Candidates may confuse global and interface configuration modes for BPDU Guard, thinking 'default' can be used per interface.

D

Candidates may know about errdisable recovery and think it is the correct manual recovery method, but it is automatic and not part of the manual CLI steps.

413
PBQhard

You are connected to R1. Configure static NAT for a public web server (198.51.100.10 to 192.168.1.10) and PAT for the 192.168.1.0/24 LAN to use interface GigabitEthernet0/1 with overload. The current configuration has misconfigured NAT that prevents both types from working. Identify and fix the issues so that internal hosts can access the internet and external hosts can reach the internal web server.

Network Topology
G0/0192.168.1.1/24G0/1203.0.113.1/30Internal hostsLANR1InternetISP

Hints

  • Check the NAT direction on each interface: which one faces the internal LAN and which faces the internet?
  • Look at the ACL in the PAT command — does it match the correct subnet?
  • The PAT command is missing a keyword that enables port multiplexing.
A.Change interface GigabitEthernet0/1 to 'ip nat outside', add 'overload' to the PAT command, and correct ACL 1 to permit 192.168.1.0 0.0.0.255.
B.Change interface GigabitEthernet0/1 to 'ip nat outside', add 'overload' to the PAT command, and change ACL 1 to permit 192.168.2.0 0.0.0.255.
C.Change interface GigabitEthernet0/1 to 'ip nat inside', add 'overload' to the PAT command, and correct ACL 1 to permit 192.168.1.0 0.0.0.255.
D.Change interface GigabitEthernet0/1 to 'ip nat outside', remove the 'overload' keyword from the PAT command, and correct ACL 1 to permit 192.168.1.0 0.0.0.255.
AnswerA
solution
! R1
configure terminal
interface GigabitEthernet0/1
no ip nat inside
ip nat outside
exit
no ip nat inside source list 1 interface GigabitEthernet0/1
ip nat inside source list 1 interface GigabitEthernet0/1 overload
no access-list 1
access-list 1 permit 192.168.1.0 0.0.0.255
end

Why this answer

Three issues exist: (1) GigabitEthernet0/1 is the outside interface but is configured as 'ip nat inside' — it should be 'ip nat outside'. (2) The PAT command lacks the 'overload' keyword, so it does one-to-one translation instead of port address translation. (3) ACL 1 permits 192.168.2.0/24, but the inside LAN is 192.168.1.0/24 — the ACL must match the correct subnet. Correcting these allows PAT for the LAN and static NAT for the web server.

Exam trap

Watch out for three common traps: (1) Misidentifying inside vs. outside interfaces—the interface facing the public network is always outside. (2) Forgetting the 'overload' keyword for PAT—without it, you get dynamic NAT, not PAT. (3) Using the wrong ACL—the ACL must match the inside network exactly.

Why the other options are wrong

B

The ACL must match the inside network; permitting a different subnet will not translate traffic from the correct LAN.

C

The NAT inside/outside designation is based on the direction of traffic; the interface facing the public network must be outside.

D

Without 'overload', the router will not use port numbers to multiplex multiple inside hosts to a single public IP.

Why candidates pick the wrong answer

B

Candidates may misread the LAN subnet or think the ACL is correct as given.

C

Candidates often confuse inside and outside interfaces, especially when both static NAT and PAT are used.

D

Candidates may think 'overload' is optional or misunderstand its purpose in conserving IP addresses.

414
MCQmedium

Exhibit: A user can ping 8.8.8.8 successfully but cannot browse to www.example.com by name. Which service is the most likely failing component?

A.NTP
B.DNS
C.Syslog
D.CDP
AnswerB

Ping to 8.8.8.8 succeeds because it uses an IP address directly, bypassing any name resolution. Browsing a website normally requires translating a domain name (like www.example.com) into an IP address via DNS queries sent to a configured resolver, typically over UDP/53. If DNS is misconfigured, unreachable, or the resolver is down, the browser cannot resolve the hostname and will report a name resolution failure or server not found, while ICMP ping to a known IP remains unaffected.

Why this answer

If connectivity to an IP address works but name-based access fails, the path is up and the problem is usually name resolution. DNS is the service that translates hostnames into IP addresses.

Exam trap

A common exam trap is assuming that because a user can ping an IP address like 8.8.8.8, all network services are functioning correctly. This leads to mistakenly blaming routing or connectivity issues rather than DNS. Candidates may also confuse NTP or Syslog as affecting web access, but these services do not resolve domain names.

Misunderstanding the role of CDP as a discovery protocol rather than a name resolution service can also cause confusion. The key trap is not recognizing that ping tests IP connectivity but DNS is required for translating domain names to IP addresses.

Why the other options are wrong

A

NTP (Network Time Protocol) synchronizes clocks across network devices but does not impact the ability to resolve domain names or browse websites. Time synchronization issues rarely cause name resolution failures, so NTP is not the failing component here.

C

Syslog collects and stores system logs for monitoring and troubleshooting but does not affect DNS resolution or web browsing. A syslog failure would not prevent browsing by hostname, so it is not the cause.

D

CDP (Cisco Discovery Protocol) is used for discovering directly connected Cisco devices and does not play any role in DNS or web name resolution. CDP failure would not cause inability to browse websites by name.

When would these options actually be correct?

A

In a question where the focus is on time synchronization issues, such as a scenario where a user is unable to authenticate to a time-sensitive application due to incorrect timestamps, NTP would be the correct answer. For example, if a user cannot log into a secure service because their device's clock is out of sync, NTP would be the failing component.

C

If the question were to ask about issues related to logging or monitoring network events, such as 'What service is failing if logs are not being recorded from network devices?', then Syslog would be the correct answer as it directly relates to log management.

D

In a question asking about network topology issues where devices are not discovering each other or communicating effectively due to misconfigured CDP settings, CDP would be the correct answer. For example, if the question stated that devices are unable to identify each other on the same VLAN, CDP would be relevant.

Why candidates pick the wrong answer

A

Students might think that time synchronization is required for secure web browsing (HTTPS) or DNS security extensions, but basic name resolution does not depend on accurate time.

C

Students may confuse syslog with DNS because both are application-layer protocols, but syslog is unrelated to name resolution.

D

Students might think CDP is related to network discovery and could affect connectivity, but it does not impact name resolution.

415
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure a single-area OSPFv2 network on two Cisco routers (R1 and R2) and observe the neighbor state transitions from Down to Full.

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

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

Why this order

First configure OSPF process and router-id on R1, then add the network; repeat on R2; ensure interfaces are up; finally verify neighbor states to see the full transition sequence.

Exam trap

The trap is that candidates might think interfaces must be up before OSPF configuration, or that verification can be done after configuring only one router. The correct sequence ensures both routers are configured before checking neighbor states.

Why candidates pick the wrong answer

B

Candidates might think interfaces must be up before any OSPF configuration, but OSPF can be configured first; the key is that the network command must be present for OSPF to form adjacencies.

C

Candidates might think that interfaces must be up before any OSPF configuration to avoid errors, but OSPF can be configured on down interfaces; the neighbor state will not progress until interfaces are up.

D

Candidates might think that interfaces must be up on R1 before moving to R2, but OSPF configuration on R2 does not depend on R1's interface state; the neighbor state will not form until both sides are configured.

416
Drag & Dropmedium

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

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

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

Why this order

Commands must be executed in order: global config, IPv6 routing, interface config, OSPFv3 on interface, then verification.

Exam trap

The most common trap is starting with the OSPFv3 router configuration command without first enabling IPv6 routing globally. Also, candidates may try to apply the interface-level OSPFv3 command before entering interface configuration mode.

417
PBQmedium

You are connected to R1 via console. R1's GigabitEthernet0/0 (10.0.0.1/30) connects to an ISP, and GigabitEthernet0/1 (192.168.1.1/24) connects to the internal LAN. The network administrator needs to monitor R1's system messages. Configure R1 to send syslog messages with severity level 5 (notifications) and above to the syslog server at 10.0.0.2. Also, ensure that logging is enabled and that messages include the timestamp and source interface.

Hints

  • Use 'logging host' to specify the syslog server.
  • Set the severity with 'logging trap' using the severity name or number.
  • Configure the source interface with 'logging source-interface'.
A.logging on logging trap notifications logging source-interface GigabitEthernet0/0 logging host 10.0.0.2 service timestamps log datetime
B.logging on logging trap informational logging source-interface GigabitEthernet0/1 logging host 10.0.0.2 service timestamps log datetime
C.logging on logging trap 5 logging source-interface GigabitEthernet0/0 logging 10.0.0.2 service timestamps
D.logging on logging trap notifications logging source-interface GigabitEthernet0/1 logging host 10.0.0.2 service timestamps debug datetime
AnswerA
solution
! R1
logging host 10.0.0.2
logging trap notifications
logging source-interface GigabitEthernet0/0
logging on
service timestamps log datetime msec

Why this answer

The logging commands enable syslog output. 'logging trap notifications' sets severity to 5 (notifications). 'logging source-interface' ensures syslog messages originate from a consistent IP. 'service timestamps' adds time information to log entries for easier troubleshooting.

Exam trap

Pay close attention to the exact syntax of commands: 'logging host' vs 'logging', 'service timestamps log' vs 'service timestamps debug'. Also, remember that the source interface should be the one closest to the syslog server, not necessarily the LAN interface. Severity levels: emergencies (0) to debugging (7); notifications is level 5.

Why the other options are wrong

B

The specific factual error: The trap level is set too low (informational instead of notifications), and the source interface is incorrect.

C

The specific factual error: The logging host command is missing the 'host' keyword, and the timestamps command is incomplete.

D

The specific factual error: The timestamps command applies to debug messages instead of log messages, and the source interface is wrong.

Why candidates pick the wrong answer

B

Candidates might pick this because they confuse severity levels or think the source interface should be the LAN interface for internal logging.

C

Candidates might pick this because they know numeric severity levels are valid but forget the exact syntax for the logging host command.

D

Candidates might pick this because they confuse 'log' and 'debug' timestamps, or think the source interface should be the LAN interface.

418
MCQhard

A wireless client can associate to the correct corporate SSID and authenticate successfully, but receives an address from the guest network instead of the employee network. Which troubleshooting area is strongest?

A.Incorrect WLAN-to-role or VLAN mapping after successful authentication.
B.The client must be using the wrong subnet mask manually.
C.The AP must be missing PPP encapsulation.
D.The issue is that STP root election failed.
AnswerA

After a wireless client successfully authenticates via methods such as 802.1X, the WLAN controller or lightweight AP maps the client to a VLAN based on the SSID's WLAN profile or RADIUS attributes like Tunnel-Private-Group-ID. If the WLAN is incorrectly bound to a guest VLAN, or the RADIUS server returns a mismatched VLAN ID, the client associates cleanly but receives an IP from the wrong subnet. This exact description matches an incorrect WLAN-to-role or VLAN mapping, which is a common configuration error in enterprise Wi-Fi.

Why this answer

The client successfully authenticates to the corporate SSID but receives an IP address from the guest network, indicating that the authentication phase is working correctly. The issue lies in the post-authentication mapping: the WLAN is likely mapped to the wrong VLAN or role (e.g., a RADIUS server attribute or local VLAN assignment is misconfigured), causing the client to be placed in the guest VLAN instead of the employee VLAN. This is a common misconfiguration in WLAN-to-VLAN or WLAN-to-role mapping after successful 802.1X authentication.

Exam trap

Cisco often tests the distinction between authentication success and post-authentication authorization (VLAN/role mapping), tricking candidates into focusing on DHCP or IP configuration issues when the real problem is the VLAN assignment after authentication.

Why the other options are wrong

B

The client receives an address from the guest network, indicating that the DHCP server or VLAN assignment is incorrect. A manually configured wrong subnet mask would not cause the client to obtain an IP from a different network; it would simply prevent proper communication within the assigned subnet. The issue is at the network assignment level, not a host configuration error.

C

PPP encapsulation is used on serial WAN links, not in wireless LAN environments. Wireless clients connect via 802.11, and APs use Ethernet or CAPWAP to connect to the network. PPP has no role in VLAN assignment or DHCP for wireless clients.

D

STP root election determines the root bridge in a switched network to prevent loops, but it does not affect VLAN assignment for wireless clients. Even if STP root election failed, it would not cause a client to receive an IP from the wrong network; it would more likely cause network instability or loops.

When would these options actually be correct?

B

In a different scenario, if a question specified that a client is unable to connect to any network and is manually configured with an incorrect subnet mask, this option could be correct. For example, if a client is set to a subnet mask that does not match the network's addressing scheme, it would fail to communicate with the intended network.

C

In a different scenario where the question involves a wireless client that cannot connect to the network at all, and the troubleshooting focuses on link-layer protocols, a question could ask about issues related to PPP encapsulation. If a client is unable to establish a connection due to misconfigured PPP settings, this option would be correct.

D

In a different scenario, if the question involved a network where multiple VLANs are interconnected and STP is misconfigured, leading to network loops or blocked ports, then a failure in STP root election could cause devices to lose connectivity or receive incorrect IP addresses from unintended VLANs.

Why candidates pick the wrong answer

B

Students often think of IP configuration issues when a client gets an unexpected address, but the scenario describes successful association and authentication, pointing to a network-side mapping problem rather than a client-side manual setting.

C

PPP is a common topic in CCNA, and students might confuse it with other encapsulation protocols or think it applies to wireless connections. However, it is irrelevant to WLAN client-to-VLAN mapping.

D

STP is a fundamental switching concept, and students might incorrectly associate any network issue with STP. However, the symptom of wrong IP subnet assignment is clearly a VLAN mapping problem, not a spanning-tree issue.

419
Multi-Selecthard

A switch interface connected to a Cisco IP phone with a PC behind it must carry voice and data correctly. Which two switchport commands are appropriate on that access port?

Select 2 answers
A.switchport mode trunk
B.switchport access vlan 10
C.switchport voice vlan 20
D.channel-group 1 mode active
E.spanning-tree cost 1
AnswersB, C

The 'switchport access vlan 10' command sets the port's untagged VLAN for data frames, which is exactly how the connected PC should be carried. In the standard Cisco IP phone topology, the phone passes PC traffic through untagged while tagging its own voice frames on a separate VLAN. Assigning access VLAN 10 ensures the PC's traffic is placed in the correct data VLAN.

Why this answer

The access VLAN carries the workstation data traffic, and the voice VLAN carries tagged voice traffic for the IP phone. That is the standard campus switchport design for a phone with a PC behind it. The port itself remains an access port, but the two most directly relevant commands here are the access VLAN and voice VLAN assignments.

Exam trap

Don't confuse trunk mode with the need for VLAN tagging; access ports can handle both data and voice VLANs without being trunks.

Why the other options are wrong

A

Configuring an access port as a trunk would cause the switch to expect 802.1Q tagging on all frames, but the PC behind the phone typically sends untagged frames. This would break connectivity for the PC unless the phone is configured to tag PC traffic, which is not standard.

D

The channel-group command is used to create an EtherChannel, which bundles multiple physical links into a single logical link. This is not relevant for a single access port connecting to an IP phone and PC, as there is only one physical link.

E

The spanning-tree cost command manually sets the STP path cost for a port, which is used for loop prevention. It does not affect VLAN assignment or voice/data separation, so it does not address the requirement of carrying voice and data correctly.

When would these options actually be correct?

A

In a scenario where the question specifies a need for a switch port to connect multiple VLANs for devices such as multiple IP phones or a mix of voice and data traffic across different VLANs, 'switchport mode trunk' would be the correct command to enable trunking.

D

In a different scenario where the question asks about configuring a switch port for an EtherChannel setup that aggregates multiple links for redundancy and increased bandwidth, 'channel-group 1 mode active' would be appropriate to enable LACP (Link Aggregation Control Protocol) for the EtherChannel.

E

In a scenario where the exam question asks about optimizing Spanning Tree Protocol settings for a specific port, and the focus is on adjusting port costs to influence path selection in a redundant network topology, this command could be correct.

Why candidates pick the wrong answer

A

Students might think that because the IP phone uses a tagged VLAN, the port must be a trunk. However, Cisco IP phones use a special voice VLAN feature on access ports, not a full trunk.

D

Students might confuse the need for additional bandwidth or redundancy on a user port, but EtherChannel is typically used on uplinks or server connections, not on edge ports.

E

Students might think that adjusting STP cost is necessary for voice traffic to ensure fast convergence, but this is not a standard configuration for IP phone ports. Voice VLAN and QoS are the primary concerns.

420
PBQhard

You are connected to R1. Configure SNMPv3 with authentication (SHA) and encryption (AES-128) for user 'monitor' in group 'AdminGroup', and also configure SNMPv2c read-only community string 'cisco123' to send traps to the management server at 192.0.2.100. Additionally, configure NetFlow on interface GigabitEthernet0/0 to export flow data to 198.51.100.50 using version 9. Verify your configuration using the appropriate show commands.

Network Topology
G0/010.0.0.1/30G0/010.0.0.2/30linkG0/1203.0.113.1/30G0/1203.0.113.2/30linkR1R2R3

Hints

  • SNMPv3 requires a view before creating the group.
  • Remember to enable NetFlow on the interface in both ingress and egress directions.
  • The SNMPv2c community string must be configured before the trap host can reference it.
A.snmp-server group AdminGroup v3 priv read AdminView; snmp-server user monitor AdminGroup v3 auth sha cisco123 priv aes 128 cisco123; snmp-server community cisco123 ro; snmp-server host 192.0.2.100 traps version 2c cisco123; interface GigabitEthernet0/0; ip flow-export destination 198.51.100.50 9996; ip flow-export version 9; ip flow ingress
B.snmp-server group AdminGroup v3 auth read AdminView; snmp-server user monitor AdminGroup v3 auth sha cisco123 priv aes 128 cisco123; snmp-server community cisco123 ro; snmp-server host 192.0.2.100 traps version 2c cisco123; interface GigabitEthernet0/0; ip flow-export destination 198.51.100.50 9996; ip flow-export version 9; ip flow ingress
C.snmp-server group AdminGroup v3 priv read AdminView; snmp-server user monitor AdminGroup v3 auth sha cisco123 priv des 56 cisco123; snmp-server community cisco123 ro; snmp-server host 192.0.2.100 traps version 2c cisco123; interface GigabitEthernet0/0; ip flow-export destination 198.51.100.50 9996; ip flow-export version 9; ip flow ingress
D.snmp-server group AdminGroup v3 priv read AdminView; snmp-server user monitor AdminGroup v3 auth sha cisco123 priv aes 128 cisco123; snmp-server community cisco123 ro; snmp-server host 192.0.2.100 traps version 2c cisco123; interface GigabitEthernet0/0; ip flow-export destination 198.51.100.50 9996; ip flow-export version 5; ip flow ingress
AnswerA
solution
! R1
snmp-server group AdminGroup v3 priv read AdminView
snmp-server view AdminView iso included
snmp-server user monitor AdminGroup v3 auth sha cisco123 priv aes 128 cisco123
snmp-server community cisco123 RO
snmp-server host 192.0.2.100 version 2c cisco123
snmp-server enable traps
interface GigabitEthernet0/0
ip flow ingress
ip flow egress
exit
ip flow-export destination 198.51.100.50 2055
ip flow-export version 9

Why this answer

The configuration was missing SNMPv3 user, group, and trap settings. We added the SNMPv3 user 'monitor' with SHA authentication and AES-128 encryption, created a view and group 'AdminGroup' with read access, and configured the SNMPv2c community string 'cisco123' for read-only access. We also enabled SNMP traps to the manager at 192.0.2.100 and configured NetFlow on GigabitEthernet0/0 to export to 198.51.100.50 using version 9.

Verification commands show the SNMP configuration and NetFlow flow cache.

Exam trap

Pay close attention to the exact security requirements: 'priv' for encryption, AES-128 specifically, and NetFlow version 9. The exam often tests subtle differences between 'auth' and 'priv' levels, encryption algorithms, and NetFlow versions.

Why the other options are wrong

B

The group level 'auth' does not permit encryption; 'priv' is required for AES-128 encryption.

C

The encryption algorithm specified is DES (56-bit) instead of AES-128.

D

NetFlow export version is 5, not 9 as required.

Why candidates pick the wrong answer

B

Candidates may confuse 'auth' and 'priv' levels, thinking 'auth' includes encryption, but 'auth' only requires authentication, while 'priv' requires both authentication and encryption.

C

Candidates might default to DES because it is an older standard or confuse the encryption types. However, AES-128 is the specified requirement.

D

Candidates may be more familiar with NetFlow version 5 or forget to specify version 9. Version 5 is still commonly used but does not meet the requirement.

421
MCQhard

R1 and R2 are directly connected and running OSPF. The IP addressing is correct and both routers are in area 0, but they do not form an adjacency. What is the most likely cause?

A.The OSPF MTU values do not match on the connected interfaces.
B.The routers must use identical hostnames before OSPF can form neighbors.
C.The routers must use VLAN 1 for OSPF to operate.
D.The interfaces need to be configured as trunks instead of routed ports.
AnswerA

When OSPF neighbors exchange Database Description (DD) packets, each packet includes an interface MTU field. If the MTU values differ, the receiving router detects a mismatch and drops the DD packet, leaving the adjacency stuck in the ExStart or Exchange state. This prevents the routers from completing the database synchronization process, so the OSPF neighbor relationship cannot come up.

Why this answer

The most likely cause is an MTU mismatch between the two interfaces. During the OSPF database exchange process, neighbors must agree on the MTU value to successfully exchange DBD packets; a mismatch typically causes the adjacency to become stuck in the ExStart or Exchange state. Basic connectivity (e.g., ping) often still works because ICMP packets are small, but the OSPF adjacency fails due to the MTU discrepancy.

Exam trap

Don't overlook MTU settings when OSPF adjacency issues arise, especially when basic connectivity is confirmed.

Why the other options are wrong

B

OSPF neighbor formation does not depend on hostnames; it relies on matching parameters such as area ID, authentication, hello/dead intervals, and network type. Hostnames are only used for local identification and do not affect OSPF adjacency.

C

OSPF can operate over any VLAN or routed interface; there is no requirement to use VLAN 1. The adjacency issue is unrelated to VLAN numbering, and OSPF works independently of VLAN assignments on routed ports.

D

OSPF is designed to run on routed interfaces (Layer 3 interfaces) and does not require trunking. Trunk ports are used for carrying multiple VLANs between switches, not for OSPF adjacency between routers.

When would these options actually be correct?

B

In a different scenario where the question specifies that OSPF adjacency formation is contingent upon matching router configurations, including hostnames for identification purposes in a lab setup, this option could be correct.

C

In a different scenario where the question specifies that OSPF is only configured to operate on VLAN 1, and both routers are incorrectly configured on different VLANs, this option would be correct. The question would need to emphasize that OSPF requires VLAN 1 for adjacency.

D

In a different scenario where the question specifies that OSPF is being used in a network with VLANs and requires trunking for inter-VLAN routing, this option could be correct. For example, if the question states that OSPF must be configured on trunk interfaces to communicate between different VLANs, then this option would apply.

Why candidates pick the wrong answer

B

Students might confuse the requirement for matching OSPF router IDs (which are typically IP addresses) with hostnames, or they may think that consistent naming is necessary for network protocols to communicate.

C

Some might think that VLAN 1 is the default VLAN and therefore necessary for routing protocols, but this is incorrect because OSPF runs at Layer 3 and does not depend on specific VLANs.

D

Test-takers may confuse the need for trunking in switch-to-switch connections with router-to-router connections, or they may think that OSPF requires a specific encapsulation like dot1q, which is not true for point-to-point links.

422
MCQhard

A wireless client associates to an AP and successfully authenticates to the correct SSID, but it does not obtain an IP address. The WLC is running in local mode. What should the technician do next?

A.Check the DHCP server to ensure it has available leases.
B.Verify the AP’s operating channel for interference.
C.Verify the VLAN mapping on the WLC for the client’s WLAN.
D.Verify the WPA3 PSK on the client.
AnswerC

In local mode, the WLC bridges client traffic to a specified VLAN. An incorrect or missing VLAN ID prevents the DHCP discovery from reaching the DHCP server. This step directly confirms whether the client’s traffic is placed on the correct subnet.

Why this answer

When a wireless client authenticates to the SSID but fails to obtain an IP address, the most likely cause is a VLAN mapping mismatch on the WLC. In local mode, the WLC maps the WLAN to a specific VLAN (via the interface or VLAN tag), and if that VLAN does not have a DHCP relay or is not trunked to the correct switch, the client's DHCP requests will never reach the DHCP server. This is a common Layer 2 connectivity issue that prevents IP address assignment even though authentication succeeds.

Exam trap

Cisco often tests the misconception that DHCP issues are always server-side (Option A), when in reality the WLC's VLAN-to-interface mapping is a critical Layer 2 configuration that must be verified first in a wireless context.

Why the other options are wrong

A

Troubleshooting at Layer 3 (IP) before verifying Layer 2 (VLAN) connectivity skips a fundamental step in the OSI model.

B

Confuses a Layer 1 problem with a Layer 2/3 problem. The client’s association proves the RF link is functional.

D

This investigates a condition that has already been ruled out (authentication succeeded) and does not address the IP assignment failure.

423
Multi-Selectmedium

Which two statements accurately describe why APIs and human-oriented CLIs are both still useful in network operations?

Select 2 answers
A.APIs are useful for structured, repeatable software-driven interaction.
B.CLIs are still useful for direct human troubleshooting and inspection.
C.APIs make all CLIs obsolete in every situation.
D.CLIs are only useful for configuring initial device settings and cannot be used for monitoring.
E.Neither interface should ever return structured data.
AnswersA, B

APIs (e.g., RESTCONF, NETCONF, or vendor REST APIs) provide machine-readable structured data (JSON/XML) and standardized operations that enable deterministic, repeatable automation. Unlike human-typed CLI commands, API calls can be idempotent, scripted, and integrated with CI/CD pipelines, making them ideal for configuration management, telemetry collection, and orchestration at scale. This is why they are foundational to software-defined networking and DevOps practices.

Why this answer

APIs and CLIs are both useful because they serve different operational strengths. In practical terms, APIs are better for repeatable software interaction and structured automation, while CLIs remain valuable for direct human troubleshooting and ad hoc inspection. Mature environments often use both depending on the task.

This is not an either-or question. It is about fit for purpose.

Exam trap

Don't assume one technology is replacing the other; understand their complementary roles.

Why the other options are wrong

C

This statement is incorrect because CLIs remain essential for tasks that require human judgment, such as debugging complex issues, interactive configuration, and learning device behavior. APIs complement but do not replace CLIs, as many operational scenarios benefit from direct human interaction.

D

This is incorrect because CLIs are widely used for monitoring, troubleshooting, and ad-hoc inspection beyond initial configuration.

E

This statement is incorrect because structured data (e.g., JSON, XML) is commonly returned by both APIs and modern CLIs (e.g., via 'show' commands with formatting options) to facilitate machine parsing and automation. Returning structured data is a best practice for integrating network devices with management systems.

When would these options actually be correct?

C

If the exam question asked about the evolution of network interfaces and their relevance in modern environments, stating that APIs have rendered CLIs obsolete could be correct if framed in a context where automation is prioritized over manual troubleshooting.

D

In a question specifically asking about the use of CLIs in wireless networking environments, where the context is limited to wireless devices, this statement could be correct if it highlights that CLIs are primarily utilized in that specific scenario.

E

In a different question context that asks whether APIs and CLIs should never return structured data, this option could be correct if the question is framed around a specific scenario where unstructured data is the only valid output format, such as legacy systems that do not support structured responses.

Why candidates pick the wrong answer

C

Students might think that because APIs enable automation, they can fully replace manual CLI usage, overlooking the need for human intuition and flexibility in troubleshooting and ad-hoc operations.

D

A test-taker might confuse the limited CLI on wireless clients with the broader use of CLIs in network operations, or mistakenly think that wireless devices are the primary CLI users due to their prevalence in small networks.

E

Students might believe that CLIs should only return human-readable text and that structured data is exclusive to APIs, not realizing that many CLIs now support structured output to bridge the gap between human and machine interaction.

424
PBQhard

You are connected to R1 via the console. R1's GigabitEthernet0/0 (10.0.0.1/30) connects to an ISP router at 10.0.0.2/30. The internal network has a web server at 192.168.1.10 and a mail server at 192.168.1.20. You need to configure NAT so that internal hosts can access the internet (PAT overload) and external users can reach the web server via public IP 203.0.113.10 and the mail server via public IP 203.0.113.11. The inside interface is GigabitEthernet0/1 (192.168.1.1/24) and the outside interface is GigabitEthernet0/0.

Network Topology
G0/1192.168.1.1/24G0/010.0.0.1/3010.0.0.2/30PCsinternal networkR1ISPR2

Hints

  • Define an ACL to match internal traffic.
  • Apply NAT inside/outside on the correct interfaces.
  • Use 'overload' for PAT.
A.ip access-list standard PERMIT_INTERNAL permit 192.168.1.0 0.0.0.255 interface GigabitEthernet0/1 ip nat inside interface GigabitEthernet0/0 ip nat outside ip nat inside source list PERMIT_INTERNAL interface GigabitEthernet0/0 overload ip nat inside source static tcp 192.168.1.10 80 203.0.113.10 80 extendable ip nat inside source static tcp 192.168.1.20 25 203.0.113.11 25 extendable
B.ip access-list standard PERMIT_INTERNAL permit 192.168.1.0 0.0.0.255 interface GigabitEthernet0/1 ip nat outside interface GigabitEthernet0/0 ip nat inside ip nat inside source list PERMIT_INTERNAL interface GigabitEthernet0/0 overload ip nat inside source static tcp 192.168.1.10 80 203.0.113.10 80 ip nat inside source static tcp 192.168.1.20 25 203.0.113.11 25
C.ip access-list standard PERMIT_INTERNAL permit 192.168.1.0 0.0.0.255 interface GigabitEthernet0/1 ip nat inside interface GigabitEthernet0/0 ip nat outside ip nat inside source list PERMIT_INTERNAL interface GigabitEthernet0/0 overload ip nat inside source static 192.168.1.10 203.0.113.10 ip nat inside source static 192.168.1.20 203.0.113.11
D.ip access-list standard PERMIT_INTERNAL permit 192.168.1.0 0.0.0.255 interface GigabitEthernet0/1 ip nat inside interface GigabitEthernet0/0 ip nat outside ip nat inside source list PERMIT_INTERNAL interface GigabitEthernet0/0 overload ip nat outside source static tcp 203.0.113.10 80 192.168.1.10 80 ip nat outside source static tcp 203.0.113.11 25 192.168.1.20 25
AnswerA
solution
! R1
ip nat inside source list 100 interface GigabitEthernet0/0 overload
ip nat inside source static tcp 192.168.1.10 80 203.0.113.10 80
ip nat inside source static tcp 192.168.1.20 25 203.0.113.11 25
access-list 100 permit ip 192.168.1.0 0.0.0.255 any
interface GigabitEthernet0/1
ip nat inside
interface GigabitEthernet0/0
ip nat outside

Why this answer

The named standard ACL PERMIT_INTERNAL permits all internal hosts in 192.168.1.0/24. The 'ip nat inside source list PERMIT_INTERNAL interface GigabitEthernet0/0 overload' command enables PAT, translating internal addresses to the outside interface's IP. Static NAT entries map web and mail servers to public IPs with the 'extendable' keyword to allow both PAT and static NAT.

Proper interface NAT direction (inside/outside) is crucial.

Exam trap

Watch out for interface NAT direction: the inside interface is the one facing your internal network, and the outside interface faces the ISP. Also, remember that static NAT for servers must specify protocol and port to avoid mapping the entire IP. The 'extendable' keyword is often needed when combining PAT and static NAT.

Why the other options are wrong

B

The NAT interface directions are reversed; the internal-facing interface must be 'ip nat inside' and the external-facing interface must be 'ip nat outside'.

C

Static NAT for services must include the protocol (tcp/udp) and port number to map specific services; otherwise, it maps the entire IP address, which is not desired here.

D

The 'ip nat outside source static' command is used for translating the source address of inbound packets (e.g., for load balancing), not for mapping a public IP to an internal server. For inbound access to servers, 'ip nat inside source static' is required.

Why candidates pick the wrong answer

B

Candidates may confuse which interface is inside and outside, especially if they think of the ISP connection as 'inside' the network.

C

Candidates may think that static NAT only requires the inside and outside IP addresses, forgetting that port-specific translation is needed for servers.

D

Candidates may confuse 'inside source' and 'outside source' static NAT, thinking that 'outside source' is appropriate for inbound traffic because the source is outside.

425
MCQmedium

Why is route summarization often useful at distribution or area boundaries in larger networks?

A.It reduces the number of route advertisements by combining multiple specific prefixes
B.It forces all users into the same VLAN
C.It automatically encrypts routing protocols
D.It removes the need for IP addressing
AnswerA

At distribution or area boundaries, route summarisation aggregates multiple specific prefixes into a single, less specific advertisement, directly reducing the number of entries in the routing table and the volume of link-state or distance-vector updates. This satisfies the constraint of limiting control-plane overhead across the boundary, as fewer advertisements mean less processing and bandwidth consumption on routers at the summarisation point.

Why this answer

Route summarization is useful there because it reduces the number of specific prefixes that must be advertised upstream or across boundaries. In plain language, instead of sending many small route entries, the network can often advertise one broader summary that represents them collectively. This helps control routing-table growth and can make the design more scalable and easier to manage.

Summarization does not eliminate the need for routing detail inside the local area, but it can simplify what needs to be shared outward. That is why it is especially valuable at aggregation points such as distribution layers or area boundaries.

Exam trap

A common exam trap is selecting options that confuse route summarization with unrelated networking concepts such as VLAN design or encryption. For example, option B incorrectly states that summarization forces all users into the same VLAN, which is false because VLANs are Layer 2 constructs unrelated to routing summarization. Option C mistakenly associates summarization with automatic encryption of routing protocols, which is incorrect since encryption is a separate security feature.

Option D wrongly claims summarization removes the need for IP addressing, which is impossible because routing depends on IP addresses. Understanding that summarization only aggregates routing prefixes without altering VLANs, encryption, or IP addressing is essential to avoid these traps.

Why the other options are wrong

B

Incorrect because route summarization is a routing concept and does not influence VLAN membership or force users into the same VLAN, which is a Layer 2 function.

C

Incorrect because route summarization does not provide encryption; encryption of routing protocols is a separate security feature unrelated to summarization.

D

Incorrect because summarization does not remove the need for IP addressing; routing depends on IP addresses to forward packets correctly.

When would these options actually be correct?

B

In a different question asking about VLAN configurations, if the question were to focus on how to manage broadcast domains effectively in a large network, option B could be correct. For example, if the question stated, 'What method can be used to ensure all devices in a large organization are in the same broadcast domain?' then forcing users into the same VLAN would be the right answer.

C

In a question asking about the security features of routing protocols, such as 'Which of the following enhances the security of routing information?' option C could be correct if it referred to a protocol that includes built-in encryption mechanisms, like OSPF with IPsec.

D

In a question asking about the benefits of a network design that eliminates the need for IP addressing entirely, such as in a theoretical or highly abstract scenario involving a completely different routing paradigm, option D could be considered correct.

Why candidates pick the wrong answer

B

Students might confuse summarization with network segmentation or grouping, mistakenly thinking it consolidates users into a single broadcast domain, similar to how VLANs group users.

C

The term 'summarization' might be misassociated with security features, or students may think that reducing routing updates inherently secures them, but encryption is a distinct function.

D

Students might think that because summarization reduces the number of routes, it also reduces the need for IP addresses, but IP addresses are still required for each host and interface.

426
MCQhard

A router learns 192.168.30.0/24 from OSPF and also has a static route to 192.168.30.0/24 with administrative distance 200. Which route is installed in the routing table while both are available?

A.The OSPF route
B.The static route
C.Both routes equally for load balancing
D.Neither route, because they conflict
AnswerA

OSPF has a default administrative distance of 110, while the static route was configured with an administrative distance of 200. Cisco routers always prefer the route with the lowest AD, so the OSPF route is installed in the routing table as the best path to 192.168.30.0/24. This is why the OSPF route is selected over the static route.

Why this answer

The OSPF route is installed because its default administrative distance of 110 is lower than the static route’s configured administrative distance of 200. In practical terms, the static route has been intentionally made a backup. It is present in the configuration, but it does not become active while the lower-distance OSPF route is healthy.

This is a classic floating-static design question. The important point is that route-source preference depends on administrative distance when the prefix length is the same.

Exam trap

A common exam trap is assuming that static routes always take precedence over dynamic routes because their default administrative distance is 1. In this question, the static route’s administrative distance is manually set to 200, which is higher than OSPF’s default 110. Many candidates mistakenly select the static route, overlooking that a higher administrative distance means lower preference.

This trap tests your understanding that administrative distance values can be adjusted to create floating static routes that serve as backups rather than primary routes.

Why the other options are wrong

B

Incorrect because the static route has a higher administrative distance (200) than OSPF (110), making it less preferred and preventing it from being installed while the OSPF route is available.

C

Incorrect because routers do not install multiple routes with different administrative distances to the same prefix simultaneously; only the route with the lowest administrative distance is installed.

D

Incorrect because routers can and do choose one preferred route when multiple routes to the same prefix exist; conflicting routes do not cause both to be rejected.

When would these options actually be correct?

B

In a different scenario where the static route to 192.168.30.0/24 has an administrative distance lower than OSPF (e.g., 90), the static route would be installed in the routing table instead of the OSPF route.

C

In a different scenario where both routes have the same administrative distance and the router is configured to allow equal-cost multi-path (ECMP) routing, both routes could be installed for load balancing. For example, if both routes had an administrative distance of 110, the router would use both for traffic distribution.

D

In a different scenario where both routes have the same administrative distance, and the router cannot determine a preferred route due to a configuration error or miscommunication, the question could state that neither route is installed due to a conflict in routing protocols.

Why candidates pick the wrong answer

B

Students may think that static routes always take precedence over dynamic routes, but that is only true when the static route uses the default AD of 1. Here, the static route's AD is explicitly set to 200, making it less preferred.

C

Students might confuse this with equal-cost multipath (ECMP) where multiple routes with the same AD and metric are used for load balancing. However, here the AD values differ, so ECMP does not apply.

D

Students may think that having two routes to the same network causes a conflict or error, but routing protocols handle this by preferring the route with the lower AD. The router does not reject both routes.

427
MCQhard

A network administrator recently configured BPDU Guard on all access ports of a switch to protect against rogue switches. After the change, users in VLAN 10 report intermittent connectivity issues and frequent link flaps. The administrator checks the switch and notices that several ports are in an err-disabled state. What is the most likely cause of the problem?

A.Root Guard is preventing the port from becoming a root port.
B.BPDU Guard is enabled on access ports that are receiving BPDUs, causing the ports to go into err-disabled state.
C.Loop Guard has detected a unidirectional link and placed the port into err-disabled state.
D.BPDU Guard is globally enabled but not configured on the interface, so the port is err-disabled due to a BPDU received.
AnswerB

BPDU Guard is a security feature that intentionally places a PortFast-enabled access port into err-disabled when any BPDU is received, protecting against rogue switches attempting to participate in spanning tree. When an unauthorized device sends BPDUs, the switch immediately disables the port and logs an error, requiring an administrator to manually re-enable it or rely on errdisable recovery. This matches the scenario where access ports receiving BPDUs are error-disabled.

Why this answer

BPDU Guard is configured to protect against rogue switches by placing a port into an err-disabled state upon receiving a BPDU. In this scenario, BPDU Guard is enabled on access ports that are receiving BPDUs (possibly from a rogue switch or misconfiguration), causing the ports to err-disable and flap. PortFast is not required for BPDU Guard to function; the issue is that BPDUs are being received on ports that are not expected to receive them.

The intermittent connectivity occurs as ports cycle into err-disabled and are re-enabled.

Exam trap

A common mistake is believing BPDU Guard requires PortFast to function; in reality, BPDU Guard can be enabled per-interface without PortFast and will err-disable the port when a BPDU is received.

Why the other options are wrong

A

Root Guard prevents a port from becoming a root port by placing it in a root-inconsistent state, not err-disabled. It does not cause link flaps or err-disable ports.

C

Loop Guard prevents alternate or root ports from becoming designated in the absence of BPDUs, but it does not err-disable ports. It places ports in a loop-inconsistent state, which is not err-disabled.

D

The global 'spanning-tree portfast bpduguard default' command only applies BPDU Guard to PortFast-enabled ports. If a port receives a BPDU and is not PortFast, it will not be err-disabled by this global command. The scenario states BPDU Guard was configured on all access ports, implying interface-level configuration.

Why candidates pick the wrong answer

A

Students may confuse Root Guard with BPDU Guard because both are STP security features, and the term 'guard' suggests protection, leading to the assumption that it could cause err-disable.

C

Loop Guard also deals with BPDU issues and can cause port blocking, so students might mistakenly think it causes err-disable, especially since both features are related to STP protection.

D

Students may not fully understand the difference between global and interface BPDU Guard configuration, and might think global application alone can cause err-disable on any port receiving a BPDU.

428
MCQhard

A branch office needs four subnets from the 192.168.50.0/24 network, with each subnet supporting up to 50 hosts. Which prefix length should be used for each subnet?

A./25
B./26
C./27
D./28
AnswerB

A /26 prefix borrows 2 host bits from the /24, yielding 4 equal-sized subnets (2^2 = 4), each with 62 usable addresses (2^6 - 2 = 62). This exactly meets the branch office requirement for four subnets while providing sufficient host capacity for typical devices. The subnet mask 255.255.255.192 is the correct choice.

Why this answer

Each subnet must support at least 50 hosts, so /26 is the smallest suitable prefix because it provides 62 usable addresses. A /24 can be split into exactly four /26 subnets.

Exam trap

A frequent exam trap is selecting a subnet mask that provides enough hosts but not enough subnets, or vice versa. For instance, choosing /25 seems tempting because it supports 126 hosts, which exceeds the 50-host requirement. However, /25 only creates two subnets from a /24, which fails the requirement for four subnets.

Another trap is picking /27, which creates enough subnets but only supports 30 hosts, insufficient for 50 hosts per subnet. Candidates must carefully balance subnet count and host capacity to avoid these pitfalls.

Why the other options are wrong

A

/25 provides 126 usable hosts per subnet, which is more than enough for 50 hosts, but it only creates two subnets from a /24 network. Since four subnets are required, /25 is insufficient for subnet count.

C

/27 creates eight subnets from a /24, which is enough subnets, but each subnet only supports 30 usable hosts. This is less than the required 50 hosts, so /27 is not suitable.

D

/28 creates sixteen subnets but only supports 14 usable hosts per subnet, which is far below the 50-host requirement. Therefore, /28 is not a valid option.

When would these options actually be correct?

A

In a scenario where a network engineer needs to create two subnets from a /24 network, each supporting up to 126 hosts, option A (/25) would be correct. This would allow for two subnets, each with sufficient capacity for a larger number of hosts than required.

C

In a scenario where the requirement is to create subnets for a network that only needs to support up to 30 hosts each, such as a small office with limited devices, /27 would be the correct choice as it allows for 30 usable addresses per subnet.

D

In a different scenario where a network administrator needs to create multiple subnets for a small office with a maximum of 14 hosts each, using the 192.168.50.0/24 network, a /28 subnet would be appropriate as it allows for 16 IP addresses, accommodating the host requirement.

Why candidates pick the wrong answer

A

Students might choose /25 because it provides more than enough hosts per subnet (126 usable addresses) and they may overlook the requirement for exactly four subnets, focusing only on the host count.

C

Students might choose /27 because it can create more than four subnets, and they may incorrectly assume that more subnets are better or forget to verify the host capacity per subnet.

D

Students might choose /28 if they focus solely on the number of subnets (16 subnets easily exceeds the requirement of four) without considering the host capacity per subnet, or they may confuse the host calculation with a different prefix length.

429
Multi-Selectmedium

Which TWO of the following are valid interpretations of errors seen in the output of the 'show interface' command?

Select 2 answers
A.CRC errors indicate that frames were received with an invalid checksum, often due to cabling issues.
B.Runts are frames that are larger than the maximum allowed size.
C.Giants are frames that are smaller than 64 bytes.
D.Input errors include runts, giants, CRC errors, and frame errors.
E.Flaps indicate that the interface is physically disconnected.
AnswersA, D

A CRC error means the Ethernet frame's frame check sequence (FCS) computed at the receiver does not match the value transmitted, indicating corruption during transit. This is commonly caused by faulty cabling, bad connectors, electromagnetic interference, or a marginal transceiver, rather than by a software issue. CRC errors may also be accompanied by alignment errors if the corruption shifts bit boundaries, pointing further to a physical-layer problem.

Why this answer

CRC errors (option A) indicate frames with an invalid checksum, often due to cabling issues, which is correct. Option D is also correct: 'Input errors' is a cumulative counter that includes runts, giants, CRC errors, and frame errors. Option B is wrong because runts are frames smaller than 64 bytes, not larger.

Option C is wrong because giants are frames larger than the maximum allowed size (typically 1518 bytes), not smaller than 64 bytes. Option E is wrong because 'flaps' refer to an interface going up and down repeatedly, not necessarily physically disconnected; it could be due to duplex mismatch or other reasons.

Exam trap

Cisco often tests the exact byte thresholds for runts (less than 64 bytes) and giants (greater than 1518 bytes), and candidates frequently reverse these values or confuse them with other error types.

Why the other options are wrong

B

Runts are frames smaller than 64 bytes, not larger than the maximum size.

C

Giants are frames larger than the maximum allowed size (typically 1518 bytes), not smaller than 64 bytes.

E

Flaps indicate an interface repeatedly transitioning between up and down states, not necessarily a physical disconnection.

Why candidates pick the wrong answer

B

Students may confuse 'runts' with 'giants' due to the opposite-sounding names, or assume 'runts' refers to something undersized but incorrectly think it means oversized.

C

The terms 'runts' and 'giants' are easily confused because they are opposites; a student might mistakenly swap their definitions.

E

The term 'flap' might be interpreted as a single change in state (like a flap of a wing), but in networking it specifically implies repeated transitions.

430
PBQhard

You are connected to R1. The network administrator wants to permit only HTTPS traffic (TCP port 443) from the 192.0.2.0/24 network to the 203.0.113.0/24 network, while denying all other IP traffic. Currently, an ACL applied inbound on G0/1 is blocking all traffic, including HTTPS. Identify the issue and correct the ACL configuration so that only HTTPS traffic is permitted.

Network Topology
G0/1192.0.2.1/24linkG0/1203.0.113.1/24InternetR1R2

Hints

  • The ACL is currently blocking all traffic because of the deny any any entry.
  • You need to remove the existing ACL and recreate it with a permit statement for HTTPS.
  • Remember the implicit deny at the end of every ACL; you don't need an explicit deny statement.
A.Remove the existing ACL, then create an extended ACL with a permit statement for tcp 192.0.2.0 0.0.0.255 203.0.113.0 0.0.0.255 eq 443, and apply it inbound on G0/1.
B.Add a permit statement for tcp 192.0.2.0 0.0.0.255 203.0.113.0 0.0.0.255 eq 443 before the existing deny ip any any entry in the ACL.
C.Remove the existing ACL and create a standard ACL with permit 192.0.2.0 0.0.0.255, then apply it inbound on G0/1.
D.Remove the existing ACL and create an extended ACL with a permit statement for tcp any any eq 443, then apply it inbound on G0/1.
AnswerA
solution
! R1
configure terminal
no ip access-list extended BLOCK_IN
ip access-list extended BLOCK_IN
permit tcp 192.0.2.0 0.0.0.255 203.0.113.0 0.0.0.255 eq 443
end
write memory

Why this answer

The ACL BLOCK_IN currently has a single deny ip any any entry, which blocks all traffic inbound on G0/1. The correct solution is to first remove the existing ACL, then create a new extended ACL that permits TCP 443 from source network 192.0.2.0/24 to destination network 203.0.113.0/24, and apply it inbound on G0/1. The implicit deny at the end of the ACL will then block all other traffic, achieving the desired policy.

Exam trap

The exam trap is that candidates may think adding a permit statement before the deny will work, but if they add a new entry without specifying a sequence number, it is inserted after the existing deny ip any any, so the deny remains first and blocks all traffic.

Why the other options are wrong

B

The specific factual error is that the order of entries matters; a deny any any at the end would block all traffic, but here it is placed before the permit, so the deny is evaluated first.

C

The specific factual error is that standard ACLs lack the capability to filter by protocol or port; extended ACLs are required for such granularity.

D

The specific factual error is that the permit statement uses 'any' for source and destination, making it too permissive and not matching the specified networks.

Why candidates pick the wrong answer

B

Candidates might think that adding a permit statement before the deny will override it, but they overlook that the deny ip any any matches all traffic and will be hit first if placed before the permit.

C

Candidates might confuse standard and extended ACL capabilities, thinking a standard ACL can filter by port if applied correctly.

D

Candidates might focus only on the port number and forget to specify the source and destination networks, leading to an overly broad permit.

431
MCQhard

A router receives two routes to 10.50.0.0/16: one from OSPF and one static route with an administrative distance of 90. Which route is installed by default?

A.The static route, because its administrative distance is lower than OSPF's
B.The OSPF route, because dynamic routes always override static routes
C.Both routes, because equal destination networks always load-balance
D.Neither route, because the destinations overlap
AnswerA

The static route is correct because its administrative distance is 90, which is lower than OSPF's default of 110. The router compares administrative distance values when multiple routing sources advertise the same prefix, and it installs the route with the lowest AD in the routing table. Since 90 is less than 110, the static route is preferred over the OSPF route.

Why this answer

By default, the static route with administrative distance 90 is installed because it is preferred over the OSPF route with default administrative distance 110. In plain language, the router is being told that the manually configured route is more trustworthy than the OSPF-learned one, so it chooses the static path first. The protocol type alone does not decide the outcome. Administrative distance is the key comparison when two different route sources offer the same destination prefix length.

This is a classic routing-selection question because many learners incorrectly assume OSPF always wins over static routes unless the static route uses the default administrative distance. Once the static route is given a value lower than OSPF’s 110, it becomes the preferred path unless a more specific route exists elsewhere.

Exam trap

A frequent exam trap is assuming that dynamic routing protocols like OSPF always override static routes regardless of administrative distance. Many candidates mistakenly believe that static routes only win if they use the default AD of 1. However, if a static route is manually assigned an AD lower than OSPF's default 110, it becomes the preferred route.

This misunderstanding leads to incorrect answers because the exam tests knowledge of how administrative distance influences route selection, not just the routing protocol type. Remember, the router always chooses the route with the lowest administrative distance, even if it is a static route with a custom AD.

Why the other options are wrong

B

Incorrect. Dynamic routes do not always override static routes; route preference depends on administrative distance, not just whether a route is dynamic or static.

C

Incorrect. Equal destination networks do not automatically cause load balancing if the routes have different administrative distances; only routes with equal AD and metrics are load-balanced.

D

Incorrect. Overlapping destinations from different sources are common and do not prevent route installation; the router uses administrative distance to choose the preferred route.

When would these options actually be correct?

B

If the question stated that the OSPF route had a lower administrative distance than the static route, or if it specified that the static route was not installed due to a configuration issue, then this option would be correct.

C

In a different scenario where both the OSPF route and static route have the same administrative distance, a question could ask which routes would be installed if load balancing is enabled. In that case, both routes could be installed for the same destination network.

D

If the question stated that both routes had the same administrative distance and were configured to not allow overlapping routes, then this option would be correct. For example, if the router was configured to only accept one route for a specific destination and the routes were set to be mutually exclusive.

Why candidates pick the wrong answer

B

Students may mistakenly believe that dynamic routing protocols always override static routes due to their adaptive nature, but in Cisco IOS, static routes have a lower default AD (1) unless manually changed, and here the static route's AD is explicitly set to 90, which is still lower than OSPF's 110.

C

Students might think that any two routes to the same network will be load-balanced, but Cisco routers require equal AD and metric for load balancing across equal-cost paths. Different routing sources typically have different ADs, preventing load balancing.

D

A student might confuse overlapping routes with conflicting routes that cause routing loops or ambiguity, but in this case, the routes are identical in prefix length, so the router simply picks the best one based on AD.

432
Multi-Selectmedium

Which TWO statements about network automation tools are true?

Select 2 answers
A.Ansible uses an agentless architecture and communicates with network devices over SSH by default.
B.Python is a general-purpose programming language often used with libraries like Netmiko and NAPALM to automate network tasks.
C.Puppet and Chef both use a push-based model where the master server initiates configuration changes on managed nodes.
D.Chef playbooks are written in YAML, while Ansible uses a Ruby-based DSL for defining desired state.
E.Ansible requires an agent to be installed on managed network devices, while Puppet does not.
AnswersA, B

Ansible operates without any persistent agent installed on the target device. Instead, the Ansible controller connects over SSH (or other supported connection methods like NETCONF for network devices) and executes a transient module that performs the required task, then cleans up after itself. This agentless design simplifies initial setup and avoids compatibility issues with device firmware.

Why this answer

Ansible is agentless, meaning it does not require any software installed on managed network devices. It connects to devices over SSH by default (or API for some platforms) and pushes configuration modules directly, making it lightweight and easy to deploy in network environments.

Exam trap

Cisco often tests the confusion between push-based and pull-based models, as well as which tools use agents versus agentless architectures, to catch candidates who memorize buzzwords without understanding the underlying communication patterns.

Why the other options are wrong

C

Ansible is the tool known for push-based orchestration; Puppet and Chef rely on agent-initiated pull cycles.

D

Mixing up the DSL/language associations: Ansible = YAML, Chef = Ruby, Puppet = Puppet DSL (declarative).

E

This error stems from confusing the agentless nature of Ansible with the agent-based architecture of Puppet/Chef.

433
MCQhard

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

A.192.168.0.0/16
B.192.168.100.0/24
C.Both routes are discarded because they overlap.
D.The default route is preferred if present.
AnswerB

The route 192.168.100.0/24 is selected because it has a longer prefix length (24 bits) than 192.168.0.0/16, and routers use the most specific matching prefix (longest prefix match) to forward traffic. For destination 192.168.100.77, the /24 route provides a more precise match, satisfying the constraint of optimal path selection based on subnet mask length.

Why this answer

The route to 192.168.100.0/24 is used because it is more specific. In plain language, even though the /16 route covers a large address range that includes the destination, the /24 route describes the destination network more precisely. Longest-prefix match therefore prefers the /24.

This is a basic but critical routing-table concept. The router does not choose the broader route when a narrower one matches the same destination.

Exam trap

A frequent exam trap is to select the broader route 192.168.0.0/16 because it seems to cover more addresses, including the destination. Candidates may mistakenly think that a larger subnet mask means a better route or that overlapping routes cause the router to discard both. However, Cisco routers always prefer the most specific route based on the longest-prefix match rule.

Overlapping routes are normal and do not cause discarding; instead, the router uses the route with the longest subnet mask. Misunderstanding this can lead to incorrect answers and confusion about routing behavior.

Why the other options are wrong

A

192.168.0.0/16 is a less specific route covering a larger address range. Although it includes 192.168.100.77, it is not chosen because a more specific route exists. Selecting this ignores the longest-prefix match rule.

C

Both routes are not discarded because overlapping routes are common in routing tables. The router uses the longest-prefix match to select the best route, so discarding overlapping routes is incorrect.

D

The default route is only preferred if no specific matching route exists. Since both 192.168.0.0/16 and 192.168.100.0/24 match the destination, the router chooses the more specific /24 route, not the default.

When would these options actually be correct?

A

In a scenario where the question specifies that the router is configured to prefer the less specific route for some reason, such as a policy-based routing configuration that prioritizes broader networks, then 192.168.0.0/16 could be the correct answer.

C

In a scenario where a router has conflicting routes to the same destination but with different subnet masks, and the router is configured to discard overlapping routes due to administrative policies, this option would be correct. For example, if a question stated that both routes were configured with the same administrative distance and the router was set to ignore overlapping routes, then this answer would apply.

D

In a different scenario where the router has no specific routes for the destination IP and only a default route is configured, the default route would be used for traffic to 192.168.100.77, making this option correct.

Why candidates pick the wrong answer

A

Students might think that because 192.168.100.77 falls within the 192.168.0.0/16 range, this route would be used. However, they overlook the principle of longest prefix match, which gives priority to the more specific /24 route.

C

Some students may incorrectly believe that overlapping prefixes cause conflicts or errors, leading to route discarding. In reality, routers handle overlapping routes gracefully by preferring the most specific one.

D

Students might think that the default route is always preferred or that it overrides specific routes. In fact, the default route has the lowest priority and is only a last resort.

434
Matchingmedium

Match each basic IPv4 concept to its most accurate role.

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

Concepts
Matches

Defines network versus host portions of the address

Next hop used for off-subnet traffic

Address used to reach all hosts in the local broadcast domain

Address identifying an individual device in the subnet

Why these pairings

An IP address uniquely identifies a device on an IP network. A subnet mask separates the network and host portions of an IP address, enabling devices to determine if a destination is local or remote. A default gateway is the router IP that forwards traffic to other networks when the destination is not on the local subnet.

A DNS server translates domain names into IP addresses, allowing devices to reach websites by name.

Exam trap

Do not confuse the subnet mask's role with that of the default gateway. The subnet mask helps identify the network, while the default gateway enables communication outside the local subnet.

435
Matchingmedium

Match each IPv6 address type or concept to its most accurate description.

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

Concepts
Matches

IPv6 address type used for wider routed communication

IPv6 address type used only on the local segment

Address used by a device to refer to itself

Method for deriving an interface identifier from a MAC address

Why these pairings

Each IPv6 address type has a distinct purpose: Global Unicast for public routing, Link-Local for local segment, Unique Local for private site, Multicast for group communication, Anycast for nearest device, and SLAAC for stateless address assignment.

Exam trap

The most common trap is confusing the scope of Link-Local and Unique Local addresses. Remember: Link-Local is only for the local link, while Unique Local is for private site-wide use but not internet-routable. Also, don't confuse multicast with unicast.

When would these options actually be correct?

B

This option would be correct if the question asked: 'Which IPv6 address type is automatically assigned on each interface, used for neighbor discovery, and is not routable beyond the local link?'

C

In a question asking for an IPv6 address type that is globally unique but not intended for public routing, such as 'Which IPv6 address type is globally unique but limited to private networks?' Unique Local would be correct.

D

A question asking: 'Which IPv6 address type is used for one-to-many communication, where a single packet is sent to multiple destinations?' would make Multicast the correct answer.

Why candidates pick the wrong answer

B

Candidates may confuse 'link-local' with 'local' and assume it can be used within the entire enterprise, similar to how IPv4 private addresses work, not realizing link-local is strictly single-link.

C

Candidates may confuse 'unique' with 'globally unique and routable,' incorrectly assuming Unique Local addresses function like Global Unicast addresses.

D

Candidates may confuse multicast with unicast, or think 'multi' implies multiple hosts in a one-to-one context, misunderstanding the one-to-many nature of multicast.

436
MCQmedium

Why is NTP especially valuable when a network uses centralized Syslog servers?

A.Because synchronized clocks make log timestamps easier to correlate across devices
B.Because NTP converts Syslog into a routing protocol
C.Because NTP automatically creates DHCP pools
D.Because NTP eliminates the need for a Syslog server
AnswerA

When all network devices reference the same authoritative NTP source, their log timestamps are expressed in the same time scale, so an administrator can accurately sequence events across routers, switches, and firewalls during troubleshooting. Centralized log correlation depends on consistent timestamps; without NTP, even devices with identical configurations can drift, making a single incident appear to happen at different times or in the wrong order. NTP therefore makes centralized logging meaningful by providing a common temporal reference.

Why this answer

NTP is especially valuable because centralized logs are much easier to interpret when device clocks are synchronized. In plain language, if multiple routers and switches send messages to one logging server but each device believes a different time, the event sequence becomes confusing. NTP helps align those clocks so the timestamps in the logs are consistent and the team can reconstruct incidents more accurately.

This is a practical operations concept rather than a syntax question. Syslog solves the collection problem, and NTP solves the time-correlation problem. Together they make logs more useful than either one alone. That is why the best answer focuses on timestamp consistency rather than on routing, VLAN, or NAT behavior.

Exam trap

A common exam trap is selecting an answer that incorrectly attributes routing or DHCP functions to NTP, such as thinking NTP converts Syslog into a routing protocol or automatically creates DHCP pools. These options confuse NTP’s fundamental role in time synchronization with unrelated network services. Another trap is assuming NTP eliminates the need for a Syslog server, which is false because NTP only provides accurate timestamps; it does not collect or store logs.

Understanding that NTP’s value lies in timestamp consistency, not in changing or replacing other protocols, is critical to avoid these mistakes.

Why the other options are wrong

B

Incorrect because NTP does not convert Syslog into a routing protocol; NTP’s function is strictly time synchronization, unrelated to routing protocols.

C

Incorrect because NTP does not create DHCP pools; DHCP pool creation is unrelated to time synchronization and is managed by DHCP services.

D

Incorrect because NTP does not eliminate the need for a Syslog server; it complements Syslog by providing accurate timestamps but does not replace log collection.

When would these options actually be correct?

B

In a hypothetical exam question asking about the integration of Syslog with routing protocols, if it stated that NTP enhances the functionality of Syslog by enabling time-stamped logging for routing updates, then option B could be correct in that context.

C

If the exam question asked about a protocol that manages IP address allocation and network configuration, such as DHCP, then this option could be correct in that context. For instance, a question could ask which protocol is responsible for dynamically assigning IP addresses to devices on a network.

D

In a question that asks about the benefits of NTP in a network where logging is not required or where all devices operate independently without centralized logging, stating that NTP eliminates the need for a Syslog server could be correct.

Why candidates pick the wrong answer

B

Students might confuse the term 'protocol' and think NTP can convert one protocol into another, or they may mistakenly believe that NTP integrates with Syslog to change its format.

C

A student might associate NTP with automatic configuration or think that time synchronization is needed for DHCP lease times, but NTP does not create DHCP pools.

D

A test-taker might think that because NTP improves log accuracy, it somehow makes the Syslog server unnecessary, confusing correlation with elimination.

437
MCQhard

A wireless client joins the correct SSID and gets an address in the correct employee subnet, but cannot reach only one internal application while everything else works. Which troubleshooting area is the strongest first target?

A.The path or policy specific to that application, since general employee connectivity already works.
B.The SSID broadcast setting, because the client must not be joined correctly.
C.The voice VLAN on the wired access port connected to the AP uplink.
D.The OSPF router ID on the client device.
AnswerA

The client has already associated to the correct SSID, authenticated, and received a valid IP address from the expected subnet, proving that the WLAN and general network path are functional. Since other employees can connect and general connectivity works, the failure is isolated to application-specific transport, such as traffic filtering rules, access control lists, firewall policies, or per-application VPN/proxy configurations. Therefore, troubleshooting should focus on the path and policies that govern that particular application.

Why this answer

The strongest first target is the application path or policy specific to that application because the client already has general connectivity: it joined the correct SSID, authenticated, and obtained an IP address in the employee subnet. A failure limited to one internal application indicates that basic WLAN join, DHCP, and overall routing are working; therefore, ACLs, firewall rules, DNS resolution for that service, or application-specific policies are the likely cause. Option B (SSID broadcast setting) is irrelevant because the client successfully joined the SSID and has connectivity.

Option C (voice VLAN on the wired access port) is not a first target because the symptom involves a single data application, not voice, and the client is on the employee subnet, not a voice VLAN. Option D (OSPF router ID on the client) is invalid because client devices do not typically run OSPF; OSPF runs on routers, not wireless clients.

Exam trap

Avoid restarting troubleshooting from basic connectivity steps when the problem is isolated to a specific application.

Why the other options are wrong

B

The client has already joined the correct SSID, authenticated, and received an IP address in the correct subnet, so the SSID broadcast setting is not the issue. The problem is specific to one application, not general connectivity.

C

The voice VLAN on the AP uplink is used for VoIP traffic, not for general data applications. Since the client can access other internal resources, the issue is not related to the AP uplink configuration.

D

OSPF router IDs are used by routers in OSPF routing, not by end-client devices. Clients do not run OSPF, so this is irrelevant to the problem.

When would these options actually be correct?

B

In a different scenario where a client cannot connect to any SSID and fails to obtain an IP address, a question might ask about connectivity issues. In that case, troubleshooting the SSID broadcast setting would be appropriate to ensure the client can see and join the network.

C

If the question stated that multiple applications were inaccessible or that the client was experiencing issues with general network connectivity, then investigating the voice VLAN on the wired access port could be relevant. This would indicate a broader network issue affecting multiple services.

D

In a different question, if a client device is unable to communicate with any network resources and the issue is suspected to be related to routing, asking about the OSPF router ID could be relevant. For instance, if the question states that the client is on a subnet that should be reachable but isn't, then the OSPF configuration could be the focus.

Why candidates pick the wrong answer

B

Students might think that SSID broadcast issues could cause partial connectivity, but the client's successful association and IP address assignment rule out this possibility.

C

A test-taker might confuse the voice VLAN with general data VLANs or think that AP uplink issues could affect specific applications, but the symptom of single-application failure points elsewhere.

D

Students might mistakenly think that OSPF is involved in internal application connectivity, but OSPF is a routing protocol for routers, not for client devices.

438
PBQmedium

You are connected to SW1 via console. SW1 is a Layer 2 switch with two ports (G0/1 and G0/2) connected to a host. The host should be able to send and receive traffic on VLAN 10 and VLAN 20. Configure the two ports as a trunk link to the host, but ensure that the trunk only carries VLANs 10 and 20, and set the native VLAN to VLAN 99.

Network Topology
G0/1, G0/2HostSW1

Hints

  • Use the 'switchport trunk allowed vlan' command to restrict which VLANs are carried.
  • The native VLAN must match on both ends of the trunk.
A.interface range gigabitethernet0/1-2 switchport mode trunk switchport trunk allowed vlan 10,20 switchport trunk native vlan 99
B.interface range gigabitethernet0/1-2 switchport mode trunk switchport trunk allowed vlan 10-20 switchport trunk native vlan 99
C.interface range gigabitethernet0/1-2 switchport mode trunk switchport trunk allowed vlan 10,20 switchport native vlan 99
D.interface range gigabitethernet0/1-2 switchport mode trunk switchport trunk allowed vlan 10,20 switchport trunk native vlan 1
AnswerA
solution
! SW1
interface gigabitethernet0/1
switchport mode trunk
switchport trunk allowed vlan 10,20
switchport trunk native vlan 99
interface gigabitethernet0/2
switchport mode trunk
switchport trunk allowed vlan 10,20
switchport trunk native vlan 99

Why this answer

Configuring the ports as trunks allows multiple VLANs. The 'allowed vlan' command restricts the trunk to only VLANs 10 and 20, while 'native vlan 99' sets the untagged VLAN to 99, ensuring proper tagging and avoiding VLAN mismatch.

Exam trap

Watch out for the difference between 'switchport trunk allowed vlan 10,20' (list) and 'switchport trunk allowed vlan 10-20' (range). Also, remember that on a trunk port, the native VLAN command must include the 'trunk' keyword: 'switchport trunk native vlan'. Finally, always verify that the native VLAN is set to the required value, not left at the default.

Why the other options are wrong

B

The specific factual error is using a range (10-20) instead of a list (10,20), which includes unintended VLANs.

C

The specific factual error is omitting the 'trunk' keyword in the native VLAN command, which is required for trunk ports.

D

The specific factual error is setting the native VLAN to 1 instead of 99, which does not meet the requirement.

Why candidates pick the wrong answer

B

Candidates might think the hyphen means 'and' and includes only the specified VLANs, but in Cisco IOS, a hyphen indicates a range.

C

Candidates may think 'switchport native vlan' is sufficient, but on a trunk port, the full command is 'switchport trunk native vlan'.

D

Candidates might forget to change the native VLAN from the default (VLAN 1) or assume it doesn't matter, but the question explicitly requires VLAN 99.

439
PBQhard

You are troubleshooting a PC connected to switch SW1. The PC cannot access the internet. SW1 is connected to router R1 via port G0/1. R1 provides default gateway and DHCP services. Analyze the provided show output and fix the connectivity issue so that the PC can ping 8.8.8.8. === Show output from R1 === <pre> R1# show ip interface brief Interface IP-Address OK? Method Status Protocol GigabitEthernet0/0 unassigned YES manual administratively down down GigabitEthernet0/1 10.0.0.1 YES NVRAM up up </pre> === Show output from PC === <pre> C:\> ipconfig Ethernet adapter Ethernet0: Connection-specific DNS Suffix . : IPv4 Address. . . . . . . . . . : 169.254.123.45 Subnet Mask . . . . . . . . . . : 255.255.0.0 Default Gateway . . . . . . . . : </pre> === Show output from SW1 === <pre> SW1# show vlan brief VLAN Name Status Ports ---- -------------------------------- --------- ------------------------------- 1 default active Gi0/1, Gi0/2, Gi0/3 </pre>

Network Topology
G0/1G0/2G0/1G0/0SW1PC1R1

Hints

  • Check if R1's interface connected to SW1 has an IP address.
  • The DHCP pool expects the default gateway to be on the same subnet as the clients.
  • APIPA address means the PC did not receive a DHCP offer.
A.Configure R1's interface G0/0 with IP address 192.168.1.1/24 and ensure the interface is not administratively down.
B.Change the VLAN on SW1's port G0/2 to VLAN 10 and configure R1's subinterface G0/0.10 with IP 192.168.1.1/24.
C.Enable DHCP snooping on SW1 and configure the port G0/2 as a trusted port.
D.Configure a static IP address of 192.168.1.10/24 on the PC with default gateway 192.168.1.1.
AnswerA
solution
! R1
interface gigabitethernet0/0
ip address 192.168.1.1 255.255.255.0
no shutdown

Why this answer

The PC's APIPA address (169.254.x.x) indicates DHCP failure. The router's DHCP pool is correctly configured and has a lease, but the show output reveals that R1's interface G0/0 is administratively down and has no IP address. Without a working IP on G0/0, the router cannot serve DHCP or route traffic for VLAN 1, even though both the PC and the router are in the same VLAN.

Option A fixes the root cause by assigning the correct subnet IP and bringing the interface up. Option B is incorrect because moving the PC to a different VLAN or creating subinterfaces does nothing to enable the router's physical interface where DHCP and routing must run. Option C is wrong because DHCP snooping or trust configurations are irrelevant when the router's own interface is down/unaddressed.

Option D is a workaround that only masks the problem; the scenario requires a working DHCP service, and a static IP would not restore the intended design.

Exam trap

This question tests your ability to identify that a router interface must have an IP address in the client subnet for DHCP to work, even if the DHCP pool is correctly configured. Many candidates focus on VLANs or DHCP server settings but overlook the basic requirement of an IP address on the router interface.

Why the other options are wrong

B

Changing VLANs or using subinterfaces does not solve the problem because the router's physical interface must be up and have an IP address to serve the VLAN.

C

Enabling DHCP snooping or trust settings on the switch cannot fix a router interface that is administratively down and unassigned.

D

Assigning a static IP to the PC circumvents but does not resolve the root issue of the router's interface being down, and the scenario requires DHCP.

Why candidates pick the wrong answer

B

Candidates might think that DHCP requires a different subnet or VLAN, or they may confuse this scenario with router-on-a-stick configurations where subinterfaces are used for inter-VLAN routing.

C

Candidates may think that DHCP snooping is required to allow DHCP traffic across switches, or they may confuse this with scenarios where DHCP is failing due to rogue servers or untrusted ports.

D

Candidates might think that since DHCP failed, a static IP is a quick fix. However, they overlook that the router interface is not configured, so the default gateway would be unreachable.

440
MCQhard

A routing table contains these entries for the same destination space: 10.1.0.0/16, 10.1.10.0/24, and 0.0.0.0/0. Which route is used for traffic to 10.1.10.44?

A.10.1.0.0/16
B.10.1.10.0/24
C.0.0.0.0/0
D.No route, because the entries overlap
AnswerB

This is correct because 10.1.10.44 falls within that more specific prefix.

Why this answer

The 10.1.10.0/24 route is used because it is the most specific matching prefix. In plain language, even though the /16 route and the default route could also match, the /24 route describes the destination range more precisely. Longest-prefix match therefore selects the /24 entry.

This is a foundational route-selection rule. The default route remains important as a fallback, but it is not used when more specific routes exist. Likewise, the /16 route is less specific than the /24, so it loses for this destination.

Exam trap

A frequent exam trap is selecting the less specific route (10.1.0.0/16) or the default route (0.0.0.0/0) for the destination 10.1.10.44. Candidates might mistakenly believe that overlapping routes cause conflicts or that the default route overrides specific routes. However, Cisco routers always apply the longest-prefix match rule, choosing the most specific subnet mask that fits the destination IP.

Overlapping routes do not cause routing failures; instead, they provide multiple options where the router picks the best match. Misunderstanding this can lead to incorrect answers and confusion about routing behavior.

Why the other options are wrong

A

The 10.1.0.0/16 route is less specific than the 10.1.10.0/24 route. Although it matches the destination IP, the router prefers the more specific /24 prefix, so this option is incorrect.

C

The 0.0.0.0/0 default route is only used when no other specific route matches the destination. Since both /16 and /24 routes match, the default route is not chosen here, so this option is incorrect.

D

Overlapping routes like 10.1.0.0/16 and 10.1.10.0/24 are common and do not prevent routing. The router resolves overlaps by selecting the longest prefix, so this option is incorrect.

When would these options actually be correct?

A

In a different scenario where the routing table only includes the entry 10.1.0.0/16 and no more specific routes for 10.1.10.0/24, the 10.1.0.0/16 route would be the correct answer for traffic to 10.1.10.44, as it would be the only available route.

C

In a different scenario where the routing table only contains the default route 0.0.0.0/0 and no other specific routes, any traffic, including to 10.1.10.44, would be directed through this default route. A question could specify that no other routes exist.

D

In a different scenario where the routing table entries are configured incorrectly or the router is set to reject overlapping routes, a question could ask what happens when two routes overlap, leading to confusion about which route is used. In such a case, if the question specified that overlapping routes are not allowed, this option could be correct.

Why candidates pick the wrong answer

A

Students might think that since 10.1.10.44 falls within the 10.1.0.0/16 range, the /16 route would be used, but they overlook the more specific /24 route.

C

Students may confuse the default route as a catch-all that overrides other routes, but it is actually the least preferred route and only used as a last resort.

D

Students might think that overlapping routes create ambiguity or errors, but routers are designed to handle overlapping prefixes using the longest prefix match algorithm.

441
Multi-Selectmedium

Which three options correctly describe how a router processes a packet destined for a remote network? (Choose three.)

Select 3 answers
.It decrements the Time-to-Live (TTL) field in the IP header.
.It performs a lookup in the routing table for the destination IP address.
.It rewrites the source and destination MAC addresses for the next hop.
.It replaces the source IP address with its own outgoing interface IP.
.It sends an ARP request for every destination IP address in the packet.
.It encapsulates the entire packet in a new Layer 2 frame with the original MAC addresses.

Why this answer

When a router forwards a packet to a remote network, it first decrements the Time-to-Live (TTL) field in the IP header to prevent infinite loops. It then performs a routing table lookup for the destination IP address to determine the next-hop interface and IP. Finally, it rewrites the source and destination MAC addresses for the next hop, because MAC addresses are only relevant on the local link and must be updated at each Layer 3 hop.

Exam trap

Cisco often tests the distinction between Layer 2 (MAC) and Layer 3 (IP) header changes, so the trap here is that candidates mistakenly think the source IP address is rewritten at each hop, confusing routing with NAT or PAT.

442
Matchingeasy

Match each common network device or concept to its primary role.

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

Concepts
Matches

Forwards traffic between networks

Forwards local traffic inside a LAN

Applies permit/deny policy to traffic

Provides wireless connectivity

Why these pairings

Router routes between networks; switch forwards within LAN; hub repeats signals; firewall filters traffic; AP provides Wi-Fi; modem converts digital to analog for WAN.

Exam trap

Be careful not to confuse the functions of routers and switches, as both forward traffic but at different layers. Also, remember that a home 'router' often includes a switch, AP, and modem, but the primary role of a router is routing between networks.

When would these options actually be correct?

B

This option would be correct if the question asked to match devices to roles in a reversed or intentionally mislabeled scenario, such as 'Match each device to its secondary or less common function' or in a trick question where the roles are deliberately swapped to test knowledge of incorrect pairings.

C

In a question asking to match devices to secondary or less common functions, such as 'Match each device to a possible secondary role in a network,' where options are intentionally mismatched to test deeper knowledge. For example, a router can filter traffic via ACLs, a switch can repeat signals in a broadcast domain, a hub can route in a very basic sense if it's a layer 3 hub, a firewall can forward within a LAN if configured as a transparent firewall, an AP can convert digital to analog in the RF domain, and a modem can provide Wi-Fi if it's a gateway.

D

In a question asking to match devices to their secondary or less common functions, such as 'Match each device to a possible secondary role,' where Router could provide Wi-Fi in a home router, Switch could convert digital to analog if it includes a modem, Hub could route in a very basic sense, Firewall could forward within LAN if acting as a router, AP could filter traffic if it has firewall features, and Modem could repeat signals if it includes a repeater function.

Why candidates pick the wrong answer

B

Candidates may confuse the roles of routers and switches (both forward data) or hubs and firewalls (both deal with traffic), or they may misremember the functions of modems and APs due to overlapping wireless and WAN concepts.

C

Candidates may confuse the functions due to overlapping features in modern devices (e.g., routers with firewall capabilities, switches with routing) or misremember basic definitions under exam pressure.

D

Candidates may confuse the roles due to overlapping functions in integrated devices (e.g., home routers combine router, switch, AP, and modem) or misremember basic networking definitions.

443
PBQhard

You are connected to R1 via the console. R1 is a Cisco ISR 4321 router running IOS-XE. The network team has recently changed the routing protocol from EIGRP to OSPF, but some routes are missing from the routing table. You need to analyze the OSPF neighbor states and LSDB to identify the issue.

Network Topology
G0/010.0.1.1/30G0/010.0.1.2/30linkG0/1192.168.1.1/24linkR1R2SW1

Hints

  • Check if OSPF neighbors are in FULL state.
  • Look for mismatched OSPF network types or hello intervals.
  • Verify that both routers are in area 0.
A.Use 'show ip ospf neighbor' to check neighbor state; if not FULL, examine 'show ip ospf interface' for mismatched hello/dead intervals or network type.
B.Use 'show ip route ospf' to verify OSPF routes; if missing, re-enter the OSPF process and redistribute connected routes.
C.Use 'debug ip ospf events' to monitor OSPF packets; if no packets are seen, reconfigure OSPF router ID and clear the OSPF process.
D.Use 'show ip protocols' to verify OSPF process configuration; if incorrect, delete and recreate the OSPF process with the correct network statements.
AnswerA
solution
! R1
show ip ospf neighbor
show ip ospf interface gigabitethernet0/0
show ip route ospf

! R2
show ip ospf neighbor
show ip ospf interface

Why this answer

OSPF requires consistent hello/dead intervals and network types to form adjacency. If the neighbor is not in FULL state, routes will not be exchanged. Checking 'show ip ospf neighbor' reveals the state; mismatched parameters can be corrected by adjusting interface configuration.

Exam trap

The exam trap is that candidates may jump to reconfiguring the OSPF process or redistribution when routes are missing, but the root cause is often a simple mismatch in OSPF interface parameters. Always check neighbor states first.

Why the other options are wrong

B

The specific factual error is that 'show ip route ospf' shows only existing OSPF routes, not neighbor states. Redistribution is not needed for directly connected interfaces in the same OSPF area.

C

The specific factual error is that debugging is not the initial diagnostic step; it should be used after verifying neighbor states and interface parameters. Changing the router ID is unnecessary unless there is a duplicate router ID issue.

D

The specific factual error is that 'show ip protocols' does not display per-interface OSPF parameters. The problem is likely at the interface level, not the process level.

Why candidates pick the wrong answer

B

Candidates pick this because they think missing routes are due to redistribution issues, but the problem is likely at the adjacency level.

C

Candidates pick this because debugging seems like a direct way to see OSPF activity, but it is resource-intensive and often not needed for basic parameter mismatches.

D

Candidates pick this because they assume the OSPF process configuration is incorrect, but the issue is more likely mismatched interface parameters between neighbors.

444
PBQhard

You are connected to R1 via console. The network has a primary link to the ISP via R2 and a backup link via R3. Configure IPv4 and IPv6 floating static default routes on R1 so that the primary path goes through R2 (AD 1) and the backup through R3 (AD 10). Additionally, configure a static route on R1 for the internal LAN 192.168.10.0/24 via R2 (AD 1). The current configuration includes a static default route ip route 0.0.0.0 0.0.0.0 10.0.0.3, which causes a recursive routing failure because 10.0.0.3 is not a valid next-hop address. Identify and fix the issue, then apply the floating static routes.

Network Topology
G0/010.0.0.1/30G0/010.0.0.2/30link1G0/1G0/010.0.0.6/30link2R1R2R3

Hints

  • The IPv4 default route to 10.0.0.2 is missing from the routing table. Check if the next-hop is reachable via a directly connected interface.
  • Remove the existing problematic static default route and reconfigure it with an explicit administrative distance of 1.
  • For IPv6, use the ipv6 route command with the prefix ::/0 and specify the next-hop and administrative distance.
A.Remove the existing incorrect IPv4 static default route and reconfigure the primary IPv4 default route with the correct next-hop address (10.0.0.2) and AD 1. Add the backup IPv4 default route via 10.0.0.6 with AD 10. Then add IPv6 static default routes: ipv6 route ::/0 2001:DB8:1:1::2 1 and ipv6 route ::/0 2001:DB8:2:1::2 10. Also add the static route for 192.168.10.0/24 via 10.0.0.2 with AD 1.
B.Add a static route to 10.0.0.0/30 via the backup link to R3, then the default route to 10.0.0.2 will work. Then configure IPv6 default routes with AD 1 and 10 as described.
C.Change the administrative distance of the IPv4 default route to 10 and the backup to 1, so the backup becomes primary. Then configure IPv6 default routes with AD 10 and 1 respectively.
D.Remove the existing IPv4 static default route and configure it with the next-hop as the exit interface (e.g., GigabitEthernet0/0) instead of the IP address. Then add IPv6 default routes using the exit interface as well.
AnswerA
solution
! R1
no ip route 0.0.0.0 0.0.0.0 10.0.0.2
ip route 0.0.0.0 0.0.0.0 10.0.0.2 1
ipv6 route ::/0 2001:DB8:1:1::2 1
ipv6 route ::/0 2001:DB8:2:1::2 10

Why this answer

The IPv4 default route currently uses next-hop 10.0.0.3, which is not a valid address on any directly connected interface, causing a recursive lookup failure. Option A fixes this by removing the incorrect route and correctly adding the primary (10.0.0.2 with AD 1) and backup (10.0.0.6 with AD 10) default routes, fulfilling the floating static requirement. It also adds both IPv6 floating default routes and the LAN static route.

Option B is wrong because adding a route to 10.0.0.0/30 via R3 does not fix the next-hop 10.0.0.3 failure for the default route. Option C incorrectly reverses the administrative distances, making the backup path the primary. Option D erroneously uses an exit interface instead of the correct next-hop IP, which is not suitable for multi-access or point-to-point networks without additional configuration and does not resolve the original misconfigured next-hop.

Exam trap

Be careful: Recursive routing failure means the next-hop is not reachable. Check if the next-hop is directly connected and the interface is up. Do not confuse administrative distance with metric; lower AD is preferred.

Also, ensure IPv6 routes use the correct next-hop addresses and AD values.

Why the other options are wrong

B

Adding a static route to the backup link does not correct the invalid next-hop 10.0.0.3 used in the default route and fails to address the root cause of the recursive lookup failure.

C

Swapping the administrative distances makes the backup path preferred instead of the primary, violating the requirement that R2 be the primary with AD 1.

D

Configuring the default route with an exit interface rather than a next-hop IP can cause ARP resolution issues in broadcast networks and does not replace the incorrect next-hop 10.0.0.3.

Why candidates pick the wrong answer

B

Candidates might think that the recursive routing failure is due to the next-hop not being in the routing table, so they try to add a route to it. However, the next-hop should be directly connected; if it's not, the interface may be down or misconfigured.

C

Candidates might confuse the concept of floating static routes and think that a higher AD is preferred, or they might incorrectly assume that the backup should have a lower AD to be used when the primary fails.

D

Candidates might think that using an exit interface avoids recursive lookups and is simpler, but it is not appropriate for multi-access networks and does not fix the underlying connectivity issue.

445
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure a router-on-a-stick topology for inter-VLAN routing between VLANs 10 and 20, using 802.1Q trunking with native VLAN 99 for management traffic.

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

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

Why this order

The sequence follows Cisco's best practices: VLANs are created first, then access ports are assigned to them. The switch trunk is configured with 802.1Q encapsulation and the native VLAN set to 99 before the router end. On the router, the physical interface must be enabled before subinterfaces can operate.

The native VLAN subinterface is created first to handle untagged frames, then the data VLAN subinterfaces are configured. This order avoids errors such as missing VLANs, incorrect encapsulation, and physical link down state.

446
MCQhard

A switch is configured with DHCP snooping and Dynamic ARP Inspection. Hosts suddenly lose connectivity after changing IP settings manually. Which explanation is strongest?

A.DAI is rejecting ARP traffic because the manual IP change does not match trusted snooping bindings.
B.STP is blocking the host because its MAC address changed.
C.OSPF authentication failed on the access port.
D.The switch requires PPP authentication before allowing ARP traffic.
AnswerA

Dynamic ARP Inspection (DAI) intercepts ARP packets arriving on untrusted switch ports and validates them against the DHCP snooping binding table. When the administrator manually changed the IP address on the host, that new address is absent from the binding table, so DAI considers the ARP packet invalid and drops it. The switch also verifies that the sender MAC matches the bound MAC, further reinforcing the rejection.

Why this answer

DAI uses DHCP snooping binding to validate ARP messages; a manual IP change creates a mismatch, causing DAI to block ARP. Option B is incorrect because STP prevents loops and does not block based on MAC address changes. Option C is incorrect because OSPF authentication is a routing protocol feature irrelevant on an access port.

Option D is incorrect because PPP authentication applies to serial links, not Ethernet ARP.

Exam trap

Be cautious not to confuse DHCP snooping's role with DHCP server functionality or ARP cache operations.

Why the other options are wrong

B

STP (Spanning Tree Protocol) prevents loops in redundant topologies and does not block hosts based on IP or MAC address changes. It operates at Layer 2 and is unrelated to IP address configuration.

C

OSPF is a Layer 3 routing protocol used between routers, not on access ports connecting hosts. OSPF authentication is configured on router interfaces and does not apply to host ARP traffic on a switch.

D

PPP (Point-to-Point Protocol) authentication is used on serial links or PPPoE connections, not on Ethernet switch ports. It is unrelated to ARP inspection or DHCP snooping in a switched network.

When would these options actually be correct?

B

In a different scenario where a switch is configured with STP and a host changes its MAC address due to a hardware failure or network interface card (NIC) replacement, the question could state that STP is blocking the port due to a violation of MAC address consistency. This would make option B the correct answer.

C

If the question were about a scenario where OSPF is configured on the switch and the access port requires OSPF authentication, a failure in the authentication process could prevent OSPF routes from being exchanged, leading to connectivity issues. In this case, the question would need to focus on OSPF settings and their impact on host connectivity.

D

In a different scenario where a switch is configured to require PPP authentication for all traffic on access ports, a question might ask why ARP packets are being blocked. In that case, if a host attempts to send ARP traffic without completing PPP authentication, this option would be correct.

Why candidates pick the wrong answer

B

Students may confuse STP's MAC address learning with IP address changes, thinking that a new IP triggers a topology change or port blocking, but STP only reacts to topology changes, not host IP modifications.

C

Test-takers might associate authentication with security features and incorrectly assume OSPF authentication could be involved, but OSPF is not used for host connectivity validation.

D

The term 'authentication' may lead students to think of any security mechanism, but PPP authentication is specific to WAN links and not applicable to LAN switching security features.

447
MCQhard

Two switches should form an EtherChannel using LACP. One side is configured active and the other passive. If the port settings otherwise match, what is the expected result?

A.The EtherChannel should form if the other interface settings are compatible.
B.The EtherChannel fails because both sides must be active.
C.the bundle forms but only in PAgP mode
D.only the active side attempts to bundle
AnswerA

This is correct because active/passive is a valid LACP negotiation pairing.

Why this answer

The EtherChannel should form successfully. In plain language, active mode initiates LACP negotiation and passive mode listens and responds. Because one side is active, the negotiation can begin and the bundle can come up as long as the underlying interface settings are compatible.

This is a standard LACP pairing. The important lesson is that active/passive works, while passive/passive usually does not. The correct answer is the one that recognizes active/passive as a valid combination.

Exam trap

Remember that active/passive works for LACP, but passive/passive does not initiate negotiation.

Why the other options are wrong

C

LACP and PAgP are incompatible, so the bundle cannot form in PAgP mode when one side uses LACP.

D

The passive side will respond to LACP negotiations, so both sides participate and the bundle forms.

When would these options actually be correct?

B

In a different scenario where the question specifies that both switches must be configured in active mode for an EtherChannel to form, this option would be correct. For example, if the question stated that both switches were required to be in active mode for LACP to function, then this option would accurately reflect that requirement.

C

In a different question setup, if the scenario involved a configuration where the switches were set to operate in a Layer 3 mode and the interfaces were configured to act as routed ports, then the statement about ports becoming routed interfaces could be correct.

D

In a different scenario where the question specifies that the interfaces are configured to operate in a mode that requires VLANs to be explicitly removed before forming an EtherChannel, this option could be correct. For example, if the question states that the interfaces must be in a specific mode that does not support VLAN tagging, then this option would apply.

Why candidates pick the wrong answer

B

Students often think that both sides must be in the same mode (active/active or passive/passive) for negotiation to work, but active/passive is a standard and functional combination.

C

Some might confuse LACP with routing protocols or think that bundling ports automatically changes their interface type, but EtherChannel is independent of Layer 3 configuration.

D

Test-takers might think that LACP clears VLANs to ensure compatibility, but in reality, VLAN mismatch is a common cause of EtherChannel failure, not something LACP resolves automatically.

448
PBQmedium

You are connected to SW1 via the console. SW1 is a Layer 2 switch with two VLANs: VLAN 10 (Sales) and VLAN 20 (Engineering). Port G0/1 is connected to a sales PC, and port G0/2 is connected to an engineering PC. You need to ensure that each PC is in the correct VLAN. However, the sales PC is currently unable to ping the engineering PC because they are in different VLANs. You have a router R1 connected to SW1 via port G0/3. Configure inter-VLAN routing using Router-on-a-Stick on R1, and ensure SW1's port G0/3 is properly configured as a trunk.

Network Topology
G0/1G0/1G0/3G0/3G0/0G0/2SW1PC1VLAN 10R1PC2VLAN 20

Hints

  • Router-on-a-Stick uses subinterfaces on the router with 802.1Q encapsulation.
  • The switch port connected to the router must be configured as a trunk to carry multiple VLANs.
  • Each subinterface must have an IP address in the respective VLAN's subnet.
A.Configure subinterfaces on R1 with encapsulation dot1Q and assign IP addresses in VLAN 10 and VLAN 20. Configure SW1 interface G0/3 as a trunk port.
B.Configure a routed port on SW1 G0/3 and assign an IP address. Then configure static routes on R1 to reach each VLAN.
C.Configure SW1 interface G0/3 as an access port in VLAN 10. Then configure R1 with a single IP address in VLAN 10 and enable proxy ARP.
D.Configure SW1 interface G0/3 as a trunk port. Then configure R1 with a single IP address on the physical interface and enable VLAN routing using the 'vlan' command.
AnswerA
solution
! R1
interface GigabitEthernet0/0.10
encapsulation dot1Q 10
ip address 192.168.10.1 255.255.255.0
interface GigabitEthernet0/0.20
encapsulation dot1Q 20
ip address 192.168.20.1 255.255.255.0
interface GigabitEthernet0/0
no shutdown

! SW1
interface GigabitEthernet0/3
switchport mode trunk

Why this answer

Router-on-a-Stick allows a single router interface to route between VLANs by using subinterfaces with 802.1Q encapsulation. The switch port must be a trunk to carry the tagged frames. This configuration enables communication between VLAN 10 and VLAN 20.

Exam trap

The key trap is that candidates often forget to configure the switch port as a trunk, or they try to use a routed port on a Layer 2 switch. Also, some may think that a single IP address on the router's physical interface is sufficient, but subinterfaces are mandatory for Router-on-a-Stick.

Why the other options are wrong

B

Layer 2 switches do not support routed ports; they only support switchport mode access or trunk.

C

An access port cannot carry multiple VLANs; a trunk is required for Router-on-a-Stick.

D

Router-on-a-Stick requires subinterfaces; a single IP address on the physical interface only handles one VLAN. The 'vlan' command is not used on routers for inter-VLAN routing.

Why candidates pick the wrong answer

B

Candidates may confuse Layer 2 and Layer 3 switch capabilities or think that a routed port can be used on any switch.

C

Candidates might think that placing the router in one VLAN and using proxy ARP can bridge VLANs, but proxy ARP only helps with same-subnet communication.

D

Candidates may think that a trunk port on the switch automatically allows the router to route between VLANs without subinterfaces, or they confuse switch VLAN configuration with router subinterfaces.

449
MCQhard

An engineer is troubleshooting an OSPF adjacency between two directly connected routers, R1 and R2. R1 is configured with a passive-interface default under the OSPF process, and the interface connecting to R2 is not explicitly set to no passive-interface. The engineer runs a show ip ospf neighbor command on R1 and sees no neighbors. What is the most likely reason for the missing adjacency?

A.The network statement does not match the interface IP address.
B.The passive-interface default command is preventing OSPF hellos on the interface.
C.The router-id is not configured, so OSPF cannot form an adjacency.
D.There is an OSPF authentication mismatch between R1 and R2.
AnswerB

The passive-interface default command configures OSPF so that every interface is passive unless explicitly overridden with 'no passive-interface'. A passive interface does not send OSPF hello packets, but the connected subnet is still advertised into the OSPF database. Without a 'no passive-interface' statement applied to the link between R1 and R2, neither router will send hellos, and an adjacency can never form—exactly matching the symptom of no neighbors.

Why this answer

The `passive-interface default` command under the OSPF process makes all interfaces passive by default, meaning OSPF Hellos are not sent unless explicitly overridden with `no passive-interface`. Since the interface to R2 was not configured with `no passive-interface`, R1 does not send Hellos, preventing adjacency. Option A is less likely because even if the network statement is correct, a passive interface still blocks Hellos.

Option C is incorrect because OSPF automatically selects a router-id if not configured (highest loopback or interface IP), and a missing router-id does not prevent Hellos. Option D is unsupported by the scenario; no authentication mismatch is indicated.

Exam trap

Cisco often tests the nuance that `passive-interface default` suppresses Hellos on all interfaces unless overridden, leading candidates to overlook the fact that even directly connected routers cannot form an adjacency without Hellos being sent.

Why the other options are wrong

A

The network statement 10.0.0.0 0.255.255.255 area 0 matches any IP in the 10.0.0.0/8 range, which likely includes the interface IP. Therefore, the network statement is not the issue.

C

A router-id is automatically selected from the highest loopback or physical interface IP if not manually configured. Lack of manual configuration does not prevent adjacency formation; OSPF will still function.

D

The running-config does not show any authentication configuration, and the symptom (no neighbors) is consistent with passive interfaces, not authentication mismatches. An authentication mismatch would typically show neighbors in EXSTART/EXCHANGE state, not missing entirely.

Why candidates pick the wrong answer

A

Students often think that a missing or incorrect network statement is the primary cause of OSPF adjacency failures, but in this scenario the network statement is correctly configured.

C

Many students believe that a router-id must be explicitly configured for OSPF to work, but OSPF can dynamically select a router-id from available IP addresses.

D

Authentication mismatches are a common cause of OSPF adjacency issues, so students may jump to that conclusion without checking for passive interface configuration.

450
MCQhard

A branch router uses PAT for Internet access. Users can browse out, but the administrator wants a specific internal web server to be reachable from outside on a consistent public address. Which design fits that requirement best?

A.Use static NAT for the server and PAT for general user outbound traffic.
B.Use only PAT for everything, including predictable outside server reachability.
C.Disable NAT entirely because private IPv4 addresses are Internet-routable.
D.Use DHCP relay to publish the server externally.
AnswerA

This is correct because static NAT gives the server a fixed public identity while PAT supports many internal users.

Why this answer

The best design is to use static NAT for the internal web server while continuing to use PAT for general user outbound access. In plain language, PAT is ideal for many inside users sharing one public address for ordinary outbound traffic, but a server that must be reachable predictably from the outside needs a fixed public identity. Static NAT provides that one-to-one mapping.

This is a practical mixed-design scenario. The network can use PAT for user convenience and address conservation while still reserving a stable translation for a server that external clients need to find reliably. The correct answer recognizes that different NAT methods can serve different purposes in the same environment.

Exam trap

A common exam trap is selecting PAT alone to provide external access to an internal server. While PAT efficiently supports many users sharing one public IP for outbound traffic, it does not assign a fixed public IP to any internal host. This means the server’s public identity changes dynamically, preventing reliable inbound connections.

Candidates often confuse PAT’s port translation with static IP mapping, overlooking that servers need static NAT for consistent external reachability. Misunderstanding this distinction leads to incorrect answers and design flaws in real networks.

Why the other options are wrong

B

Incorrect because PAT alone cannot provide a stable public IP for inbound connections to a server, making it unsuitable for predictable external access to internal services.

C

Incorrect because private IPv4 addresses are not routable on the Internet, so disabling NAT would prevent internal hosts from accessing external networks and external clients from reaching internal servers.

D

Incorrect because DHCP relay is used to forward DHCP requests across networks and does not influence NAT or the public accessibility of internal servers.

When would these options actually be correct?

B

In a scenario where all devices, including servers, are intended to share a single public IP address for outbound traffic without the need for external access to specific internal servers, using only PAT would be appropriate. For example, a question might ask for a configuration where all internal devices need to access the internet but do not require any inbound connections.

C

In a scenario where a question states that a network is using IPv6, which allows for global addressing without NAT, disabling NAT would be correct to allow direct access to internal servers from the Internet.

D

If the exam question asked about a scenario where a server needs to receive IP address assignments dynamically from an external DHCP server, and the focus was on ensuring that the server can communicate with clients outside its local network, then using DHCP relay would be correct.

Why candidates pick the wrong answer

B

Students might think PAT can handle all traffic types, including inbound server access, because PAT is commonly used for outbound traffic. They may overlook that PAT does not create a stable public identity for inbound connections without additional configuration like port forwarding.

C

Some students may confuse private addresses with public addresses or think that all IPv4 addresses are globally routable. They might also misunderstand the purpose of NAT as optional rather than necessary for private-to-public communication.

D

Students might associate 'relay' with forwarding traffic or think DHCP relay can somehow expose internal servers externally. The term 'relay' can be misleading, causing confusion with port forwarding or NAT.

Page 5

Page 6 of 19

Page 7