Courseiva

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

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

Page 14

Page 15 of 19

Page 16
1051
MCQmedium

A PC connected to switch port Gi0/10 should be in VLAN 20 but receives broadcasts only from VLAN 1. Which switchport setting is most likely wrong?

A.switchport mode trunk
B.switchport access vlan 20 missing or incorrect
C.speed 1000
D.duplex full
AnswerB

The access VLAN assignment on a switchport determines which untagged (native) VLAN the port belongs to. If a PC on interface Gi0/10 should be in VLAN 20 but is not, the most direct cause is that the port is either left in the default VLAN (often VLAN 1) or configured with a different access VLAN via the 'switchport access vlan' command. Without this correct mapping, the PC's frames are forwarded in the wrong broadcast domain and cannot reach VLAN 20 resources. This is the primary configuration that controls the behavior described.

Why this answer

The PC is receiving broadcasts only from VLAN 1, which indicates the switchport is not correctly assigned to VLAN 20. The most likely cause is that the 'switchport access vlan 20' command is missing or incorrect, leaving the port in its default VLAN (VLAN 1). This prevents the PC from participating in VLAN 20 and receiving its broadcasts.

Exam trap

Cisco often tests the misconception that a trunk port is needed for VLAN membership, but for a single end device, an access port with the correct VLAN assignment is required.

Why the other options are wrong

A

The switchport mode trunk setting is incorrect because a trunk port allows multiple VLANs to pass, while the question indicates that the PC should only receive broadcasts from VLAN 20. Therefore, the issue lies with the access VLAN configuration.

C

The speed setting of 1000 Mbps (1 Gbps) does not influence VLAN membership or broadcast traffic; it only affects the data transfer rate. Therefore, this option does not address the issue of the PC receiving broadcasts only from VLAN 1.

D

The duplex setting of the switch port does not influence VLAN membership or broadcast traffic. Therefore, a duplex configuration of 'full' does not affect the ability of a PC to receive broadcasts from VLAN 20.

When would these options actually be correct?

A

In a scenario where the question specifies that a switch port should be configured to allow multiple VLANs for a server that needs to communicate across VLANs, the correct answer would be that the switchport mode trunk is incorrectly set to access mode. This would lead to the server not receiving broadcasts from the required VLANs.

C

In a different scenario, if a question asked about a switch port configuration issue causing a device to experience connectivity problems due to mismatched speeds between the switch and the connected device, then 'speed 1000' could be the correct answer if the device only supports lower speeds, leading to a failure in communication.

D

In a different scenario where the question asks about the performance of a network connection, a candidate might be asked what could cause a device to experience packet loss or communication issues. If the question specifies that the switch port is set to 'half duplex', then 'duplex full' would be the correct answer as it would resolve the communication issue.

Why candidates pick the wrong answer

A

Candidates may choose this option because they associate trunking with VLAN communication and might overlook the specific requirement for the PC to be in a single VLAN, leading to confusion about the port's intended configuration.

C

Candidates might choose this option because they associate speed settings with connectivity issues, mistakenly believing that incorrect speed configurations could impact VLAN membership or broadcast traffic.

D

Candidates may mistakenly believe that duplex settings impact VLAN functionality, leading them to choose this option when they see issues with broadcast traffic, despite it being unrelated.

1052
MCQhard

After connecting a new switch to interface GigabitEthernet1/0/1 on a distribution switch, a network engineer notices that the interface is in err-disable state. The engineer checks the configuration and finds that spanning-tree portfast and spanning-tree bpduguard enable are applied to the interface. What is the most likely cause of the err-disable state?

A.BPDU Guard was incorrectly enabled on a port that should be a trunk link.
B.The connected switch is sending BPDUs with a lower bridge priority.
C.Spanning-tree PortFast is enabled on a port that connects to another switch.
D.The port is configured as an access port, but should be a trunk.
AnswerC

PortFast skips the listening and learning STP states and is designed for end hosts. When combined with BPDU Guard, the switch was instructed to disable the port upon receiving any BPDU. The downstream switch naturally sends BPDUs, causing BPDU Guard to react and place the port in err-disable. Removing PortFast (and leaving BPDU Guard alone, or disabling BPDU Guard on that link) would resolve the issue.

Why this answer

PortFast is designed for end-host ports that should not receive BPDUs. When PortFast is enabled on a port connecting to another switch, the switch will immediately transition the port to forwarding state, but if it then receives a BPDU from the connected switch, BPDU Guard will error-disable the port. This is the most common cause of err-disable state when both PortFast and BPDU Guard are configured on an inter-switch link.

Exam trap

Cisco often tests the misconception that BPDU Guard alone causes err-disable, but the trap here is that PortFast must be enabled for BPDU Guard to trigger err-disable on a port receiving BPDUs from another switch.

Why the other options are wrong

A

Candidates often associate BPDU Guard exclusively with access ports and assume configuring it on a trunk is itself a misconfiguration, overlooking that PortFast is the real culprit.

B

Students may confuse root bridge placement with BPDU Guard operation, thinking that a BPDU from a superior switch might cause a port to be disabled, when in fact BPDU Guard is content-agnostic.

D

Candidates may think that because a link between switches should be a trunk, the access mode misconfiguration is the root cause. However, they miss the fact that BPDU Guard acts on the BPDU regardless of the port mode, and the real misconfiguration is PortFast.

1053
MCQmedium

A switch displays this output: Port Name Status Vlan Fa0/1 connected 10 Fa0/2 connected 10 Fa0/24 connected trunk Which port should be checked first if a user in VLAN 20 cannot reach the distribution switch over the uplink?

A.Fa0/1
B.Fa0/2
C.Fa0/24
D.Any access port in VLAN 1
AnswerC

Fa0/24 is the only port configured as a trunk, which is necessary for carrying traffic from multiple VLANs, including VLAN 20, to the distribution switch over the uplink. When a user in VLAN 20 cannot reach the distribution switch, this trunk port represents the primary path for inter-VLAN communication upstream. Investigating its configuration for allowed VLANs or potential physical layer issues is the logical first step to diagnose the connectivity problem for VLAN 20.

Why this answer

If users in VLAN 20 must cross the uplink, the trunk port is the first place to verify allowed VLANs and tagging.

Exam trap

Don't confuse access ports with trunk ports; only trunk ports can carry multiple VLANs.

Why the other options are wrong

A

Fa0/1 is connected to VLAN 10, and since the user in VLAN 20 cannot reach the distribution switch, checking this port would not address the issue, as it is not part of the user's VLAN.

B

Fa0/2 is connected to VLAN 10, which means it cannot facilitate communication for a user in VLAN 20. The issue lies with the trunk port, which is responsible for carrying multiple VLANs, including VLAN 20.

D

Option D is incorrect because it suggests checking any access port in VLAN 1, which is not relevant to the user's issue in VLAN 20. The problem lies with the trunk port not allowing VLAN 20 traffic, not with access ports in VLAN 1.

When would these options actually be correct?

A

In a different scenario where the question specifies that VLAN 10 is experiencing connectivity issues or misconfigurations affecting users on that VLAN, checking Fa0/1 would be appropriate to troubleshoot the problem.

B

In a scenario where the question specifies that VLAN 20 is configured on Fa0/2 and the user is attempting to reach a device on VLAN 20, checking Fa0/2 would be the correct action to troubleshoot connectivity issues related to that specific VLAN.

D

In a scenario where the question asks which access port in VLAN 1 should be checked for connectivity issues affecting users in VLAN 1, option D would be correct. This could involve a misconfiguration or a device connected to an access port in VLAN 1 that is not functioning properly.

Why candidates pick the wrong answer

A

Candidates may choose Fa0/1 due to its status as a connected port, mistakenly believing that any active port could be relevant to the user's connectivity issue without considering VLAN assignments.

B

Candidates may choose Fa0/2 because it is an active port and they might assume that any connected port could potentially be involved in the issue, especially if they misunderstand VLAN configurations.

D

Candidates may choose this option due to a misunderstanding of VLANs, thinking that any access port might be relevant for troubleshooting connectivity issues, regardless of the specific VLAN in question.

1054
MCQeasy

A branch router should automatically learn the IP address of a time source so logs from all devices show matching timestamps. Which service provides that function?

A.DNS
B.NTP
C.TFTP
D.NetFlow
AnswerB

Network Time Protocol (NTP) provides automatic time synchronization by allowing a router to discover NTP servers via broadcast, multicast, or DHCP option 42. A branch router can thus learn the IP address of an authoritative time source without manual per-device configuration, ensuring consistent timestamps for logs and authentication. This is the correct service for the requirement.

Why this answer

NTP synchronizes clocks across network devices. When timestamps line up, syslog messages and troubleshooting output become much more useful.

Exam trap

A common exam trap is selecting DNS as the answer because it involves IP addresses and network services, tempting candidates to confuse name resolution with time synchronization. Another trap is choosing TFTP, since it is a network protocol often associated with configuration and file transfers, misleading candidates to think it manages device settings including time. NetFlow might also confuse candidates because it deals with network traffic data, but it does not affect device clocks.

The key is to recognize that only NTP is designed specifically to synchronize time across devices, which is critical for matching timestamps in logs.

Why the other options are wrong

A

DNS resolves hostnames to IP addresses, enabling devices to locate servers and services by name. However, DNS does not synchronize device clocks or manage time, so it cannot ensure matching timestamps in logs.

C

TFTP is a simple protocol used for transferring files such as configurations and IOS images. It does not provide any time synchronization capabilities and cannot ensure matching timestamps in device logs.

D

NetFlow is a network protocol that collects and exports IP traffic flow information for analysis. It does not affect device clocks or time synchronization and thus cannot provide matching timestamps.

When would these options actually be correct?

A

In a scenario where the question asks about a service that resolves hostnames to IP addresses for network devices, DNS would be the correct answer. For example, if the question focused on how devices can locate and communicate with each other using domain names, DNS would be the appropriate choice.

C

If the question were about a scenario where a router needs to download configuration files or firmware updates from a server, TFTP would be the correct answer, as it is specifically designed for simple file transfers in a network.

D

If the exam question asked about a service that analyzes and reports on network traffic patterns, or if it inquired about tools for monitoring network performance, then NetFlow would be the correct answer as it provides detailed traffic analysis.

Why candidates pick the wrong answer

A

Candidates may confuse DNS with time synchronization services due to their roles in network functionality, leading them to mistakenly believe that DNS can also handle time-related tasks.

C

Candidates may confuse TFTP with other network services and mistakenly associate it with device management tasks, leading them to believe it could also handle time synchronization, despite its actual purpose.

D

Candidates may confuse NetFlow with time synchronization services due to its role in network management, leading them to incorrectly associate it with log timestamping functionalities.

1055
MCQhard

A switch should automatically disable any access port that receives a BPDU from an attached device. Which feature directly provides that behavior?

A.Root Guard
B.Loop Guard
C.BPDU Guard
D.PortFast
AnswerC

BPDU Guard is the correct answer because it is specifically designed to protect access ports, which should operate as edge ports in a spanning-tree domain. When an access port with BPDU Guard enabled receives any BPDU, the switch immediately places the port into the err-disabled state, effectively shutting it down to prevent a potential switching loop or unauthorized switch connection. This behavior directly matches the requirement of automatically disabling an access port that receives BPDUs.

Why this answer

BPDU Guard is designed for edge ports that should never see BPDUs. If a BPDU arrives, the port is placed into an err-disabled state to protect the topology. Root Guard and Loop Guard solve different STP problems.

Exam trap

A common exam trap is confusing BPDU Guard with Root Guard or Loop Guard. Candidates may incorrectly select Root Guard because it involves BPDUs and port blocking, but Root Guard only prevents a port from becoming a root port and does not err-disable the port. Loop Guard is often mistaken as it protects against unidirectional link failures but does not disable ports on BPDU receipt.

The key distinction is that BPDU Guard immediately disables the port upon receiving any BPDU, which is the behavior the question describes. Misunderstanding these differences can lead to incorrect answers.

Why the other options are wrong

A

Root Guard prevents a port from becoming a root port if superior BPDUs are received, maintaining the root bridge position, but it does not err-disable the port upon BPDU receipt. Therefore, it does not fulfill the requirement to disable access ports that receive BPDUs.

B

Loop Guard protects against unidirectional link failures by preventing a port from transitioning to forwarding state if BPDUs stop arriving on non-designated ports. It does not disable ports upon receiving BPDUs, so it does not meet the behavior described in the question.

D

PortFast is a feature that allows ports to transition quickly to forwarding state, bypassing the usual STP listening and learning states. It does not disable ports upon receiving BPDUs and therefore does not provide the behavior described.

When would these options actually be correct?

A

If the exam question asked about a feature that prevents a switch port from becoming a root port and maintains the integrity of the spanning tree by blocking ports that receive BPDUs from non-root bridges, then Root Guard would be the correct answer.

B

If the exam question asked about a feature that prevents loops by blocking ports that receive unexpected BPDUs, Loop Guard would be the correct answer. For example, a question could specify a scenario where a switch needs to maintain a loop-free topology in a redundant network setup.

D

If the question asked about a feature that enhances the speed of port activation without considering BPDU reception, such as 'Which feature allows a switch port to immediately enter the forwarding state?' then PortFast would be the correct answer.

Why candidates pick the wrong answer

A

Candidates may confuse Root Guard with BPDU Guard due to their similar names and both being related to spanning tree protocol protection mechanisms, leading them to incorrectly assume Root Guard provides the desired behavior.

B

Candidates may confuse Loop Guard with BPDU Guard due to their similar names and functions related to BPDUs, leading them to incorrectly associate Loop Guard with the behavior of disabling ports upon receiving BPDUs.

D

Candidates may confuse PortFast with BPDU Guard due to their association with port states and rapid convergence, leading them to mistakenly believe that PortFast also handles BPDU reception.

1056
Matchingeasy

Match each basic automation term to its most accurate meaning.

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

Concepts
Matches

Software interface used for communication

Structured data format

Secure transport for the communication

Credential-like value used to help control access

Why these pairings

Automation refers to the use of technology to perform tasks with minimal human intervention, reducing manual effort and errors. Orchestration is the coordination of multiple automated tasks into a seamless workflow, ensuring proper sequencing and dependencies. A script is a set of instructions written in a scripting language that is executed by an interpreter, often used to automate repetitive tasks.

A workflow is a defined sequence of steps that accomplishes a specific business process, which can be automated to streamline operations.

Exam trap

Be careful not to confuse automation with orchestration: automation is about individual task execution, while orchestration coordinates multiple automated tasks. Similarly, a script is a specific set of instructions, whereas a workflow is a higher-level sequence that may involve multiple scripts or automation tools.

1057
Multi-Selectmedium

Which TWO statements correctly describe the OSI model layers and their corresponding PDU names during encapsulation?

Select 2 answers
A.The Transport layer encapsulates data into segments.
B.The Network layer encapsulates segments into packets.
C.The Data Link layer encapsulates packets into bits.
D.The Session layer encapsulates segments into sessions.
E.The Physical layer encapsulates frames into bits.
AnswersA, B

The Transport layer encapsulates upper-layer data (from the Session layer or Application layer) by adding a TCP or UDP header to create a segment. This header includes source and destination port numbers, and for TCP also sequence numbers, acknowledgment numbers, and window size, enabling reliable end-to-end delivery. This process of dividing data and prepending transport control information is exactly what produces the segment PDU, making this statement correct.

Why this answer

Both A and B are correct. During encapsulation, the Transport layer (Layer 4) adds a header to upper-layer data to form segments, and the Network layer (Layer 3) encapsulates those segments into packets by adding a network-layer header (e.g., IP). Option C is incorrect because the Data Link layer encapsulates packets into frames, not bits; bits are the raw transmission unit at the Physical layer.

Option D is incorrect because the Session layer manages sessions but does not produce a PDU called 'sessions'; encapsulation of segments only occurs at Layers 4 and below. Option E is incorrect because the Physical layer transmits frames as bits but does not perform encapsulation; encapsulation ends at the Data Link layer.

Exam trap

Cisco often tests the specific PDU names at each layer (e.g., segment vs. packet vs. frame vs. bit) and the order of encapsulation, so the trap here is confusing the Data Link layer PDU (frame) with bits or mixing up the Session layer's role with encapsulation.

Why the other options are wrong

C

The Data Link layer encapsulates packets into frames, not bits; bits are the PDU of the Physical layer.

D

The Session layer handles session management and does not perform encapsulation into 'sessions'; encapsulation at this layer is not defined.

E

The Physical layer transmits frames as bits but does not encapsulate frames into bits; encapsulation ends at Layer 2.

1058
PBQhard

You are connected to R1. The inside network 192.168.1.0/24 must be able to access the internet using PAT (NAT overload) with the outside interface G0/1 IP 203.0.113.1. Additionally, the internal server at 192.168.1.10 must be reachable from the internet via static NAT to 203.0.113.10. The current configuration is incomplete and contains errors. Identify and fix all issues so that both PAT and static NAT work correctly.

Network Topology
G0/0192.168.1.1/24G0/1203.0.113.1/24LANinsideR1outsideInternet

Hints

  • Check which interfaces are marked as inside/outside — they may be reversed.
  • Look at the ACL used for dynamic NAT — does it match the correct inside subnet?
  • Is the 'overload' keyword present on the ip nat inside source command?
A.Swap ip nat inside/outside on interfaces, add 'overload' to the dynamic NAT rule, and correct ACL 1 to permit 192.168.1.0/24.
B.Change the static NAT inside address to 192.168.1.1 and add 'overload' to the dynamic NAT rule.
C.Remove the static NAT configuration and rely solely on PAT for the server.
D.Add the 'overload' keyword to the dynamic NAT rule and correct ACL 1 to permit 192.168.1.0/24.
AnswerA
solution
! R1
interface GigabitEthernet0/0
ip nat inside
exit
interface GigabitEthernet0/1
ip nat outside
exit
no ip nat inside source list 1 pool GLOBAL
ip nat inside source list 1 pool GLOBAL overload
no access-list 1
access-list 1 permit 192.168.1.0 0.0.0.255

Why this answer

The configuration had multiple faults: 1) Inside/outside interfaces were swapped – G0/0 (LAN) should be inside, G0/1 (WAN) should be outside. 2) The PAT command was missing the 'overload' keyword. 3) ACL 1 permitted the wrong subnet (192.168.2.0/24 instead of 192.168.1.0/24). 4) The static NAT configuration was correct, but the interface misconfiguration prevented it from working. Fixes: swap ip nat inside/outside on the interfaces, add 'overload' to the dynamic NAT rule, and correct ACL 1 to permit 192.168.1.0/24.

Exam trap

This question tests your ability to identify multiple simultaneous NAT configuration errors. Common traps include forgetting the 'overload' keyword, misconfiguring ACLs, and swapping inside/outside interfaces. Always verify interface NAT directions first, as they are foundational.

Why the other options are wrong

B

The specific factual error is that the static NAT inside address is already correct; altering it is unnecessary and incorrect.

C

The specific factual error is that static NAT is required for inbound access; PAT alone cannot provide a fixed public-to-private mapping.

D

The specific factual error is that interface NAT direction is fundamental; if inside/outside are reversed, NAT translations will not be applied correctly.

Why candidates pick the wrong answer

B

Candidates might think the server's inside address should be the default gateway (192.168.1.1) or confuse it with the inside global address.

C

Candidates might think PAT can handle all traffic, but PAT only translates multiple private addresses to a single public address and does not allow unsolicited inbound connections without additional configuration.

D

Candidates might focus on the ACL and PAT keyword but overlook the interface configuration, which is a common misconfiguration in NAT setups.

1059
MCQhard

A switch trunk is carrying several VLANs, but VLAN 99 traffic is failing. The trunk allowed list includes VLAN 99 on both sides. Which statement best explains why a VLAN can still fail even when it is allowed?

A.Because the VLAN may still be absent, inactive, or otherwise not operational locally even if it is allowed on the trunk
B.Because allowing a VLAN on a trunk automatically disables it
C.Because VLANs can cross trunks only when PAT is enabled
D.Because VLAN 99 must always be the native VLAN
AnswerA

An entry in the trunk's allowed VLAN list only authorizes 802.1Q frames for that VLAN to pass; it does not create or activate the VLAN. If VLAN 99 is absent from the local VLAN database, is administratively shutdown with the 'shutdown vlan' command, or has no active member ports or up SVI, it is not operational locally. Therefore, even though the trunk configuration permits VLAN 99, end-to-end connectivity will fail because the VLAN is not functioning on the switch itself.

Why this answer

A VLAN can still fail across a trunk even when it is allowed because the allowed list is only one part of the overall design. In plain language, a switch may permit the VLAN on the link, but if the VLAN does not actually exist locally, is not active, or if some other trunk characteristic is inconsistent, traffic can still fail. This is an important CCNA troubleshooting principle: one correct line of configuration does not guarantee the full end-to-end condition is correct.

Candidates often stop at the allowed VLAN list because it is visible in common show commands. However, VLAN presence, local status, and other trunk parameters still matter. The best answer is the one recognizing that permission on the trunk does not automatically prove the entire VLAN path is healthy.

Exam trap

A common exam trap is assuming that simply including VLAN 99 in the trunk allowed list guarantees that VLAN 99 traffic will pass. Many candidates stop troubleshooting once they see the VLAN is allowed on the trunk, neglecting to verify if VLAN 99 is actually created and active on each switch. This mistake leads to incorrect conclusions, as the allowed list only controls trunk forwarding permissions, not VLAN existence or operational status.

The exam tests your understanding that VLAN configuration and status are equally critical for successful VLAN traffic flow.

Why the other options are wrong

B

Incorrect. Allowing a VLAN on a trunk does not disable it; this option contradicts how VLANs and trunks operate in Cisco switches.

C

Incorrect. Port Address Translation (PAT) is unrelated to VLAN trunking. VLANs do not require PAT to cross trunks.

D

Incorrect. VLAN 99 does not have to be the native VLAN to function on a trunk. The native VLAN is independent of VLAN allowance and operation.

When would these options actually be correct?

B

In a different scenario, if a question stated that enabling a VLAN on a trunk link would automatically disable it due to a misconfiguration or a specific switch model behavior, then this option could be correct. For example, a question could involve a legacy switch that has a unique feature where enabling VLANs on a trunk link disables them until explicitly activated.

C

In a scenario where the question asks about the conditions under which VLANs can only communicate across trunks if Port Address Translation (PAT) is enabled, this option would be correct. For example, if the exam focused on specific configurations that require PAT for inter-VLAN routing, then this statement would apply.

D

In a different question, if it were stated that VLAN 99 must be the native VLAN for traffic to be allowed on the trunk, then this option would be correct. For example, if the question specified that any VLAN must be configured as the native VLAN to pass traffic, then this statement would apply.

Why candidates pick the wrong answer

B

Candidates may find this option tempting because it suggests a direct relationship between VLAN configuration and operational status, which aligns with common misconceptions about VLAN management and trunking behavior.

C

Candidates may choose this option due to a misunderstanding of VLAN configurations and trunking principles, mistakenly believing that enabling a VLAN on a trunk link could somehow interfere with its functionality.

D

Candidates may choose this option due to a misunderstanding of native VLANs and trunk configurations, believing that a VLAN must be the native VLAN to function properly on a trunk link.

1060
PBQhard

You are connected to a multilayer switch MLS1. Configure a static default route for IPv4 that points to next-hop 192.0.2.2, but also configure a floating static default route with an administrative distance of 10 that uses next-hop 198.51.100.2. Additionally, configure a static host route for IPv6 host 2001:db8:1::10/128 via next-hop 2001:db8:1::1. The current configuration has a recursive routing failure for the IPv4 default route because the next-hop 192.0.2.2 is not reachable; you must first fix that by adding a directly connected static route. Ensure the floating route becomes active only when the primary route fails.

Network Topology
192.0.2.2/30G0/0SiMLS1R2

Hints

  • The default route fails because the next-hop is not directly connected and there is no route to reach it.
  • You need a static route to the network containing 192.0.2.2, specifying the outgoing interface.
  • Use the command 'ip route 192.0.2.0 255.255.255.252 GigabitEthernet0/0 192.0.2.2' to fix recursive routing.
A.ip route 0.0.0.0 0.0.0.0 192.0.2.2 ip route 0.0.0.0 0.0.0.0 198.51.100.2 10 ip route 192.0.2.0 255.255.255.252 GigabitEthernet0/0 192.0.2.2 ipv6 route 2001:db8:1::10/128 2001:db8:1::1
B.ip route 0.0.0.0 0.0.0.0 192.0.2.2 ip route 0.0.0.0 0.0.0.0 198.51.100.2 10 ip route 192.0.2.0 255.255.255.0 GigabitEthernet0/0 ipv6 route 2001:db8:1::10/128 2001:db8:1::1
C.ip route 0.0.0.0 0.0.0.0 192.0.2.2 ip route 0.0.0.0 0.0.0.0 198.51.100.2 10 ip route 192.0.2.2 255.255.255.255 GigabitEthernet0/0 ipv6 route 2001:db8:1::10/128 2001:db8:1::1
D.ip route 0.0.0.0 0.0.0.0 192.0.2.2 ip route 0.0.0.0 0.0.0.0 198.51.100.2 10 ip route 192.0.2.0 255.255.255.252 198.51.100.2 ipv6 route 2001:db8:1::10/128 2001:db8:1::1
AnswerA
solution
! MLS1
configure terminal
ip route 192.0.2.0 255.255.255.252 GigabitEthernet0/0 192.0.2.2

Why this answer

The IPv4 primary default route fails because next-hop 192.0.2.2 is not directly connected and no recursive route exists to it. The floating static route with next-hop 198.51.100.2 is in the directly connected Vlan20 subnet (198.51.100.1/30), so it installs without issue. To fix the primary default route, add a directly connected static route for the network containing 192.0.2.2, e.g., ip route 192.0.2.0 255.255.255.252 GigabitEthernet0/0 192.0.2.2.

The IPv6 host route is correct if next-hop 2001:db8:1::1 is reachable.

Exam trap

Be careful with recursive routing failures: a static route with a next-hop that is not directly connected requires a route to that next-hop in the routing table. Always ensure the next-hop is reachable, either by a directly connected route or another static/dynamic route. Also, remember that a floating static route uses a higher administrative distance than the primary route, so it only becomes active when the primary route is removed.

Why the other options are wrong

B

The specific factual error is using an incorrect subnet mask and omitting the next-hop IP in the directly connected static route. The mask should match the point-to-point link (typically /30 or /31), and the next-hop must be specified to ensure the route is directly connected.

C

The specific factual error is using a /32 mask instead of the subnet mask of the link. A /32 route to the next-hop IP is a valid workaround but is not the standard practice; the question expects a directly connected route to the network containing the next-hop, not a host route.

D

The specific factual error is using the floating route's next-hop as the next-hop for the directly connected route. The directly connected route must be to the network containing 192.0.2.2, not to the backup next-hop.

Why candidates pick the wrong answer

B

Candidates might think a /24 mask is acceptable because it includes the next-hop IP, but they forget that a static route to a directly connected network should use the exact prefix length of the interface subnet.

C

Candidates might think a host route to the next-hop is sufficient to resolve the recursive routing failure, and it does work, but it is not the intended solution. The question asks for a 'directly connected static route' to the network, implying a subnet route.

D

Candidates might confuse the two next-hops and think that pointing the directly connected route to the backup next-hop will somehow make the primary route work, but it does not resolve the recursive routing failure for 192.0.2.2.

1061
MCQhard

An administrator wants to permit HTTP and HTTPS from 10.1.10.0/24 to a web server at 198.51.100.20 and deny everything else from that subnet. Which ACL type is required?

A.Named standard ACL
B.Extended ACL
C.Prefix list
D.MAC access-list
AnswerB

An extended ACL is required because the administrator needs to match both HTTP (TCP/80) and HTTPS (TCP/443) from a specific source address. Extended ACLs evaluate source and destination IP, protocol (TCP), and destination port numbers, enabling precise filtering of application-layer traffic. The syntax, such as permit tcp host 10.0.0.1 any eq 80 and eq 443, supports matching these services. This granularity is exactly what the scenario demands, making it the correct choice.

Why this answer

A standard ACL can match only the source address. To permit specific protocols and ports such as TCP 80 and 443 to a specific destination, the administrator must use an extended ACL.

Exam trap

A frequent exam trap is selecting a standard ACL when the question requires filtering by both source and destination IP addresses plus specific protocols or ports. Standard ACLs only filter by source IP, so they cannot distinguish HTTP or HTTPS traffic to a particular destination. Another trap is confusing prefix lists or MAC access-lists as suitable options; prefix lists filter routes, not traffic by port, and MAC access-lists filter Layer 2 addresses, not Layer 3 or 4 information.

Misunderstanding these differences leads to incorrect ACL type selection and exam failure.

Why the other options are wrong

A

Named standard ACLs filter traffic only by source IP address and cannot filter by destination IP or specific TCP ports like 80 or 443, making them unsuitable for permitting HTTP and HTTPS to a specific server.

C

Prefix lists are used to filter routes based on IP prefixes in routing protocols and cannot filter traffic by protocol or port, so they cannot meet the requirement to permit HTTP and HTTPS traffic specifically.

D

MAC access-lists filter traffic based on Layer 2 MAC addresses and cannot filter by Layer 3 IP addresses or Layer 4 ports, so they cannot selectively permit HTTP and HTTPS traffic to a specific IP address.

When would these options actually be correct?

A

In a different scenario where the requirement is to permit all traffic from a specific source IP address to any destination without specifying protocols or ports, a named standard ACL would be appropriate. For example, if the question asked to allow all traffic from 10.1.10.0/24 to any destination, a named standard ACL would suffice.

C

If the exam question asked about filtering routes for a specific subnet to control which networks can be advertised or learned, a prefix list would be the correct answer. For example, a question might ask how to allow only certain subnets to be advertised to a routing protocol.

D

If the question were to ask about filtering traffic based on MAC addresses within a local network segment, such as allowing specific devices to communicate while blocking others, then a MAC access-list would be the correct choice.

Why candidates pick the wrong answer

A

Candidates may choose this option due to familiarity with standard ACLs and their use in controlling traffic based on source IP addresses, leading them to overlook the need for protocol and port specificity in this case.

C

Candidates may confuse prefix lists with access control lists due to their similar purpose in network management, leading them to mistakenly believe that prefix lists can also handle traffic filtering based on protocols and ports.

D

Candidates may confuse MAC access-lists with other types of access control lists due to their general understanding of network security, leading them to incorrectly assume that MAC filtering could apply to IP-based protocols like HTTP and HTTPS.

1062
PBQhard

You are connected to R1. Configure R1 as a DHCP server for VLAN 20 clients (192.168.20.0/24) with DNS server 203.0.113.10 and default gateway 192.168.20.1. On switch SW1, enable DHCP snooping globally and on VLAN 20, configure the uplink to R1 as trusted, and ensure that the DHCP server is reachable via ip helper-address on the VLAN 20 SVI. Currently, clients are not receiving IP addresses because of misconfigurations: the excluded-address range on R1 is too large (excluding the entire subnet), the helper-address on SW1 points to a wrong IP (192.0.2.99), and a rogue DHCP server is connected to port Fa0/3 on SW1. Fix all issues so that clients can get addresses securely.

Hints

  • The excluded-address range is too broad; narrow it to only the gateway and a small reserved range.
  • The helper-address must point to the DHCP server's IP, which is on a different subnet.
  • DHCP snooping must be enabled globally and per VLAN, and the port connecting to the legitimate DHCP server must be trusted.
A.On R1, change the excluded-address range to 192.168.20.1 192.168.20.1; on SW1, configure ip helper-address 10.0.0.1 under interface Vlan20; enable DHCP snooping globally and on VLAN 20, and configure the uplink to R1 as trusted.
B.On R1, remove the excluded-address range entirely; on SW1, configure ip helper-address 192.168.20.1 under interface Vlan20; enable DHCP snooping globally and on VLAN 20, and configure the uplink to R1 as trusted.
C.On R1, change the excluded-address range to 192.168.20.1 192.168.20.254; on SW1, configure ip helper-address 192.0.2.99 under interface Vlan20; enable DHCP snooping globally and on VLAN 20, and configure the uplink to R1 as trusted.
D.On R1, change the excluded-address range to 192.168.20.1 192.168.20.1; on SW1, configure ip helper-address 10.0.0.1 under interface Vlan20; enable DHCP snooping globally and on VLAN 20, but do not configure any trusted ports.
AnswerA
solution
! R1
no ip dhcp excluded-address 192.168.20.0 192.168.20.255
ip dhcp excluded-address 192.168.20.1
ip dhcp excluded-address 192.168.20.2 192.168.20.10

! SW1
ip dhcp snooping
ip dhcp snooping vlan 20
interface FastEthernet0/1
ip dhcp snooping trust
exit
interface Vlan20
no ip helper-address 192.0.2.99
ip helper-address 10.0.0.1

Why this answer

The DHCP server had an excluded-address range covering the entire subnet (192.168.20.0–255), which prevented any IP from being assigned. Fix: change the excluded range to only include the gateway (192.168.20.1) and optionally other reserved addresses. The helper-address on SW1 pointed to 192.0.2.99 (nonexistent) instead of the DHCP server at 10.0.0.1; correct it.

DHCP snooping was disabled; enable it globally and on VLAN 20, then configure the uplink to R1 (port connecting to R1) as trusted and the port connecting the rogue server (Fa0/3) as untrusted (or simply leave it untrusted by default, but the rogue server will be blocked).

Exam trap

A common trap is forgetting that the excluded-address range should only reserve specific addresses, not the whole subnet. Another trap is confusing the helper-address with the default gateway or leaving the incorrect IP. Also, many candidates enable DHCP snooping but forget to configure the trusted port, which breaks legitimate DHCP traffic.

Why the other options are wrong

B

The helper-address must point to the DHCP server, not the default gateway. The excluded-address range should include the gateway to prevent conflicts.

C

The excluded-address range must be limited to reserved addresses only, not the entire usable range. The helper-address must be corrected to 10.0.0.1.

D

DHCP snooping requires the port connected to the legitimate DHCP server to be explicitly trusted; otherwise, all DHCP server messages are discarded.

Why candidates pick the wrong answer

B

Candidates may think that the gateway IP can be assigned to clients and that the helper-address should be the gateway, confusing the roles of DHCP and routing.

C

Candidates might think that excluding a large range is safe or that the helper-address is correct as given, not realizing the IP is incorrect.

D

Candidates may assume that enabling DHCP snooping globally and per VLAN is sufficient, forgetting to designate trusted ports, or they may think the uplink is automatically trusted.

1063
MCQhard

A host is configured as 172.16.20.190/26. Which range contains the usable host addresses for that subnet?

A.172.16.20.129 to 172.16.20.190
B.172.16.20.128 to 172.16.20.191
C.172.16.20.130 to 172.16.20.191
D.172.16.20.193 to 172.16.20.254
AnswerA

This is correct because .128 is the network and .191 is the broadcast.

Why this answer

A /26 uses blocks of 64 addresses. In practical terms, the fourth-octet ranges are 0–63, 64–127, 128–191, and 192–255. Since 190 falls inside the 128–191 block, the network address is .128 and the broadcast address is .191. That leaves .129 through .190 as the usable range.

This is a strong test of whether you can identify the correct block and then exclude the reserved boundary addresses correctly.

Exam trap

A frequent exam trap is selecting an answer range that includes the network or broadcast address as usable hosts. For example, option B lists 172.16.20.128 to 172.16.20.191, which incorrectly includes the network (.128) and broadcast (.191) addresses. These addresses are reserved and cannot be assigned to hosts.

Another trap is excluding valid host addresses or including addresses from adjacent subnets, as seen in options C and D. Misidentifying subnet boundaries or forgetting to exclude reserved addresses causes these errors, leading to incorrect subnetting answers.

Why the other options are wrong

B

Option B incorrectly includes the network address (172.16.20.128) and broadcast address (172.16.20.191) as usable hosts, which are reserved and cannot be assigned to devices, making this option invalid.

C

Option C excludes the first usable host address (172.16.20.129) and incorrectly includes the broadcast address (172.16.20.191), which is not assignable to hosts, thus making it an incorrect range.

D

Option D lists a range starting at 172.16.20.193, which belongs to the next subnet block (192–255) and does not include the IP 172.16.20.190, so it is unrelated and incorrect for this question.

When would these options actually be correct?

B

If the question asked for the range of all IP addresses within the subnet, including the network and broadcast addresses, then option B would be correct, as it would encompass the entire range from 172.16.20.128 to 172.16.20.191.

C

If the question specified a subnet mask of /25 instead of /26, the usable host range would be 172.16.20.129 to 172.16.20.254, making option C correct as it would then include valid host addresses within that range.

D

If the question specified a different subnet, such as 172.16.20.192/26, then option D would be correct, as it would represent the usable host addresses within that subnet range.

Why candidates pick the wrong answer

B

Candidates may choose this option because it closely resembles the correct range and includes the last usable address, leading to confusion between usable and total address ranges in subnetting.

C

Candidates may choose option C due to confusion about subnet boundaries, mistakenly thinking that the broadcast address can be included in the usable range, especially if they miscalculate the subnet mask.

D

Candidates might choose this option due to a misunderstanding of subnetting boundaries, mistakenly believing that addresses beyond the subnet's defined range could still be valid host addresses.

1064
PBQhard

You are connected to SW1. The network has three switches (SW1, SW2, SW3) running Rapid-PVST+. SW1 should be the root bridge for VLAN 10. PortFast and BPDU Guard must be enabled on all edge ports connected to end hosts. An err-disabled port (G0/1) has occurred due to a BPDU violation on an edge port. Recover the port and ensure it is configured correctly to prevent recurrence.

Network Topology
Gi0/0Gi0/0Gi0/2Gi0/0Gi0/1SW1SW2SW3Host

Hints

  • The port is in err-disabled state. You need to manually recover it by cycling the interface.
  • After recovery, verify the port is forwarding and still has PortFast and BPDU Guard enabled.
  • If the err-disabled condition recurs, the connected device may be sending BPDUs; consider removing BPDU Guard from that port if it is not truly an edge port.
A.Enter interface configuration mode for Gi0/1, issue 'shutdown' followed by 'no shutdown', then configure 'spanning-tree bpduguard disable' on the interface.
B.Enter interface configuration mode for Gi0/1, issue 'shutdown' followed by 'no shutdown', then configure 'spanning-tree portfast' and 'spanning-tree bpduguard enable' on the interface.
C.Enter interface configuration mode for Gi0/1, issue 'shutdown' followed by 'no shutdown', then configure 'spanning-tree guard root' on the interface.
D.Enter interface configuration mode for Gi0/1, issue 'shutdown' followed by 'no shutdown', then verify that the connected device is not a switch or remove it from the network.
AnswerD
solution
! SW1
configure terminal
interface gigabitEthernet 0/1
shutdown
no shutdown
end

Why this answer

The port Gi0/1 is in err-disabled state because BPDU Guard disabled it after receiving a BPDU on a PortFast edge port. First, shut down the interface and then re-enable it with 'no shutdown' to recover from err-disabled. However, to prevent recurrence, the root cause must be addressed: the connected device (likely another switch) should not be sending BPDUs on an edge port.

Optionally, you can disable BPDU Guard on that specific port if it is not truly an edge port, but the task requires PortFast and BPDU Guard on edge ports. The correct fix is to ensure no BPDUs are sent from the downstream device or use 'spanning-tree bpduguard disable' on that port if it is not an edge port (but the task mandates BPDU Guard). Since the scenario requires BPDU Guard, the candidate should recover the port and then verify that the connected device is not a switch (or remove it from the topology).

Exam trap

The exam trap is that candidates may focus on recovering the port (shutdown/no shutdown) but forget to address why the BPDU was received. Simply re-enabling BPDU Guard or reapplying PortFast will not prevent recurrence. The key is to ensure the connected device is not sending BPDUs, either by removing it or reclassifying the port.

Why the other options are wrong

A

The specific factual error is that BPDU Guard should not be disabled on a port that is supposed to be an edge port with BPDU Guard enabled.

B

The specific factual error is that simply re-enabling the same features does not prevent recurrence; the source of BPDUs must be removed or the port must be reconfigured as a non-edge port.

C

The specific factual error is that Root Guard and BPDU Guard serve different purposes; Root Guard does not stop BPDU Guard from disabling the port.

Why candidates pick the wrong answer

A

Candidates may think that disabling BPDU Guard prevents the port from going err-disabled again, but this contradicts the requirement to keep BPDU Guard enabled.

B

Candidates may think that re-applying the configuration ensures the port is correctly configured, but they overlook that the BPDU source is still present.

C

Candidates may confuse Root Guard with BPDU Guard or think that any spanning-tree guard feature can solve the issue.

1065
Drag & Dropmedium

Drag and drop the following steps into the correct order to interpret packet capture output for L2/L3 troubleshooting.

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 logical troubleshooting sequence for packet capture analysis starts at Layer 2 to verify the data link layer. First, examine the source and destination MAC addresses in the Ethernet header to confirm correct frame delivery. Next, check for ARP requests and responses to ensure proper IP-to-MAC resolution.

Then, analyze the source and destination IP addresses to verify Layer 3 addressing and routing. After that, look for ICMP Destination Unreachable or Time Exceeded messages to identify network path issues. Proceed to inspect transport layer port numbers (TCP/UDP) to identify the service and possible blocking.

Finally, review TCP flags (e.g., SYN, RST, FIN) to understand session state and detect retransmissions or connection issues.

1066
Multi-Selectmedium

Which three statements accurately describe the role of Cisco's AI-powered security features (such as Cisco AI Network Analytics, Stealthwatch, or DNA Center's AI-Enhanced Analytics) in network security operations? (Choose three.)

Select 3 answers
.AI models can detect zero-day exploits by analyzing behavioral anomalies
.AI-powered systems can correlate logs from multiple sources to identify complex attack chains
.AI can automate the response to certain security incidents, such as blocking malicious IPs
.AI is only effective against known, signature-based threats
.AI eliminates the need for firewall rules and access control lists
.AI security models require no human oversight once deployed

Why this answer

Cisco's AI-powered security features detect zero-day exploits by analyzing behavioral anomalies and deviations from learned baselines, without relying on signatures. These systems correlate logs from multiple Cisco products (e.g., firewalls, endpoints, cloud) to uncover multi-step attack chains. AI can also automate responses such as blocking malicious IPs via Cisco security controls, reducing mean time to respond (MTTR).

However, AI complements but does not replace traditional security tools like firewall rules or ACLs, and it requires ongoing human oversight for validation and tuning.

Exam trap

Cisco often tests the misconception that AI is only for signature-based detection or that it fully replaces traditional security controls, when in reality AI complements existing tools and still requires human oversight.

1067
MCQhard

A router has the following routes in its routing table: a static route to 10.60.4.16/28, an OSPF route to 10.60.4.0/24, and an EIGRP route to 10.60.0.0/16. Which route will be used for a packet destined to 10.60.4.17?

A.The static route to 10.60.4.16/28
B.The OSPF route to 10.60.4.0/24
C.The EIGRP route to 10.60.0.0/16
D.No route at all
AnswerA

The destination address 10.60.4.17 falls within all three advertised prefixes, but the router selects the route with the longest prefix match. The static route to 10.60.4.16/28 uses a 28-bit subnet mask, which is longer than the 24-bit OSPF route and the 16-bit EIGRP route. Because this /28 prefix provides the most specific match for the destination, it overrides the other less-specific entries in the routing table.

Why this answer

The route used will be the route with the longest matching prefix. In practical terms, 10.60.4.17 falls inside the /28 route shown, and that is more specific than the broader /24 and /16 alternatives. Because specificity comes first, the /28 route wins.

This is a clean route-table interpretation problem that mirrors actual exam-style thinking very closely.

Exam trap

Remember, the longest prefix match rule is crucial; don't assume broader prefixes are better.

Why the other options are wrong

B

This option is wrong because the OSPF route to 10.60.4.0/24 does not directly match the destination 10.60.4.17, which falls under the static route to 10.60.4.16/28. OSPF would not be preferred if a more specific static route exists.

C

The EIGRP route to 10.60.0.0/16 is not used for the destination 10.60.4.17 because it does not match the more specific subnet of 10.60.4.16/28, which is preferred in routing decisions.

D

This option is wrong because there is a valid static route to the destination 10.60.4.17 via the static route to 10.60.4.16/28, making it reachable. Therefore, stating 'no route at all' is incorrect in this context.

When would these options actually be correct?

B

If the question asked which route would be used for a destination within the 10.60.4.0/24 subnet without a more specific static route, then the OSPF route to 10.60.4.0/24 would be the correct answer, as it would be the best match for any address in that range.

C

If the question asked which route would be used if the static route to 10.60.4.16/28 were removed, then the EIGRP route to 10.60.0.0/16 would be the correct answer, as it would be the next best match for the destination.

D

In a scenario where the routing table has been cleared or all routes have been removed, a question could ask if there are any routes available for destination 10.60.4.17. In this case, the correct answer would be 'No route at all' as there would be no valid paths to the destination.

Why candidates pick the wrong answer

B

Candidates might choose this option due to a misunderstanding of OSPF's role in routing, believing that OSPF routes are always preferred over static routes, especially when they see a broader subnet that includes the destination.

C

Candidates may choose this option due to familiarity with EIGRP and its broader subnet coverage, mistakenly believing it would be preferred over a more specific static route.

D

Candidates may choose this option due to a misunderstanding of the routing table's contents or a lack of familiarity with static versus dynamic routes, leading them to believe that if a specific route isn't mentioned, none exist.

1068
MCQmedium

A network operations team is implementing an automated system to detect and remediate interface flapping on core switches. The system must be able to query the network device for interface status and execute commands to disable or reconfigure the interface if a pattern of flapping is detected. Which protocol or technology enables the system to programmatically interact with the network device for both monitoring and configuration changes?

A.SNMP
B.NETCONF
C.CLI scripting
D.Syslog
AnswerB

NETCONF is the correct protocol because it defines IETF-standard XML-based RPCs executed over SSH, allowing an automation agent to retrieve, install, manipulate, and delete device configuration. It operates on multiple datastores (candidate, running, startup) with support for validation, commit, and rollback, and is coupled with YANG models to provide structured, vendor-neutral data. This transactional model-driven design makes NETCONF ideal for closed-loop remediation where an autonomous agent must reliably implement config changes and undo them on failure.

Why this answer

NETCONF is the correct choice because it is a standardized network configuration protocol that allows automated systems to retrieve operational data and push configuration changes securely. In this scenario, the system would use NETCONF to query interface status and then apply remediation configurations. SNMP can monitor but has limited configuration capabilities, CLI scripting is non-programmatic and error-prone, and Syslog is only for logging.

Exam trap

Many candidates confuse SNMP with configuration protocols, but SNMP is not designed for robust configuration management; NETCONF and RESTCONF are the modern programmatic interfaces emphasized in CCNA automation topics.

Why the other options are wrong

A

SNMP is limited to monitoring and basic sets, not suited for complex remediation workflows.

C

CLI scripting lacks structured programmability and is error-prone for automation.

D

Syslog is a logging protocol and cannot be used to push configuration changes.

1069
MCQhard

A switch port connected to a user PC is configured as a trunk. The PC cannot communicate normally. What is the best explanation?

A.The port role is wrong because a normal PC-facing switchport should usually be an access port, not a trunk
B.A user PC requires EtherChannel to function
C.Trunk mode disables MAC address learning automatically
D.Trunk mode forces the switch to stop using IP addressing
AnswerA

A normal PC expects to receive and send untagged Ethernet frames in a single VLAN, so the switchport facing it should be an access port assigned to one access VLAN. Configuring it as a trunk makes the switch tag frames with 802.1Q headers, which the PC's NIC typically cannot process, breaking connectivity. Thus the port role is the primary misconfiguration.

Why this answer

The best explanation is that the port role is wrong: a PC-facing port should be an access port, not a trunk, because PCs normally send untagged frames and cannot process VLAN tags. Option B is incorrect because EtherChannel is used for link aggregation, not required for a single PC. Option C is wrong because trunk mode does not disable MAC address learning.

Option D is irrelevant, as switches do not stop using IP addressing in trunk mode.

Exam trap

Be careful not to confuse physical link issues with logical configuration mismatches. A trunk port on a user PC is a logical mismatch, not a hardware failure.

Why the other options are wrong

B

A user PC does not require EtherChannel to function; EtherChannel is a method for bundling multiple physical links into a single logical link, which is not necessary for standard PC connectivity.

C

Trunk mode does not disable MAC address learning; it actually allows the switch to learn MAC addresses from multiple VLANs. Therefore, a switch port configured as a trunk can still learn MAC addresses normally.

D

Trunk mode does not disable IP addressing; it allows multiple VLANs to be carried over a single link, and IP addressing is still applicable to the switch interfaces. Therefore, the user PC's inability to communicate is not due to trunk mode disabling IP addressing.

When would these options actually be correct?

B

In a different question scenario where a network engineer is troubleshooting a link aggregation setup, a user PC connected to a switch port configured for EtherChannel might fail to communicate if EtherChannel is misconfigured or not properly negotiated, making this option correct.

C

In a scenario where a question states that a switch is configured to prevent MAC address learning for security reasons, and a user PC is connected to a trunk port, this option would be correct. The question would need to specify that MAC address learning is intentionally disabled on trunk ports.

D

In a scenario where a question states that a switch is configured to only allow access ports and is explicitly designed to prevent any IP addressing on trunk ports, option D could be correct. For example, if the question specifies that the switch's configuration is intended to isolate VLANs without IP communication, then trunk mode would indeed stop IP addressing.

Why candidates pick the wrong answer

B

Candidates may choose this option due to a misunderstanding of network configurations, believing that advanced features like EtherChannel are necessary for all devices, especially in complex environments.

C

Candidates may confuse trunk mode with other configurations that limit MAC address learning, leading them to believe that trunking could inherently disable this feature. This misconception can arise from a lack of understanding of how VLANs and trunking work.

D

Candidates may confuse trunk mode with access mode capabilities and mistakenly believe that trunking limits IP addressing, especially if they have encountered scenarios where VLAN configurations affect communication. This misunderstanding can lead them to choose this option when they see 'trunk mode' mentioned.

1070
MCQhard

A host is assigned 192.168.10.33/28. Which subnet contains that host?

A.192.168.10.16/28
B.192.168.10.32/28
C.192.168.10.48/28
D.192.168.10.0/28
AnswerB

A /28 prefix length yields a block size of 16 addresses, so subnets are aligned on multiples of 16: 0, 16, 32, 48, and so on. The host address 192.168.10.33 falls in the range 32–47, making 192.168.10.32/28 the correct subnet. Within that block, .33 is a usable address, as the network and broadcast addresses are .32 and .47 respectively.

Why this answer

A /28 subnet uses blocks of 16 addresses. In plain language, the last octet ranges move in increments of 16: 0–15, 16–31, 32–47, 48–63, and so on. Since the host address ends in 33, it belongs to the 32–47 block. That means the containing subnet is 192.168.10.32/28.

This style of subnetting question is common because it tests whether you can identify the correct network boundary quickly. The key is to recognize the block size from the prefix and then place the address inside the correct interval without confusing the host with the network address.

Exam trap

Be careful not to confuse the host address with the network address or miscalculate the subnet boundaries.

Why the other options are wrong

A

Option A (192.168.10.16/28) is incorrect because it represents a different subnet, specifically the range 192.168.10.16 to 192.168.10.31, which does not include the host 192.168.10.33.

C

Option C is wrong because the host IP 192.168.10.33/28 falls within the subnet range of 192.168.10.32 to 192.168.10.47, making 192.168.10.48/28 an entirely different subnet that does not include the host.

D

Option D (192.168.10.0/28) is incorrect because it represents a different subnet than the one containing the host 192.168.10.33. The subnet for 192.168.10.33/28 is 192.168.10.32/28, which includes IPs from 192.168.10.32 to 192.168.10.47.

When would these options actually be correct?

A

If the question asked for the subnet that includes the IP address 192.168.10.33 with a subnet mask of /27 instead of /28, option A would be correct, as 192.168.10.16/27 encompasses the range from 192.168.10.16 to 192.168.10.47.

C

If the question asked for the next subnet after 192.168.10.32/28, then 192.168.10.48/28 would be the correct answer, as it represents the subsequent subnet in the sequence.

D

If the question asked for the subnet that includes the first usable IP address in the 192.168.10.0/28 range, then option D would be correct, as 192.168.10.0 is the network address for that subnet.

Why candidates pick the wrong answer

A

Candidates may choose this option due to a misunderstanding of subnetting, mistakenly believing that the first subnet in the range is always the correct answer without calculating the specific subnet for the given IP address.

C

Candidates might choose this option due to a misunderstanding of subnetting boundaries, mistakenly believing that 192.168.10.48 is close enough to the given host IP to be relevant.

D

Candidates may mistakenly choose option D because they recognize 192.168.10.0 as a common network address and may not fully understand the implications of subnetting and the specific range of usable IPs.

1071
PBQmedium

You are connected to R1 via the console. R1's GigabitEthernet0/0 (10.0.0.1/30) connects to R2 (10.0.0.2/30). Hosts on the LAN (192.168.1.0/24) need DHCP services. The DHCP server is located at 172.16.1.100 on a different subnet reachable via R2. Configure R1 to forward DHCP broadcasts to the DHCP server.

Network Topology
G0/1192.168.1.1/24G0/010.0.0.1/3010.0.0.2/30link10.0.0.2/30PCsLANR1R2DHCP server

Hints

  • The ip helper-address command is used to forward DHCP broadcasts.
  • Apply it on the interface facing the DHCP clients.
A.ip helper-address 172.16.1.100
B.ip dhcp relay information option
C.ip forward-protocol udp 67
D.ip dhcp-server 172.16.1.100
AnswerA
solution
! R1
interface GigabitEthernet0/1
ip helper-address 172.16.1.100

Why this answer

The ip helper-address command on the LAN interface forwards DHCP broadcast requests to the DHCP server at 172.16.1.100, allowing clients to obtain IP addresses across subnets.

Exam trap

Do not confuse the ip helper-address command with other DHCP-related commands like ip dhcp relay information option or ip forward-protocol. The key is to remember that ip helper-address is the command that actually forwards broadcasts to a specific server.

Why the other options are wrong

B

It is a supporting feature for relay agents, not the primary command to forward DHCP broadcasts.

C

It is a prerequisite but not sufficient; the ip helper-address is still needed to direct the traffic.

D

The command does not exist; it is a fabrication.

Why candidates pick the wrong answer

B

Candidates may confuse relay agent configuration with the actual forwarding command.

C

Candidates might think enabling the protocol is enough without specifying the server.

D

Candidates may guess a command that seems logical but is not real.

1072
MCQhard

An operations team wants a monitoring platform to periodically read interface counters and CPU statistics from routers. Which technology is most closely associated with that requirement?

A.SNMP
B.Syslog
C.NetFlow
D.Port security
AnswerA

SNMP is the standard protocol for network monitoring platforms to periodically poll managed devices for operational data. It uses community strings or SNMPv3 credentials to read MIB objects such as interface counters, CPU load, and temperature, making it ideal for routine status collection and alerting on thresholds.

Why this answer

SNMP is the best fit for that requirement. In practical terms, periodic reading of counters and statistics is polling-style monitoring, which is one of the classic SNMP use cases. A management system can query devices for interface status, utilization data, and other measurable values over time.

This is different from Syslog, which is event-message oriented, and from NetFlow, which focuses on traffic-flow visibility rather than general device statistics. The question is really about routine monitoring and polling.

Exam trap

A common exam trap is selecting Syslog or NetFlow as the answer because they are also monitoring-related technologies. Syslog is tempting because it deals with messages from devices, but it only reports events and logs rather than polling counters periodically. NetFlow is often confused with SNMP because it provides traffic visibility, but it focuses on flow data, not general device statistics like CPU or interface counters.

Another trap is port security, which is unrelated to monitoring and instead controls MAC address access on switch ports. Recognizing that SNMP uniquely supports periodic polling of device metrics helps avoid these mistakes.

Why the other options are wrong

B

Syslog is incorrect because it focuses on logging event messages and alerts rather than routinely polling device counters or CPU statistics, so it does not meet the periodic monitoring requirement.

C

NetFlow is incorrect because it provides detailed traffic flow analysis and visibility but does not poll general device statistics like CPU usage or interface counters, which are needed here.

D

Port security is incorrect because it is a Layer 2 feature that restricts MAC addresses on switch ports and does not provide any monitoring or polling capabilities for device statistics.

When would these options actually be correct?

B

If the exam question asked about a method for collecting and storing log messages from network devices for troubleshooting or auditing purposes, Syslog would be the correct answer, as it excels in capturing and transmitting log data.

C

If the question asked for a technology that analyzes traffic patterns and provides detailed flow statistics from routers, then NetFlow would be the correct answer. For example, a scenario focused on traffic analysis and bandwidth optimization would make this option valid.

D

If the exam question asked about securing network access and monitoring unauthorized devices on a switch, then port security would be the correct answer. For example, a question could ask which technology helps enforce access control on switch ports to enhance network security.

Why candidates pick the wrong answer

B

Candidates may choose Syslog because they associate it with network monitoring and management, mistakenly believing it can also handle performance metrics like SNMP does, leading to confusion about its primary function.

C

Candidates may choose NetFlow due to its association with network monitoring and performance analysis, leading them to mistakenly believe it fulfills the requirement for reading interface counters and CPU statistics.

D

Candidates may choose this option due to a misunderstanding of network monitoring concepts, confusing port security's role in device management with monitoring capabilities. They might recall that port security is related to network devices and mistakenly associate it with monitoring functions.

1073
PBQhard

You are connected to R1. The network team reports intermittent connectivity between R1 and R2. Examine the following `show interface` output from R1 to identify the root cause of the issue. Then apply the necessary configuration commands on R1 to resolve the problem. GigabitEthernet0/0 is up, line protocol is up Internet address is 10.0.0.1/30 MTU 1500 bytes, BW 100000 Kbit/sec, DLY 100 usec, reliability 255/255, txload 1/255, rxload 1/255 Encapsulation ARPA, loopback not set Keepalive set (10 sec) Full-duplex, 100Mb/s, media type is RJ45 output flow-control is unsupported, input flow-control is unsupported Last input 00:00:01, output 00:00:01, output hang never Last clearing of "show interface" counters never Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0 Queueing strategy: fifo Output queue: 0/40 (size/max) 5 minute input rate 0 bits/sec, 0 packets/sec 5 minute output rate 0 bits/sec, 0 packets/sec 100 packets input, 8000 bytes, 0 no buffer Received 0 broadcasts, 0 runts, 0 giants, 0 throttles 100 input errors, 100 CRC, 0 frame, 0 overrun, 0 ignored 0 output errors, 0 collisions, 0 interface resets 0 output buffer failures, 0 output buffers swapped out

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

Hints

  • CRC errors often indicate a duplex mismatch or faulty cabling.
  • Check if the interface has manual speed/duplex settings that may conflict with the remote device.
  • The remote device likely uses auto-negotiation; match its settings.
A.Enter interface configuration mode for the problematic interface and issue the 'no speed' and 'no duplex' commands to revert to auto-negotiation.
B.Enter interface configuration mode and issue the 'speed 100' and 'duplex full' commands to ensure both sides are set to the same values.
C.Enter interface configuration mode and issue the 'no shutdown' command to bring the interface up.
D.Enter interface configuration mode and issue the 'duplex half' command to match the remote side's duplex setting.
AnswerA
solution
! R1
configure terminal
interface GigabitEthernet0/0
no speed
no duplex
end

Why this answer

The show interface output reveals 100 CRC errors and 100 input errors, indicating a physical layer problem. Additionally, the interface is manually configured for full-duplex and 100 Mb/s. CRC errors often point to a duplex mismatch or faulty cable.

Since R1 is set to full-duplex, if R2 is set to auto-negotiation (or half-duplex), a mismatch occurs. The fix is to set both sides to auto-negotiation by removing manual speed and duplex settings. On R1, enter interface configuration mode and issue 'no speed' and 'no duplex' to revert to auto-negotiation, then verify with 'show interfaces' that the interface negotiates to full-duplex and errors stop incrementing.

Exam trap

Do not assume that manually setting speed and duplex is always correct. CRC errors often point to a duplex mismatch, and the standard fix is to enable auto-negotiation on both ends. Also, remember that 'no shutdown' is for administratively down interfaces, not for error conditions.

Why the other options are wrong

B

The specific factual error is that reapplying the same manual settings does not resolve a duplex mismatch; it may even perpetuate the mismatch if the remote side is set to auto-negotiation.

C

The specific factual error is that 'no shutdown' is used to enable an interface that is administratively down, but the interface is already up.

D

The specific factual error is that forcing half-duplex is unlikely to resolve the issue; it may worsen performance and still cause errors if the remote side is full-duplex.

Why candidates pick the wrong answer

B

Candidates might think that ensuring both sides have the same manual settings will fix the issue, but they overlook that the remote side might be using auto-negotiation, which requires both sides to auto-negotiate.

C

Candidates might assume that intermittent connectivity is due to the interface being down, but the show interface output would show 'administratively down' if that were the case.

D

Candidates might think that since CRC errors indicate a duplex mismatch, setting both sides to half-duplex would fix it, but they ignore that the remote side might be set to full-duplex or auto-negotiation.

1074
MCQhard

A network technician is troubleshooting a router that cannot be accessed via SSH. The router responds to Telnet but SSH attempts return 'connection refused'. The technician confirmed that 'ip ssh version 2' is configured and 'show ip ssh' indicates SSH is enabled. The output of 'show line vty 0 4' shows 'transport input telnet'. What should the technician do next?

A.Generate a new RSA key pair and restart the SSH service.
B.Add the 'transport input ssh' command to the VTY lines.
C.Configure 'ip ssh version 1' to enable backward compatibility.
D.Configure AAA authentication on the VTY lines.
AnswerB

The show line vty output indicates only Telnet is permitted. Adding 'transport input ssh' (or 'transport input all') modifies the VTY configuration to accept both Telnet and SSH, directly fixing the protocol restriction causing the connection refused.

Why this answer

The VTY lines are configured with 'transport input telnet', which explicitly allows only Telnet sessions. SSH is enabled globally, but because it is not listed in the VTY transport input, the router rejects SSH connection attempts. Adding 'transport input ssh' (or 'transport input all') under the VTY lines permits SSH connections without disrupting Telnet, solving the mismatch at the application layer.

Exam trap

Generating a new RSA key pair is a common but incorrect next step because SSH is already enabled and operational; the 'connection refused' message stems from the VTY transport configuration, not from missing or corrupted keys.

Why the other options are wrong

A

Administrators often mistake 'connection refused' for a key issue, but the VTY lines restrict the allowed protocols, not the validity of the keys.

C

Candidates may think a version mismatch causes the refusal, but the VTY transport setting is the actual filter; downgrading security is unnecessary and ineffective.

D

Some technicians equate 'connection refused' with authentication failure and jump to AAA, but in this case the VTY lines never allow the SSH session to reach the authentication stage.

1075
Matchingmedium

Which option correctly matches an IP service symptom to the most likely service involved?

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

Concepts
Matches

DNS

DHCP

NTP

Syslog

Why these pairings

DNS failures prevent name resolution because DNS is the service that translates hostnames to IP addresses. Without DNS, users cannot reach resources by name, but IP connectivity remains unaffected. This matches the symptom described in option A, making DNS the correct service.

Exam trap

The trap is to associate packet loss with a specific service; packet loss is a network condition, not a service. The correct answer focuses on the service (DNS) that directly causes the symptom of failed name resolution.

When would these options actually be correct?

B

In a question like 'Match each network issue symptom to the most likely cause,' where options include 'Intermittent connectivity' as a symptom and 'Packet loss' as a cause, this pairing would be correct.

C

In a question asking to match network performance issues to their root causes, such as 'Match each network problem to its most likely cause,' bandwidth congestion would be correctly matched with 'oversubscribed link' or 'traffic shaping misconfiguration.'

D

In a question asking to match symptoms to network issues (not services), such as 'Match each network problem to its likely cause,' jitter would be correctly matched to 'real-time services' as the affected application type.

Why candidates pick the wrong answer

B

Candidates may confuse symptoms with services or causes, or think packet loss is a service because it's a common network problem term.

C

Candidates may confuse symptoms with services, thinking that bandwidth congestion is a service issue rather than a capacity problem, or they may misattribute it to a service like QoS when it is actually a resource constraint.

D

Candidates may confuse 'jitter' as a service symptom with the service itself, or think that 'real-time services' is a service name rather than a category of applications affected by jitter.

1076
MCQhard

A subnet has the network address 192.168.30.0/26. What is the broadcast address?

A.192.168.30.63
B.192.168.30.64
C.192.168.30.255
D.192.168.30.31
AnswerA

The /26 prefix length means 26 network bits, leaving 6 host bits, so the block size is 64 addresses. Since the network address is 192.168.30.0, the usable host range is .1 through .62, and the broadcast address is the last address in the block, which is .63. This is the directed broadcast for this specific /26 subnet.

Why this answer

A /26 subnet contains 64 addresses. In plain language, the block that starts at 192.168.30.0 runs through 192.168.30.63. The first address is the network address and the last address is the broadcast address, so the broadcast for this subnet is 192.168.30.63.

This is a standard subnet-boundary calculation. Once the block size is identified, the broadcast address is simply the final address in that block.

Exam trap

Remember that the broadcast address is the last address in the subnet, not the first address of the next subnet or the last usable host address.

Why the other options are wrong

B

Option B is incorrect because the broadcast address for the subnet 192.168.30.0/26 is 192.168.30.63, not 192.168.30.64. The address 192.168.30.64 is actually the first address of the next subnet (192.168.30.64/26).

C

The address 192.168.30.255 is incorrect as the broadcast address for the subnet 192.168.30.0/26, which only spans IPs from 192.168.30.0 to 192.168.30.63. The broadcast address for this subnet is 192.168.30.63.

D

Option D, 192.168.30.31, is incorrect because it represents the last usable IP address in the subnet 192.168.30.0/26, not the broadcast address. The broadcast address for this subnet is 192.168.30.63.

When would these options actually be correct?

B

If the question asked for the first usable IP address of the subnet 192.168.30.0/26, then option B (192.168.30.64) would be correct, as it is the first address of the subsequent subnet after the specified range.

C

If the question were about a subnet with the network address 192.168.30.0/24, then 192.168.30.255 would be the correct broadcast address, as this subnet includes all addresses from 192.168.30.0 to 192.168.30.255.

D

In a different question where the subnet mask is /27, asking for the last usable IP address in the subnet 192.168.30.0/27, option D would be correct as it would then represent the last usable address before the broadcast address of 192.168.30.31.

Why candidates pick the wrong answer

B

Candidates may choose option B due to confusion between the broadcast address and the first address of the next subnet, especially if they misinterpret the subnetting boundaries.

C

Candidates may choose this option due to familiarity with the concept of broadcast addresses, mistakenly assuming that the highest address in any subnet is always the broadcast address without considering the subnet mask.

D

Candidates may choose option D due to confusion between the last usable IP address and the broadcast address, especially if they misinterpret the subnetting details or overlook the specific range of usable addresses.

1077
PBQhard

You are connected to SW1 via the console. The network has three switches connected in a triangle: SW1 (G0/1 to SW2 G0/1), SW1 (G0/2 to SW3 G0/1), and SW2 (G0/2 to SW3 G0/2). SW1 is the root bridge. A PC is connected to SW3's G0/3 port, which should be an edge port. However, the PC has been sending BPDUs, causing the port to go err-disabled. Configure SW3 to prevent this in the future: enable PortFast and BPDU Guard on G0/3. Then, verify that the port recovers from err-disabled state and that a specific blocked port on SW2 is identified. Use the provided show output to determine the current state and necessary commands.

Network Topology
G0/1 to SW2 G0/1G0/2 to SW3 G0/2G0/2 to SW3 G0/2G0/3 to PCSW2SW1SW3

Hints

  • The err-disabled port must be manually recovered with shutdown/no shutdown.
  • PortFast is configured at the interface level.
  • BPDU Guard is also configured at the interface level using 'spanning-tree bpduguard enable'.
A.interface g0/3 spanning-tree portfast spanning-tree bpduguard enable shutdown no shutdown
B.interface g0/3 spanning-tree portfast spanning-tree bpduguard enable no shutdown
C.interface g0/3 spanning-tree portfast spanning-tree bpduguard enable end copy running-config startup-config
D.interface g0/3 spanning-tree portfast spanning-tree bpduguard enable shutdown
AnswerA
solution
! SW3
interface GigabitEthernet0/3
spanning-tree portfast
spanning-tree bpduguard enable
shutdown
no shutdown

Why this answer

The PC connected to SW3's G0/3 was sending BPDUs, causing the port to go err-disabled due to BPDU Guard. To prevent this, enable PortFast and BPDU Guard on that interface. First, move to interface configuration mode for G0/3, then issue 'spanning-tree portfast' and 'spanning-tree bpduguard enable'.

After configuration, the port will remain err-disabled until manually recovered by issuing 'shutdown' followed by 'no shutdown'. The blocked port on SW2 is G0/2, as shown by the 'Altn BLK' role/status in its spanning-tree output.

Exam trap

A common trap is forgetting that err-disabled ports require a manual shutdown/no shutdown cycle to recover. Simply enabling BPDU Guard or saving the configuration does not restore the port. Always remember to reset the interface after correcting the cause.

Why the other options are wrong

B

The err-disabled state requires a manual interface reset (shutdown followed by no shutdown) to recover; a single 'no shutdown' command is insufficient.

C

Saving the configuration preserves the settings but does not affect the current operational state of the interface; the port stays err-disabled.

D

The shutdown command disables the interface but does not automatically re-enable it; the err-disabled state is cleared only after a shutdown/no shutdown cycle.

Why candidates pick the wrong answer

B

Candidates may think that 'no shutdown' alone can recover an err-disabled port, but the port must first be shut down to clear the error condition.

C

Candidates may confuse configuration tasks with operational recovery, thinking that saving the config will also reset the interface.

D

Candidates might think that shutting down the interface alone will clear the err-disabled condition, but the port remains administratively down without a 'no shutdown'.

1078
PBQhard

You are connected to R1. Configure IPv4 and IPv6 static routes, default routes, and floating static routes so that R1 can reach the Internet via R2 (IPv4 and IPv6). The primary route to the Internet should use next-hop 203.0.113.2 (IPv4) and 2001:db8:203:0:113::2 (IPv6). A backup floating static route with administrative distance 200 must exist for IPv4 only, using next-hop 198.51.100.2. Ensure the default routes are correctly configured and troubleshoot any recursive routing failure. Note: R1 currently has an incorrect IPv6 default route pointing to 2001:db8:198:51:100::2 that must be removed.

Network Topology
G0/010.0.0.1/30G0/010.0.0.2/30linkG0/1198.51.100.1/30G0/1198.51.100.2/30linkG0/2203.0.113.1/30G0/2203.0.113.2/30linkR1R2R3R4

Hints

  • The IPv4 primary default route is missing; only the floating route exists.
  • The IPv6 default route points to the wrong next-hop (should be via 2001:db8:203:0:113::2).
  • Floating static route AD must be higher than the primary route's AD to act as backup.
A.Remove the incorrect IPv6 default route: no ipv6 route ::/0 2001:db8:198:51:100::2; configure the primary default route: ip route 0.0.0.0 0.0.0.0 203.0.113.2; the floating route is already configured with AD 200; add IPv6 default route: ipv6 route ::/0 2001:db8:203:0:113::2
B.Configure the primary default route: ip route 0.0.0.0 0.0.0.0 203.0.113.2; change the floating route AD to 1; add IPv6 default route: ipv6 route ::/0 2001:db8:203:0:113::2
C.Configure the primary default route: ip route 0.0.0.0 0.0.0.0 203.0.113.2 200; the floating route is already configured with AD 200; add IPv6 default route: ipv6 route ::/0 2001:db8:203:0:113::2
D.Configure the primary default route: ip route 0.0.0.0 0.0.0.0 203.0.113.2; the floating route is already configured with AD 200; no IPv6 route is needed because IPv6 is not required.
AnswerA
solution
! R1
ip route 0.0.0.0 0.0.0.0 203.0.113.2
ip route 0.0.0.0 0.0.0.0 198.51.100.2 200
no ipv6 route ::/0 2001:db8:198:51:100::2
ipv6 route ::/0 2001:db8:203:0:113::2

Why this answer

The IPv4 floating route is already correctly pre-configured with AD 200 to serve as a backup. To meet the requirements, you must add the primary IPv4 default route with default AD 1, remove the existing incorrect IPv6 default route, and add the correct IPv6 default route. Option A correctly identifies these steps, while other options either omit the removal, assign a wrong AD to the primary route, or neglect IPv6 entirely.

Exam trap

The trap is that candidates may think the floating route needs to be modified or that the primary route should also have a high AD. Remember: a floating static route must have a higher AD than the primary route to act as a backup. Also, do not forget IPv6 if the question specifies it.

Why the other options are wrong

B

Setting the floating route AD to 1 makes it equal to the primary route's AD, defeating the purpose of a floating static route.

C

The primary route must have a lower AD than the floating route to be preferred. Setting it to 200 makes it equal to the backup, causing ambiguity.

D

The question states 'IPv4 and IPv6 static routes, default routes' and specifies an IPv6 next-hop. Ignoring IPv6 is a direct violation of the requirements.

Why candidates pick the wrong answer

B

Candidates may think that both routes need the same AD to work, but that would cause equal-cost multipath, not a backup.

C

Candidates might think that setting a higher AD on the primary route ensures the floating route is used, but that reverses the intended behavior.

D

Candidates might overlook the IPv6 requirement or think that only IPv4 is needed, but the question clearly includes IPv6.

1079
MCQmedium

A controller-based WLAN is deployed across multiple floors. Users can associate to the SSID on both floors, but their experience improves when moving between APs compared with a poorly designed standalone deployment. Which wireless concept is most closely related to that client movement experience?

A.Roaming between access points
B.NetFlow export
C.DHCP snooping
D.Route summarization
AnswerA

In a controller-based WLAN spanning multiple floors, the primary user-centric issue is client mobility. When a wireless client moves from one AP's coverage to another, the controller coordinates the handoff, maintaining the client's session and IP address. This is known as roaming, and controller-based architectures support fast, secure roaming via protocols like 802.11r. Therefore, this is the correct answer.

Why this answer

The concept most closely related is roaming between access points. In practical terms, client mobility experience depends on how smoothly a device can move from one AP coverage area to another while staying on the WLAN. Controller-based designs often help manage this more consistently than fragmented independent configurations.

The key point is that the question is about movement between APs while remaining on the wireless network, not about VLAN trunks or routing protocol neighbors.

Exam trap

Be careful not to confuse network performance improvements like channel bonding with client mobility improvements like roaming.

Why the other options are wrong

B

NetFlow export is related to network traffic analysis and monitoring, not directly to client movement or experience between access points in a WLAN. It does not address the seamless connectivity aspect of roaming.

C

DHCP snooping is a security feature that helps prevent unauthorized DHCP servers from distributing IP addresses on a network. It does not directly relate to the user experience of roaming between access points in a WLAN deployment.

D

Route summarization is a technique used in routing protocols to reduce the size of routing tables by aggregating multiple routes into a single route. It does not pertain to client movement or wireless connectivity between access points.

When would these options actually be correct?

B

If the question asked about monitoring and analyzing traffic patterns in a network environment, particularly focusing on how data flows between devices and the impact on performance, then NetFlow export would be the correct answer.

C

In a different scenario, a question might ask about securing a network against rogue DHCP servers in a large enterprise environment. In that context, DHCP snooping would be the correct answer as it protects clients from receiving invalid IP configurations.

D

If the exam question focused on optimizing routing efficiency in a large network with multiple subnets, asking about methods to reduce routing table size or improve routing performance, then route summarization would be the correct answer.

Why candidates pick the wrong answer

B

Candidates may confuse NetFlow export with performance optimization concepts, thinking that monitoring traffic could somehow relate to improving user experiences during roaming between access points.

C

Candidates may choose this option due to a misunderstanding of how DHCP functions in a network, mistakenly associating it with user connectivity and experience rather than its actual role in IP address management and security.

D

Candidates may confuse the concept of route summarization with the need for efficient network management, mistakenly believing it relates to improving user experience in a WLAN environment.

1080
MCQhard

A network administrator is troubleshooting connectivity from a PC (192.168.1.10/24) to a server at 10.0.0.5/24. The PC's default gateway is 192.168.1.1. Router R1 has a directly connected route to 10.0.0.0/24 via interface GigabitEthernet0/1, which is connected to another VLAN. The server is actually located on the 10.0.0.0/16 network, reachable via a static route through 192.168.1.2. What is the most likely cause of the connectivity issue?

A.The route to 10.0.0.0/16 has a lower administrative distance than the directly connected route.
B.The directly connected route to 10.0.0.0/24 is the most specific match but is incorrect for the destination.
C.The route to 10.0.0.0/8 has a higher metric, so it is not used.
D.The router does not have a default route, so traffic to 10.0.0.5 is dropped.
AnswerB

The router uses a longest-prefix-match lookup on the destination 10.0.0.5. The /24 route is the most specific match, so it is selected even though it points to an interface from which 10.0.0.5 is unreachable. The packet is therefore forwarded out the wrong interface rather than being processed by one of the longer, less-specific routes.

Why this answer

The router's routing table contains a directly connected route to 10.0.0.0/24, which is the most specific match (longest prefix) for the destination 10.0.0.5. However, if that directly connected subnet is not actually the network where the server resides (e.g., it points to a different interface or VLAN), traffic will be forwarded incorrectly. The router always prefers the most specific prefix, even if another route (like a summary) is administratively preferred or has a lower metric.

Exam trap

Cisco often tests the concept that the longest prefix match overrides administrative distance and metric, leading candidates to incorrectly assume that a lower AD or metric route will be chosen when a more specific but incorrect route exists.

Why the other options are wrong

A

You might think that OSPF routes are more reliable, but directly connected routes are always preferred regardless of AD.

C

You might confuse metric with prefix length; metric only matters when prefix lengths are equal.

D

A default route is only used when no more specific route exists; here a specific route exists.

1081
PBQhard

You are troubleshooting connectivity for a wireless client connected to the home network shown below. The client has obtained an APIPA address (169.254.x.x), indicating DHCP failure. Verify the DHCP server configuration on R1 and correct the issue so that the client receives a valid IP address from the 192.168.1.0/24 subnet.

Network Topology
G0/0192.168.1.1/24switchR1Wireless Client

Hints

  • Check if the DHCP service is enabled globally on R1.
  • APIPA addresses indicate that the client did not receive a DHCP offer.
  • The DHCP pool and interface configuration are correct; the missing piece is the global DHCP service.
A.Enable the DHCP service globally using the 'service dhcp' command on R1.
B.Remove the 'ip dhcp excluded-address 192.168.1.1 192.168.1.10' command because it excludes too many addresses.
C.Change the DHCP pool network to 192.168.1.0/24 and add the default-router 192.168.1.1 command.
D.Configure the 'ip helper-address' command on the client's VLAN interface to forward DHCP requests to the server.
AnswerA
solution
! R1
configure terminal
service dhcp
end

Why this answer

The client obtained an APIPA address (169.254.x.x) because DHCP was not assigning addresses. The DHCP pool is correctly configured, but the global DHCP service must be enabled with the 'service dhcp' command on R1. The excluded-address range (192.168.1.1–192.168.1.10) uses only a small fraction of the /24 subnet, so it is not the issue.

Enabling 'service dhcp' allows the router to process DHCP requests and assign addresses from the pool.

Exam trap

Trap: Candidates often focus on pool configuration (network, default-router, excluded-address) when troubleshooting DHCP failures, but they forget that the DHCP service must be enabled globally with 'service dhcp'. Always check if the service is running before modifying pool parameters.

Why the other options are wrong

B

The specific factual error: Excluding 10 addresses does not exhaust the pool; the pool still has 244 addresses available.

C

The specific factual error: The pool configuration is already correct; modifying it does not address the disabled DHCP service.

D

The specific factual error: 'ip helper-address' is for DHCP relay across subnets; it is not needed when the server is local.

Why candidates pick the wrong answer

B

Candidates might think that excluding addresses reduces the pool size and could cause exhaustion, but in this case the pool is large enough.

C

Candidates often assume the pool is misconfigured when clients get APIPA addresses, but the pool commands are correct here.

D

Candidates may confuse scenarios where the DHCP server is on a different subnet and think relay is always required.

1082
PBQhard

You are troubleshooting a link between R1 (G0/0) and R2 (G0/0). The link is up but experiencing packet loss. You suspect an interface speed/duplex mismatch or SFP issue. Configure R1's interface to match the correct speed and duplex, and replace the SFP module if necessary to support a required distance of 40 km over single-mode fiber.

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

Hints

  • Check the current speed and duplex configuration under the interface.
  • Check the SFP module distance rating using 'show interfaces transceiver'.
  • Remove explicit speed and duplex commands to allow auto-negotiation.
A.Remove manual speed/duplex settings, enable auto-negotiation, and replace the SFP with a long-reach module (e.g., 1000BASE-ZX) that supports 40 km over single-mode fiber.
B.Change the duplex to full and speed to 1000 Mbps manually, and keep the existing SFP.
C.Keep the manual speed/duplex settings but replace the SFP with a 1000BASE-SX module.
D.Enable auto-negotiation on both ends but keep the existing SFP.
AnswerA
solution
! R1
interface gigabitethernet 0/0
no speed
no duplex
end
copy running-config startup-config

Why this answer

The link is experiencing packet loss, likely due to a speed/duplex mismatch between the manually configured interface and the peer (which may use auto-negotiation) and/or an SFP module that cannot support the required 40 km distance over single-mode fiber. To resolve both potential issues, remove any manual speed and duplex settings to restore default auto-negotiation (using 'no speed' and 'no duplex'), and replace the SFP with a module rated for 40 km or more on SMF, such as a 1000BASE-ZX (or 1000BASE-EX) transceiver. Standard 1000BASE-LX/LH only reaches up to 10 km on SMF, so it is insufficient for this scenario.

Exam trap

This question tests your ability to identify and resolve both a speed/duplex mismatch and an SFP distance limitation. A common trap is to focus on only one issue (e.g., only fixing the mismatch or only replacing the SFP) while ignoring the other. Always verify that the SFP supports the required distance and fiber type.

Why the other options are wrong

B

The specific factual error is that manually setting speed/duplex does not guarantee compatibility with the remote end and does not address the SFP distance limitation.

C

The specific factual error is that 1000BASE-SX is for multimode fiber and short distances, not single-mode fiber at 40 km.

D

The specific factual error is that the SFP distance limitation is not addressed; auto-negotiation alone does not change the physical layer capability.

Why candidates pick the wrong answer

B

Candidates might think that manually forcing 1000 Mbps full-duplex will fix the mismatch, but they overlook the SFP requirement and the risk of mismatch if the remote end uses auto-negotiation.

C

Candidates might confuse SFP types and think any Gigabit SFP will work, but they ignore the fiber type and distance limitations.

D

Candidates might focus only on the mismatch issue and forget the distance requirement, assuming the SFP is adequate.

1083
Multi-Selectmedium

Which two statements correctly describe a RESTful API used by network controllers? Choose two.

Select 2 answers
A.It commonly uses HTTP methods such as GET and POST
B.It requires SNMP traps for every successful request
C.It is typically stateless between client requests
D.It can only return XML, never JSON
AnswersA, C

RESTful APIs map standard HTTP methods directly to CRUD operations: GET retrieves a resource, POST creates one, PUT/PATCH updates, and DELETE removes it. This reliance on HTTP verbs is a defining characteristic of REST-style APIs, distinguishing them from other remote procedure call (RPC) approaches that use a single endpoint with custom actions.

Why this answer

REST commonly uses HTTP methods such as GET, POST, PUT, PATCH, and DELETE. It is also stateless, which means each request includes the information needed for the server to process it.

Exam trap

Be careful not to confuse RESTful APIs with protocols that maintain state or require specific data formats like XML.

Why the other options are wrong

B

RESTful APIs do not require SNMP traps; they use HTTP methods for communication, and SNMP traps are unrelated to REST API operations.

D

RESTful APIs are format-agnostic and commonly support both XML and JSON, with JSON being the more prevalent format due to its lightweight nature. The statement that RESTful APIs can only return XML is incorrect.

When would these options actually be correct?

B

If the question asked about a network management system that uses SNMP for event notifications, then SNMP traps would be correct for receiving asynchronous alerts from network devices.

D

If the question specified a legacy system or a particular API that exclusively uses XML (e.g., some older SOAP-based APIs), then 'It can only return XML, never JSON' could be correct. For example, a question about a specific vendor's API that only supports XML responses.

Why candidates pick the wrong answer

B

Candidates may confuse SNMP traps with API callbacks or notifications, or incorrectly think that all network management protocols require traps for every request.

D

Candidates may confuse RESTful APIs with older web services like SOAP, which often use XML exclusively, or they may have limited exposure to APIs that support multiple data formats.

1084
Matchingmedium

Match each networking 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

Local Layer 2 address for frame delivery

Data structure used to choose packet-forwarding paths

Why these pairings

Unicast communication involves one-to-one transmission between a single sender and a single receiver. Broadcast is one-to-all communication, where a packet is sent to every device on the local subnet. Multicast is one-to-many communication, where a single sender transmits to a specific group of interested receivers.

Anycast is one-to-one-of-many, where a packet is delivered to the nearest node among a group of potential receivers, typically used for services like DNS. The other options are incorrectly defined: Broadcast is not one-to-closest (that is anycast), Multicast is not one-to-all (that is broadcast), and Anycast is not one-to-group (that is multicast). Therefore, only option A is correctly matched.

Exam trap

Candidates often confuse multicast and anycast: multicast delivers to all members of a group, while anycast delivers to only the closest member. Also, broadcast is often mistakenly thought to be one-to-closest, but it is one-to-all.

When would these options actually be correct?

B

In a question asking to match 'Broadcast' to its role in IPv4 addressing, where the correct role is 'one-to-all communication within a broadcast domain'.

C

In a question asking 'Which communication method sends data from one source to all hosts on the network?', multicast would be wrong, but if the question were 'Which method sends data to a specific subset of hosts that have joined a group?', multicast would be correct.

D

A question that asks: 'Which communication type sends packets to the nearest member of a group, often used for DNS or CDN services?' Then anycast (one-to-nearest) would be correct.

Why candidates pick the wrong answer

B

Candidates may confuse broadcast with anycast, thinking broadcast delivers to the nearest node, or they misinterpret 'closest' as all nodes in the local segment.

C

Candidates confuse multicast with broadcast because both involve multiple recipients, but multicast targets a specific group, not all hosts.

D

Candidates confuse 'any' with 'group' because the term 'any' suggests multiple possible destinations, leading them to incorrectly associate it with group communication instead of nearest-member delivery.

1085
MCQhard

A network engineer configures OSPF between R1 and R2, but the routers never become neighbors on GigabitEthernet0/0. Based on the exhibit, what is the most likely cause?

A.The routers are using different OSPF areas.
B.The OSPF interface timers do not match.
C.The routers must use the same hostname to become neighbors.
D.The subnet mask prevents multicast OSPF traffic.
AnswerB

OSPF requires that neighbor routers on the same link agree on both the hello interval and the dead interval. If R1 uses the default 10-second hello and 40-second dead timers while R2 has modified those timers, the routers will not recognize each other as valid neighbors and will not exchange OSPF packets. This timer mismatch prevents adjacency formation, regardless of any other matching parameters.

Why this answer

The most likely cause is a hello/dead timer mismatch. In practical terms, both routers are on the same subnet and both are trying to run OSPF in area 0, so the obvious items look correct. But OSPF does not form adjacency based on IP reachability alone. It also checks whether key interface parameters agree. Hello and dead intervals are among those required parameters.

On R1, the hello interval is 10 seconds and the dead interval is 40 seconds. On R2, the hello interval is 5 seconds and the dead interval is 20 seconds. That mismatch is enough to prevent the neighbor relationship from forming. This is a common CCNA troubleshooting pattern because the interfaces can still ping each other, which makes the failure look less obvious at first glance.

Exam trap

A frequent exam trap is assuming that OSPF adjacency forms as long as routers are in the same area and can ping each other. Candidates often overlook the necessity for matching hello and dead intervals, which are critical for neighbor discovery and maintenance. Because routers can still exchange ICMP packets, it may appear that the link is fully operational, leading to the mistaken belief that OSPF should work.

This misunderstanding causes candidates to select incorrect answers related to area mismatches or subnet masks, ignoring the timer mismatch that actually prevents adjacency.

Why the other options are wrong

A

This option is incorrect because both routers are configured to use the same OSPF area 0, so area mismatch is not the cause of adjacency failure.

C

Hostnames do not influence OSPF neighbor relationships; routers form adjacencies based on protocol parameters, not device names, so this option is invalid.

D

A /24 subnet mask does not block OSPF multicast traffic; OSPF uses multicast addresses that function normally on standard subnet masks, so this option is incorrect.

When would these options actually be correct?

A

In a different scenario, if the question specified that both routers must be in the same OSPF area for neighbor adjacency and the configurations showed different area IDs, then this option would be correct. For example, if R1 is in area 0 and R2 is in area 1, they would not become neighbors.

C

In a different exam scenario, if the question specified that OSPF neighbor relationships depend on hostname resolution via DNS and that both routers are configured to use hostnames instead of IP addresses, then this option would be correct.

D

In a different scenario where the question specifies that the routers are configured with different subnet masks that create separate broadcast domains, this option would be correct. For example, if R1 is configured with a /24 mask and R2 with a /30 mask, OSPF would fail to establish neighbors due to the inability to reach each other.

Why candidates pick the wrong answer

A

Candidates may mistakenly believe that OSPF requires routers to be in the same area to establish neighbor relationships, leading them to choose this option due to a misunderstanding of OSPF area functionality.

C

Candidates may choose this option due to a misunderstanding of OSPF requirements, mistakenly believing that hostname consistency is necessary for neighbor formation, especially if they confuse OSPF with other protocols that may have such requirements.

D

Candidates might choose this option due to a common misconception that OSPF requires identical subnet masks for neighbor relationships, leading them to overlook the actual cause of the issue in the given context.

1086
Multi-Selectmedium

A network team wants an ACL that permits HTTPS from 10.1.50.0/24 to a web server at 203.0.113.10 and denies all Telnet traffic from that subnet to any destination. Which two ACEs are required?

Select 2 answers
A.permit tcp 10.1.50.0 0.0.0.255 host 203.0.113.10 eq 443
B.deny tcp 10.1.50.0 0.0.0.255 any eq 23
C.permit udp 10.1.50.0 0.0.0.255 host 203.0.113.10 eq 443
D.deny tcp any 10.1.50.0 0.0.0.255 eq 23
E.permit ip any any
AnswersA, B

This ACL entry uses the wildcard mask 0.0.0.255 to match the entire 10.1.50.0/24 subnet as the source and specifies the single host 203.0.113.10 as the destination with the port number 443. Because HTTPS is a TCP-based protocol, the 'tcp' keyword is essential; this rule precisely permits outbound HTTPS traffic from that subnet to only that web server while leaving all other traffic unaffected.

Why this answer

To meet the requirement, one ACE must explicitly permit TCP destination port 443 to the web server, and another must deny TCP destination port 23 to any destination. Option C is wrong because HTTPS (port 443) uses TCP, not UDP. Option D reverses source and destination; the deny should apply from 10.1.50.0/24 to any, not from any to that subnet.

Option E permits all IP traffic, which would override the deny for Telnet, making it ineffective.

Exam trap

Be careful to match both the source and destination criteria in ACLs, not just the destination.

Why the other options are wrong

C

HTTPS uses TCP, not UDP, so a UDP permit for port 443 would not match HTTPS traffic.

D

The ACL reverses source and destination; it denies Telnet from any to 10.1.50.0/24, not from 10.1.50.0/24 to any.

E

Permitting all IP traffic would allow Telnet, negating the required deny rule.

When would these options actually be correct?

C

This option would be correct in a scenario where the question specifies a requirement to permit a UDP-based service, such as DNS over UDP, from the specified subnet to a particular host. For example, if the question asked for permitting DNS traffic from 10.1.50.0/24 to 203.0.113.10, then this option would be appropriate.

D

In a different scenario where the requirement is to deny Telnet traffic coming from any source to the 10.1.50.0/24 subnet, option D would be correct. For example, if the question asked to prevent any Telnet access to the subnet from all external sources, this option would fulfill that requirement.

E

In a different scenario where the requirement is to allow all traffic from any source to any destination without restrictions, such as a question asking for a default permit rule in a firewall configuration, option E would be correct.

Why candidates pick the wrong answer

C

Candidates might choose this option due to a misunderstanding of the protocols involved, confusing HTTPS with a service that could potentially use UDP, or simply overlooking the specific requirement for TCP in the question.

D

Candidates might choose this option because it appears to address the denial of Telnet traffic, leading them to believe it is relevant to the question's focus on access control lists.

E

Candidates may choose this option because it appears to provide broad access, which can seem appealing in scenarios where unrestricted communication is desired, leading to a misunderstanding of the specific requirements of the question.

1087
MCQhard

A router has a static route and a RIP route for the same destination prefix. What is the primary reason the static route is preferred over the RIP route?

A.Because the static route has a lower administrative distance for the same prefix.
B.Because RIP can never be installed when static routing is configured anywhere.
C.Because RIP is valid only for host routes.
D.Because static routes are always more specific than RIP routes.
AnswerA

Both the static and RIP routes share the same /16 prefix, so the longest-match rule cannot differentiate them. In that case, Cisco IOS compares administrative distance values: static routes default to AD 1, while RIP defaults to AD 120. Since a lower AD is always preferred, the static route is installed in the routing table and used for forwarding. That is the strongest reason because the prefixes are identical, making AD the decisive tie-breaker.

Why this answer

The static route is preferred because both routes describe the same destination prefix and the static route has the lower administrative distance. In practical terms, longest-prefix match does not break the tie because the prefixes are equal. The router then compares source trust, and static routing wins over RIP by default.

This is a core route-selection concept and a very exam-relevant comparison.

Exam trap

Do not confuse administrative distance with metrics or prefix length; administrative distance is the deciding factor here.

Why the other options are wrong

B

This option is incorrect because RIP can coexist with static routes in a routing table; static routes do not prevent RIP routes from being installed. Both routing protocols can be used simultaneously, and the routing decision is based on administrative distance.

C

This option is incorrect because RIP can coexist with static routes in a routing table; static routes do not prevent RIP routes from being installed. Both routing protocols can be used simultaneously in a network.

D

This option is wrong because static routes are not inherently more specific than RIP routes; both can have varying levels of specificity depending on the configuration. The preference of static routes over RIP is determined by administrative distance, not specificity.

When would these options actually be correct?

B

In a different exam scenario where the question specifies a network configuration that prohibits the use of RIP when static routes are present, this option could be correct. For example, if the question states that a router is configured to only allow static routing for security reasons, then this statement would apply.

C

In a question that asks about the limitations of RIP in a network where only host routes are allowed, this option could be correct if it specifies that RIP is only applicable for host routes and not for network routes. For example, if the question states that only host routes are being considered, then this option would be valid.

D

In a different question context where the focus is on comparing routing protocols and their characteristics, if asked whether static routes are always more specific than dynamic protocols like RIP, this option could be correct if the question specifies a scenario where static routes are configured with specific subnet masks that exceed the specificity of RIP routes.

Why candidates pick the wrong answer

B

Candidates might choose this option due to a misunderstanding of routing protocols, believing that static routes inherently disable dynamic protocols like RIP, which is a common misconception among those less familiar with routing behavior.

C

Candidates may choose this option due to a misunderstanding of RIP's capabilities, mistakenly believing that static routes inherently disable other routing protocols, leading to confusion about how routing protocols can operate together.

D

Candidates might choose this option due to a misunderstanding of routing protocols, believing that static routes, being manually configured, are always more precise than dynamically learned routes like those from RIP.

1088
PBQhard

You are connected to R1, a multilayer switch acting as an HSRP active gateway for VLAN 100. The network requires R1 to be the active router with a virtual IP of 192.168.100.1. Currently, both R1 and the peer router R2 show as active in 'show standby brief', and the virtual IP is misconfigured. Configure HSRP on R1 to fix these issues: set priority to 110, enable preempt, correct the virtual IP, and track interface GigabitEthernet0/1 (decrement priority by 20 if it goes down).

Network Topology
linkG0/1:10.0.0.1/30linkR1R2upstream router

Hints

  • Check the virtual IP address configured under the standby group — it should match the expected virtual IP.
  • Preempt is disabled by default; verify if it's configured to allow R1 to become active after a failure.
  • Use 'show standby' to see all details including tracking status.
A.interface Vlan100 standby 100 ip 192.168.100.1 standby 100 priority 110 standby 100 preempt standby 100 track GigabitEthernet0/1 20
B.interface Vlan100 standby 100 ip 192.168.100.254 standby 100 priority 110 standby 100 preempt standby 100 track GigabitEthernet0/1 20
C.interface Vlan100 standby 100 ip 192.168.100.1 standby 100 priority 100 standby 100 preempt standby 100 track GigabitEthernet0/1 20
D.interface Vlan100 standby 100 ip 192.168.100.1 standby 100 priority 110 standby 100 track GigabitEthernet0/1 20
AnswerA
solution
! R1
interface Vlan100
standby 100 ip 192.168.100.1
standby 100 priority 110
standby 100 preempt
standby 100 track GigabitEthernet0/1 20

Why this answer

The problem had multiple issues: the virtual IP was wrong (192.168.100.254 instead of 192.168.100.1), preempt was not enabled (both routers could claim active), and priority was default (100). Additionally, interface tracking was missing to decrement priority if the upstream link failed. The solution consists of four commands: 'standby 100 ip 192.168.100.1' to set the correct virtual IP, 'standby 100 priority 110' to make R1 the active router, 'standby 100 preempt' to allow R1 to reclaim active role after recovery, and 'standby 100 track GigabitEthernet0/1 20' to reduce priority by 20 if that interface goes down.

Exam trap

Watch out for three common HSRP pitfalls: (1) virtual IP must match the configured gateway, (2) preempt is required for a router to reclaim active role after recovery, and (3) priority must be higher than the peer to be preferred. Also, remember that interface tracking decrements priority, so the tracked interface must be specified correctly.

Why the other options are wrong

B

The virtual IP address is wrong; it should be 192.168.100.1, not 192.168.100.254.

C

Priority must be higher than the default (100) to ensure R1 becomes the active router; 110 is required.

D

Preempt is required to allow R1 to reclaim the active role when its priority becomes higher again after a failure.

Why candidates pick the wrong answer

B

Candidates might confuse the virtual IP with a typical gateway address or misremember the correct IP from the scenario.

C

Candidates might think the default priority is sufficient or forget that a higher priority is needed to guarantee active status.

D

Candidates might overlook preempt, thinking that higher priority alone is enough to become active, but preempt is necessary for the router to actively take over.

1089
MCQhard

After configuring a static discard route with the command 'ip route 0.0.0.0 0.0.0.0 Null0 254' on R1, a network engineer finds that traffic to destinations that are not in the routing table is still being forwarded out to the ISP instead of being dropped. What is the most likely cause?

A.The Null0 interface is administratively shut down.
B.The address 0.0.0.0/0 is an invalid destination for a static route because it is not a real network.
C.The static discard route must include a next-hop IP address instead of specifying Null0 as the interface.
D.The ISP static default route has an administrative distance of 1, which is lower than the administrative distance of 254 set for the Null0 route.
AnswerD

When a router has multiple routes for the same 0.0.0.0/0 prefix, it selects the one with the lowest administrative distance. The ISP route with AD 1 wins, so traffic never matches the AD 254 Null0 discard route.

Why this answer

The static discard route with an administrative distance of 254 is less preferred than the ISP default route with an administrative distance of 1. Since the ISP route has a lower AD, it remains in the routing table and is used for forwarding traffic to unknown destinations, overriding the discard route. The Null0 route only becomes active if the ISP route is removed or fails, as the router always selects the route with the lowest administrative distance.

Exam trap

Cisco often tests the concept that administrative distance determines route preference, and the trap here is that candidates assume a static route to Null0 will always be used for discarding traffic, forgetting that a lower-AD route (like the ISP default) will take precedence.

Why the other options are wrong

A

Candidates often assume that a route pointing to an interface requires that interface to be up, but Null0 is always available.

B

A misconception that the default route is special and cannot be used with Null0, but any valid IP prefix can be directed to Null0 to create a discard route.

C

Confusing Null0 routes with Ethernet interface routes, which require a next hop, leads to the incorrect belief that a next hop is mandatory for all static routes.

1090
MCQhard

A router is configured with PAT for inside users. Which symptom most strongly suggests the NAT inside/outside roles are reversed on the interfaces?

A.Outbound traffic still shows private inside source addresses where translated public addresses should appear.
B.The NAT translation table is empty even though internal users are browsing the internet.
C.Internal hosts cannot reach the internet at all.
D.External hosts can connect to internal servers using their private IP addresses.
AnswerA

Outbound traffic showing private inside source addresses where translated public addresses should appear is the most direct symptom of reversed inside/outside roles. When roles are reversed, the router applies translation in the wrong direction, so inside hosts' traffic leaving the outside interface remains untranslated.

Why this answer

When NAT inside/outside roles are reversed, the router applies translation logic in the wrong direction, causing traffic from the inside network to leave the outside interface with untranslated private source addresses. The correct answer (A) directly demonstrates this failure: outbound traffic still shows private IPs where a public address should appear after PAT. The other options describe symptoms that could occur with other NAT misconfigurations but do not strongly indicate reversed roles: an empty translation table (B) suggests no NAT processing at all, possibly due to missing ACL or overload configuration; total lack of internet access (C) may result from many connectivity issues, not specifically reversed interface roles; and external hosts reaching internal servers by private IP (D) points more to a missing or incorrect static NAT rule rather than direction reversal.

Exam trap

A common exam trap is assuming that NAT translation problems are caused by ACL or overload command errors, while overlooking the inside/outside interface roles. Candidates may see private IP addresses in outbound traffic and mistakenly focus on ACL syntax or NAT pool definitions. However, the root cause is often reversed interface roles, which prevent the router from applying PAT correctly.

This trap leads to wasted time troubleshooting unrelated configurations and missing the fundamental NAT directionality requirement.

Why the other options are wrong

B

An empty NAT table indicates no translation is happening at all, which is not the expected outcome of simply reversing inside/outside roles—NAT still processes packets but incorrectly.

C

Complete internet unreachability is a generic connectivity symptom that could be caused by routing, firewall, or other NAT issues, but does not strongly signal a role reversal.

D

External hosts connecting to a private IP without translation is a typical sign of a missing static NAT or PAT rule, not of reversed interface direction assignments.

When would these options actually be correct?

B

In a question focused on STP behavior in a switched network, a scenario might ask about network topology changes affecting bridge priorities. If the question specifies that a switch detects a topology change, then this option could be correct as it relates to STP operations.

C

In a question asking about the effects of a misconfigured DHCP server or a network device that automatically updates its hostname based on a dynamic DNS service, this option could be correct. For example, if the router is set to update its hostname based on the IP address assigned by DHCP, it would change if the DHCP lease changes.

D

In a question focused on DHCP server functionality, if a scenario describes a network where DHCP clients are unable to obtain IP addresses across multiple VLANs, option D would be correct as it directly addresses DHCP lease requests.

Why candidates pick the wrong answer

B

Candidates may choose this option due to a misunderstanding of network protocols, mistakenly linking STP behavior with NAT configurations, or confusing symptoms of network issues across different layers of the OSI model.

C

Candidates may choose this option due to a misunderstanding of how NAT and device configurations interact, leading them to incorrectly associate hostname changes with network misconfigurations.

D

Candidates may choose this option due to a misunderstanding of how NAT and DHCP interact, mistakenly believing that DHCP issues could indicate NAT misconfiguration, leading to confusion between the two concepts.

1091
MCQeasy

Which VLAN is used by default for most switch ports on a new Cisco switch?

A.VLAN 1
B.VLAN 99
C.VLAN 1002
D.No VLAN until the port is manually assigned
AnswerA

On a new Cisco switch, every port is automatically placed in VLAN 1, which is the factory-default VLAN and cannot be deleted or renamed. This default assignment applies to both access and trunk ports, and VLAN 1 also serves as the default native VLAN. Therefore, VLAN 1 is the correct answer for the default switch port VLAN.

Why this answer

On a default Cisco switch, access ports belong to VLAN 1 until changed. Best practice is usually to move user ports away from VLAN 1, but the default is still VLAN 1.

Exam trap

Remember that VLAN 1 is the default VLAN on Cisco switches, despite being discouraged for use in production environments.

Why the other options are wrong

B

VLAN 99 is not the default VLAN for switch ports on a new Cisco switch; the default is VLAN 1. VLAN 99 is often used in specific configurations but is not the factory default setting.

C

VLAN 1002 is a reserved VLAN for Token Ring and FDDI, and it is not the default VLAN for switch ports on a new Cisco switch. Most switch ports default to VLAN 1 unless configured otherwise.

D

This option is incorrect because, by default, Cisco switches assign all ports to VLAN 1, not leaving them unassigned. Every port is part of VLAN 1 unless configured otherwise.

When would these options actually be correct?

B

If the question specified a scenario where a network administrator had configured VLAN 99 as the default VLAN for all switch ports on a custom setup, then VLAN 99 would be the correct answer. This could occur in a lab exam focusing on customized VLAN configurations.

C

If the exam question asked which VLAN is reserved for legacy protocols like Token Ring or FDDI, then VLAN 1002 would be the correct answer. In this scenario, the question would focus on VLAN assignments specific to older network technologies.

D

If the question were to ask about the default behavior of a switch port that has not been configured or assigned a VLAN, then stating 'No VLAN until the port is manually assigned' would be correct. This would imply a scenario where the switch is in a factory default state and no VLAN configuration has been applied.

Why candidates pick the wrong answer

B

Candidates may choose VLAN 99 because it is commonly referenced in discussions about VLAN management and security practices, leading to confusion about default settings versus user-defined configurations.

C

Candidates may choose VLAN 1002 due to familiarity with VLAN numbering and the assumption that it could be a default VLAN, especially if they recall it being mentioned in discussions about VLANs in general networking contexts.

D

Candidates may choose this option due to a misunderstanding of VLAN assignments, thinking that ports remain unassigned until explicitly configured, especially if they are familiar with other networking devices that might operate differently.

1092
PBQmedium

You are connected to R1 via console. R1 is a router that should restrict SSH access to only the management station at 192.168.1.100. Currently, SSH is enabled but any IP can connect. Configure a standard named ACL called 'SSH_ACL' to permit only the management station, and apply it to the VTY lines to filter incoming SSH connections. Ensure the VTY lines use SSH only (no Telnet). The SSH version should be set to 2.

Network Topology
G0/0192.168.1.1/24192.168.1.100LANR1Management Station

Hints

  • Create a standard ACL that permits only the management host.
  • Apply the ACL to the VTY lines with 'ip access-class'.
  • Use 'transport input ssh' to allow only SSH and 'ip ssh version 2' to enforce SSHv2.
A.R1(config)# ip access-list standard SSH_ACL R1(config-std-nacl)# permit host 192.168.1.100 R1(config-std-nacl)# deny any R1(config-std-nacl)# exit R1(config)# line vty 0 4 R1(config-line)# ip access-class SSH_ACL in R1(config-line)# transport input ssh R1(config)# ip ssh version 2
B.R1(config)# access-list SSH_ACL permit 192.168.1.100 R1(config)# line vty 0 4 R1(config-line)# access-group SSH_ACL in R1(config-line)# transport input ssh R1(config)# ip ssh version 2
C.R1(config)# ip access-list standard SSH_ACL R1(config-std-nacl)# permit 192.168.1.100 R1(config)# line vty 0 4 R1(config-line)# ip access-class SSH_ACL out R1(config-line)# transport input ssh R1(config)# ip ssh version 2
D.R1(config)# access-list SSH_ACL permit 192.168.1.100 R1(config)# line vty 0 4 R1(config-line)# ip access-class SSH_ACL in R1(config-line)# transport input all R1(config)# ip ssh version 2
AnswerA
solution
! R1
ip access-list standard SSH_ACL
permit host 192.168.1.100
deny any
line vty 0 4
ip access-class SSH_ACL in
transport input ssh
ip ssh version 2

Why this answer

The standard ACL restricts inbound connections to the VTY lines. Applying it with 'ip access-class in' filters incoming Telnet/SSH sessions. Setting 'transport input ssh' disables Telnet, and 'ip ssh version 2' ensures secure SSH version 2.

Exam trap

Be careful not to confuse 'access-group' (for interfaces) with 'access-class' (for VTY lines). Also, remember that 'in' on VTY lines filters incoming connections, while 'out' filters outgoing. Always verify the transport input setting to ensure only SSH is allowed.

Why the other options are wrong

B

The command 'access-group' is used on interfaces to filter traffic, not on VTY lines. VTY lines use 'ip access-class' to filter incoming Telnet/SSH sessions.

C

The direction 'out' on VTY lines filters traffic originating from the router (outgoing), not incoming SSH connections. The correct direction is 'in'.

D

The command 'transport input all' permits all protocols, including Telnet, which is insecure. The requirement specifies SSH only, so 'transport input ssh' is needed.

Why candidates pick the wrong answer

B

Candidates often confuse 'access-group' (for interfaces) with 'access-class' (for VTY lines) because both involve ACLs.

C

Candidates may think 'out' is correct because they associate 'out' with traffic going out to the network, but for VTY lines, 'in' refers to connections coming into the router.

D

Candidates might use 'all' to ensure SSH works, but they overlook the security requirement to disable Telnet.

1093
PBQhard

You are troubleshooting a network connectivity issue on R1. The network 192.168.10.0/24 behind R2 must be reachable from R1 via the primary path through R2 (192.0.2.2). A backup path via R3 (198.51.100.2) should automatically take over if the primary fails. Currently, traffic to 192.168.10.0/24 is incorrectly using the backup path even though the primary path is operational. Analyze the routing table and configuration, then fix the issue so that the primary path is preferred when available.

Network Topology
G0/0192.0.2.1/30G0/0192.0.2.2/30linkG0/1198.51.100.1/30G0/0198.51.100.2/30linkR1R2R3

Hints

  • Compare the Administrative Distance values in the routing table for the two paths.
  • The default AD for a static route is 1; a floating static uses a higher AD.
  • You need to swap the AD values between the primary and backup routes.
A.Remove the static route to 192.168.10.0/24 via 198.51.100.2 and add a floating static route via 198.51.100.2 with AD 200. Ensure the primary route via 192.0.2.2 uses default AD 1.
B.Change the AD of the static route via 192.0.2.2 to 200 and the AD of the route via 198.51.100.2 to 1.
C.Add a static route to 192.168.10.0/24 via 192.0.2.2 with AD 1 and remove the existing route via 198.51.100.2.
D.Configure a policy-based route to prefer the next-hop 192.0.2.2 for traffic to 192.168.10.0/24.
AnswerA
solution
! R1
no ip route 192.168.10.0 255.255.255.0 198.51.100.2
no ip route 192.168.10.0 255.255.255.0 192.0.2.2 200
ip route 192.168.10.0 255.255.255.0 192.0.2.2
ip route 192.168.10.0 255.255.255.0 198.51.100.2 200

Why this answer

The routing table shows a static route to 192.168.10.0/24 via 198.51.100.2 with Administrative Distance (AD) 1, which is the default for static routes. The intended primary path via 192.0.2.2 was configured with AD 200 (floating static), but because the default AD (1) is lower than 200, the backup route is preferred. The fix is to reconfigure the primary path with the default AD (1) and the backup path with a higher AD (e.g., 200).

This ensures the primary path is used when available and the backup takes over only if the primary fails.

Exam trap

The trap is confusing which route is primary and which is backup. The route with lower AD is preferred, so the backup must have a higher AD. Candidates often misconfigure the AD values, setting the primary with a higher AD.

Why the other options are wrong

B

Swapping the ADs would keep the backup route preferred, failing to make the primary path active when available.

Why candidates pick the wrong answer

B

Candidates may think both ADs need adjustment, but the primary already has a lower AD (1) in the routing table; the issue is the backup's AD is too low.

C

Candidates might think removing the incorrect route solves the problem, but it ignores the need for a backup path.

D

Candidates may recall PBR as a way to influence path selection, but it's overkill and not the intended fix for floating static routes.

1094
MCQhard

A switch port connected to a workstation is configured with sticky MAC learning and a maximum secure MAC count of 1. What is the main operational benefit of sticky learning in this case?

A.It dynamically learns a secure MAC address and can preserve it if the configuration is saved.
B.It disables the maximum secure MAC limit on the interface.
C.It automatically saves the running configuration to the startup configuration after learning the MAC address.
D.It prevents the port from ever generating a security violation.
AnswerA

Sticky port-security dynamically learns the MAC address of the connected workstation and converts it into a secure MAC address entry in the running configuration. If the configuration is saved to startup-config, the learned address persists across reboots, preventing the need to relearn it. This behavior is characteristic of sticky learning, which combines dynamic learning with static persistence.

Why this answer

Sticky learning gives the convenience of dynamic discovery while still treating the learned address as a secure port-security entry. In practical terms, the switch can observe the first legitimate MAC address on the port and record it as a secure address without the administrator having to type that address manually. If the running configuration is later saved, that sticky entry can persist after a reload.

This is useful because it balances ease of deployment with access control. The maximum secure MAC count still matters, and port security is still active. Sticky learning does not replace port security; it works within it.

Exam trap

Be careful not to confuse sticky learning with allowing multiple MAC addresses or automatic removal of unauthorized addresses.

Why the other options are wrong

B

Option B is incorrect because sticky MAC learning does not disable the maximum secure MAC limit; it simply allows the switch to learn and retain the MAC address within that limit. The maximum secure MAC count remains enforced regardless of sticky learning.

C

Sticky learning does not automatically save the running configuration; it only adds the learned MAC to the running configuration, which must be explicitly saved to the startup configuration to persist across reboots.

D

This option is incorrect because sticky MAC learning does not prevent security violations; it only allows the learned MAC address to be retained across reboots if saved. A security violation can still occur if an unauthorized MAC address is detected on the port.

When would these options actually be correct?

B

In a different scenario where the question states that sticky MAC learning is configured without a maximum secure MAC count, option B could be correct if the context implies that the sticky learning process allows for unlimited MAC addresses to be learned, effectively disabling any limit.

C

In a different scenario where a switch port is configured to allow multiple MAC addresses and the question specifically states that the port can be converted to trunk mode after learning a MAC, then option C could be correct, indicating a feature of dynamic port configuration.

D

In a different scenario where a switch port is specifically configured to disable all security features, including sticky learning, the option could be correct if the question states that the port is designed to never generate security violations regardless of MAC address changes.

Why candidates pick the wrong answer

B

Candidates might choose this option due to a misunderstanding of how sticky MAC learning interacts with security features, mistakenly believing that sticky learning inherently removes restrictions on MAC address limits.

C

Candidates may find this option tempting because they might confuse sticky MAC learning with dynamic trunking protocols, leading them to believe that learning a MAC address could trigger a change in the port type.

D

Candidates may be drawn to this option because they associate sticky learning with enhanced security features, mistakenly believing that it inherently prevents any violations on the port.

1095
PBQhard

You are connected to R1. The network uses private IP 10.10.10.0/24 on the inside and must reach the Internet via the outside interface G0/1 with public IP 203.0.113.1/29. Configure PAT (NAT overload) so that inside hosts can access the Internet, and also configure a static NAT for the internal server 10.10.10.100 to public IP 203.0.113.2. The current configuration has errors: the inside and outside interfaces are swapped, the ACL is incorrectly defined, and the overload keyword is missing. Fix all issues.

Network Topology
G0/0 inside10.10.10.1/2410.10.10.0/24G0/1 outside203.0.113.1/29Inside hostsswitchR1Internet

Hints

  • Check which interface is marked inside and which is outside — the private IP network should be inside.
  • The ACL must match the actual inside subnet, not a different network.
  • PAT requires the 'overload' keyword on the ip nat inside source command.
A.On G0/0: ip nat inside; on G0/1: ip nat outside; ACL 10 permit 10.10.10.0 0.0.0.255; ip nat inside source list 10 interface GigabitEthernet0/1 overload
B.On G0/0: ip nat outside; on G0/1: ip nat inside; ACL 10 permit 10.10.10.0 0.0.0.255; ip nat inside source list 10 interface GigabitEthernet0/1 overload
C.On G0/0: ip nat inside; on G0/1: ip nat outside; ACL 10 permit 192.168.1.0 0.0.0.255; ip nat inside source list 10 interface GigabitEthernet0/1 overload
D.On G0/0: ip nat inside; on G0/1: ip nat outside; ACL 10 permit 10.10.10.0 0.0.0.255; ip nat inside source list 10 interface GigabitEthernet0/1
AnswerA
solution
! R1
interface GigabitEthernet0/0
no ip nat outside
ip nat inside
exit
interface GigabitEthernet0/1
no ip nat inside
ip nat outside
exit
no access-list 10
access-list 10 permit 10.10.10.0 0.0.0.255
ip nat inside source list 10 interface GigabitEthernet0/1 overload

Why this answer

The configuration had three faults: (1) The inside interface (G0/0 with private IP) was marked 'ip nat outside', and the outside interface (G0/1 with public IP) was marked 'ip nat inside' — these must be swapped. (2) The ACL 10 permitted 192.168.1.0/24 instead of the actual inside subnet 10.10.10.0/24. (3) The NAT command 'ip nat inside source list 10 interface GigabitEthernet0/1' was missing the 'overload' keyword, which is required for PAT. The static NAT was correctly defined. After fixing all three, inside hosts will be able to access the Internet using PAT.

Exam trap

Watch out for three common NAT configuration mistakes: swapping inside/outside interface designations, using an ACL that does not match the actual inside network, and forgetting the 'overload' keyword for PAT. Always verify the interface IP addresses and the ACL permit statement.

Why the other options are wrong

B

The specific factual error is that the 'ip nat inside' and 'ip nat outside' commands are applied to the wrong interfaces. The inside interface must be the one facing the internal network, and the outside interface must be the one facing the external network.

C

The specific factual error is that the ACL does not match the correct inside network. The ACL in the NAT configuration must permit the exact private IP range used on the inside network.

D

The specific factual error is the omission of the 'overload' keyword. PAT (overload) is required to allow multiple inside hosts to share a single public IP address by using different source ports.

Why candidates pick the wrong answer

B

Candidates might confuse which interface is inside and outside, especially if they think of 'inside' as the network being translated and 'outside' as the public network, but they may misapply the commands based on interface names rather than IP addresses.

C

Candidates might mistakenly use a common private IP range like 192.168.1.0/24 out of habit, or they might misread the question and think the inside network is 192.168.1.0/24 instead of 10.10.10.0/24.

D

Candidates might forget the 'overload' keyword because they think dynamic NAT is sufficient, or they may not realize that without 'overload', the router expects a pool of addresses and will not translate multiple hosts to a single interface IP.

1096
MCQhard

A network engineer is troubleshooting a link between two Cisco switches that are connected via a 1000BASE-LX SFP transceiver. Hosts on VLAN 10 on Switch A cannot ping the default gateway on Switch B. The interface on Switch A is up, but the engineer notices CRC errors incrementing. What should the engineer do to resolve this issue?

A.Replace the SFP with a 1000BASE-SX transceiver
B.Use a mode-conditioning patch cable between the SFP and the fiber patch panel
C.Configure the same VLAN on both switch interfaces
D.Replace the fiber cable with a single-mode fiber cable
AnswerB

A mode-conditioning patch cable corrects the mismatch when using a single-mode transceiver over multimode fiber, preventing signal dispersion.

Why this answer

The 1000BASE-LX SFP transceiver operates at 1310 nm over single-mode fiber (SMF). When connected to multimode fiber (MMF), the larger core diameter causes excessive modal dispersion, leading to CRC errors. A mode-conditioning patch cable (mode-conditioning patch cord) launches the laser off-center into the MMF core, reducing differential mode delay and restoring proper signal integrity.

This is a known Cisco best practice for LX transceivers on MMF links.

Exam trap

Cisco often tests the misconception that CRC errors always indicate a bad cable or transceiver, when in fact the root cause can be a mode mismatch between LX optics and multimode fiber that is fixed with a mode-conditioning patch cable rather than replacing the fiber or transceiver.

Why the other options are wrong

A

Using SX would not fix the issue because the fiber is multimode and LX is designed for longer distances; the problem is the cable type mismatch, not the transceiver type.

C

The interface is up/up, so VLAN mismatch is not the issue.

D

Although replacing with single-mode fiber would work, the exhibit does not show CRC errors, so the problem is more likely a mode-conditioning issue.

1097
Multi-Selectmedium

Which TWO statements accurately describe wireless LAN fundamentals for CCNA 200-301 v2.0? (Choose two.)

Select 2 answers
A.802.11ax uses MU‑MIMO only for downlink transmissions.
B.802.11ac operates only in the 5 GHz frequency band.
C.Overlapping channels in the 2.4 GHz band are used to maximize non-overlapping channel availability.
D.WPA3 uses Simultaneous Authentication of Equals (SAE) to provide stronger password-based authentication.
E.A wireless LAN controller (WLC) is typically managed via its console port for day-to-day operations.
AnswersB, D

802.11ac (Wi-Fi 5) is strictly a 5 GHz standard; it does not support 2.4 GHz at all. Because of this, dual-band access points must fall back to 802.11n for 2.4 GHz clients. This design allows 802.11ac to use wider channels (80/160 MHz) and dense modulation (256-QAM) without the congestion and interference common in the 2.4 GHz band.

Why this answer

802.11ac (Wi‑Fi 5) operates exclusively in the 5 GHz band, leveraging wider channels (up to 160 MHz) and reduced interference. Option D is correct: WPA3 introduces Simultaneous Authentication of Equals (SAE) for robust password‑based authentication, replacing the weaker WPA2 four‑way handshake. Option A is wrong: 802.11ax (Wi‑Fi 6) supports MU‑MIMO for both uplink and downlink, not only downlink.

Option C is wrong: Overlapping channels in the 2.4 GHz band reduce throughput and are not used to maximize availability; instead, non‑overlapping channels (1, 6, 11) are recommended. Option E is wrong: A WLC is typically managed via a web GUI, SSH, or SNMP, not via its console port for routine operations; console access is used for initial setup or troubleshooting.

Exam trap

Cisco often tests the misconception that 802.11ac operates in both 2.4 GHz and 5 GHz bands, or that MU-MIMO in 802.11ax is exclusive to uplink, when in fact 802.11ax supports MU-MIMO bidirectionally and 802.11ac is strictly 5 GHz.

Why the other options are wrong

A

MU-MIMO is a feature of 802.11ac and 802.11ax, but 802.11ax primarily relies on OFDMA for multi-user support.

C

Overlapping channels reduce performance due to co-channel interference, not maximize non-overlapping channels.

E

Console port is used for initial configuration or troubleshooting, not for routine management.

1098
Multi-Selectmedium

Which two statements accurately describe why BGP is often relevant at an Internet or multi-provider edge?

Select 2 answers
A.It is associated with routing between autonomous systems.
B.It is used for routing between organizations and providers at the network edge.
C.It is mainly used to replace STP on access switches.
D.It is required before DHCP relay can function.
E.It is the protocol used by CAPWAP for AP discovery.
AnswersA, B

BGP (Border Gateway Protocol) is a path-vector protocol designed specifically to exchange network reachability information between autonomous systems (ASes). Its primary role is inter-domain routing, enabling ISPs and large enterprises to make routing decisions based on policies and paths, not just metrics. This distinguishes it from interior gateway protocols (IGPs) like OSPF or EIGRP, which operate within a single AS.

Why this answer

BGP is often relevant at the edge because it is associated with route exchange between autonomous systems and large external routing domains. In practical terms, this makes it a natural protocol to discuss where organizations connect to providers or exchange external reachability. It is not just another interior campus protocol.

The question is about conceptual fit, not deep BGP attribute tuning.

Exam trap

A frequent exam trap is mistaking BGP for an internal protocol or confusing it with unrelated network functions. For example, some might incorrectly believe BGP replaces STP on access switches or is necessary for DHCP relay to work. These are incorrect because BGP operates between autonomous systems for external routing, while STP manages Layer 2 loops and DHCP relay forwards broadcast requests.

Misunderstanding BGP’s scope leads to selecting wrong answers that describe internal or unrelated protocols, so it’s important to focus on BGP’s role in inter-AS routing and external route exchange at the Internet or multi-provider edge.

Why the other options are wrong

C

Option C is incorrect because BGP does not replace Spanning Tree Protocol (STP). STP is a Layer 2 protocol used to prevent loops in Ethernet networks, whereas BGP is a Layer 3 routing protocol used for inter-AS routing.

D

Option D is incorrect since DHCP relay functions independently of BGP. DHCP relay forwards DHCP requests across subnet boundaries and does not rely on BGP routing information or sessions to operate.

E

Option E is incorrect because CAPWAP is a wireless control protocol used for managing access points and is unrelated to BGP or routing protocols used at the Internet edge.

When would these options actually be correct?

C

In a question that asks about protocols used for Layer 2 network redundancy or loop prevention in local area networks, stating that BGP replaces STP could be correct if the context involves discussing the evolution of network protocols in specific scenarios, such as in a theoretical or experimental setup.

D

If the question were about the prerequisites for enabling DHCP services in a network that also involves routing protocols, a statement about BGP being required for DHCP relay could be correct if it specified a scenario where BGP influences routing decisions that affect DHCP traffic flow.

E

If the exam question asked about protocols used specifically for wireless access point management or discovery, then option E would be correct, as CAPWAP is indeed the protocol used for AP discovery in wireless networks.

Why candidates pick the wrong answer

C

Candidates may find this option tempting due to a misunderstanding of BGP's role in network architecture, confusing it with other protocols that manage network topology and redundancy, such as STP.

D

Candidates might choose this option due to a misunderstanding of network protocols, confusing BGP's role in routing with the operational requirements of DHCP, leading them to incorrectly associate the two concepts.

E

Candidates may find option E tempting due to the familiarity of CAPWAP in discussions about network protocols and may mistakenly associate it with BGP due to their shared relevance in network management.

1099
Multi-Selectmedium

Which TWO commands are required to configure a switch port to support both a desktop PC and a VoIP phone using voice VLAN?

Select 2 answers
A.switchport mode access
B.switchport mode trunk
C.switchport voice vlan <vlan-id>
D.switchport access vlan <vlan-id>
E.switchport port-security maximum 1
AnswersA, C

This command configures the port as an access port, which is required for connecting a desktop PC and a VoIP phone (the phone typically uses the access port for data and a separate voice VLAN).

Why this answer

'switchport mode access,' is required because voice VLAN only operates on an access port. Option C, 'switchport voice vlan <vlan-id>,' is the command that actually assigns the voice VLAN ID. Option B is incorrect because a trunk port would not properly separate voice and data traffic as the phone expects an access port.

Option D is a common data VLAN configuration but is not strictly necessary for voice VLAN operation; the access VLAN can be left as the default or configured separately. Option E is wrong because 'switchport port-security maximum 1' would allow only a single MAC address, while the port must support two devices (the phone and the PC), second MAC being the phone's internal switch.

Exam trap

Candidates often mistakenly include 'switchport access vlan' as one of the two required commands, but the question specifically asks for voice VLAN configuration, not the full port setup.

Why the other options are wrong

B

Trunk mode is incompatible because the phone expects an access port, and the voice VLAN is tagged internally by the phone, not by switch port trunking.

D

Configuring an access VLAN is not mandatory for voice VLAN; the question targets only the commands unique to enabling the voice feature.

E

Limiting the port to one MAC address would block the PC's MAC, breaking dual-device support provided by the phone's internal switch.

1100
MCQhard

A router has routes to 172.20.0.0/16, 172.20.10.0/24, and 172.20.10.64/26. Which route is used for traffic to 172.20.10.70?

A.172.20.0.0/16
B.172.20.10.0/24
C.172.20.10.64/26
D.The default route
AnswerC

This is correct because .70 falls within the 172.20.10.64/26 range.

Why this answer

The /26 route is used because it is the most specific matching prefix. In practical terms, 172.20.10.70 falls inside the 172.20.10.64/26 range, so that route narrows the destination more precisely than the broader /24 and /16 routes. Longest-prefix match therefore selects the /26 entry.

This question is designed to reinforce that specificity comes first in route lookup. Broader routes remain useful, but they lose when a more exact route matches.

Exam trap

A common exam trap is to select a less specific route such as 172.20.0.0/16 or 172.20.10.0/24 because they appear to cover the destination IP 172.20.10.70. Candidates may overlook that the router always prefers the most specific route, which in this case is the /26 subnet. Choosing a broader subnet ignores the longest prefix match principle and leads to incorrect routing decisions.

This trap tests your understanding of how subnet masks influence route selection and the importance of prefix length in Cisco routing tables.

Why the other options are wrong

A

172.20.0.0/16 is the least specific route covering a large address range. Although it includes 172.20.10.70, it is overridden by more specific subnets like /24 and /26, so it is not used for this destination.

B

172.20.10.0/24 is more specific than /16 but less specific than /26. Since 172.20.10.70 falls within the /26 subnet, the router prefers the /26 route over this /24 route.

D

The default route is only used when no other routes match the destination IP. Since multiple specific routes match 172.20.10.70, the default route is not selected.

When would these options actually be correct?

A

In a scenario where the question asks which route would be used for traffic to any IP address within the 172.20.0.0/16 network, such as 172.20.5.10, then the option 172.20.0.0/16 would be correct as it encompasses all addresses in that range.

B

In a different question, if the router only had routes to 172.20.0.0/16 and 172.20.10.0/24 without the more specific 172.20.10.64/26, then traffic to 172.20.10.70 would be routed using 172.20.10.0/24 as the most specific match available.

D

In a different scenario where the router has no specific routes for the 172.20.10.70 destination and only a default route configured (e.g., 0.0.0.0/0), the default route would be used to forward traffic to that IP address.

Why candidates pick the wrong answer

A

Candidates may choose this option because they recognize 172.20.0.0/16 as a valid route and mistakenly assume that broader routes are always preferred, overlooking the importance of specific subnet matches.

B

Candidates may choose this option because they recognize that 172.20.10.0/24 includes the target address, leading to the assumption that it would be the best match without considering the specificity of the other routes.

D

Candidates might choose this option due to a misunderstanding of routing principles, thinking that the default route serves as a catch-all for any unmatched traffic, especially in complex routing environments.

1101
Drag & Dropmedium

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

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

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

Why this order

The TCP three-way handshake starts with the client sending a SYN, followed by the server responding with SYN-ACK, and finally the client sending an ACK to establish the connection.

Exam trap

A common trap is confusing the order of the handshake or thinking the server initiates the connection. Remember: the client always sends the first SYN, and the server's response is a SYN-ACK (not a separate SYN and ACK).

Why candidates pick the wrong answer

D

Candidates might think the server sends an ACK separately, but in the three-way handshake, the server's acknowledgment is piggybacked with its own SYN.

1102
PBQhard

You are connected to R1. R1 has OSPF configured on GigabitEthernet0/0 with network 10.0.0.0 0.0.0.3 area 1, ip ospf hello-interval 10, and ip ospf dead-interval 40. R2 has OSPF configured on its GigabitEthernet0/0 with network 10.0.0.0 0.0.0.3 area 0, ip ospf hello-interval 5, and ip ospf dead-interval 20. Correct these mismatches so that R1 and R2 become OSPF neighbors.

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

Hints

  • Check the OSPF area configuration on both routers.
  • Use 'show ip ospf interface' to compare hello and dead timers.
  • The timers must match exactly on both sides of the link.
A.On R1, change the network statement to area 0 and set ip ospf hello-interval 5 and ip ospf dead-interval 20 under the interface.
B.On R2, change the network statement to area 1 and set ip ospf hello-interval 10 and ip ospf dead-interval 40 under the interface.
C.On R1, change the network statement to area 0 and set ip ospf hello-interval 10 and ip ospf dead-interval 40 under the interface.
D.On R2, change the network statement to area 0 and set ip ospf hello-interval 10 and ip ospf dead-interval 40 under the interface.
AnswerA
solution
! R1
configure terminal
router ospf 1
no network 10.0.0.0 0.0.0.3 area 1
network 10.0.0.0 0.0.0.3 area 0
interface gigabitethernet 0/0
ip ospf hello-interval 5
ip ospf dead-interval 20
end

Why this answer

The OSPF adjacency fails due to two mismatches. First, the area is mismatched: R1 uses area 1, R2 uses area 0 (both must be the same area, typically area 0). Second, the hello and dead timers are mismatched: R1 uses Hello 10/Dead 40, R2 uses Hello 5/Dead 20.

To fix, on R1 change the network statement to area 0 and adjust timers to match R2 (or vice versa). The solution below changes R1's area to 0 and sets hello to 5 and dead to 20 to match R2.

Exam trap

The exam trap is that candidates may focus on only one mismatch (area or timers) and forget that both must match. Additionally, they might assume that the router they are connected to should not be changed, or that default timers are always correct. Always verify all OSPF parameters that must match: area ID, hello/dead intervals, network type, and authentication.

Why the other options are wrong

B

The specific factual error is that the question implies you are connected to R1, so configuring R1 is the expected action. Additionally, using area 1 instead of area 0 is not recommended for a single-area design.

C

The specific factual error is that the timers are not changed to match R2; they remain at the original values.

D

The specific factual error is that R2's area is already 0, so changing it to area 0 is redundant. Changing R2's timers to match R1's original timers would still leave a mismatch because R1's timers are not changed.

Why candidates pick the wrong answer

B

Candidates might think that changing either router is acceptable, but the question context ("You are connected to R1") suggests R1 should be modified. Also, some may not realize that area 0 is the preferred area for single-area OSPF.

C

Candidates might think that only the area needs to be corrected, overlooking the timer mismatch. They may also assume that the default timers (hello 10/dead 40) are standard and should be used.

D

Candidates might think that both routers need to be modified, or that changing the router you are not connected to is acceptable. They may also incorrectly assume that the default timers (hello 10/dead 40) are the correct ones to use.

1103
Multi-Selectmedium

Which TWO statements about fiber optic cable types and SFP transceivers are correct?

Select 2 answers
A.Single-mode fiber uses a larger core (typically 62.5/125 µm) and supports longer distances than multimode fiber.
B.Multimode fiber is commonly used in campus and data center environments for distances up to several hundred meters.
C.SFP+ transceivers support data rates up to 1 Gbps and are backward compatible with standard SFP modules.
D.Single-mode fiber typically uses laser-based transceivers and can support distances exceeding 10 km.
E.Fiber optic cables must be run with EMI shielding when deployed in environments with high electromagnetic interference.
AnswersB, D

Multimode fiber is indeed the predominant medium for campus and data center links because its larger core and high numerical aperture permit the use of low-cost VCSELs or LEDs, and it provides sufficient bandwidth for reaches of 300–550 m at 10 Gbps using OM3/OM4 grades. Beyond these distances, modal dispersion becomes the limiting factor, making single-mode fiber more appropriate for longer backbone or WAN links.

Why this answer

Multimode fiber (MMF) has a larger core (typically 50/125 µm or 62.5/125 µm) and is used for short-reach, cost-effective connections up to a few hundred meters, making option B correct. Single-mode fiber (SMF) uses a much smaller core (~9 µm) and laser-based optics to achieve distances of 10 km or more, so option D is correct. Option A is wrong because it reverses the core size characteristic: SMF has a smaller core, and the given dimensions (62.5/125 µm) refer to multimode.

Option C is wrong because SFP+ is a 10 Gbps form factor and is not inherently backward compatible with 1 Gbps SFP modules unless the switch port explicitly supports dual-rate operation. Option E is incorrect because fiber optic cables are inherently immune to electromagnetic interference (EMI) and therefore never require EMI shielding in any environment; the false statement claims they need shielding.

Exam trap

Cisco often tests the misconception that SFP+ is backward compatible with SFP at the same speed, when in fact SFP+ is a 10 Gbps standard and requires specific port support or auto-negotiation to operate with 1 Gbps SFP modules.

Why the other options are wrong

A

Single-mode fiber uses a smaller core (~9 µm); the larger core dimensions (62.5/125 µm) belong to multimode fiber.

C

SFP+ transceivers support 10 Gbps speeds, not 1 Gbps, and are not universally backward compatible with standard SFP modules.

E

Fiber optic cables are immune to EMI and do not require any shielding; the claim that they need EMI shielding is false.

1104
MCQhard

A host is configured as 192.168.100.65/26. What is the valid host range for its subnet?

A.192.168.100.65 to 192.168.100.126
B.192.168.100.64 to 192.168.100.127
C.192.168.100.1 to 192.168.100.62
D.192.168.100.66 to 192.168.100.127
AnswerA

This is correct because the subnet is 192.168.100.64/26, leaving .65 through .126 as usable hosts.

Why this answer

A /26 creates blocks of 64 addresses. In plain language, the subnets in the last octet are 0–63, 64–127, 128–191, and 192–255. Because the host address is 192.168.100.65, it belongs to the 64–127 block. In that block, 192.168.100.64 is the network address and 192.168.100.127 is the broadcast address. That leaves 192.168.100.65 through 192.168.100.126 as the valid host range.

This checks whether you can identify both the subnet boundary and the usable range.

Exam trap

Remember to exclude the network and broadcast addresses when determining the valid host range.

Why the other options are wrong

B

This option is incorrect because it includes the network address (192.168.100.64) and the broadcast address (192.168.100.127) for the subnet, which are not valid host addresses. The valid host range for a /26 subnet starts from 192.168.100.65 to 192.168.100.126.

C

Option C is incorrect because it suggests a host range that does not align with the subnet mask /26, which allows for a range of 192.168.100.64 to 192.168.100.127, but excludes the actual valid hosts for the specified IP address.

D

Option D is incorrect because it suggests a host range that starts from 192.168.100.66, which is outside the valid range for the subnet 192.168.100.64/26. The correct range should include all hosts from 192.168.100.65 to 192.168.100.126.

When would these options actually be correct?

B

If the question asked for the entire range of IP addresses in the subnet, including the network and broadcast addresses, then this option would be correct. For example, a question could ask for the range of addresses in the 192.168.100.64/26 subnet, which would include 192.168.100.64 to 192.168.100.127.

C

If the question were to ask for the valid host range of a different subnet, such as 192.168.100.0/26, then option C would be correct, as it would encompass the valid host addresses from 192.168.100.1 to 192.168.100.62 within that subnet.

D

If the question specified a different subnet, such as 192.168.100.64/25, then option D would be correct, as it would represent the valid host range from 192.168.100.66 to 192.168.100.127 for that subnet.

Why candidates pick the wrong answer

B

Candidates may choose this option because it closely resembles the correct range and includes the starting address of the subnet, leading to confusion about the inclusion of network and broadcast addresses.

C

Candidates may choose this option due to confusion between the subnet mask and the valid host range, leading them to mistakenly believe that the lower range of IPs is valid for a different subnet configuration.

D

Candidates may choose this option due to confusion between the starting address of the subnet and the usable host addresses, mistakenly believing that addresses immediately following the subnet address are valid.

1105
Multi-Selecthard

Which two statements accurately describe UDP compared with TCP?

Select 2 answers
A.UDP is connectionless.
B.UDP always guarantees delivery and sequencing.
C.UDP has lower overhead because it uses a simpler header and no session establishment.
D.UDP requires a three-way handshake before application data can be sent.
E.UDP cannot be used by DNS.
AnswersA, C

UDP is connectionless, meaning it treats each datagram independently and does not establish a persistent logical link before sending data. There is no initial handshake, and the sender does not maintain state about the receiver. This allows immediate transmission of application data without negotiation, which is essential for low-latency protocols like streaming or real-time communications.

Why this answer

UDP is designed for simplicity and speed rather than built-in reliability. In plain terms, it sends data without creating a formal conversation first. That is why it is called connectionless. Because it does not perform the same reliability features as TCP, its header is smaller and the protocol adds less overhead. This makes UDP a good fit for applications that care more about speed or low delay than guaranteed delivery at the transport layer.

UDP does not perform a three-way handshake, and it does not guarantee delivery. It is also used by many real services, including DNS in common query scenarios.

Exam trap

Be careful not to confuse the connection-oriented features of TCP with UDP, which is connectionless and does not guarantee delivery.

Why the other options are wrong

B

This option is wrong because UDP does not guarantee delivery or sequencing; it is designed for speed and efficiency, sacrificing reliability. TCP, on the other hand, ensures that data is delivered in order and without loss.

D

This option is wrong because UDP is a connectionless protocol that does not require a three-way handshake for data transmission, unlike TCP, which establishes a connection before sending data.

E

This option is wrong because UDP is widely used by DNS for its quick query-response nature, allowing for faster resolution of domain names without the overhead of connection establishment.

When would these options actually be correct?

B

In a question focused on the characteristics of a reliable transport protocol, such as 'Which protocol guarantees delivery and sequencing of packets?' the correct answer would be B, as it would accurately describe TCP's features.

D

If the exam question asked about a protocol that does require a connection establishment, such as TCP, or if it specifically inquired about the differences in connection-oriented versus connectionless protocols, then this option would be correct.

E

If the exam question stated that UDP cannot be used for certain protocols or applications, such as those requiring guaranteed delivery, then this option would be correct. For example, a question could ask which protocols are incompatible with UDP in scenarios requiring reliable communication.

Why candidates pick the wrong answer

B

Candidates may choose this option due to a misunderstanding of UDP's functionality, conflating it with TCP's reliability features, which can lead to confusion about the fundamental differences between the two protocols.

D

Candidates may choose this option due to confusion between the connection-oriented nature of TCP and the connectionless nature of UDP, leading them to mistakenly believe that all protocols require a handshake.

E

Candidates may choose this option due to a misunderstanding of UDP's capabilities, mistakenly believing that all network services require guaranteed delivery, thus overlooking DNS's specific use of UDP.

1106
MCQhard

A network administrator is configuring a Layer 2 EtherChannel between two switches. Switch A uses 'channel-group 1 mode active', and Switch B uses 'channel-group 1 mode desirable'. All member interfaces are trunk ports with identical allowed VLANs. The EtherChannel fails to form. What is the most likely cause?

A.The switches are using different EtherChannel negotiation protocols.
B.A Layer 2 EtherChannel cannot carry trunk links.
C.The channel-group number must be different on each switch.
D.The member interfaces must be in access mode before the bundle can form.
AnswerA

Switch A is configured for Link Aggregation Control Protocol (LACP) using `mode active`, whereas Switch B is configured for Port Aggregation Protocol (PAgP) using `mode desirable`. LACP and PAgP are distinct EtherChannel negotiation protocols. For an EtherChannel to establish using a negotiation protocol, both connected switches must utilise the identical protocol, as they are incompatible with each other. This protocol mismatch directly causes the EtherChannel to fail.

Why this answer

The two switches are using different negotiation protocols: LACP (active) on one side and PAgP (desirable) on the other. EtherChannel requires both sides to use the same protocol, so this protocol mismatch prevents the bundle from forming. The other settings—trunking, VLAN configuration, and channel-group number—are correctly configured and do not cause the failure.

Exam trap

Ensure both sides of an EtherChannel use the same negotiation protocol; mismatches are a common setup error.

Why the other options are wrong

B

This option is incorrect because a Layer 2 EtherChannel can indeed carry trunk links, allowing multiple VLANs to be transmitted over the same logical link. The issue with the EtherChannel not forming is more likely related to mismatched negotiation protocols or other configuration errors.

C

This option is wrong because the channel-group number must be the same on both switches for an EtherChannel to form. Different numbers would prevent the aggregation of the links.

D

This option is wrong because a Layer 2 EtherChannel can indeed carry trunk links, allowing multiple VLANs to be transmitted over the same link. Therefore, the inability to form the EtherChannel is not due to the mode of the member interfaces.

When would these options actually be correct?

B

In a different scenario, if the question stated that the EtherChannel was configured to carry only access links and explicitly mentioned that trunking was not allowed, this option could be correct. For example, if the question asked about the limitations of EtherChannel in a specific network design that prohibits trunking, then this would apply.

C

In a different question setup where the focus is on configuring multiple EtherChannels between the same two switches, and the exam specifies that each EtherChannel must use a unique channel-group number for different link configurations, this option would be correct.

D

In a different scenario where the question specifies that the EtherChannel is intended to carry only access links and not trunk links, this option could be correct. For instance, if the question states that the configuration is strictly for access ports and the interfaces are mistakenly set to trunk mode, this option would then apply.

Why candidates pick the wrong answer

B

Candidates may find this option tempting because they might recall that EtherChannels have specific configurations and limitations, leading them to mistakenly believe that trunk links are not supported in any context.

C

Candidates may choose this option due to a misunderstanding of EtherChannel configurations, believing that unique identifiers are necessary for each switch's channel-group, rather than recognizing the requirement for consistency.

D

Candidates may choose this option due to a common misconception that EtherChannels are limited to access mode only, leading them to believe that any trunk configuration would inherently cause issues with EtherChannel formation.

1107
Multi-Selectmedium

Which four of the following are true statements regarding the operation of DHCP snooping on a Cisco switch? (Choose all that apply. There are four correct answers.)

Select 4 answers
.DHCP snooping distinguishes trusted and untrusted ports.
.By default, all ports are considered untrusted for DHCP snooping.
.DHCP snooping can rate-limit DHCP messages to prevent denial-of-service attacks.
.DHCP snooping builds and maintains a DHCP snooping binding database (also called a binding table).
.DHCP snooping prevents rogue DHCP servers by allowing only authorized servers on any port.
.DHCP snooping requires an external DHCP server to be configured on the switch.

Why this answer

The four correct statements are true because DHCP snooping is a security feature that operates by classifying switch ports as trusted or untrusted. By default, all ports are untrusted, meaning they cannot send DHCP server messages (OFFER, ACK, NAK) unless explicitly configured as trusted. Rate-limiting DHCP messages on untrusted ports mitigates DHCP starvation attacks, and the binding database (MAC-to-IP mapping) is built from DHCP ACK messages to prevent IP spoofing.

The incorrect statement "DHCP snooping requires an external DHCP server to be configured on the switch" is false because DHCP snooping itself does not require the switch to act as a DHCP server; it simply relies on DHCP messages from a legitimate server reachable through a trusted port.

Exam trap

Cisco often tests the misconception that DHCP snooping can be configured to allow authorized servers on any port, but the feature strictly enforces that only trusted ports can source DHCP server messages, regardless of the server's IP or MAC address.

1108
MCQmedium

What problem do first-hop redundancy protocols such as HSRP solve?

A.They prevent duplicate MAC addresses on a LAN
B.They provide a backup default gateway for end hosts
C.They replace spanning tree on switched networks
D.They encrypt traffic between users and the default gateway
AnswerB

FHRPs such as HSRP create a virtual IP and virtual MAC address that a group of routers share. One router is elected active and forwards traffic, while the standby router takes over seamlessly if the active fails. End hosts are configured with the virtual IP as their default gateway, so they always have a reachable next hop without needing to change their configuration.

Why this answer

First-hop redundancy protocols allow hosts to use a virtual default gateway that can remain available even if one physical router fails.

Exam trap

A frequent exam trap is mistaking HSRP for a protocol that prevents duplicate MAC addresses or replaces Spanning Tree Protocol (STP). While STP prevents Layer 2 loops by blocking redundant paths, HSRP operates at Layer 3 to provide gateway redundancy. Another trap is assuming HSRP encrypts traffic between hosts and routers, which it does not.

Candidates might also confuse HSRP with routing protocols like OSPF or EIGRP, but HSRP only manages default gateway availability, not routing decisions. Understanding these distinctions is crucial to avoid selecting incorrect options that describe unrelated network functions.

Why the other options are wrong

A

Option A incorrectly states that HSRP prevents duplicate MAC addresses on a LAN. Duplicate MAC address prevention is a function of Layer 2 protocols and network design, not HSRP, which operates at Layer 3 to provide gateway redundancy.

C

Option C incorrectly claims that HSRP replaces Spanning Tree Protocol (STP). STP prevents Layer 2 switching loops, while HSRP provides Layer 3 gateway redundancy; they serve distinct purposes and coexist in networks.

D

Option D incorrectly suggests that HSRP encrypts traffic between users and the default gateway. HSRP does not provide encryption; it only manages gateway availability and failover.

When would these options actually be correct?

A

In a different exam scenario, a question might ask about methods to manage MAC address conflicts in a LAN environment. In that context, an answer discussing how to prevent duplicate MAC addresses through network design or protocols would be correct.

C

If the exam question asked about the role of protocols that manage network topology and prevent loops in switched environments, then this option could be correct. For instance, a question might ask what protocols are used to ensure efficient data flow without loops, where spanning tree is the focus.

D

In a different question asking about security measures for protecting data in transit between users and gateways, an option discussing encryption protocols like IPsec or SSL/TLS would be correct. If the question specifically asked about securing communication with the default gateway, this option could be relevant.

Why candidates pick the wrong answer

A

Candidates may find this option tempting due to a general understanding of network protocols and their roles in managing network traffic, leading them to mistakenly associate redundancy protocols with MAC address management.

C

Candidates may find this option tempting due to the association of HSRP with network redundancy and stability, leading them to mistakenly believe it relates to loop prevention, which is a common concern in network design.

D

Candidates may choose this option due to a common misconception that redundancy protocols also include security features, leading them to associate first-hop redundancy with overall network protection.

1109
MCQmedium

A router has routes for 10.10.0.0/16, 10.10.20.0/24, and a default route. Which route is used for destination 10.10.20.55?

A.The 10.10.0.0/16 route
B.The default route
C.The 10.10.20.0/24 route
D.The router load-balances across all matching routes
AnswerC

The 10.10.20.0/24 route is selected because the router's forwarding decision uses the longest prefix match algorithm. For a destination of 10.10.20.55, this /24 route is the most specific match, covering the exact subnet that contains the address. Even though the default route and the /16 route also match, they have shorter prefixes and are therefore less specific, making the /24 the only candidate used.

Why this answer

The destination matches multiple routes, but the /24 is the most specific match and wins by longest prefix match.

Exam trap

Remember that routers use the longest prefix match rule, not the most general or default route, when multiple routes are available.

Why the other options are wrong

A

The 10.10.0.0/16 route is broader and encompasses the 10.10.20.0/24 subnet, but it is not the most specific match for the destination 10.10.20.55, which falls under the more specific 10.10.20.0/24 route.

B

The default route is used only when no more specific routes match the destination address. Since 10.10.20.55 falls within the 10.10.20.0/24 subnet, the default route is not applicable in this case.

D

This option is wrong because routers do not load-balance across routes unless configured to do so with specific routing protocols or settings. In this case, the most specific route, 10.10.20.0/24, is the only applicable choice for the destination 10.10.20.55.

When would these options actually be correct?

A

In a different scenario where the 10.10.20.0/24 route is removed from the routing table, the 10.10.0.0/16 route would then be the only available route for the destination 10.10.20.55, making it the correct answer.

B

If the question stated that the router only had a default route configured and no other specific routes for the 10.10.20.0/24 subnet, then the default route would be the only option available for reaching 10.10.20.55.

D

In a scenario where the router is configured with multiple equal-cost paths to the same destination, such as 10.10.20.0/24 and another route with the same prefix length, a question could ask which routes would be used for load balancing. In that case, the answer would be that the router load-balances across all matching routes.

Why candidates pick the wrong answer

A

Candidates may be tempted to choose this option because they recognize that the broader subnet covers the destination, leading them to mistakenly believe it is the best match.

B

Candidates may choose the default route due to a misunderstanding of routing priority, thinking that the default route serves as a catch-all for any unlisted addresses, without considering the specificity of the existing routes.

D

Candidates may choose this option due to a misunderstanding of routing behavior, believing that routers automatically distribute traffic across all available routes rather than selecting the most specific match.

1110
MCQhard

A router has a static route to 10.30.5.128/25, an OSPF route to 10.30.5.0/24, and a default route 0.0.0.0/0 in its routing table. Which route will the router use for destination 10.30.5.130?

A.The static route to 10.30.5.128/25
B.The OSPF route to 10.30.5.0/24
C.The default route
D.No route, because the destination is outside all prefixes shown.
AnswerA

The router will utilise the static route to 10.30.5.128/25 because it adheres to the longest prefix match principle. This rule dictates that when multiple routes match a destination IP address, the router selects the route with the longest subnet mask, representing the most specific network. For 10.30.5.130, the /25 mask is more specific than the OSPF route's /24 mask or the default route's /0 mask, ensuring it is prioritised for forwarding.

Why this answer

The router selects the route with the longest prefix match between the destination IP and the prefixes in the routing table. 10.30.5.130 matches both 10.30.5.0/24 (prefix length 24) and 10.30.5.128/25 (prefix length 25); the /25 is more specific and wins. Option D is wrong because 10.30.5.130 falls within the subnet range of 10.30.5.128/25 (hosts .129–.254), so a valid route does exist.

Exam trap

Always prioritize the longest prefix match over broader subnets or default routes.

Why the other options are wrong

B

The OSPF route to 10.30.5.0/24 is less specific than the /25 static route, so the router prefers the longest mask.

C

The default route (0.0.0.0/0) has the shortest prefix length and would be used only if no other route matches.

D

10.30.5.130 is inside the 10.30.5.128/25 subnet range, meaning a route exists for this destination.

When would these options actually be correct?

B

In a scenario where the question asks which route to use for any destination within the 10.30.5.0/24 subnet, and there are no more specific routes defined, the OSPF route to 10.30.5.0/24 would be the correct answer. This could occur in a question focused on routing protocols where no other routes are available.

C

If the question specified that the router had no specific routes configured for the destination 10.30.5.130 and only a default route was available, then the correct answer would be the default route. For example, a question could state, 'What route will be used if no specific routes exist for 10.30.5.130?'

D

In a different scenario where the routing table does not include any routes that cover the destination IP 10.30.5.130, and the only available routes are for different subnets, this option would be correct. For example, if the routing table only had a route for 10.30.6.0/24 and no other entries, then this option would apply.

Why candidates pick the wrong answer

B

Candidates may choose this option due to familiarity with OSPF as a dynamic routing protocol, leading them to assume it would be preferred over static routes, especially if they misinterpret the specificity of the destination address.

C

Candidates may choose this option because they might assume that a default route is always a fallback option, especially if they are not fully aware of the routing table's specifics and the importance of route specificity.

D

Candidates may choose this option due to a misunderstanding of how subnetting works, leading them to incorrectly assume that if a specific route is not explicitly listed, the destination must be unreachable. This reflects a common confusion between available routes and the actual reachability of an IP address.

1111
MCQeasy

Which wireless design objective is achieved by using nonoverlapping channels in adjacent cells?

A.It increases PoE budget for the access points
B.It reduces interference between nearby APs
C.It removes the need for authentication
D.It forces all clients to use 5 GHz only
AnswerB

Careful channel planning assigns non-overlapping channels (e.g., 1, 6, 11 in 2.4 GHz) to neighboring access points, preventing co-channel and adjacent-channel overlap. Because each AP transmits on a different frequency in a given area, packet collisions and retransmissions are minimized, which reduces interference and improves aggregate throughput.

Why this answer

Using nonoverlapping channels minimizes interference between adjacent APs, improving wireless performance in dense environments. Option A is wrong because nonoverlapping channels have no effect on PoE budget, which is determined by the switch and cable specifications. Option C is wrong because authentication mechanisms operate independently of channel assignment and are still required.

Option D is wrong because nonoverlapping channels are used in both the 2.4 GHz and 5 GHz bands, and they do not mandate client use of a specific frequency.

Exam trap

Avoid confusing interference reduction with bandwidth or range improvements.

Why the other options are wrong

A

This option is incorrect because using nonoverlapping channels does not impact the Power over Ethernet (PoE) budget for access points; PoE budget is determined by the power supply and the devices connected, not by channel selection.

C

This option is incorrect because using nonoverlapping channels does not eliminate the need for authentication in wireless networks; authentication is a separate security measure that ensures only authorized users can connect.

D

This option is wrong because using nonoverlapping channels does not force clients to operate exclusively on the 5 GHz band; it simply allows for better channel management to reduce interference. Clients can still connect on both 2.4 GHz and 5 GHz bands based on their capabilities and network configuration.

When would these options actually be correct?

A

In a scenario where the exam question asks about optimizing power delivery for access points in a network design, and it specifically mentions that increasing the PoE budget is a goal, then this option could be correct if it implies that channel selection indirectly allows for more efficient power management.

C

In a question focused on wireless security protocols, such as 'What is the primary benefit of implementing WPA3 in a wireless network?', this option could be correct if it discusses how certain protocols can simplify authentication processes, making it easier for clients to connect without manual intervention.

D

In a different exam scenario, if the question asked about the benefits of enforcing a policy that only allows 5 GHz connections in a dense environment, this option could be correct. For instance, if the question specified that all devices must operate on 5 GHz to avoid interference, then this answer would be applicable.

Why candidates pick the wrong answer

A

Candidates might find this option tempting because they may associate network design with power management, leading them to mistakenly believe that channel selection could influence the PoE budget.

C

Candidates might choose this option due to a misunderstanding of wireless network fundamentals, conflating channel management with security protocols, leading them to believe that reducing interference somehow relates to authentication requirements.

D

Candidates may find this option tempting because they might associate nonoverlapping channels with improved performance and assume that limiting clients to 5 GHz would inherently enhance network efficiency, reflecting a common misconception about wireless channel management.

1112
PBQhard

You are connected to SW1. The current configurations of interfaces GigabitEthernet0/1 and GigabitEthernet0/2 are as follows: Gi0/1: speed 100, duplex half, switchport access vlan 10 Gi0/2: speed 1000, duplex full, switchport access vlan 20 The port-channel interface 1 does not exist. Configure a LACP EtherChannel between SW1 and SW2 using these two interfaces, with port-channel 1 and mode active on both sides. Ensure the channel forms by resolving any speed/duplex or VLAN mismatches. After configuration, verify with 'show etherchannel summary'.

Network Topology
Gi0/1Gi0/1LACPSW1SW2

Hints

  • Check speed and duplex consistency between member interfaces.
  • All member interfaces must be in the same VLAN.
  • The port-channel interface VLAN must match the physical interfaces.
A.The EtherChannel will not form because the physical interfaces have mismatched speed/duplex and VLAN assignments. You must configure both interfaces with the same speed (1000), duplex (full), and access VLAN (10), then apply channel-group 1 mode active on each.
B.The EtherChannel will form successfully because LACP active mode negotiates the channel regardless of speed/duplex or VLAN differences.
C.The EtherChannel will not form because the port-channel interface must be configured with the same VLAN as the physical interfaces, but the physical interfaces can have different speeds.
D.The EtherChannel will form successfully because the port-channel interface inherits the VLAN from the first physical interface added, so no additional configuration is needed.
AnswerA
solution
! SW1
interface GigabitEthernet0/1
speed 1000
duplex full
switchport access vlan 10
channel-group 1 mode active
interface GigabitEthernet0/2
speed 1000
duplex full
switchport access vlan 10
channel-group 1 mode active
interface Port-channel1
switchport access vlan 10

Why this answer

The EtherChannel fails because member interfaces have mismatched speed/duplex (Gi0/1 is 100/half, Gi0/2 is 1000/full) and different VLANs (VLAN 10 vs 20). Additionally, the port-channel interface and physical interfaces must have matching VLAN assignments. To fix, unify both physical interfaces to the same speed (1000), duplex (full), and access VLAN (10).

Then set channel-group mode active on each physical interface. Finally, ensure the port-channel interface also uses VLAN 10. Verify with 'show etherchannel summary' which should show the port-channel as SU (in use).

Exam trap

Cisco exam traps often test the requirement for identical speed, duplex, and VLAN on all EtherChannel member interfaces. Do not assume LACP can negotiate mismatches; it only handles aggregation, not physical or VLAN parameters.

Why the other options are wrong

B

LACP active mode only enables negotiation, but it does not resolve underlying parameter mismatches. The interfaces must still have consistent speed, duplex, and VLAN configuration.

C

All member interfaces must have identical speed and duplex settings. Even if VLANs match, speed mismatch will cause the channel to fail.

D

The port-channel interface is a logical interface that requires its own VLAN configuration. Physical interfaces must have identical VLAN assignments; otherwise, the channel will not form.

Why candidates pick the wrong answer

B

Candidates may think that LACP's negotiation capability can automatically adjust or ignore mismatches, but it only handles aggregation, not physical or VLAN parameters.

C

Candidates might know that VLAN consistency is required but underestimate the importance of speed/duplex matching, thinking LACP can handle speed differences.

D

Candidates may think that adding physical interfaces to a port-channel automatically synchronizes VLAN settings, but in reality, mismatches cause the channel to fail.

1113
PBQhard

You are connected to R1 via the console. The link between R1 and R2 is experiencing intermittent connectivity. A 'show interfaces GigabitEthernet0/0' output shows the interface is up/up, line protocol up, Full-duplex, 1000Mb/s, but there are 1234 input errors, including 567 CRC errors. Identify the root cause of the issue, and apply the necessary configuration fix to restore full connectivity.

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

Hints

  • Check the duplex and speed settings on both ends of the link.
  • High CRC errors often indicate a duplex mismatch.
  • Auto-negotiation can resolve duplex mismatches if both devices support it.
A.Configure the interface with 'duplex full' and 'speed 1000'.
B.Configure the interface with 'duplex half' and 'speed 100'.
C.Configure the interface with 'no shutdown' to re-enable the interface.
D.Configure the interface with 'duplex auto' and 'speed auto'.
AnswerD
solution
! R1
interface GigabitEthernet0/0
duplex auto
speed auto

Why this answer

The output indicates high CRC errors on a GigabitEthernet interface operating at 1000 Mb/s and full-duplex. Since 1000BASE-T does not support half-duplex, a duplex mismatch is not possible. The CRC errors likely result from a speed or duplex negotiation mismatch where one side uses forced settings (e.g., speed 1000 duplex full) and the other uses auto-negotiation, causing physical layer instability.

Setting both sides to auto-negotiation ('duplex auto' and 'speed auto') allows them to properly agree on the highest common speed and duplex, resolving the errors. Option A forces full and 1000, which may not match R2 if it is set to auto, so it is not a reliable fix. Option B uses 'duplex half', which is invalid on Gigabit links and would break connectivity.

Option C's 'no shutdown' is irrelevant because the interface is already administratively up.

Exam trap

Do not assume that high CRC errors on a GigabitEthernet link indicate a duplex mismatch; at 1000 Mbps, half-duplex is not supported, so look for mismatched forced versus auto-negotiation settings instead.

Why the other options are wrong

A

Forcing full duplex and speed 1000 may not match R2 if it is set to auto-negotiation, potentially worsening the mismatch and not resolving CRC errors.

B

Half-duplex is not a valid mode for GigabitEthernet (1000BASE-T only supports full-duplex), so this configuration would prevent the link from working.

C

The interface is already up/up, so re-enabling it with 'no shutdown' has no effect and does not address the underlying CRC errors.

Why candidates pick the wrong answer

A

Candidates see the interface is already full-duplex/1000 and think forcing it will stabilize the link, but they overlook the need for matching settings on both ends.

B

Candidates think lowering speed can eliminate CRC errors, but the real issue is duplex mismatch, not speed.

C

Candidates sometimes assume intermittent connectivity means the interface is down, but the output shows it is up.

1114
Drag & Dropmedium

Drag and drop the following steps into the correct order to capture and analyze traffic for L2/L3 troubleshooting.

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

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

Why this order

The steps follow the logical sequence of a packet capture: first identify the traffic source, then configure a SPAN session to mirror it, connect the capture device, start capture, reproduce the issue, stop capture, and finally analyze the output. Each step must be completed before the next can succeed.

1115
PBQhard

You are connected to R1, a router that must send SNMP traps to a management server at 203.0.113.10 and export NetFlow data to a collector at 203.0.113.20. Currently, SNMPv2c traps are not being sent, and SNMPv3 is not configured for read-only access with authentication and privacy. Additionally, NetFlow export is missing the destination and version configuration. Configure the necessary commands on R1 to enable SNMPv2c traps (community string 'public'), configure SNMPv3 user 'admin' with SHA authentication and AES 128 encryption (password 'cisco123' for both auth and priv), and set NetFlow export to version 9.

Network Topology
G0/0203.0.113.1/24203.0.113.10linkR1Management Server

Hints

  • Use the 'snmp-server host' command to specify the trap destination and community.
  • For SNMPv3, you must first create a group with the appropriate security level before creating the user.
  • NetFlow export version is configured globally with 'ip flow-export version'.
A.snmp-server host 203.0.113.10 traps version 2c public snmp-server group MyGroup v3 priv snmp-server user admin MyGroup v3 auth sha cisco123 priv aes 128 cisco123 ip flow-export version 9
B.snmp-server host 203.0.113.10 traps version 2c public snmp-server group MyGroup v3 auth snmp-server user admin MyGroup v3 auth sha cisco123 priv aes 128 cisco123 ip flow-export version 9
C.snmp-server host 203.0.113.10 traps version 2c public snmp-server user admin v3 auth sha cisco123 priv aes 128 cisco123 ip flow-export version 9
D.snmp-server host 203.0.113.10 traps version 2c public snmp-server group MyGroup v3 priv snmp-server user admin MyGroup v3 auth sha cisco123 priv aes 128 cisco123 ip flow-export destination 203.0.113.20 2055
AnswerA
solution
! R1
snmp-server host 203.0.113.10 traps version 2c public
snmp-server group MyGroup v3 priv
snmp-server user admin MyGroup v3 auth sha cisco123 priv aes 128 cisco123
ip flow-export version 9

Why this answer

The configuration is missing SNMPv3 user setup, trap destination, and NetFlow export version. First, enable SNMPv2c traps with `snmp-server host 203.0.113.10 traps version 2c public`. Then, configure SNMPv3 user with `snmp-server user admin MyGroup v3 auth sha cisco123 priv aes 128 cisco123` after creating a group with `snmp-server group MyGroup v3 priv`.

For NetFlow, set the export version with `ip flow-export version 9`. Finally, verify with `show snmp` to see trap host and v3 user, and `show ip cache flow` to confirm export configuration.

Exam trap

Watch out for the SNMPv3 group keyword: 'priv' is required when using encryption (AES 128), not just 'auth'. Also, remember that the 'snmp-server user' command requires a group name. For NetFlow, the version is set with 'ip flow-export version 9', not 'ip flow-export destination'.

Why the other options are wrong

B

The group keyword 'auth' only enables authentication, not encryption. AES 128 requires the 'priv' keyword.

C

The 'snmp-server user' command requires a group name. Omitting the group will result in an error or incomplete configuration.

D

The command 'ip flow-export destination' sets the collector IP and port, not the export version. The version is set with 'ip flow-export version 9'.

Why candidates pick the wrong answer

B

Candidates may think 'auth' is sufficient because authentication is configured, but encryption requires the group to be set to 'priv'.

C

Candidates might think that the user can be created without a group, but SNMPv3 requires a group to define access and security levels.

D

Candidates often confuse the commands for setting the export destination versus the export version, especially when both are needed in a full configuration.

1116
MCQhard

A subnet must support 14 usable hosts. Which prefix is the smallest that meets the requirement?

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

A /28 prefix uses subnet mask 255.255.255.240, creating a block of 16 addresses per subnet. After reserving the network address and broadcast address, exactly 14 addresses remain available for hosts. This precisely matches the requirement of 14 usable hosts, making it the most efficient prefix length that meets the demand without wasting address space.

Why this answer

To support 14 usable hosts, the subnet must have 16 total addresses, because two are reserved for the network and broadcast addresses. In plain language, you need enough address slots so that after those two reserved entries are removed, 14 remain. A /28 provides exactly that: 16 total addresses and 14 usable addresses.

This is a classic minimum-subnet-size question because it tests whether you can work backward from host requirement to prefix length. A /29 would be too small, while a /27 would work but waste more addresses than necessary.

Exam trap

Avoid choosing a subnet size that either doesn't meet the host requirement or is unnecessarily large, leading to wasted addresses.

Why the other options are wrong

A

A /29 subnet provides only 6 usable host addresses, which is insufficient for the requirement of 14 usable hosts. Therefore, it does not meet the specified criteria.

C

Option C: /27 provides 30 usable hosts, which exceeds the requirement of 14 usable hosts. However, the question asks for the smallest prefix that meets the requirement, making /28 the correct choice.

D

Option D: /26 provides 62 usable hosts, which exceeds the requirement of 14 usable hosts. Therefore, it is not the smallest prefix that meets the specified need.

When would these options actually be correct?

A

If the question asked for a subnet that supports a maximum of 6 usable hosts, then a /29 prefix would be the correct answer, as it allows for exactly 6 usable addresses in that subnet.

C

In a different scenario where the question asks for a subnet that can support at least 30 usable hosts, option C: /27 would be the correct answer, as it provides exactly 30 usable addresses, meeting the new requirement.

D

If the question asked for a subnet that supports at least 62 usable hosts, then /26 would be the correct answer, as it provides a sufficient number of addresses for that requirement.

Why candidates pick the wrong answer

A

Candidates may be tempted to choose /29 due to a misunderstanding of subnetting calculations, mistakenly believing that smaller subnets can accommodate more hosts than they actually can.

C

Candidates may choose /27 because they misinterpret the requirement, thinking that a larger subnet is always better, or they may confuse the number of usable addresses with the total number of addresses in the subnet.

D

Candidates may choose /26 thinking that a larger subnet is always better for accommodating future growth, not realizing that the question specifically asks for the smallest prefix that meets the current requirement.

1117
PBQhard

You are connected to a multilayer switch MLSW1. PortFast and BPDU Guard have already been enabled on interface GigabitEthernet0/1, which connects to an end device, and a BPDU received on that interface placed it in the err-disabled state. Configure Rapid PVST+ so that MLSW1 becomes the root bridge for VLAN 10 with a priority of 4096. Recover the interface by re-enabling it. Finally, verify which port is blocking on VLAN 10 by connecting to MLSW2 and executing the appropriate show command.

Network Topology
G0/1 to PCG0/2 to MLSW3 G0/1G0/2 to MLSW3 G0/1G0/2 to MLSW1 G0/3SiMLSW2SiMLSW1SiMLSW3

Hints

  • Check the current root priority and adjust with 'spanning-tree vlan <vlan> priority <value>'.
  • An err-disabled interface can be recovered by administrative shutdown and no shutdown.
  • Look at the spanning-tree topology to find which port is blocking; it will be in 'ALT' role with 'BLK' state.
A.spanning-tree vlan 10 priority 4096; interface GigabitEthernet0/1; shutdown; no shutdown; show spanning-tree vlan 10
B.spanning-tree vlan 10 root primary; interface GigabitEthernet0/1; no shutdown; show spanning-tree vlan 10
C.spanning-tree vlan 10 priority 4096; interface GigabitEthernet0/1; no shutdown; show interfaces status
D.spanning-tree vlan 10 priority 4096; interface GigabitEthernet0/1; shutdown; no shutdown; show running-config
AnswerA
solution
! MLSW1
spanning-tree vlan 10 priority 4096
interface gigabitEthernet 0/1
shutdown
no shutdown

Why this answer

The correct solution sets the spanning-tree priority for VLAN 10 to 4096 on MLSW1, ensuring it becomes the root bridge. PortFast and BPDU Guard are already configured on G0/1, which caused the interface to go err-disabled when a BPDU was received. To recover, you must issue the 'shutdown' followed by 'no shutdown' commands on the interface.

Because MLSW1 is the root bridge, it has no blocking ports; the blocking port (alternate) will be seen on a downstream switch like MLSW2. Therefore, verification must be done on MLSW2 using 'show spanning-tree vlan 10' to view the alternate blocking port. Option A correctly includes all required steps.

Option B uses 'root primary' (priority 24576) instead of the specified 4096, lacks the recovery commands, and verifies on the wrong device. Option C omits the err-disabled recovery and uses the wrong verification command. Option D also verifies with 'show running-config', which does not display STP port roles.

Exam trap

Remember that 'spanning-tree vlan <vlan> root primary' sets priority to 24576, not a custom value. Also, err-disabled recovery requires a shutdown followed by no shutdown. Always use 'show spanning-tree vlan <vlan>' to verify port roles, not 'show interfaces status' or 'show running-config'.

Why the other options are wrong

B

The specific factual error: 'root primary' sets priority to 24576, not 4096. Also, err-disabled recovery requires a shutdown followed by no shutdown.

C

The specific factual error: err-disabled recovery requires a shutdown before no shutdown. 'show interfaces status' does not display STP port roles.

D

The specific factual error: 'show running-config' does not display STP port roles or blocking status.

Why candidates pick the wrong answer

B

Candidates pick this because 'root primary' is a common command to make a switch root, and they may think 'no shutdown' is sufficient to recover an interface.

C

Candidates pick this because they know 'no shutdown' re-enables an interface, but forget that err-disabled requires a full shutdown cycle. They may also confuse 'show interfaces status' with 'show spanning-tree'.

D

Candidates pick this because they may think 'show running-config' verifies all configurations, but it does not show real-time STP state.

1118
MCQhard

Refer to the exhibit. An administrator notices that all interfaces on R1 are in an administratively down state. The administrator issues the show version command and sees the following output. What is the most likely cause of the issue?

A.The router IOS image is corrupted and needs to be reinstalled.
B.The interfaces have been manually shut down in the running configuration, and the startup-config file is empty.
C.The router experienced a memory error during boot and failed to load the startup configuration.
D.The configuration register is set to 0x2142, causing the router to ignore the startup configuration.
AnswerD

This is directly confirmed by the last line of the exhibit: 'Configuration register is 0x2142'. This setting tells the router to bypass loading the startup-config from NVRAM, resulting in a clean slate where all interfaces are administratively down.

Why this answer

The configuration register value 0x2142 tells the router to ignore the startup configuration during boot, loading only the default factory configuration. This causes all interfaces to be in an administratively down state because no interface configurations from the startup-config are applied. The administrator sees the interfaces as administratively down because the default configuration does not include any 'no shutdown' commands.

Exam trap

Cisco often tests the specific effect of configuration register 0x2142 (ignoring startup-config) versus 0x2102 (normal boot), and the trap here is that candidates may confuse it with a corrupted IOS or manual shutdown, not realizing the register value directly causes the default interface state.

Why the other options are wrong

A

Candidates may confuse a successful IOS boot with a corrupted image because both can lead to an unusable configuration, but the configuration register is the direct clue.

B

Candidates may focus on the symptom (interfaces down) and hypothesize a manual configuration error, but they miss the clear hardware boot-parameter issue indicated by the config register.

C

Candidates equate configuration loss with hardware faults, overlooking the intentional nature of the 0x2142 register value.

1119
PBQmedium

You are connected to SW1 via console. SW1 is a multilayer switch with SVIs for VLAN 10 (192.168.10.1/24) and VLAN 20 (192.168.20.1/24). Hosts in VLAN 10 and VLAN 20 need to communicate with each other. Currently, inter-VLAN routing is not working. You need to enable routing on SW1 and verify that the SVIs are operational.

Network Topology
G0/1G0/2SW1HostAHostB

Hints

  • Check if 'ip routing' is already enabled.
  • Verify that the SVIs are up with 'no shutdown'.
A.Enable IP routing using the 'ip routing' global configuration command.
B.Configure a routing protocol such as OSPF or EIGRP on the SVIs.
C.Assign IP addresses to the physical interfaces connected to the hosts.
D.Create a trunk port and connect a router to perform router-on-a-stick.
AnswerA
solution
! SW1
ip routing

Why this answer

The 'ip routing' command enables Layer 3 routing on the multilayer switch, allowing SVIs to route between VLAN 10 and VLAN 20. Option B is unnecessary because directly connected SVIs do not require a routing protocol; routing protocols are only needed for routes learned from other routers, and 'ip routing' must still be enabled. Option C would require converting the physical interfaces to routed ports, which would break the existing Layer 2 VLAN topology and is not the intended solution.

Option D provides an external router-on-a-stick solution but does not enable routing on SW1 itself, which is the required task. Therefore, only option A correctly enables inter-VLAN routing on SW1.

Exam trap

The trap is that many candidates assume SVIs automatically route traffic once they have IP addresses. However, on a multilayer switch, you must explicitly enable IP routing with the 'ip routing' command. Without it, the switch remains a Layer 2 device and SVIs only serve as management interfaces.

Why the other options are wrong

B

Routing protocols like OSPF or EIGRP are not required for directly connected SVIs; only 'ip routing' is needed to enable Layer 3 routing.

C

Assigning IP addresses to physical interfaces would convert them to routed ports, breaking the existing Layer 2 VLAN configuration and is not the correct approach.

D

Using an external router with router-on-a-stick would enable inter-VLAN routing but does not enable routing on SW1 as required.

Why candidates pick the wrong answer

B

Candidates may think that inter-VLAN routing requires a dynamic routing protocol, confusing the need for routing between VLANs with the need to advertise routes to other devices.

C

Candidates might confuse the concept of routed ports (which are physical interfaces with IP addresses) with SVIs, thinking that assigning IPs to physical ports is necessary for routing between VLANs.

D

Candidates may default to the router-on-a-stick method because it is a common solution for inter-VLAN routing, forgetting that multilayer switches can do it internally with SVIs.

1120
MCQhard

Exhibit: Users on the inside network can open connections to a web server in the DMZ, but return traffic is denied by an ACL on the outside interface. Which statement best explains the issue?

A.The ACL should match the source port 80 on returning traffic, not the destination port 80
B.HTTP traffic can never be filtered with a standard ACL
C.The ACL must be applied outbound on the inside interface only
D.NAT automatically bypasses interface ACLs
AnswerA

HTTP response packets from the server use source port 80 and a randomly chosen high destination port on the client, not destination port 80. An ACL that only permits traffic with destination port 80 will therefore drop the return packets because their destination port is an ephemeral port. To correctly permit the response, the inbound ACL must match the source port and destination host, not the destination port.

Why this answer

An ACL applied inbound on the outside interface will evaluate the return traffic entering from the DMZ or outside toward the router. If it permits only destination port 80 inbound, the returning packets will not match because their destination is an ephemeral client port, not 80.

Exam trap

A frequent exam trap is believing that return HTTP traffic will have destination port 80, just like the outbound request. This misconception causes candidates to configure ACLs that only permit inbound packets with destination port 80, which blocks legitimate return traffic because the return packets have source port 80 and a high-numbered destination port. Misunderstanding this port reversal leads to ACLs that deny return traffic, causing connectivity failures despite correct outbound rules.

Another trap is confusing NAT behavior, incorrectly assuming NAT bypasses ACLs, which it does not. This misunderstanding can cause candidates to overlook ACL port matching issues.

Why the other options are wrong

B

Incorrect. While standard ACLs cannot filter by port, extended ACLs can. The issue here is port matching on return traffic, not the inability to filter HTTP with ACLs.

C

Incorrect. ACL placement varies, but the key problem is the ACL’s port matching logic on the outside interface inbound direction, not just interface selection.

D

Incorrect. NAT does not bypass ACLs. ACLs still process packets after NAT translation, so NAT is not the cause of return traffic denial.

When would these options actually be correct?

B

In a different scenario, if the question stated that only standard ACLs were being used and asked whether HTTP traffic could be filtered at all, option B would be correct, as standard ACLs cannot filter based on Layer 4 information like port numbers.

C

In a different scenario where the question specifies that the ACL is only intended to restrict outbound traffic from the inside network to the DMZ, then stating that it must be applied outbound on the inside interface could be correct, as it would imply that return traffic is not a concern.

D

In a different question setup where the focus is on NAT configurations, if a question states that NAT is configured to allow all traffic and asks about the interaction with ACLs, option D could be correct. For example, if the question specifies that NAT is designed to handle all return traffic without restrictions, then this statement would apply.

Why candidates pick the wrong answer

B

Candidates may choose this option due to a misunderstanding of ACL capabilities, believing that standard ACLs are too simplistic to filter specific types of traffic like HTTP, leading to a generalization that is not accurate.

C

Candidates may find this option tempting because it suggests a simplified view of ACL application, leading them to believe that controlling traffic in one direction is sufficient without considering the return path.

D

Candidates may find this option tempting because they might believe that NAT inherently allows all traffic to bypass security controls, leading to a misunderstanding of how ACLs and NAT interact in network configurations.

1121
MCQhard

Refer to the exhibit. A network engineer notices that on a four-link EtherChannel bundle between two switches, all traffic from a particular VLAN is being forwarded over only one physical link, while the other three links remain idle. The engineer suspects a load-balancing issue and issues the show etherchannel load-balance command, the output of which is shown. What is the most likely cause of the uneven traffic distribution?

A.The switch is using source‑MAC‑address load balancing, and multiple end hosts are appearing with the same source MAC address.
B.The EtherChannel is misconfigured with an LACP active/passive mode mismatch, forcing only one link to bundle.
C.VLAN pruning on the trunk has removed the VLAN from three of the four member interfaces.
D.Spanning Tree Protocol has blocked three of the four links in the EtherChannel because they form a loop.
AnswerA

The show etherchannel load-balance output confirms the global load‑balancing method is src‑mac. With this method, frames with an identical source MAC always hash to the same physical member link, causing all traffic from hosts sharing that MAC to use only one link.

Why this answer

The output of 'show etherchannel load-balance' indicates the switch is using source-MAC-address load balancing. With this method, all frames from a given source MAC address are hashed to the same physical link. If multiple end hosts in the VLAN are actually behind a single upstream router or firewall that uses the same source MAC address for all traffic (e.g., due to proxy ARP or NAT), then all traffic from that VLAN will be pinned to one link, leaving the other three idle.

Exam trap

Cisco often tests the misconception that load-balancing issues are caused by misconfiguration or STP, when the real problem is the hash algorithm's behavior with a single dominant source MAC address.

Why the other options are wrong

B

Candidates may think that an LACP problem explains a single active link, but a mismatch would cause the entire EtherChannel to fail, not selectively use one member.

C

Candidates might mistake an idle member for a pruned VLAN, but pruning would not affect all traffic, only the specific VLAN, and it is not related to the load‑balance method shown.

D

Candidates may associate an idle link with STP blocking, but an EtherChannel bundle presents one logical link to STP. A blocking state on some members only would indicate a serious configuration error, not the load‑balance method shown.

1122
MCQeasy

In AAA, which function determines what an authenticated user is allowed to do after login?

A.Authentication
B.Authorization
C.Accounting
D.Encryption
AnswerB

Authorization is the AAA process that determines the specific permissions, access rights, and allowed actions for an authenticated user. It defines what resources, commands, or services the user can use, effectively answering the question 'what can this user do?'. In Cisco configurations, this is often implemented via named permission lists or attribute-value pairs on an AAA server.

Why this answer

Authentication verifies identity. Authorization determines permitted actions. Accounting records activity.

Exam trap

Don't confuse authentication with authorization; they serve different purposes in AAA.

Why the other options are wrong

A

Authentication is the process of verifying a user's identity, not determining their permissions. In the context of this question, it does not address what actions an authenticated user is allowed to perform.

C

Accounting refers to the tracking and logging of user activities and resource usage, not the permissions or access rights granted to users after authentication. Therefore, it does not determine what an authenticated user is allowed to do.

D

Encryption is a process that secures data by converting it into a coded format, but it does not determine user permissions or access rights after authentication. Therefore, it is not relevant to the function of managing user privileges post-login.

When would these options actually be correct?

A

If the question asked about the process of verifying a user's identity before they can access resources, then 'Authentication' would be the correct answer. For example, a question could specify the steps taken to confirm user credentials during a login process.

C

If the question asked about the function that tracks user actions and resource consumption in a network, then 'Accounting' would be the correct answer. For example, a question might state, 'Which AAA function logs user activity for auditing purposes?'

D

If the question asked which function is responsible for securing data during transmission or storage, then encryption would be the correct answer. For example, a question could state, 'What method protects user credentials during transmission?'

Why candidates pick the wrong answer

A

Candidates may confuse authentication with authorization because both are critical components of security; they might mistakenly believe that verifying identity also includes defining user permissions.

C

Candidates may confuse accounting with authorization, as both relate to user management; however, they focus on different aspects of user access and activity. The term 'accounting' might seem relevant when considering user permissions and access control.

D

Candidates may confuse encryption with authorization, thinking that securing data is part of user permissions, leading them to select encryption as a related concept despite it not addressing user access rights.

1123
Multi-Selectmedium

Which TWO statements correctly describe the encapsulation and de-encapsulation process at the transport layer of the OSI model?

Select 2 answers
A.During encapsulation, the transport layer adds a header to form a packet.
B.During encapsulation, the transport layer adds a header containing source and destination port numbers.
C.During de-encapsulation, the transport layer removes the IP header to extract the segment.
D.During de-encapsulation, the transport layer removes its header and passes the payload to the session layer.
E.During encapsulation, the transport layer adds a trailer for error detection.
AnswersB, D

During encapsulation, the transport layer encapsulates upper-layer data with a header that records source and destination port numbers. These ports identify the specific application processes on the sending and receiving hosts, enabling the OS to demultiplex incoming data to the correct service. In TCP, the header includes additional fields like sequence numbers and windows, but the port numbers are the essential addressing mechanism that distinguishes this layer from the network layer's IP addressing.

Why this answer

During encapsulation at the transport layer, the TCP or UDP header is added, which includes source and destination port numbers. These port numbers identify the specific application-layer processes on the sending and receiving hosts, enabling proper demultiplexing of data. Option D is correct because during de-encapsulation, the transport layer removes its own header (e.g., TCP or UDP header) and passes the remaining payload up to the session layer (or directly to the application layer in a simplified model).

Exam trap

Cisco often tests the precise PDU naming convention (segment vs. packet vs. frame) and which layer performs which header removal, causing candidates to confuse the transport layer's role with the network layer's role.

Why the other options are wrong

A

This statement confuses the PDU naming: packet belongs to Layer 3, not Layer 4.

C

This describes a Layer 3 de-encapsulation step, not a Layer 4 step.

E

Trailers are a Layer 2 feature; the transport layer uses header-based checksums for integrity.

1124
MCQhard

A switchport connected to another switch is configured as an access port by mistake. Which symptom is most likely in a multi-VLAN design?

A.Only one VLAN is likely to pass correctly, while other VLAN traffic across the link fails
B.The link negotiates as a trunk but drops all VLAN traffic
C.The switch generates excessive broadcasts on all VLANs
D.The switch stops learning MAC addresses entirely
AnswerA

An access port is configured to carry exactly one untagged VLAN, known as the access VLAN. When connected to another switch, that link will only pass traffic belonging to the access VLAN; frames from other VLANs that arrive expecting trunk tagging will be dropped or misclassified. This causes a failure for all other VLANs across that link, because the access port does not support 802.1Q trunking or multi-VLAN tagging.

Why this answer

The most likely symptom is that only one VLAN’s traffic works correctly across the link while traffic for other VLANs fails. In plain language, an access port belongs to one VLAN in normal switching behavior. If an inter-switch link that should carry multiple VLANs is accidentally configured as an access port, the network loses the ability to transport the other VLANs.

The physical link may stay up, which can make the problem seem subtle, but the logical role of the port is wrong.

Exam trap

Be cautious not to confuse physical link status with logical configuration issues. An access port will not drop the link but will restrict traffic to a single VLAN.

Why the other options are wrong

B

An access port cannot negotiate trunking; it simply forwards only one VLAN's traffic.

C

Broadcast storms are not caused by an access port misconfiguration.

When would these options actually be correct?

B

In a scenario where a question asks about a switchport configured as a trunk port but experiencing issues, option B could be correct if the switch is misconfigured and the link is intended to route traffic for multiple VLANs. The question would need to imply that the port should have been a routed port but was incorrectly set up.

C

In a question about OSPF behavior during a network topology change, such as adding or removing interfaces, where the reset of OSPF metrics is a direct consequence of those changes, this option would be correct.

D

In a scenario where a switch is misconfigured to not allow any VLAN traffic due to a faulty configuration or hardware failure, a question could ask what happens to MAC address learning. In that case, if the switch is unable to process any traffic, it might stop learning MAC addresses altogether.

Why candidates pick the wrong answer

B

Candidates may find this option tempting because they might confuse access ports with routed ports, believing that misconfigurations could lead to automatic adjustments in port types, especially in complex multi-VLAN environments.

C

Candidates may choose this option due to a misunderstanding of how Layer 2 configurations impact Layer 3 protocols, mistakenly believing that access port misconfigurations would affect OSPF metrics.

D

Candidates might choose this option because they associate access ports with VLAN limitations and mistakenly believe that this would lead to a complete halt in MAC address learning, overlooking the fact that learning is still possible within the configured VLAN.

1125
MCQhard

After enabling DHCP snooping on VLAN 10, a technician finds that clients in that VLAN are no longer receiving IP addresses from the DHCP server. The server is connected to port Gi0/24. What is the most likely cause?

A.The port Gi0/24 has not been configured as a trusted port for DHCP snooping.
B.The DHCP server is on a different subnet, and the VLAN 10 SVI does not have an ip helper-address configured.
C.The DHCP snooping database location was not configured, causing the switch to discard all DHCP server messages.
D.The DHCP snooping binding table does not contain an entry for the DHCP server’s MAC address, so offers are being discarded.
AnswerA

DHCP snooping immediately blocks all DHCP server messages on untrusted ports. Because Gi0/24 is the uplink to the DHCP server, it must be explicitly set as trusted (ip dhcp snooping trust), otherwise the switch will drop the DHCP offers sent by the server.

Why this answer

When DHCP snooping is enabled, all ports are untrusted by default. Untrusted ports will drop DHCP server messages (OFFER, ACK, etc.) unless the port is explicitly configured as trusted. Since the DHCP server is connected to Gi0/24 and the technician did not configure it as a trusted port, the switch discards the server's responses, preventing clients from obtaining IP addresses.

Exam trap

Cisco often tests the default untrusted state of all ports when DHCP snooping is enabled, leading candidates to overlook the need to manually trust the server port.

Why the other options are wrong

B

This option assumes that the loss of DHCP service is due to a missing relay agent, but the symptom started only after enabling snooping, not after an infrastructure change that would affect the relay path.

C

The idea that a missing database causes immediate traffic blocking is a common misinterpretation of the database’s role—it is purely for persistency, not for runtime filtering.

D

Many candidates assume that DHCP snooping uses a reverse-check against the binding table for any DHCP server messages, but the filtering is based solely on the trusted/untrusted port state, not on a learned server entry.

Page 14

Page 15 of 19

Page 16