Courseiva

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

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

Page 8

Page 9 of 19

Page 10
601
MCQmedium

An ACL entry reads: access-list 25 permit 192.168.8.0 0.0.0.15 Which address range does this statement match?

A.192.168.8.0 through 192.168.8.15
B.192.168.8.0 through 192.168.8.31
C.192.168.8.0 through 192.168.8.7
D.Only host 192.168.8.15
AnswerA

The wildcard mask 0.0.0.15 (binary 00000000.00000000.00000000.00001111) fixes the first 28 bits and allows the last 4 bits of the fourth octet to vary. Because the network portion is 192.168.8.0, these 4 variable bits produce every address from .0 (00000000) to .15 (00001111), inclusive. Thus this ACL entry matches exactly the 16 addresses 192.168.8.0 through 192.168.8.15.

Why this answer

A wildcard of 0.0.0.15 means the last 4 bits can vary, which corresponds to a block size of 16 addresses. Starting at 192.168.8.0, the range is 192.168.8.0 through 192.168.8.15.

Exam trap

Be careful not to confuse the block size determined by the wildcard mask with a full subnet or miscalculate the starting address.

Why the other options are wrong

C

This range uses a wildcard mask of 0.0.0.7, not 0.0.0.15.

When would these options actually be correct?

B

If the question were modified to read 'access-list 25 permit 192.168.8.0 0.0.0.31', then option B would be correct, as it would match the entire range from 192.168.8.0 to 192.168.8.31.

C

This option would be correct if the question specified that the ACL was intended to match only the addresses within the range of 192.168.8.8 to 192.168.8.15, perhaps in a context where a specific subnet mask was applied to limit the range.

D

In a different question, if the ACL entry specified 'access-list 25 permit 192.168.8.15 0.0.0.0', then option D would be correct, as it would permit only the host address 192.168.8.15.

Why candidates pick the wrong answer

B

Students often confuse wildcard masks with subnet masks, thinking that 0.0.0.15 corresponds to a /27 subnet (255.255.255.224) which has 32 addresses, but wildcard masks are the inverse of subnet masks.

C

A test-taker might mistakenly think the wildcard mask indicates the starting point or that the range is centered around the given address, leading to an incorrect starting offset.

D

Students may see the last octet .15 in the wildcard mask and incorrectly assume it matches only the host with that specific value, confusing the wildcard mask with a host address.

602
MCQmedium

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

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

The EIGRP route is installed because EIGRP has an administrative distance of 90, while OSPF uses 110. When a router receives the same prefix from different routing protocols, the lower AD is selected as the best path. Protocol-specific metrics are never compared across protocols; AD is the first tie-breaker.

Why this answer

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

Exam trap

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

Why the other options are wrong

A

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

C

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

D

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

When would these options actually be correct?

A

In a different scenario where the question specifies that OSPF is configured with a lower administrative distance than EIGRP, or if both protocols are configured with the same administrative distance, then the OSPF route would be installed by default due to its link-state nature.

C

If the exam question specified that the router should select the route based on the lowest metric value without considering administrative distances, then this option would be correct. For example, a question might ask which route would be chosen if both protocols had the same administrative distance.

D

If the exam question specified a scenario where a router is configured to use a specific routing policy that allows multiple routes to be installed for the same prefix, such as with route redistribution or a specific configuration that permits equal-cost multipath (ECMP), then this option would be correct.

Why candidates pick the wrong answer

A

Students may think that link-state protocols like OSPF are inherently more reliable or preferred over distance-vector protocols like EIGRP, but this is not how route selection works.

C

Students often confuse metric and administrative distance, thinking that a lower metric always wins regardless of protocol, but metric comparison is only valid within the same protocol.

D

Some students may think that multiple routes to the same destination are always installed for redundancy, but the routing table only contains the best route unless explicitly configured otherwise.

603
MCQhard

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

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

GigabitEthernet0/0 being configured as a passive OSPF interface on R1 suppresses all OSPF hello packets on that link. Because R1 never sends hellos, it cannot establish a two-way neighbor relationship with R2; OSPF adjacency cannot form, and no OSPF routes are exchanged. This explains why R1 has no routes from R2 even though the physical link is operational.

Why this answer

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

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

Exam trap

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

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

Why the other options are wrong

B

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

C

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

D

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

When would these options actually be correct?

B

In a different scenario where the question specifies that R1 and R2 are configured with different OSPF process IDs, this option would be correct. For example, if the question asked why R1 cannot learn routes from R2 when both routers are configured with distinct OSPF process IDs, this option would accurately explain the situation.

C

In a different scenario, if the question stated that R1 and R2 are configured in separate OSPF areas and are indeed in different IPv4 subnets, this option would be correct. The question would need to focus on the inability of OSPF to exchange routes across different subnets without proper routing protocols or configurations.

D

In a different exam scenario where the question specifies that OSPF is only configured on serial interfaces and the routers are connected via Ethernet, this option could be correct. The question would need to clarify that OSPF is restricted to serial links due to specific network design constraints.

Why candidates pick the wrong answer

B

Students often confuse OSPF process IDs with other routing protocols like EIGRP, where the autonomous system number must match. They may incorrectly assume that OSPF process IDs must be consistent across routers.

C

Subnet mismatch is a common OSPF neighbor issue, and test-takers may jump to this conclusion without verifying the actual IP addresses and subnet masks in the exhibit.

D

Some older OSPF implementations or exam scenarios emphasize serial links, leading students to believe OSPF is limited to serial connections. However, OSPF is widely used on Ethernet networks.

604
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure a Cisco switch with an IPv4 management address 192.168.1.10/24, an IPv6 address 2001:db8:1::1/64, and a default gateway 192.168.1.1.

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

Correct order:

Enter global configuration mode – all subsequent configuration commands require this mode.

Enter interface configuration mode for VLAN 1 – the management SVI must be selected to apply IP settings.

Assign the IPv4 address 192.168.1.10 255.255.255.0 – sets the switch's management IPv4 address and subnet mask.

Enable the interface with the no shutdown command – activates the SVI so it can send and receive traffic.

Assign the IPv6 address 2001:db8:1::1/64 – enables IPv6 processing and statically configures a global unicast address.

Exit interface configuration mode to return to global configuration mode – required because the default gateway command is a global configuration command, not an interface subcommand.

Set the default gateway to 192.168.1.1 using the ip default-gateway command – provides the next-hop router for IPv4 traffic leaving the local subnet.

605
Multi-Selectmedium

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

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

Routers perform a longest prefix match, meaning they compare the number of matching bits in the destination address with each route's subnet mask or prefix length. A more specific route, such as a /24 covering 192.168.1.0/24, is preferred over a less specific route like a /16 covering 192.168.0.0/16, because it identifies the destination network with greater precision. This rule is applied first, even before considering administrative distance or metric, because a longer match indicates a more exact route to the destination and, in classless routing, is always the most efficient forwarding decision.

Why this answer

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

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

Exam trap

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

Why the other options are wrong

B

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

D

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

E

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

Why candidates pick the wrong answer

B

Students may confuse administrative distance with metric, thinking that a higher value indicates a better path. They might also misremember the rule, thinking that 'higher' means 'better' in all contexts.

D

Students often confuse the AD values for directly connected (0) and static routes (1). They may also think that a value of 1 is the most trustworthy because it is the smallest positive integer.

E

Students might think that dynamic routes are more intelligent and adaptive, so they should be preferred. They may also overlook the fact that directly connected routes are inherently more reliable because they are directly attached to the router.

606
MCQhard

A user on VLAN 10 reports that they cannot ping the default gateway at 192.168.10.1 from their PC with IP 192.168.10.50/24. The switch interface connecting to the PC is up/up, and the PC shows a valid IP configuration. What is the most likely cause of this connectivity failure?

A.Change the switchport mode to trunk to allow VLAN 10 traffic.
B.Configure an SVI for VLAN 10 with an IP address in the 192.168.10.0/24 subnet.
C.Change the PC's IP address to a different subnet, such as 192.168.20.0/24.
D.Recreate VLAN 10 and reassign the port to it.
AnswerB

The switch must provide a Layer 3 interface in VLAN 10 to serve as the default gateway for PCs in the 192.168.10.0/24 subnet. An SVI (interface vlan 10) with an IP address from that subnet creates a routable interface on the multilayer switch. This allows hosts in VLAN 10 to send traffic to other subnets, as their default gateway points to that SVI. Without this SVI, the PC has no gateway to route its traffic beyond its local segment.

Why this answer

The PC and default gateway are on the same subnet (192.168.10.0/24), but the switch lacks a Layer 3 interface for VLAN 10. Without an SVI (Switch Virtual Interface) configured with an IP address in that subnet, the switch cannot route traffic to the gateway or respond to ARP requests from the PC, breaking connectivity even though the access port is up/up.

Exam trap

Cisco often tests the misconception that a VLAN alone provides Layer 3 connectivity, when in fact an SVI or a separate router-on-a-stick configuration is required for inter-VLAN routing and default gateway functionality.

Why the other options are wrong

A

A trunk port is used to carry multiple VLANs between switches, not to connect an end device like a PC. Configuring the switchport as trunk would break connectivity because the PC expects an access port.

C

Changing the PC's IP subnet would not resolve the issue because the PC would still need a default gateway on its new subnet. The root cause is the missing SVI on the switch, not the PC's IP address.

D

Recreating VLAN 10 and reassigning the port does not address the missing SVI. The VLAN already exists and the port is correctly assigned; the issue is at Layer 3, not Layer 2.

Why candidates pick the wrong answer

A

Students may confuse trunking with allowing VLAN traffic, thinking that setting the port to trunk will enable VLAN 10 traffic to pass, but trunking is for inter-switch links, not end devices.

C

A student might think the PC is on the wrong subnet if it cannot ping the gateway, but the PC's IP is correctly within the 192.168.10.0/24 subnet. Changing subnets would only create additional problems.

D

Students may assume that the VLAN configuration is corrupted or the port assignment is incorrect, leading them to recreate the VLAN. However, the problem is the lack of a gateway, not a VLAN issue.

607
MCQmedium

A network engineer is troubleshooting a connectivity issue between two hosts on different VLANs. The engineer captures traffic on an IOS-XE router's GigabitEthernet0/1 interface using embedded packet capture (EPC). The output shows ARP requests from Host A (192.168.1.10) but no ARP replies from Host B (192.168.2.20). What is the most likely cause of this issue?

A.The router's interface is configured as an access port instead of a trunk.
B.The router's interface does not have an IP address configured in the VLAN 2 subnet.
C.Host A is in a different VLAN than the router's interface.
D.The router's interface has a duplex mismatch with the switch.
AnswerB

For inter-VLAN routing, the router must have an IP address in each VLAN's subnet to act as the default gateway and respond to ARP requests. Without an IP in VLAN 2, it cannot reply to ARP requests for 192.168.2.20.

Why this answer

The router's GigabitEthernet0/1 interface must have an IP address in the same subnet as Host B (192.168.2.20) to act as the default gateway for VLAN 2. Without an IP address in the VLAN 2 subnet, the router cannot respond to ARP requests for that subnet, so Host A's ARP requests for Host B go unanswered. This is the most likely cause because the router performs inter-VLAN routing only when it has an interface (or subinterface) with an IP address in the destination VLAN's subnet.

Exam trap

Cisco often tests the misconception that a router automatically routes between VLANs if it is connected to a switch via a trunk, but the router must have an IP address in each VLAN's subnet to respond to ARP and forward traffic.

Why the other options are wrong

A

The router's interface is a routed port, not a switchport; access/trunk concepts apply to switch interfaces. Even if it were a switch interface, the issue is about ARP replies, which require Layer 3 addressing, not trunking.

C

ARP requests are Layer 2 broadcasts; if the router's interface is in the same VLAN as Host A, it will receive the request. The problem is that the router does not reply, indicating it lacks an IP in the destination subnet.

D

Duplex mismatch causes CRC errors and collisions, but ARP requests would still be received and could be replied to. The capture shows clean ARP requests with no replies, pointing to a Layer 3 issue, not physical layer.

Why candidates pick the wrong answer

A

Students often confuse router interfaces with switch interfaces and may think that VLAN tagging is required for inter-VLAN routing, but in this scenario the router is likely using router-on-a-stick or routed interfaces.

C

Test-takers may think that VLAN mismatch prevents the router from seeing the ARP request, but the capture shows the request is received; the issue is at Layer 3.

D

Duplex mismatch is a common troubleshooting topic, and students may jump to physical layer issues without considering the specific symptom of missing ARP replies.

608
MCQmedium

Why is centralized logging especially useful when combined with NTP?

A.Because synchronized clocks make centralized log timelines easier to analyze accurately.
B.Because NTP assigns the Syslog server its IP address.
C.Because Syslog replaces authentication when NTP is present.
D.Because centralized logging blocks unauthorized traffic automatically.
AnswerA

Synchronised clocks via NTP ensure that log timestamps across all network devices share a common time reference, eliminating drift that would otherwise scatter events from the same incident across different points in a centralised log timeline. This temporal alignment satisfies the constraint of accurate forensic reconstruction, as analysts can correlate events from routers, switches, and servers without manual offset correction.

Why this answer

Centralized logging is much more useful when device clocks are synchronized because the timestamps can be correlated properly. In practical terms, collecting messages in one place is valuable, but if one router thinks it is 9:00 and another thinks it is 9:17, the event sequence becomes confusing. NTP solves that time-alignment problem.

This is a common operations best practice. Syslog provides the central visibility, and NTP makes the timeline trustworthy.

Exam trap

A common exam trap is to mistakenly believe that NTP provides IP addressing or security functions such as blocking unauthorized traffic. Some may also incorrectly assume that syslog replaces authentication mechanisms when NTP is present. These misconceptions arise because candidates confuse the distinct roles of NTP and syslog.

NTP strictly synchronizes time, while syslog collects logs. Neither assigns IP addresses nor enforces access control. Understanding this separation is crucial to avoid selecting incorrect answers that attribute unrelated functions to NTP or centralized logging.

Why the other options are wrong

B

Option B is incorrect because NTP does not assign IP addresses to syslog servers or any devices. IP addressing is handled by DHCP or manual configuration, not by NTP.

C

Option C is incorrect because syslog does not replace authentication mechanisms. NTP and syslog are unrelated to access control or authentication processes in Cisco networks.

D

Option D is incorrect because centralized logging improves visibility into network events but does not block unauthorized traffic. Traffic enforcement is managed by firewalls, ACLs, or other security features.

When would these options actually be correct?

B

In a different question asking about the role of NTP in network device configuration, one might state that NTP can help in dynamic environments where devices are assigned IP addresses by DHCP, ensuring that time synchronization occurs correctly across all devices, including the Syslog server.

C

In a different exam context, if the question asked about a hypothetical logging system that integrates NTP with a specific authentication protocol, and the focus was on how time synchronization could enhance security measures, this option might be correct. For example, if the question specified that NTP could enhance the security of log messages by ensuring they are timestamped accurately for authentication purposes, then this could be valid.

D

In a different question context, if the focus were on a security system that integrates centralized logging with a firewall, and the question asked about features of that system, option D could be correct if it specified that the logging system has capabilities to block unauthorized traffic based on log analysis.

Why candidates pick the wrong answer

B

Students might confuse NTP with DHCP or other protocols that provide network configuration. The acronym 'NTP' might be mistakenly associated with network setup tasks beyond time sync.

C

Test-takers might think that because both Syslog and NTP are network services, they could have overlapping functions. The idea of 'replacing' authentication with logging is a common misconception.

D

Students may think that because logs can be used to detect threats, the logging system itself can take action. However, logging is passive and requires separate mechanisms for enforcement.

609
MCQmedium

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

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

The static /25 route is selected because forwarding decisions use longest-prefix match, not administrative distance. Even though OSPF has a higher administrative distance (110) compared to static's 1, that comparison applies only when two routes have identical prefix lengths. Since 203.0.113.0/25 is more specific than the /24 and also matches the destination address, the router installs and uses this route for all traffic within that /25 range. This is why the static /25 correctly wins.

Why this answer

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

Exam trap

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

Why the other options are wrong

A

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

C

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

D

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

When would these options actually be correct?

A

If the question stated that the OSPF /24 route had a higher administrative distance than the static route, or if the static route was removed from the routing table, then the OSPF /24 route would be the correct choice for traffic to 203.0.113.10.

C

In a different scenario where both routes had the same administrative distance, such as when comparing two static routes, a question might ask which route would be used if both were equally preferred. In that case, both routes could be considered equally valid for traffic destined to the same IP.

D

In a scenario where a question specifies that both routes are equally preferred due to equal administrative distances or if the router is configured to treat overlapping routes differently, this option could be correct. For example, if the question states that the router uses a round-robin method for load balancing between equal-cost paths, then both routes would be used.

Why candidates pick the wrong answer

A

Students may think that OSPF, as a dynamic routing protocol, is preferred over static routes, or they may overlook the longest prefix match rule and assume administrative distance decides the winner.

C

Students might confuse the concept of equal-cost multipath (ECMP) with overlapping routes of different lengths, assuming both routes could be used simultaneously.

D

Students may think that overlapping prefixes create a conflict or error, similar to overlapping IP addresses on interfaces, but routing protocols handle overlapping prefixes without issue.

610
MCQhard

A switch port connected to a user PC should be placed in VLAN 20 and must not negotiate trunking. Which configuration is the most appropriate?

A.switchport mode access switchport access vlan 20
B.switchport mode trunk switchport trunk native vlan 20
C.switchport mode dynamic desirable switchport trunk allowed vlan 20
D.no switchport ip address 192.168.20.1 255.255.255.0
AnswerA

This is the correct configuration for a host port. `switchport mode access` unconditionally sets the interface as a nontrunking Layer 2 access port, disabling Dynamic Trunking Protocol (DTP) and preventing the port from becoming a trunk. The `switchport access vlan 20` command then statically assigns the port to VLAN 20, so the connected PC’s untagged frames are carried in that VLAN, exactly matching the requirement.

Why this answer

The most appropriate configuration is to force the interface into access mode and assign it to VLAN 20. In practical terms, a normal user-facing switch port is supposed to carry one VLAN only. There is no reason to rely on dynamic trunk negotiation for a desktop or laptop connection. Explicit access-port configuration is cleaner, more predictable, and safer.

This is a common switching best-practice question. The wrong answers usually leave room for unwanted trunking behavior or move the interface into a completely different role. The right answer combines the correct port role with the correct VLAN membership.

Exam trap

Avoid assuming 'auto' mode is always safe; it can lead to unintended trunking.

Why the other options are wrong

B

This configuration makes the port a trunk port, which is used to carry multiple VLANs between switches, not for a single user PC. The 'switchport trunk native vlan 20' command sets the native VLAN for untagged traffic on the trunk, but the port still actively negotiates trunking via DTP, violating the requirement to not negotiate trunking.

C

The 'switchport mode dynamic desirable' command actively attempts to form a trunk with the connected device via DTP, which contradicts the requirement to not negotiate trunking. Additionally, 'switchport trunk allowed vlan 20' only restricts which VLANs are allowed on the trunk, but the port is still in trunking mode, not an access port.

D

The 'no switchport' command converts the Layer 2 switch port into a Layer 3 routed interface, which cannot be assigned to a VLAN. This configuration is used for routing between VLANs or connecting to routers, not for connecting a user PC to a specific VLAN.

When would these options actually be correct?

B

This option would be correct in a scenario where the question specifies that the switch port is intended to connect to another switch or a device that requires trunking, and the native VLAN needs to be set to 20 for proper communication between VLANs.

C

In a different question setup where a switch port needs to connect to another switch and allow multiple VLANs, configuring the port as a trunk with 'switchport mode trunk' and specifying 'switchport trunk native vlan 20' would be appropriate to manage VLAN traffic effectively.

D

This option would be correct in a scenario where the question asks for the configuration of a router interface that needs to be assigned an IP address in VLAN 20 for inter-VLAN routing. In that case, the interface would not be a switchport but rather a routed interface.

Why candidates pick the wrong answer

B

A student might confuse 'native VLAN' with 'access VLAN' and think that setting the native VLAN to 20 on a trunk port achieves the same result as assigning VLAN 20 to an access port. They may also overlook that trunk ports are designed for inter-switch links, not end-user connections.

C

Students may think that 'dynamic desirable' is a safe mode that only becomes a trunk if the other side agrees, but it still initiates DTP negotiation. They might also incorrectly assume that 'trunk allowed vlan 20' limits the port to a single VLAN, similar to an access port.

D

A student might think that assigning an IP address to the port is necessary for the PC to communicate, but on a Layer 2 switch, VLAN membership is handled at Layer 2, not by IP addressing. They may also confuse this with configuring a switch virtual interface (SVI) for VLAN 20, which is done on a different interface.

611
MCQhard

A host is configured with IP address 192.168.50.94/27. Which subnet contains that host?

A.192.168.50.32/27
B.192.168.50.64/27
C.192.168.50.96/27
D.192.168.50.0/27
AnswerB

A /27 prefix length defines a subnet mask of 255.255.255.224, creating a block of 32 addresses. The host address 192.168.50.94 falls within the range 192.168.50.64–192.168.50.95, where 192.168.50.64 is the network address and 192.168.50.95 is the broadcast address. This satisfies the constraint that the host’s IP must lie between the subnet’s network and broadcast addresses.

Why this answer

A /27 subnet has a block size of 32. In simple terms, the fourth-octet ranges are 0–31, 32–63, 64–95, 96–127, and so on. Because 94 falls inside the 64–95 range, the network address for the host’s subnet is 192.168.50.64/27.

This kind of question tests whether you can move from prefix length to block size and then place the host inside the correct interval. The most common mistake is choosing a nearby boundary like 96 or 32 without calculating the actual block that contains the address.

Exam trap

Always calculate the subnet range using the block size derived from the prefix length to avoid choosing incorrect boundaries.

Why the other options are wrong

A

The subnet 192.168.50.32/27 covers addresses 192.168.50.32 to 192.168.50.63. The host address 192.168.50.94 is outside this range, so it does not belong to this subnet.

C

The subnet 192.168.50.96/27 covers addresses 192.168.50.96 to 192.168.50.127. The host address 192.168.50.94 is below this range, so it does not belong to this subnet.

D

The subnet 192.168.50.0/27 covers addresses 192.168.50.0 to 192.168.50.31. The host address 192.168.50.94 is far above this range, so it does not belong to this subnet.

When would these options actually be correct?

A

If the question asked which subnet contains the IP address 192.168.50.40, then option A (192.168.50.32/27) would be correct, as this subnet would encompass the host IP within its range.

C

If the question asked which subnet contains the IP address 192.168.50.96, then option C would be correct, as that address would belong to the subnet 192.168.50.96/27, which covers addresses from 192.168.50.96 to 192.168.50.127.

D

If the question asked which subnet contains the network address of a different host, such as one configured with an IP address in the range of 192.168.50.0 to 192.168.50.31, then option D would be correct as it would represent the subnet for that specific host.

Why candidates pick the wrong answer

A

Students might mistakenly think that because 94 is close to 64, it could be in the .32 subnet, but they forget to calculate the broadcast address correctly.

C

Students may incorrectly think that because 94 is close to 96, it could be in the .96 subnet, but they overlook that the subnet starts at .96, not .95.

D

Students might choose this option if they incorrectly calculate the subnet mask or assume the host is in the first subnet without proper calculation.

612
PBQhard

You are connected to R1, a Cisco ISR 4321 running IOS-XE. Configure SNMPv2c with a read-only community string 'public' and SNMPv3 with user 'admin' using SHA authentication and AES encryption. Ensure SNMP traps are sent to the management server at 203.0.113.10. Additionally, configure NetFlow export to destination 203.0.113.20 on UDP port 2055 using version 9. Verify your configuration with appropriate show commands. The current running-config is incomplete; you must add the missing commands.

Network Topology
G0/0192.168.1.1/24Management NetworkR1Server

Hints

  • SNMPv3 user configuration requires both auth and priv algorithms and passwords.
  • For SNMP traps, specify the trap receiver IP and community string.
  • NetFlow export configuration uses global commands; no interface-level configuration is needed for basic export setup.
A.snmp-server community public ro snmp-server user admin snmp-group v3 auth sha cisco priv aes 128 cisco snmp-server host 203.0.113.10 traps version 2c public ip flow-export destination 203.0.113.20 2055 ip flow-export version 9
B.snmp-server community public ro snmp-server user admin snmp-group v3 auth sha cisco priv aes 128 cisco snmp-server host 203.0.113.10 traps version 3 auth public ip flow-export destination 203.0.113.20 2055 ip flow-export version 9
C.snmp-server community public ro snmp-server user admin snmp-group v3 auth md5 cisco priv des56 cisco snmp-server host 203.0.113.10 traps version 2c public ip flow-export destination 203.0.113.20 2055 ip flow-export version 9
D.snmp-server community public ro snmp-server user admin snmp-group v3 auth sha cisco priv aes 128 cisco snmp-server host 203.0.113.10 traps version 2c public ip flow-export destination 203.0.113.20 2055 ip flow-export version 5
AnswerA
solution
! R1
snmp-server user admin auth sha cisco priv aes 128 cisco
snmp-server host 203.0.113.10 traps version 2c public
ip flow-export destination 203.0.113.20 2055
ip flow-export version 9

Why this answer

The initial config has only a basic SNMPv2c community string. To meet requirements: enable SNMPv3 with a user 'admin' using SHA authentication and AES 128-bit encryption. The correct command requires a group name and the 'v3' keyword, e.g., 'snmp-server user admin snmp-group v3 auth sha cisco priv aes 128 cisco'.

Configure SNMP trap destination with 'snmp-server host 203.0.113.10 traps version 2c public'. For NetFlow, use 'ip flow-export destination 203.0.113.20 2055' and 'ip flow-export version 9'. Verify with 'show snmp' and 'show ip cache flow'.

Option B incorrectly uses version 3 traps with a community string; version 3 requires a security name. Option C uses insecure MD5/DES56 instead of SHA/AES. Option D uses NetFlow version 5 instead of version 9.

Exam trap

Forgetting to include a group name and the 'v3' keyword in the 'snmp-server user' command is a common syntax error that will cause the configuration to be rejected on real devices.

Why the other options are wrong

B

The trap host line uses 'version 3' and a community string ('public'), but SNMPv3 traps require a security name (the user) and an authentication level, not a community.

C

The SNMPv3 user is configured with MD5 and DES56, while the requirement is SHA authentication and AES 128‑bit encryption.

D

The NetFlow export version is set to 5 instead of the required version 9.

Why candidates pick the wrong answer

B

Candidates may mistakenly think that the community string 'public' can be used with SNMPv3 traps, or they may confuse the syntax between SNMPv2c and SNMPv3 trap configuration.

C

Candidates may confuse the default or older SNMPv3 security algorithms (MD5 and DES) with the more secure SHA and AES, or they may not know the exact keywords for SHA and AES.

D

Candidates may default to version 5 because it is older and simpler, or they may not remember that version 9 is the required format for modern NetFlow export.

613
MCQhard

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

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

The deciding factor is longest prefix match, which is the first rule in IP route selection. The static route's mask of /26 matches 64 addresses, while the OSPF route's /24 matches 256 addresses; for any destination inside the /26, the static route is a longer, more specific match. Longest prefix match is evaluated before administrative distance or metric, so the /26 static route is preferred even though OSPF has a higher AD and a different metric.

Why this answer

The router selects the route via 10.1.1.2 because the static route has a prefix length of /26, which is longer (more specific) than the OSPF route's /24. When multiple routes to the same destination exist, the router uses the most specific match (longest prefix) regardless of administrative distance or metric. Since 10.10.10.130 falls within the 10.10.10.128/26 range, the /26 route is preferred over the /24 route.

Exam trap

Cisco often tests the longest prefix match rule by presenting overlapping routes with different administrative distances, leading candidates to incorrectly assume that lower AD always wins, when in fact prefix length is evaluated first.

Why the other options are wrong

A

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

B

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

D

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

614
Multi-Selectmedium

Which three of the following are characteristics of DHCP snooping on a Cisco switch? (Choose three.)

Select 3 answers
.It differentiates trusted and untrusted ports to filter DHCP messages.
.It builds and maintains a DHCP snooping binding database.
.It prevents DHCP starvation attacks by rate-limiting DHCP messages on untrusted ports.
.It encrypts DHCP traffic between the client and the server.
.It replaces the DHCP server's IP address with a static route.
.It requires all DHCP servers to be connected to untrusted ports.

Why this answer

DHCP snooping is a security feature that filters untrusted DHCP messages by differentiating trusted and untrusted ports. It builds and maintains a DHCP snooping binding database to track valid IP-to-MAC address assignments. Additionally, it prevents DHCP starvation attacks by rate-limiting DHCP messages on untrusted ports, typically using the 'ip dhcp snooping limit rate' command.

Exam trap

Cisco often tests that DHCP snooping's rate-limiting feature specifically targets DHCP starvation attacks, not rogue server attacks, and that the binding database is used for both IP source guard and dynamic ARP inspection integration.

615
Multi-Selectmedium

Which TWO statements accurately describe characteristics of copper and fiber optic cabling used in modern Ethernet networks?

Select 2 answers
A.Copper UTP cables can reliably transmit data up to 500 meters without a repeater.
B.Fiber optic cables are immune to electromagnetic interference (EMI).
C.Multi-mode fiber typically uses laser-based transmitters for short-range communication.
D.Single-mode fiber is designed for long-distance transmission with a narrow core.
E.Fiber optic cabling is generally less expensive per meter than copper cabling.
AnswersB, D

Fiber optic cables transmit data as pulses of light through a glass or plastic core, so they are completely unaffected by electromagnetic interference, radio-frequency interference, or electrical crosstalk from nearby power cables and machinery. This immunity makes single-mode and multi-mode fiber the preferred medium in industrial environments, data centers, and other settings where electrical noise would corrupt copper signals.

Why this answer

Fiber optic cables transmit data as light pulses through glass or plastic cores, which are completely unaffected by electromagnetic interference (EMI), unlike copper cables that rely on electrical signals and are susceptible to EMI. Option D is correct because single-mode fiber uses a narrow core (typically 9 microns) and laser transmitters to support long-distance transmission (up to tens of kilometers) with low signal loss. Option A is wrong because copper UTP cables are limited to 100 meters without a repeater, not 500 meters.

Option C is wrong because multi-mode fiber typically uses LED or VCSEL transmitters for short-range communication, while laser-based transmitters are used with single-mode fiber. Option E is wrong because fiber optic cabling is generally more expensive per meter than copper cabling, though installation and equipment costs may differ.

Exam trap

Cisco often tests the distinction between multi-mode and single-mode fiber transmitters, where candidates mistakenly associate laser-based transmitters with multi-mode fiber instead of correctly identifying them with single-mode fiber's long-distance, narrow-core design.

Why the other options are wrong

A

Copper UTP cables have a maximum segment length of 100 meters for Ethernet, not 500 meters without a repeater.

C

Multi-mode fiber typically uses LED or VCSEL transmitters, not laser-based transmitters; lasers are used with single-mode fiber for long distances.

E

Fiber optic cabling is generally more expensive per meter than copper cabling, not less expensive.

Why candidates pick the wrong answer

A

Students may confuse the 100-meter limit with the maximum distance for other technologies like telephone lines or mistakenly think UTP can reach longer distances without repeaters.

C

The term 'laser' in VCSEL may lead students to think multi-mode uses lasers, but VCSELs are low-power and distinct from the lasers used in single-mode transceivers.

E

Students might think fiber is cheaper because it can transmit over longer distances without repeaters, but the initial cost of fiber and optics is higher than copper.

616
PBQhard

You are connected to R1. The network has two routers: R1 (192.168.1.0/24 LAN) and R2 (Internet gateway). R1's inside LAN (192.168.1.0/24) must be translated to the public IP 203.0.113.1 using PAT (NAT overload) for Internet access. Additionally, the server at 192.168.1.100 must be reachable from the Internet via static NAT to 203.0.113.5. The current configuration is broken. Identify and fix the issues so that both PAT and static NAT work correctly.

Network Topology
G0/0192.168.1.1/24G0/1203.0.113.2/29S0/0/010.0.0.1/30inside hostsLANR1InternetWANR2

Hints

  • Check which interfaces are marked as inside and outside — the public IP interface should be outside.
  • The ACL used for PAT must match the inside local network, not a different subnet.
  • The PAT command must include the keyword 'overload' to enable port address translation.
A.Change ACL 10 to permit 192.168.1.0 0.0.0.255, change G0/1 to 'ip nat outside', and ensure the PAT command includes 'overload'.
B.Change ACL 10 to permit 192.168.1.0 0.0.0.255, change G0/1 to 'ip nat inside', and ensure the PAT command includes 'overload'.
C.Change ACL 10 to permit 192.168.1.0 0.0.0.255, change G0/1 to 'ip nat outside', and remove the 'overload' keyword from the PAT command.
D.Change ACL 10 to permit 192.168.1.0 0.0.0.255, change G0/1 to 'ip nat inside', and remove the 'overload' keyword from the PAT command.
AnswerA
solution
! R1
configure terminal
no ip nat inside source list 10 interface GigabitEthernet0/1
ip nat inside source list 10 interface GigabitEthernet0/1 overload
no access-list 10
access-list 10 permit 192.168.1.0 0.0.0.255
interface GigabitEthernet0/1
no ip nat inside
ip nat outside
end

Why this answer

The configuration had three issues: 1) ACL 10 permitted 10.0.0.0/8 instead of the actual inside subnet 192.168.1.0/24, so no traffic matched PAT. 2) The PAT command was missing the 'overload' keyword, which is required for Port Address Translation; without it, the device attempts one-to-one dynamic NAT. 3) The interface facing the public network (G0/1) was incorrectly configured as 'ip nat inside' instead of 'ip nat outside'. The fix is to correct the ACL to permit 192.168.1.0 0.0.0.255, ensure the PAT command includes 'overload', and change G0/1 to 'ip nat outside'.

Exam trap

A common trap is confusing inside and outside interface designations. Remember: the interface facing the private network is 'ip nat inside', and the interface facing the public network is 'ip nat outside'. Also, PAT requires the 'overload' keyword; without it, you get dynamic NAT (one-to-one).

Why the other options are wrong

B

The specific factual error is that the interface with the public IP (203.0.113.1) must be configured as 'ip nat outside', not 'ip nat inside'. Marking it as inside would cause asymmetric NAT behavior and break translation.

C

The specific factual error is that PAT requires the 'overload' keyword. Without it, the router performs dynamic NAT (one-to-one translation), which would not support multiple hosts sharing a single public IP.

D

The specific factual errors are: (1) the interface with the public IP must be 'ip nat outside', and (2) PAT requires the 'overload' keyword. Both are violated here.

Why candidates pick the wrong answer

B

Candidates might think both interfaces should be 'inside' because they are both on the router, but the outside interface is the one facing the public network.

C

Candidates might think 'overload' is optional or that it causes issues with static NAT, but both can coexist; the keyword is necessary for PAT.

D

Candidates might think that removing 'overload' simplifies the configuration and that both interfaces can be 'inside', but this misunderstands NAT interface roles and the need for PAT.

617
Multi-Selectmedium

Which TWO DNS record types are most commonly used together to verify both forward and reverse DNS mappings for an IPv6 address?

Select 2 answers
A.A record
B.AAAA record
C.CNAME record
D.PTR record
E.MX record
AnswersB, D

An AAAA record is the forward-DNS record that maps a hostname to a 128-bit IPv6 address, analogous to an A record for IPv4. It is commonly used for hostname-to-address resolution, not for address-to-hostname resolution. Since the question requires reverse mapping from an IPv6 address back to a name, an AAAA record does not fulfill that purpose.

Why this answer

The AAAA record (Quad-A record) maps a domain name to an IPv6 address, making it the standard type for forward IPv6 lookups. The PTR record performs the reverse mapping—from an IPv6 address back to a domain name. Administrators routinely check both records with tools like nslookup or dig to ensure forward and reverse DNS consistency, which is critical for services such as email and security logging.

The other options (A, CNAME, MX) do not directly provide a domain-to-IPv6 mapping or its reverse verification.

Exam trap

Cisco often tests the misconception that an A record can be used for IPv6 addresses, but the A record is strictly for IPv4 (RFC 1035), while the AAAA record is the correct type for IPv6 (RFC 3596).

Why the other options are wrong

A

An A record maps a hostname to an IPv4 address, not an IPv6 address. Since the question specifically asks about IPv6, this record type is incorrect.

C

A CNAME record creates an alias from one domain name to another, not a direct mapping to an IP address. It does not provide the IP address itself, so it cannot verify the mapping to an IPv6 address.

E

MX records specify mail exchange servers for a domain and are used for email routing, not for mapping domain names to IP addresses. They do not provide IPv6 address mappings.

Why candidates pick the wrong answer

A

Students often confuse A and AAAA records because both are used for forward DNS resolution. The similar naming and purpose (mapping names to IPs) make A records a common distractor.

C

CNAME records are commonly used and can indirectly point to an IPv6 address via the target domain's AAAA record. Students may think that querying a CNAME will reveal the IPv6 address, but it only returns the canonical name.

E

MX records are a well-known DNS record type, and students might think they are used for general IP mapping due to their importance in email delivery. However, they are unrelated to IPv6 address verification.

618
Drag & Dropmedium

Which of the following shows the correct order of steps to troubleshoot a suspected duplex mismatch and CRC errors on a Cisco IOS-XE interface?

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

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

Why this order

The proper troubleshooting flow requires moving through the correct configuration hierarchy: from privileged EXEC mode you first enter global configuration mode. Then you specify the affected interface to enter interface configuration mode, where the duplex and speed settings are applied. After making the changes, you exit all configuration modes back to privileged EXEC and use show commands to verify the interface status.

Option A follows this exact sequence. Option B is wrong because it tries to enter interface configuration without global config. Option C mistakenly attempts to set duplex/speed globally, which is not allowed.

Option D not only omits global config but also exits to the wrong mode, leaving you in global configuration instead of privileged EXEC for verification.

Exam trap

A common trap is to forget that you must enter global configuration mode before interface configuration mode. Another trap is to think that duplex and speed can be set globally, but they are interface-specific. Always remember the correct hierarchy: privileged EXEC -> global config -> interface config.

Why candidates pick the wrong answer

B

Candidates might think they can jump directly to interface configuration mode from privileged EXEC mode, but the 'configure terminal' command is required first.

C

Candidates might confuse global configuration with interface-specific configuration, thinking that settings can be applied globally.

D

Candidates might think they can go directly to interface config and then exit to global config, but the correct flow is global -> interface -> exit (to privileged EXEC) -> verify.

619
Drag & Dropmedium

Select the correct sequence of steps to retrieve a specific interface's configuration via RESTCONF and apply a change to the interface description.

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

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

Why this order

The correct sequence for using RESTCONF to modify an interface description is: first retrieve the current configuration with a GET request, parse the JSON or XML response, modify the description field, apply the change with a PUT or PATCH request, and finally verify the change with another GET request. This sequence is correctly described only in option A. Options B, C, and D are incorrect because they either apply changes before retrieving the configuration, modify before retrieving, or verify before applying, which would not work as intended.

Exam trap

The key trap is confusing the order of operations: you must retrieve before modifying, and apply before verifying. Candidates often mix up the sequence, especially placing verification too early or modification before retrieval.

Why candidates pick the wrong answer

B

Candidates might think they can directly apply a change without first retrieving the current configuration, but RESTCONF requires the full configuration to be sent in the PUT request.

C

Candidates might think they need to verify the current state before applying a change, but the verification step is to confirm the change was applied correctly.

D

Candidates might think they can directly push a new configuration without first reading the existing one, but RESTCONF typically requires a read-modify-write pattern.

620
MCQhard

An IPv6 host successfully reaches neighbors on its local segment, but it cannot reach remote IPv6 destinations. The host has a global unicast address and a correct prefix length. Which missing item is the strongest suspect?

A.A usable default router or next-hop route for off-link IPv6 traffic
B.A NAT rule translating IPv6 to IPv4
C.A VLAN trunk on the host NIC
D.A second global unicast address on the same interface
AnswerA

IPv6 hosts on a local segment can communicate with neighbors using Neighbor Discovery (ND) and link-local addresses, but any traffic destined beyond that segment must be forwarded by a router. Without a default router learned via ICMPv6 Router Advertisement or a manually configured static route, the host has no way to choose a next hop for off-link destinations. Thus the host would successfully reach on-link neighbors yet fail to reach anything outside the local segment.

Why this answer

The strongest suspect is the absence of a usable default router learned through IPv6 router advertisements or equivalent configuration. While local connectivity works because the host can communicate on its own link, remote IPv6 destinations require a next hop off the local segment. Option B is wrong because IPv6-to-IPv4 NAT is unnecessary for native IPv6 communication and would not be the primary cause of off-link failure.

Option C is wrong because a VLAN trunk on the host NIC is for carrying multiple VLANs, not for enabling off-link routing. Option D is wrong because a second global unicast address does not provide a default route; it only adds another local address.

Exam trap

Don't confuse local connectivity success with overall network configuration correctness. Always check for a default route when remote communication fails.

Why the other options are wrong

B

NAT rules are not required for native IPv6 communication and would not be the first suspect when a host cannot reach remote IPv6 destinations.

C

A VLAN trunk on the host NIC relates to Layer 2 segmentation, not to providing a default route for off-link IPv6 traffic.

D

A second global unicast address on the same interface does not supply the missing default route needed to reach off-link destinations.

When would these options actually be correct?

B

In a question where a network is transitioning from IPv4 to IPv6 and requires NAT64 to allow IPv6 hosts to communicate with IPv4 servers, a NAT rule translating IPv6 to IPv4 would be the correct answer. The question would specify that IPv6 hosts need to access IPv4 resources, making NAT essential.

C

In a different scenario where the question specifies that a host is configured to communicate with multiple VLANs and needs to reach devices on different VLANs, a misconfigured VLAN trunk could indeed prevent communication with remote devices. In such a case, the correct answer would focus on VLAN configurations affecting Layer 3 connectivity.

D

In a different scenario where a question asks about the configuration of multiple global unicast addresses on an interface, and the context involves load balancing or specific routing requirements, having a second global unicast address could be correct if it allows for proper routing or redundancy in a multi-homed setup.

Why candidates pick the wrong answer

B

Students familiar with IPv4 NAT might assume a similar translation is needed for IPv6, but IPv6 has a vast address space and does not rely on NAT for basic off-link communication.

C

A test-taker might confuse VLAN trunking with the need for a default gateway, especially if they recall that VLANs separate broadcast domains and routing is needed between them.

D

Some might think that multiple addresses could help with reachability, but IPv6 hosts can have multiple addresses (e.g., privacy extensions) without affecting routing. The core issue remains the lack of a default router.

621
PBQhard

You are connected to the Cisco WLC (WLC-1) via its management IP 192.168.1.10. The wireless network 'CorpNet' is configured but clients cannot associate. Troubleshoot and resolve the issue: clients report 'Association failed' and the SSID is not visible in site surveys. Ensure that after your fix, the SSID is broadcast, WPA3 is used, and the WLAN is mapped to VLAN 20. Also, verify the WLC management interface is accessible over HTTPS.

Network Topology
switchWLC-1clients

Hints

  • Check if the WLAN is enabled and broadcasting the SSID.
  • Verify that the WLAN is mapped to a user VLAN, not the management interface.
  • Ensure HTTPS is enabled for web management access.
A.Enable the WLAN, set Broadcast SSID to Enabled, create a dynamic interface for VLAN 20 and map the WLAN to it, and enable the HTTPS server.
B.Enable the WLAN, set Broadcast SSID to Enabled, change the interface to the management interface, and enable the HTTPS server.
C.Enable the WLAN, keep Broadcast SSID Disabled for security, create a dynamic interface for VLAN 20 and map the WLAN to it, and enable the HTTPS server.
D.Enable the WLAN, set Broadcast SSID to Enabled, create a dynamic interface for VLAN 20 and map the WLAN to it, but leave HTTPS disabled for security.
AnswerA
solution
! WLC-1
config wlan 1 enable
config wlan 1 broadcast-ssid enable
config wlan 1 interface vlan20
config interface create vlan20 20
config interface address vlan20 192.168.20.1 255.255.255.0
config wlan 1 interface vlan20
ip http secure-server

Why this answer

The WLAN was disabled, the SSID was hidden (Broadcast SSID Disabled), and it was incorrectly mapped to the management interface instead of a user VLAN. Additionally, HTTPS access was disabled. The solution: enable the WLAN, enable SSID broadcast, change the interface to a VLAN 20 interface (e.g., create a dynamic interface 'vlan20' with VLAN 20), and enable the HTTPS server for management access.

Note: On an AireOS WLC, the correct commands use `config wlan enable <wlan_id>`, `config wlan broadcast-ssid enable <wlan_id>`, and `config network secureweb enable` for HTTPS.

Exam trap

This question tests your ability to identify multiple misconfigurations simultaneously. Common traps: confusing management interface with user VLANs, thinking hidden SSID is acceptable when broadcast is required, and overlooking the HTTPS requirement. Also, ensure you use AireOS-specific commands, not IOS commands like `ip http secure-server`.

Always verify all requirements in the question.

Why the other options are wrong

B

The specific factual error: The management interface is for WLC management traffic, not client data. Client traffic should be on a separate user VLAN.

C

The specific factual error: Broadcast SSID must be enabled for the SSID to be visible. Disabling it hides the SSID, which contradicts the requirement to make it visible.

D

The specific factual error: HTTPS must be enabled for management access. Disabling it would block HTTPS connections to the WLC.

Why candidates pick the wrong answer

B

Candidates might think the management interface is the only interface available or confuse it with a VLAN interface.

C

Candidates may believe hiding the SSID improves security and is acceptable, but the question explicitly requires the SSID to be broadcast.

D

Candidates might disable HTTPS thinking it reduces attack surface, but the question explicitly requires HTTPS access.

622
Multi-Selectmedium

Which TWO statements correctly describe the configuration and verification of IPv4 and IPv6 parameters for host connectivity, including default gateway, DNS, and subnet masks?

Select 2 answers
A.The subnet mask determines the DNS server address used by the host.
B.The default gateway must be on the same subnet as the host's IP address.
C.IPv6 hosts can only obtain their IP address via DHCPv6.
D.The command 'ipconfig /all' displays both IPv4 and IPv6 configuration details.
E.A host can reach any remote network if its default gateway is configured with any IP address.
AnswersB, D

For a host to deliver a frame to the default gateway, the gateway's IP must be in the same network/subnet as the host's interface, because the host uses ARP (or NDP for IPv6) to resolve the gateway's MAC address on the local link. If the gateway were on a different subnet, the host would not be able to reach it without another router on the local segment.

Why this answer

A host's default gateway must be on the same subnet to be reachable at Layer 2; otherwise, a circular dependency occurs. Option D is correct because the 'ipconfig /all' command displays both IPv4 and IPv6 configuration details, including IP address, subnet mask, default gateway, and DNS servers. Option A is wrong because the subnet mask determines the network and host portions of an IP address, not the DNS server address.

Option C is wrong because IPv6 hosts can obtain their IP address via SLAAC, DHCPv6, or static configuration; the phrase 'can only' makes it incorrect. Option E is wrong because the default gateway must be reachable (on the same subnet) and configured with an IP address that belongs to a router interface on that subnet, not just any IP address.

Exam trap

Cisco often tests the misconception that IPv6 hosts require DHCPv6 for address assignment, when in fact SLAAC is a common and valid method, and the question's wording 'can only' is the trap that eliminates Option C.

Why the other options are wrong

A

The subnet mask is used to determine the network portion of an IP address and the host portion, not the DNS server address. DNS server addresses are configured separately, either manually or via DHCP.

C

IPv6 hosts can obtain their IP address via Stateless Address Autoconfiguration (SLAAC), which does not require DHCPv6. DHCPv6 is optional and used for stateful configuration or to provide additional parameters.

E

The default gateway must be on the same subnet as the host's IP address; otherwise, the host cannot send Ethernet frames to it because the gateway's MAC address would not be reachable via ARP. An arbitrary IP address would not work.

Why candidates pick the wrong answer

A

Students might confuse the subnet mask with other configuration parameters, thinking it influences DNS server assignment because both are part of IP configuration.

C

Students familiar with IPv4 DHCP might assume IPv6 also requires a similar server-based address assignment, overlooking SLAAC as an alternative.

E

Students might think any IP address can serve as a default gateway, not realizing the necessity of Layer 2 adjacency for frame delivery.

623
MCQhard

Two switches should form an EtherChannel with LACP. One side is set to active and the other is set to passive. If the remaining interface settings match, what is the expected result?

A.The EtherChannel should form successfully.
B.The EtherChannel fails because both sides must be active.
C.The interfaces automatically become routed ports.
D.The switches delete the port-channel automatically.
AnswerA

In LACP, an interface configured as active actively sends LACP PDUs, while passive only responds to incoming PDUs. When one switch is active and the other passive, the active side's PDUs trigger the passive side to reply, allowing both devices to exchange port attributes and form a stable EtherChannel. The active/passive configuration is explicitly supported by the IEEE 802.3ad standard and is a common deployment for connecting to switches that do not support the active mode.

Why this answer

The EtherChannel should form successfully. In practical terms, active mode initiates LACP negotiation and passive mode listens and responds. Because one side is actively starting the negotiation, the bundle can come up if the interfaces also match in operational settings such as speed, duplex, switchport mode, and VLAN characteristics.

This is a classic LACP pairing question. Active/passive works. Passive/passive is the combination that usually fails to start the bundle.

Exam trap

Remember, LACP requires only one side to be active; passive mode will still respond.

Why the other options are wrong

B

LACP allows an active port to form a bundle with a passive port; the passive side simply waits for LACP packets from the active side. Therefore, both sides do not need to be active.

C

LACP mode does not change the Layer 2 or Layer 3 status of interfaces; it only controls the negotiation of EtherChannel bundling. Interfaces remain as switchports unless explicitly configured as routed ports.

D

LACP negotiation failure does not automatically delete the port-channel interface or its configuration. The port-channel remains, but the member ports will not bundle and will operate as individual ports.

When would these options actually be correct?

B

In a different scenario, if the question specified that both switches were configured to active mode without any passive configuration, then this option would be correct, as both sides must be active for the EtherChannel to establish.

C

If the question specified that the switches were configured to operate in a mode that requires routed ports, such as in a Layer 3 EtherChannel scenario, then this option would be correct. In that case, the interfaces would indeed become routed ports to facilitate Layer 3 communication.

D

This option would be correct in a scenario where the configuration of the switches is incorrect or incompatible, leading to a situation where the port-channel cannot be established, thus triggering an automatic deletion of the port-channel configuration.

Why candidates pick the wrong answer

B

Students often confuse LACP with PAgP, where desirable/auto pairing is similar, or mistakenly think that passive means the link will never form, but LACP passive can still respond to active requests.

C

Some might think that because LACP is a Layer 2 protocol, it could affect the interface mode, but it does not. The confusion may arise from the fact that EtherChannel can be configured on Layer 3 interfaces, but LACP itself does not convert them.

D

Students might think that if negotiation fails, the switch cleans up the configuration to avoid errors, but Cisco switches do not automatically remove configured port-channels; manual intervention is required.

624
Multi-Selectmedium

Which TWO statements correctly describe the configuration and verification of IPv4 and IPv6 parameters for host connectivity?

Select 2 answers
A.On a Windows host, the default gateway IPv4 address must be on the same subnet as the host's IPv4 address.
B.The IPv6 default gateway can be any global unicast address on the internet.
C.The subnet mask is used to define the host portion of an IPv4 address.
D.A DNS server address can be statically configured on a host or obtained dynamically via DHCP.
E.Configuring a DNS server is mandatory for a host to communicate with any other device on the same subnet.
AnswersA, D

On a Windows host, and on any IPv4 host, the default gateway address must reside on the same subnet as the host's own IPv4 address because the host must deliver Ethernet frames directly to the gateway using its MAC address, obtained via ARP. If the gateway were on a different subnet, the host would need to use another router to reach it, which contradicts the purpose of the default gateway as the immediate next hop. The host validates this by applying its own subnet mask to the gateway address and will reject it if it ends up in a different network.

Why this answer

For a host to reach outside its subnet, the default gateway's IP must be in the same subnet; otherwise the host cannot ARP for the gateway's MAC and traffic will fail. Option D is correct because DNS server addresses can be set manually or assigned via DHCP. Option B is wrong because IPv6 gateways must be on the same local link, not any global unicast address on the internet.

Option C is wrong because the subnet mask defines the network/subnet portion of an IPv4 address, not the host portion. Option E is wrong because DNS is used for name resolution; local IP communication on the same subnet works without DNS.

Exam trap

Cisco often tests the misconception that a default gateway can be any routable address, but the trap here is that both IPv4 and IPv6 default gateways must be on the same local subnet as the host for Layer 2 reachability.

Why the other options are wrong

B

An IPv6 default gateway must be on the same local link, not just any globally routable address.

C

The subnet mask identifies the network bits, not the host bits; the host portion is the inverse of the mask.

E

DNS resolves names to IPs; hosts on the same subnet can communicate with IP addressing alone, making DNS optional.

Why candidates pick the wrong answer

B

Students may confuse IPv6's large address space with the idea that any global unicast address could be used as a gateway, but they overlook that the gateway must be directly connected to the host's link.

C

The phrase 'determines the host portion' is ambiguous; students might think the mask directly sets the host bits, but it actually separates the address into network and host parts.

E

Students may think DNS is essential for all network communication because many applications rely on domain names, but they forget that direct IP communication does not require DNS.

625
MCQhard

A switch receives BPDUs on a user-facing port configured as an edge port, but instead of just blocking the port role it fully error-disables it. Which protection feature most likely explains that behavior?

A.BPDU Guard
B.Root guard
C.Port security
D.DHCP snooping
AnswerA

BPDU Guard is a security feature designed for edge or access ports, typically used with PortFast. When a port configured with BPDU Guard receives any BPDU, it immediately transitions to the err-disabled state, because an unexpected BPDU indicates that a switch or bridge is connected to an end-user segment. This prevents the possibility of a bridging loop caused by a rogue switch and does not require manual intervention beyond the initial configuration, though recovery can be automatic if err-disable timeout is set.

Why this answer

BPDU Guard most likely explains that behavior. In practical terms, BPDU Guard is used to protect ports that are expected to face ordinary endpoints, not other switches. If BPDUs appear on such a port, the device treats that as a serious topology-policy violation and shuts the port down.

This is different from features that merely influence spanning-tree role choice without fully error-disabling the interface.

Exam trap

Be careful not to confuse BPDU Guard with other spanning tree protection features that do not disable ports upon receiving BPDUs.

Why the other options are wrong

B

Root guard does not error-disable a port; instead, it places the port into a root-inconsistent state if a superior BPDU is received, preventing the port from becoming a root port. It is used to enforce the root bridge location, not to disable ports upon BPDU reception.

C

Port security restricts the number of MAC addresses learned on a port and can error-disable the port if a violation occurs (e.g., too many MAC addresses). It does not react to BPDUs; its focus is on MAC address learning, not spanning-tree BPDUs.

D

DHCP snooping is a security feature that filters DHCP messages and can error-disable a port if a DHCP violation occurs (e.g., rogue DHCP server). It does not inspect or react to BPDUs, which are layer 2 spanning-tree frames.

When would these options actually be correct?

B

In a scenario where a switch port is configured to prevent a non-root bridge from becoming the root bridge, a question could ask about the behavior of a port receiving BPDUs on a non-edge port. In that case, root guard would be the correct answer as it would block the port to maintain the intended topology.

C

If the question were about a switch port configured with port security that had a violation due to exceeding the allowed number of MAC addresses, and the switch subsequently error-disabled the port, then 'Port security' would be the correct answer.

D

In a scenario where the question asks about a switch port that is configured to prevent rogue DHCP servers and is receiving DHCP packets from an unauthorized source, DHCP snooping would be the correct answer if the port was shut down due to this violation.

Why candidates pick the wrong answer

B

Students may confuse root guard with BPDU Guard because both involve BPDU processing and protection. However, root guard's behavior is to keep the port operational but in a special state, not to error-disable it.

C

Port security is a common feature that causes error-disable, so test-takers might assume it applies here. However, the trigger for port security is MAC address violations, not BPDU reception.

D

DHCP snooping is another feature that can cause error-disable, leading to confusion. But its trigger is DHCP-related, not BPDU-related, so it is not applicable here.

626
MCQhard

A host address is 172.16.8.70/26. What is the network address of its subnet?

A.172.16.8.0
B.172.16.8.64
C.172.16.8.70
D.172.16.8.128
AnswerB

For a /26 prefix, the subnet mask is 255.255.255.192, which creates block sizes of 64 addresses in the fourth octet. The host address .70 lies in the range 64–127, so the network address is found by zeroing the host bits: 70 AND 192 = 64. Thus, 172.16.8.64 is the correct network address for this host.

Why this answer

A /26 uses blocks of 64 addresses. In plain language, the fourth-octet subnet ranges are 0–63, 64–127, 128–191, and 192–255. Since the host address ends in 70, it belongs to the 64–127 block. That means the network address of the subnet is 172.16.8.64.

This is a standard subnetting calculation. The key is to identify the correct block based on the prefix and then choose the first address in that block as the network address.

Exam trap

A frequent exam trap is mistaking the host IP address for the network address or selecting the wrong subnet block based on the subnet mask. Candidates often pick 172.16.8.0 because it looks like a common network address or 172.16.8.128 assuming it’s the next block, but these do not contain the host 172.16.8.70 under a /26 mask. The trap arises from not calculating subnet ranges correctly or misunderstanding how subnet masks segment the address space into fixed blocks.

This mistake leads to incorrect subnet identification and can cause routing or addressing errors in real networks.

Why the other options are wrong

A

172.16.8.0 is incorrect because the /26 subnet blocks cover 0–63, 64–127, etc., and the host address 70 does not fall within the 0–63 range. Selecting this ignores the actual subnet boundaries defined by the mask.

C

172.16.8.70 is incorrect because this is the host address itself, not the network address. The network address must be the first address in the subnet block, not a host address within it.

D

172.16.8.128 is incorrect because this subnet block starts at 128, which is above the host address 70. The host does not belong to this subnet, so this cannot be the network address.

When would these options actually be correct?

A

If the question asked for the network address of the subnet for a host address of 172.16.8.70 with a subnet mask of /24, then 172.16.8.0 would be the correct answer, as it represents the beginning of that subnet.

C

If the question asked for the specific host address within the subnet or if it was framed to identify a host's IP address rather than the network address, then 172.16.8.70 would be the correct answer.

D

In a different question, if the subnet mask were changed to /25, the network address would be 172.16.8.128. For example, a question asking for the network address of the subnet containing the host 172.16.8.130 with a /25 mask would make this option correct.

Why candidates pick the wrong answer

A

Students often mistakenly assume that the network address is always the first address of the entire /16 or /24 network, ignoring the subnetting. They might think 172.16.8.0 is the network address because it is the first address in the 172.16.8.0/24 range.

C

A student might confuse the host address with the network address, especially if they are not careful about the distinction between the two. They might think that the given IP address itself is the network address.

D

Students sometimes miscalculate the subnet boundaries, especially when the host address is near the boundary. They might incorrectly think that 70 is close to 128 and choose 172.16.8.128 without performing the proper calculation.

627
Drag & Dropmedium

Drag and drop the following steps into the correct order to sequence the DNS resolution process from a client query to receiving an A-record response, followed by the diagnostic workflow using nslookup and dig to identify a missing or incorrect A-record.

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

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

Why this order

The standard DNS resolution sequence ends with the client receiving the A-record. Troubleshooting uses nslookup first for basic checks, then dig +trace for detailed path analysis.

Exam trap

Do not confuse the client's initial query destination (configured DNS server, not root) and remember the troubleshooting order: nslookup before dig +trace. Also, avoid inserting extra steps like explicit cache returns.

Why candidates pick the wrong answer

B

Candidates may think the client directly queries root servers, or they may confuse the order of troubleshooting tools.

C

Candidates might think dig +trace is more powerful and should be used first, but nslookup is simpler and should be the initial diagnostic step.

D

Candidates may overcomplicate the process by explicitly including cache behavior, but the question expects the standard iterative resolution steps without extra detail.

628
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure a switch port for data and voice traffic.

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

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

Why this order

The correct order is: 1) Enter interface configuration mode, because all port-specific commands must be applied under the interface. 2) Set the port as an access port with 'switchport mode access'—a voice VLAN can only be assigned on an access port. 3) Assign the data VLAN with 'switchport access vlan' to ensure proper Layer 2 forwarding for data traffic. 4) Assign the voice VLAN with 'switchport voice vlan' so the IP phone's voice frames are tagged with the voice VLAN. 5) Enable PortFast with 'spanning-tree portfast' to immediately transition the port to forwarding, preventing DHCP timeouts for the phone and host.

629
Matchingmedium

Drag and drop the cable types and transceivers on the left to their corresponding distance limits or interface diagnostics on the right.

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

Concepts
Matches

100 meters maximum segment length

550 meters maximum segment length

5 km maximum segment length

300 meters over multimode fiber

Displays interface errors, speed, and duplex

Why these pairings

Each cable type or transceiver has a specified maximum distance based on IEEE standards and fiber-optic characteristics. Cat5e UTP supporting 1000BASE-T is limited to 100 meters due to signal attenuation and the 1000BASE-T standard. Multimode fiber OM3 with 1000BASE-SX (short wavelength) reaches up to 550 meters because of modal dispersion and the SX transceiver's power budget.

Singlemode fiber with 1000BASE-LX (long wavelength) can transmit up to 5 kilometers due to lower attenuation and reduced dispersion in single-mode fiber. The SFP-10G-SR (short-reach 10 Gigabit) transceiver over OM3 multimode fiber has a maximum distance of 300 meters per the 10GBASE-SR standard. The 'show interfaces' command displays critical interface diagnostics such as input/output errors, speed, duplex settings, and CRC errors, which are essential for troubleshooting link issues.

Exam trap

Be careful not to confuse the distance limits of multimode vs. single-mode fiber. Remember: SX = short reach (hundreds of meters), LX = long reach (kilometers), ER = extended reach (tens of kilometers). Copper is always 100m.

630
Matchingmedium

Drag and drop the syslog severity levels and NTP concepts on the left to their correct descriptions on the right.

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

Concepts
Matches

Emergency: system is unusable

Debugging: detailed debug messages

Reference clock (e.g., atomic clock or GPS)

Unsynchronized or maximum usable stratum

Configures an IOS-XE device as an NTP client

Displays NTP synchronization state and stratum

Why these pairings

Syslog severity levels range from 0 (Emergency) to 7 (Debug), with 0 being the most critical. NTP stratum indicates clock accuracy: stratum 0 is the reference clock, stratum 1 is directly connected to a reference, and so on up to stratum 15, which is the maximum usable synchronized stratum. Stratum 16 means the device is unsynchronized.

The ntp server command configures a device as a client, and show ntp status displays synchronization state and current stratum.

Exam trap

Be careful not to confuse the severity order of syslog levels: lower numbers (0) are more severe, higher numbers (7) are less severe. Also, remember that NTP stratum numbers work inversely to accuracy: lower stratum numbers indicate higher accuracy, with Stratum 0 being the most accurate reference clock.

Why candidates pick the wrong answer

B

Candidates might think Stratum 0 is the lowest level in the hierarchy and thus a client, but in NTP, lower stratum numbers indicate higher accuracy, and Stratum 0 is the top.

C

Candidates may confuse the highest number (7) with the most severe, but in syslog, lower numbers are more severe.

D

Candidates might pick this if they have multiple misconceptions, such as thinking higher syslog numbers are more severe and that Stratum 0 is a client.

631
MCQmedium

Which rule does a router apply first when selecting a route for a destination packet?

A.Lowest metric across all protocols
B.Oldest route in the routing table
C.Longest prefix match
D.Default route if one exists
AnswerC

A router's IP forwarding logic first identifies all routes whose prefix matches the destination address's network portion. It then selects the route with the longest subnet mask because that prefix is the most specific representation of the destination, even if that route has a higher metric. This rule is non-negotiable and precedes any metric or administrative-distance comparison.

Why this answer

Routers first look for the most specific matching prefix. Administrative distance and metrics matter when competing routes exist for the same destination prefix length.

Exam trap

Remember, prefix length is the primary factor in route selection, not administrative distance or metrics.

Why the other options are wrong

A

The router first uses the longest prefix match to select a route; metrics are only compared among routes from the same routing protocol or when administrative distance is equal. Comparing metrics across different protocols is not the first step.

B

Route age is not a primary selection criterion; routers use longest prefix match first, then administrative distance, then metric. Older routes are not preferred over newer ones in the selection process.

D

A default route is only used when no other route matches the destination; the router first checks for more specific matches using the longest prefix match. The default route is the least preferred.

When would these options actually be correct?

A

In a question focused on route selection across multiple routing protocols where the lowest metric is explicitly defined as the primary selection criterion, such as in a scenario comparing OSPF and EIGRP routes, this option would be correct.

B

If the exam question asked which route a router would choose when all other metrics are equal, and the only differentiating factor is the age of the routes, then selecting the oldest route could be considered correct in that specific context.

D

If the exam question asked which route a router would select when no specific routes exist for a destination, then option D would be correct. In this scenario, the router would use the default route as a fallback to forward packets.

Why candidates pick the wrong answer

A

Students often confuse the order of route selection, thinking that lower metric is always preferred, but metric comparison occurs only after the longest prefix match and administrative distance checks.

B

Some might think that older routes are more stable or trusted, but route age is irrelevant for forwarding decisions; it is only used in some routing protocols for tie-breaking (e.g., OSPF) but not as the first rule.

D

Students may think that a default route is a catch-all and thus applied first, but in reality, it is the last resort after all other routes have been evaluated.

632
MCQeasy

A switchport should allow only one learned MAC address and shut down if a different device is connected later. Which port security violation mode and limit combination best fits that goal?

A.maximum 1 with violation shutdown
B.maximum 10 with violation protect
C.maximum 1 with violation restrict and no logging
D.maximum unlimited with violation shutdown
AnswerA

This is the only configuration that meets the stated requirement exactly: port-security with a maximum of 1 restricts the interface to a single learned MAC address, and the shutdown violation mode immediately places the port into the err-disabled state if a second address is seen, effectively blocking all traffic on the port until an administrator manually re-enables it. Because both criteria—one learned MAC and automatic shutdown—are satisfied, this is the correct answer.

Why this answer

The usual setup is maximum 1 MAC address with violation mode shutdown. That way the port is disabled when an unauthorized device appears.

Exam trap

Be careful not to confuse the different port security violation modes. Only shutdown mode disables the port upon a violation.

Why the other options are wrong

B

The maximum limit of 10 MAC addresses is too high for the requirement of allowing only one learned MAC address. Additionally, protect mode drops frames from unknown MACs but does not shut down the port, so the port remains active even after a violation.

C

Restrict mode does not shut down the port; it only logs and drops frames from unknown MACs. The requirement explicitly states the port should shut down, which restrict does not achieve.

D

Setting the maximum to unlimited defeats the purpose of limiting MAC addresses to one. Even though violation mode is shutdown, the port will never trigger a violation because there is no limit, so it will never shut down due to port security.

When would these options actually be correct?

B

In a different scenario where the requirement is to allow multiple devices for redundancy, a question might ask for a configuration that permits up to 10 MAC addresses while using 'protect' mode to prevent traffic disruption. This would be suitable in environments where device changes are frequent but should not cause immediate shutdowns.

C

This option would be correct in a scenario where the requirement is to limit the number of MAC addresses to one, but the organization prefers to log the violations and continue allowing traffic from the first learned MAC address without shutting down the port.

D

In a different scenario where the requirement is to allow any number of devices to connect without restriction, and the goal is to shut down the port only after a specific security threshold is reached, option D would be appropriate. For example, a question might ask for a configuration that allows multiple devices but requires shutdown after a certain security incident.

Why candidates pick the wrong answer

B

Students might confuse protect mode with shutdown mode, thinking it also disables the port. The term 'protect' sounds secure, but it only drops traffic without disabling the port.

C

Students may think restrict is a stricter action than it actually is, or they may overlook the 'no logging' part and assume restrict includes shutdown.

D

Students might focus only on the violation mode 'shutdown' and ignore the maximum limit, thinking that shutdown alone ensures the port will be disabled. However, without a limit, no violation occurs.

633
MCQhard

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

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

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

Why this answer

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

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

Exam trap

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

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

Why the other options are wrong

A

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

C

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

D

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

When would these options actually be correct?

A

In a scenario where the question asks which route would be used for traffic to an IP address like 192.168.100.50, the option 192.168.100.0/24 would be correct, as it encompasses the entire /24 subnet and is the only applicable route for that address.

C

In a different question context where no specific routes are defined for the destination IP, and the router has only a default route configured (0.0.0.0/0), the default route would be the only option available for routing traffic to any unknown destination.

D

In a scenario where the question states that both routes are configured with the same prefix length and the router is set to prefer the longest prefix match, a question could ask which route is used for a specific address, leading to confusion about overlapping routes. In that case, if both routes were truly overlapping, the answer could be 'neither' due to ambiguity.

Why candidates pick the wrong answer

A

Students might think that because 192.168.100.140 falls within the /24 range, the /24 route would be used, forgetting that a more specific (longer prefix) route takes precedence.

C

Students may confuse the concept of default route with a catch-all, thinking it might be used when there are overlapping routes, but the longest prefix match rule always applies first.

D

Some students might think overlapping routes cause ambiguity or errors, but routers are designed to handle them by selecting the most specific prefix.

634
MCQhard

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

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

The router uses the longest-prefix match rule when selecting a route, so the /24 connected route is preferred over the /16 static route because it is more specific. The static /16 route remains in the routing table and will be used for other destinations in the 172.16.0.0/16 range that are not covered by the /24. Thus, the static route is not used for that particular subnet because of the /24's longer mask.

Why this answer

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

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

Exam trap

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

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

Why the other options are wrong

B

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

C

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

D

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

When would these options actually be correct?

B

In a different scenario where a question asks if static routes are ever ignored when a connected route exists, and the context specifies that no other routing metrics apply, this option could be correct. For instance, if the question states that static routes are completely disregarded in the presence of any connected routes, option B would be accurate.

C

In a different scenario where the question states that all routes, including connected routes, have an administrative distance of 255, this option would be correct. For example, if the exam asks why a static route is preferred over a connected route with an artificially high administrative distance, then option C would apply.

D

In a question where the context specifies that only default routes are being considered for routing decisions, and no other static routes are present, this option could be correct. For example, if the question states that all other routes are dynamic or connected, and only a default static route is configured, then it would be accurate to say static routes work only for default routing.

Why candidates pick the wrong answer

B

Students might think that connected routes always take precedence over static routes, but that is not true; the decision is based on prefix length and administrative distance, not simply the presence of a connected network.

C

Test-takers may confuse administrative distance values or think that connected routes have a high AD, but in reality, they are the most preferred. The mention of 255 might be associated with routes that are not installed.

D

Some students may think static routes are only for default routes because they often see 'ip route 0.0.0.0 0.0.0.0' in examples, but static routes can be used for any destination.

635
MCQmedium

Exhibit: A script sends an HTTP GET request to a controller API endpoint. What is the usual purpose of the GET method?

A.Retrieve information from the resource
B.Create a brand-new resource
C.Replace the entire resource configuration
D.Delete the resource
AnswerA

The HTTP GET method is defined as a safe, idempotent request that retrieves a representation of the resource identified by the URI without altering server state. In the context of a controller API, GET is specifically used to read current configuration, status, or data. A successful GET returns a 200 OK response with the payload, making it the correct method for retrieval.

Why this answer

In REST-style APIs, GET is normally used to retrieve data from a resource. It is not the standard method for creating or replacing resources.

Exam trap

Be careful not to confuse GET with other HTTP methods like POST, PUT, or DELETE, which have different purposes.

Why the other options are wrong

B

Creating a new resource is typically done using the POST method, not GET. GET is designed for safe and idempotent retrieval of data, not for creating resources.

C

Replacing the entire resource configuration is the purpose of the PUT method, which is idempotent and used for updates. GET is not intended for modifying resources.

D

Deleting a resource is performed using the DELETE method. GET is a safe method that should not have side effects like deletion.

When would these options actually be correct?

B

In a different exam scenario, if the question asked about the HTTP POST method and its purpose in a RESTful API context, option B would be correct, as POST is used to create new resources on the server.

C

In a different question, if the context were about the HTTP PUT method and the question asked about its purpose, then option C would be correct as PUT is used to replace the entire resource configuration at the specified URI.

D

In a different question, if it asked about the purpose of the DELETE method in an API context, option D would be correct, as it would pertain to the action of removing a specified resource from the server.

Why candidates pick the wrong answer

B

Students might confuse GET with POST because both are common HTTP methods, but they serve different purposes. The word 'get' might be misinterpreted as 'obtain a new resource' rather than 'retrieve existing data'.

C

Some might think GET can be used to 'get' a new configuration by replacing it, but this is incorrect. The similarity in naming between 'GET' and 'PUT' can cause confusion.

D

Students might associate 'GET' with any action that retrieves or removes data, but DELETE is specifically for removal. The word 'get' might be loosely interpreted as 'get rid of'.

636
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure an LACP EtherChannel on Cisco IOS-XE switches.

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

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

Why this order

First, enter global config mode. Then create the port-channel interface. Next, configure the channel-group mode on each physical interface to active for LACP.

Finally, verify the configuration.

Exam trap

A common trap is to configure the channel-group mode on physical interfaces before creating the port-channel interface, or to forget that global configuration mode is the first step. Always remember the sequence: global config -> port-channel interface -> physical interface channel-group -> verification.

Why candidates pick the wrong answer

B

Candidates might think that creating the port-channel interface is the first step, but they forget that global config mode is required first.

C

Candidates might think that configuring the physical interfaces first is correct, but the port-channel interface must be created first.

D

Candidates might think that creating the port-channel interface is the first step and that verification can be done earlier, but the sequence is incorrect.

637
MCQhard

A router is performing PAT for inside users. Which detail allows multiple inside sessions to share one public IPv4 address at the same time?

A.Use of transport-layer port numbers to distinguish sessions
B.Replacement of all MAC addresses with broadcast addresses
C.Automatic conversion of every subnet into a /32
D.Requirement that every inside host use the same private IP address
AnswerA

PAT (Port Address Translation) relies on the TCP or UDP port numbers to differentiate multiple simultaneous sessions from different inside hosts that all share the same public IP address. When a host sends a packet, the router assigns a unique source port, stores the mapping in its NAT table, and later uses that port to reverse the translation and deliver the response to the correct private host.

Why this answer

PAT works because it uses transport-layer port numbers to keep different conversations distinct even when they share the same public IP address. In plain language, the router rewrites and tracks port information so that return traffic can be matched back to the correct inside host and application session. That is what makes one public address usable for many simultaneous internal users.

This is a key difference between PAT and simple static NAT. Static NAT creates a fixed one-to-one relationship, while PAT creates many simultaneous translations differentiated by port values. The correct answer is the one that identifies port-based tracking as the reason the design scales beyond a single host.

Exam trap

Remember, PAT uses port numbers to differentiate sessions, not MAC addresses, IP addresses, or VLAN IDs.

Why the other options are wrong

B

PAT does not replace MAC addresses with broadcast addresses; MAC addresses are used for local network segment communication and are not involved in NAT/PAT operations. Broadcast addresses are used for sending packets to all hosts on a subnet, which would not help in distinguishing individual sessions.

C

PAT does not convert subnets into /32 addresses; it translates private IP addresses and port numbers to a single public IP address with different port numbers. Changing subnet masks to /32 would imply host-specific routing, which is not how PAT functions.

D

PAT does not require all inside hosts to use the same private IP address; in fact, each host typically has a unique private IP address. PAT translates these unique private addresses to the same public IP but with different port numbers to maintain session uniqueness.

When would these options actually be correct?

B

In a different context, a question could ask about the effects of broadcast traffic on a network, where replacing MAC addresses with broadcast addresses might be a method to ensure that all devices receive a message, making this option correct in that scenario.

C

In a different context, a question could ask about the implications of subnetting in a network design where each host must be uniquely identifiable, and the correct answer would be that converting every subnet into a /32 ensures that each device has a unique address, suitable for certain routing scenarios.

D

In a different scenario where the question asks about a network configuration that enforces strict IP address management, such as a highly controlled environment where multiple devices must share a single private IP for security reasons, this option could be correct. The question might specify that all devices are configured to use the same private IP for internal routing.

Why candidates pick the wrong answer

B

Students might confuse the concept of address translation with MAC address manipulation or think that broadcasting is used to reach all hosts, but PAT operates at Layer 3 and Layer 4, not Layer 2.

C

The idea of using a /32 mask might be tempting because PAT effectively makes the public IP address appear as a single host address, but the mechanism is port-based translation, not subnet mask manipulation.

D

A student might think that since PAT uses one public IP, all inside hosts must have the same private IP, but that would cause address conflicts. PAT relies on unique private addresses combined with port numbers for translation.

638
Multi-Selectmedium

Which single OSI model layer is responsible for both end‑to‑end reliable data delivery and segmenting data into smaller units?

Select 1 answer
A.Transport layer (Layer 4)
B.Data Link layer (Layer 2)
C.Network layer (Layer 3)
D.Session layer (Layer 5)
E.Transport layer (Layer 4) and Network layer (Layer 3)
AnswersA

The Transport layer (Layer 4) is correct: it accepts data from the Session layer, divides it into segments, and is responsible for end-to-end delivery. TCP, a Transport layer protocol, provides reliable delivery via sequence numbers, acknowledgments, timeouts, and retransmissions, while UDP is a simpler, unreliable transport alternative. This layer is uniquely positioned to ensure that the entire message arrives intact and in order across the network.

Why this answer

The Transport layer (Layer 4) is the only OSI layer responsible for both end‑to‑end reliable data delivery (via protocols like TCP) and segmenting data into smaller units (segments). The Network layer (Layer 3) handles routing and packetizing but does not provide reliability. Therefore, only the Transport layer fulfills both requirements.

Exam trap

Candidates may think the Network layer also performs both functions because it segments data into packets and provides end‑to‑end delivery, but reliability is strictly a Transport layer function. The question asks for a single layer, so combining Transport and Network is incorrect.

Why the other options are wrong

B

The Data Link layer handles framing and error detection on a single link, not end‑to‑end reliability or segmentation across the entire network.

C

The Network layer provides routing and logical addressing but does not guarantee delivery or perform segmentation of data from applications.

D

The Session layer manages dialog control between applications, not data segmentation or reliable transport mechanisms.

When would these options actually be correct?

E

In real enterprise networks, the Transport layer (Layer 4) ensures end-to-end reliable delivery (e.g., TCP) and segments data into segments. The Network layer (Layer 3) provides logical addressing and routing of packets, which is essential for end-to-end delivery across multiple networks. Together, they directly support end-to-end communication, though segmentation is exclusively a Transport layer function.

Why candidates pick the wrong answer

B

Students might confuse the Data Link layer's framing with segmentation, as both involve breaking data into smaller units. However, framing occurs at Layer 2 and is for local delivery, while segmentation at Layer 4 is for end-to-end transport.

C

Students might think the Network layer handles segmentation because it deals with packets, but packets are the PDU of Layer 3 and are created from segments. The actual segmentation occurs at Layer 4.

D

Students might associate 'session' with end-to-end communication and mistakenly think the Session layer handles reliable delivery. However, reliability is a Transport layer responsibility.

639
MCQhard

Users in VLAN 60 on switch SW2 cannot reach the default gateway located on switch SW1. The trunk between SW1 and SW2 is operational and allows VLAN 60. What is the most likely reason for this issue?

A.VLAN 60 does not exist locally on SW2.
B.The native VLAN must be changed to 60 on both switches.
C.VLAN 60 is not allowed on the trunk link.
D.The default gateway must be configured as a loopback on SW2.
AnswerA

This is the most likely reason: SW2 has not been created with VLAN 60, so it does not have a spanning-tree instance or a switch virtual interface for that VLAN. Even if the trunk port with SW1 allows VLAN 60 and receives tagged frames, those frames are discarded because the VLAN is not present in SW2's VLAN database. Consequently, users in VLAN 60 cannot communicate through SW2, and no access port or SVI can be assigned to that VLAN.

Why this answer

VLAN 60 has not been created locally on SW2, even though the trunk can carry its traffic. A switch never processes VLAN traffic for a VLAN it doesn't know about; it discards tagged frames from the trunk destined for that VLAN and prevents access ports from assigning frames to it. (A) is correct. (B) is incorrect because native VLAN configuration only affects untagged frames—changing it to 60 is unnecessary for tagged VLAN 60 traffic. (C) is incorrect because the trunk is already configured to allow VLAN 60, so trunk filtering isn't the problem. (D) is incorrect because a default gateway is simply an IP address on a router or Layer 3 switch interface (like SVIs) and does not require a loopback on SW2.

Exam trap

Don't assume trunk configuration alone resolves VLAN issues; ensure VLANs exist on all relevant switches.

Why the other options are wrong

B

Native VLAN configuration does not affect tagged VLAN 60 traffic—native VLAN only matters for untagged frames.

C

The trunk is stated to allow VLAN 60, so VLAN filtering is not the problem; a student might misread the premise.

D

The default gateway resides on SW1, not SW2; configuring a loopback on SW2 does not create a gateway for VLAN 60.

When would these options actually be correct?

B

In a different scenario where the question asks about VLAN configuration issues related to untagged traffic, changing the native VLAN to 60 could be necessary to ensure that devices on VLAN 60 can communicate properly with devices on other VLANs that are also configured to use the same native VLAN.

C

In a different scenario, if the question specified that only PPP encapsulation is allowed for VLANs on a trunk link, then this option could be correct. For example, if the question stated that VLANs are only operational when PPP is configured on the trunk, then this option would apply.

D

In a different scenario where the question specifies that the network design requires the default gateway to be a loopback interface for redundancy or routing purposes, this option could be correct. For instance, if the exam question states that SW2 must use a loopback interface for routing protocols, then this option would be valid.

Why candidates pick the wrong answer

B

Students often confuse the native VLAN with the VLAN that carries user traffic. They might think that setting the native VLAN to 60 would allow VLAN 60 traffic to pass, but native VLAN is only for untagged frames and does not affect tagged VLAN forwarding.

C

Test-takers might confuse PPP with a protocol that can carry multiple VLANs, but PPP is a layer 2 protocol for point-to-point links and does not support VLANs. The mention of 'PPP' might be mistaken for 'P' in '802.1Q' or a similar acronym.

D

Students might think that a loopback interface can serve as a default gateway because it is always up. However, the default gateway must be on the same subnet as the hosts and reachable via the VLAN. Configuring a loopback on SW2 would not provide connectivity to SW1's gateway.

640
MCQhard

After a hub was connected to interface Gi0/10, the interface immediately entered errdisable state. The following syslog message was generated: '%PORT_SECURITY-2-PSECURE_VIOLATION: Security violation occurred on interface Gi0/10.' What is the strongest explanation for why Gi0/10 shut down?

A.Port security detected more MAC addresses than allowed on the interface.
B.The interface received a superior BPDU and became the root port.
C.The hub forced the interface to become a routed port.
D.DHCP snooping always shuts a port when a hub is attached.
AnswerA

Port security is explicitly configured to allow only one secure MAC address, and the violation message indicates that additional MAC addresses were seen on the interface. When a hub connects, multiple end devices share that single physical port, causing the switch to detect more source MACs than the configured maximum. This triggers the port-security violation and puts the interface into an error-disabled state, matching the exhibit.

Why this answer

The strongest explanation is a port-security violation caused by the switch seeing more secure MAC addresses than the interface allows. In practical terms, a hub or unmanaged device can cause multiple end hosts to appear behind one access port. If the interface is configured with a maximum of one secure MAC address, additional learned MACs trigger the violation action.

This is a realistic access-layer security scenario because the port does not fail randomly. It fails because the observed behavior violates the configured policy.

Exam trap

Remember that port security specifically deals with MAC address limits, not broadcast storms or spanning-tree issues.

Why the other options are wrong

B

The exhibit shows a port-security violation message, not an STP topology change. A superior BPDU would cause a root port election, not a port shutdown due to security policy.

C

Connecting a hub does not change the interface type; a switchport remains a Layer 2 interface unless explicitly configured with 'no switchport'. The exhibit shows a Layer 2 security violation, not a routed port conversion.

D

DHCP snooping does not automatically shut down a port when a hub is attached; it filters DHCP messages and can disable ports only if a DHCP server is detected on an untrusted port. The exhibit clearly shows a port-security violation message.

When would these options actually be correct?

B

In a different question, if the scenario described involved a switch that was configured to participate in a spanning tree topology and received a superior BPDU from another switch, this option would be correct. The question would need to focus on spanning tree behavior rather than port security.

C

In a different scenario, if the question specified that the interface was configured to operate as a routed port and the hub was connected, causing a configuration change or a specific routing protocol behavior, this option could be correct. For example, if the exam asked about a network where the hub's behavior led to a routing protocol conflict, this could apply.

D

In a different question, if the scenario involved a network where DHCP snooping was explicitly configured to shut down ports upon detecting unauthorized devices, then this option could be correct. For instance, a question could describe a network with strict DHCP snooping policies and ask about the behavior of a port when a hub is connected.

Why candidates pick the wrong answer

B

Students often confuse STP events with port security because both can cause a port to change state. The term 'superior BPDU' sounds plausible for a port going down, but the actual cause is a security violation.

C

Some students might think that hubs introduce Layer 1 issues that could force a port to become routed, but this is not a standard behavior. The concept of routed ports is often misunderstood.

D

DHCP snooping and port security are both security features that can cause port shutdowns, leading to confusion. Students may incorrectly attribute the shutdown to DHCP snooping without reading the violation message.

641
PBQhard

You are connected to the multilayer switch MLS1 in a branch network. The DHCP server on router R1 is supposed to serve the 192.168.20.0/24 VLAN 20, but clients in VLAN 20 are not receiving IP addresses. Additionally, a rogue DHCP server has been detected on VLAN 20. Configure MLS1 to enable DHCP snooping on VLAN 20, set the trust state on the uplink port to R1, and limit the rate of DHCP packets on access ports. Then, on R1, correct the DHCP configuration so that the pool for VLAN 20 uses the correct default-router (192.168.20.1) and DNS server (8.8.8.8), and ensure that the excluded-address range is not too large (exclude only the first 10 addresses). Verify the solution.

Network Topology
G0/010.0.0.2/30G0/010.0.0.1/30linkG0/1 access VLAN 20192.168.20.0/24linkSiMLS1R1Clients

Hints

  • On MLS1, DHCP snooping must be globally enabled and then applied to VLAN 20.
  • The uplink to R1 must be trusted; access ports should have rate limiting to prevent DHCP starvation.
  • On R1, the excluded-address range was too broad; only exclude the first 10 addresses. The default-router and DNS server were incorrect.
A.On MLS1: ip dhcp snooping, ip dhcp snooping vlan 20, interface Gig0/0 ip dhcp snooping trust, interface Gig0/1 ip dhcp snooping limit rate 10. On R1: ip dhcp excluded-address 192.168.20.1 192.168.20.10, ip dhcp pool VLAN20 network 192.168.20.0 255.255.255.0 default-router 192.168.20.1 dns-server 8.8.8.8
B.On MLS1: ip dhcp snooping vlan 20, interface Gig0/0 ip dhcp snooping trust, interface Gig0/1 ip dhcp snooping limit rate 10. On R1: ip dhcp excluded-address 192.168.20.1 192.168.20.254, ip dhcp pool VLAN20 network 192.168.20.0 255.255.255.0 default-router 192.168.20.1 dns-server 8.8.8.8
C.On MLS1: ip dhcp snooping vlan 20, interface Gig0/0 ip dhcp snooping trust, interface Gig0/1 ip dhcp snooping limit rate 10. On R1: ip dhcp excluded-address 192.168.20.1 192.168.20.10, ip dhcp pool VLAN20 network 192.168.20.0 255.255.255.0 default-router 192.168.10.1 dns-server 4.4.4.4
D.On MLS1: ip dhcp snooping vlan 20, interface Gig0/0 ip dhcp snooping trust, interface Gig0/1 ip dhcp snooping limit rate 10. On R1: ip dhcp excluded-address 192.168.20.1 192.168.20.10, ip dhcp pool VLAN20 network 192.168.20.0 255.255.255.0 default-router 192.168.20.1 dns-server 8.8.8.8, but no ip dhcp snooping enabled globally on MLS1
AnswerA
solution
! R1
configure terminal
ip dhcp excluded-address 192.168.20.1 192.168.20.10
ip dhcp pool VLAN20_POOL
default-router 192.168.20.1
dns-server 8.8.8.8
end

! MLS1
ip dhcp snooping
ip dhcp snooping vlan 20
interface GigabitEthernet0/0
ip dhcp snooping trust
exit
interface GigabitEthernet0/1
ip dhcp snooping limit rate 10
end

Why this answer

The problem had three faults: First, the DHCP pool on R1 had a wrong default-router (192.168.10.1 instead of 192.168.20.1) and an incorrect DNS server (4.4.4.4 instead of 8.8.8.8). Second, the excluded-address range was too large (excluding all addresses from .1 to .254 effectively blocked all dynamic assignments; corrected to exclude only .1 through .10). Third, DHCP snooping was disabled on MLS1, allowing a rogue DHCP server.

To enable DHCP snooping, both the global `ip dhcp snooping` command and the VLAN-specific `ip dhcp snooping vlan 20` command are required. With snooping enabled, the uplink port Gig0/0 was set as trusted and the access port Gig0/1 was configured with rate limiting to prevent DHCP starvation attacks.

Exam trap

Watch for three separate issues: DHCP pool misconfiguration (default-router, DNS, excluded range), DHCP snooping not enabled globally, and the need to set trust on the uplink. Candidates often forget the global 'ip dhcp snooping' command or misconfigure the excluded range.

Why the other options are wrong

B

The excluded-address range is too large; it should only exclude the first 10 addresses (1-10) to allow dynamic allocation from .11 onward.

C

The default-router must be the gateway for VLAN 20 (192.168.20.1), and the DNS server should be 8.8.8.8 as specified.

D

The global 'ip dhcp snooping' command is required to activate the feature; omitting it leaves DHCP snooping disabled entirely.

Why candidates pick the wrong answer

B

Candidates might think excluding a large range is safe, but it blocks all usable addresses, leaving no addresses for DHCP clients.

C

Candidates may confuse VLAN 20 with VLAN 10 or use a different DNS server, but the question explicitly states the correct values.

D

Candidates might think enabling snooping on a VLAN is sufficient, but Cisco requires the global enable first.

642
Drag & Dropmedium

What is the correct order of steps to capture and analyze traffic on IOS-XE using the embedded packet capture feature, and in Wireshark to isolate a Layer 2 or Layer 3 fault?

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

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

Why this order

The correct order for embedded packet capture on IOS-XE is to first define the capture point with the desired interface and optional filter, then start the capture, stop it after capturing the needed traffic, and finally export the file for analysis in Wireshark. Option A accurately reflects this sequence. Option B fails because the capture must be defined before starting.

Option C fails because exporting should occur after stopping the capture. Option D fails because analysis is performed externally, not on the router.

Exam trap

Do not confuse the order of operations: you must define the capture point before starting, and you must stop the capture before exporting. Also, remember that analysis is done externally, not on the router itself.

Why candidates pick the wrong answer

B

Candidates might think that starting the capture is the first step, similar to enabling a debug, but EPC requires configuration first.

C

Candidates may think exporting is just copying a buffer that can be done anytime, but the capture must be stopped to finalize the file.

D

Candidates might assume that since the router has the capture, it can also analyze it, but IOS-XE lacks a full packet analyzer.

643
MCQmedium

Exhibit: A laptop has IP address 10.20.30.44/27. Which address is its directed broadcast for that subnet?

A.10.20.30.31
B.10.20.30.32
C.10.20.30.63
D.10.20.30.64
AnswerC

With a /27 prefix, the subnet block size is 32 addresses. The host address 10.20.30.44 falls inside 10.20.30.32/27, whose range extends from .32 through .63. The directed broadcast address is the final address in that range, 10.20.30.63, with all five host bits set to 1. It is valid only as a broadcast target and cannot be assigned to an interface.

Why this answer

A /27 gives a block size of 32 addresses. The host 10.20.30.44 falls in the 10.20.30.32 to 10.20.30.63 subnet, so the broadcast address is 10.20.30.63.

Exam trap

Avoid confusing the network address or a host address with the broadcast address. Remember, the broadcast address is the last address in the subnet.

Why the other options are wrong

A

10.20.30.31 is the broadcast address of the previous /27 subnet (10.20.30.0/27), not the subnet containing 10.20.30.44. The host 10.20.30.44 belongs to the 10.20.30.32/27 subnet, so its broadcast is 10.20.30.63.

B

10.20.30.32 is the network address (subnet ID) of the subnet 10.20.30.32/27, not the broadcast address. The network address is the first address in the subnet and is used to identify the subnet itself.

D

10.20.30.64 is the network address of the next /27 subnet (10.20.30.64/27), not the broadcast of the current subnet. The broadcast address for 10.20.30.32/27 is 10.20.30.63.

When would these options actually be correct?

A

This option would be correct if the question asked for the directed broadcast address of the subnet containing 10.20.30.44 with a /26 mask (block size 64), where the subnet would be 10.20.30.0/26 and the broadcast would be 10.20.30.63.

B

If the question asked for the network address of the subnet containing 10.20.30.44/27, then 10.20.30.32 would be correct. For example: 'Which address is the network address for the subnet of 10.20.30.44/27?'

D

If the question asked for the network address of the next subnet after 10.20.30.32/27, then 10.20.30.64 would be correct. For example: 'What is the network address of the subnet following 10.20.30.32/27?'

Why candidates pick the wrong answer

A

Students often miscalculate the subnet boundaries or confuse the broadcast address with the network address. The number 31 might appear as a common broadcast address in smaller subnets, but here it is incorrect.

B

Some students mistakenly think the network address or the first usable address is the broadcast address. The network address is often confused with the broadcast because both are special addresses within the subnet.

D

Students may incorrectly add the subnet size (32) to the network address to get the broadcast, but the broadcast is one less than the next network address. 10.20.30.64 is the next subnet boundary, not the broadcast.

644
Multi-Selectmedium

Which two statements accurately describe software-defined networking and network virtualization concepts at a basic CCNA level?

Select 2 answers
A.SDN is associated with more centralized or programmable control of network behavior.
B.NFV is associated with delivering network functions in software or virtualized form.
C.Both terms are just new names for subnet masks.
D.Both terms replace the need for routing protocols completely.
E.Both terms refer only to wireless client roaming.
AnswersA, B

SDN decouples the network control plane from the forwarding plane, centralizing intelligence in a software controller that programs flows into switches and routers. This controller provides a global, vendor-neutral view of the network and exposes APIs (e.g., OpenFlow) that allow operators to dynamically adjust policies and traffic paths via software. As a result, SDN is accurately described as enabling more centralized or programmable control of network behavior, which is the core of the technology.

Why this answer

At a basic level, these concepts point toward more abstracted, software-driven ways of controlling or delivering networking capabilities. SDN is associated with more centralized or programmable control behavior. NFV is associated with delivering network functions in virtualized software form instead of relying only on fixed-purpose hardware.

The goal here is conceptual recognition, not deep architectural implementation detail.

Exam trap

A frequent exam trap is mistaking SDN and NFV for basic network addressing concepts like subnet masks or for wireless client roaming features. Candidates might also incorrectly believe these technologies replace routing protocols entirely. However, SDN and NFV focus on centralized control and virtualized network functions, respectively, and do not eliminate the need for routing logic or relate directly to subnetting or wireless roaming.

Misunderstanding these distinctions can lead to selecting incorrect options that describe unrelated networking concepts.

Why the other options are wrong

C

Option C is incorrect because subnet masks are related to IP addressing and have no connection to SDN or NFV concepts, which focus on network control and virtualization.

D

Option D is wrong since SDN and NFV do not eliminate routing protocols; routing remains necessary for path determination and packet forwarding in networks.

E

Option E is incorrect because SDN and NFV are broad network architecture concepts and do not exclusively refer to wireless client roaming or mobility management.

When would these options actually be correct?

C

In a question that asks about basic networking terminology and definitions, if the context was specifically about how modern networking concepts are merely rebranding of traditional terms, then stating that SDN and NFV are just new names for subnet masks could be correct if the question was misleadingly framed to suggest that all networking terms evolve in this manner.

D

If the exam question asked whether SDN and NFV can operate in environments where traditional routing protocols are not necessary, such as in certain isolated or specialized networks, then this option could be correct, as it might focus on specific scenarios where alternative methods are used.

E

If the exam question specifically asked about technologies that enhance wireless networks or focused solely on wireless client management, this option could be correct, as it would then align with the context of wireless roaming capabilities.

Why candidates pick the wrong answer

C

Students may confuse the term 'virtualization' in NFV with virtual LANs (VLANs) or subnetting, leading them to incorrectly associate these concepts with subnet masks.

D

The centralized control in SDN might suggest that routing logic is entirely moved to the controller, but in practice, routing protocols often still run on devices or are integrated with the SDN controller.

E

The term 'network virtualization' might be mistakenly associated with virtual wireless networks or SSIDs, leading students to think these concepts only apply to wireless roaming.

645
MCQhard

An ACL permits only tcp 10.10.10.0/24 host 192.0.2.10 eq 443 and has no other permit entries. What happens to an ICMP echo request from 10.10.10.5 to 192.0.2.10?

A.It is permitted because the destination matches
B.It is denied by the implicit deny
C.It is permitted because the packet matches the source network stated in the ACE.
D.It is permitted only if the source port is 443
AnswerB

An ACL ends with an implicit deny all rule, so any packet not explicitly permitted by a preceding ACE is dropped. An ICMP packet is not TCP and therefore does not match the permit tcp statement, regardless of its source or destination. Thus, it falls through to the implicit deny and is denied.

Why this answer

ACLs end with an implicit deny. Since the only explicit permit is for HTTPS traffic, the ICMP packet is denied.

Exam trap

Remember that ACLs have an implicit deny all rule. Just because a source or destination is specified doesn't mean all traffic types are allowed.

Why the other options are wrong

A

The ACL only permits TCP traffic from 10.10.10.0/24 to host 192.0.2.10 on port 443. ICMP is not TCP, so even though the destination matches, the protocol does not match, and the packet is not permitted.

C

Although the source IP matches the ACE's source network, the ACE only permits TCP traffic; ICMP is a different protocol, so the packet is denied by the implicit deny.

D

ICMP does not use TCP ports; it uses ICMP type and code. The ACL entry specifies TCP port 443, which is irrelevant for ICMP traffic. Even if the source port were 443, ICMP packets do not have TCP ports.

When would these options actually be correct?

A

In a different exam scenario where an ACL permits ICMP traffic from a specific source to a specific destination, such as 'permit icmp 10.10.10.0/24 host 192.0.2.10', this option would be correct as the ICMP echo request would match the permit statement.

C

In a different scenario where an ACL permits both TCP and ICMP traffic, a question might ask about the behavior of an ICMP packet under those conditions. If the ACL included rules for ICMP, then translating ICMP to TCP could be a valid consideration.

D

In a different scenario, if the ACL specified a rule that allowed ICMP traffic from any source to a specific destination, and the question asked about ICMP traffic, then this option could be correct if the source port was relevant to the rule being applied.

Why candidates pick the wrong answer

A

Students might think that matching the destination IP address is sufficient for permit, but ACLs require matching all specified fields (protocol, source, destination, and port).

C

Some students may confuse ACLs with NAT or other features that can modify packets, but ACLs only filter based on existing packet headers.

D

Students might think that matching the source port 443 could permit the traffic, but they overlook that the protocol must also match TCP.

646
Multi-Selectmedium

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

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

Why this answer

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

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

Exam trap

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

647
MCQhard

Exhibit: Clients can see the corporate SSID but fail authentication after entering valid usernames and passwords. Which issue is the best explanation?

A.The AP is using the wrong RF channel
B.The RADIUS path or shared secret is failing
C.The SSID must be hidden for enterprise authentication
D.The clients need a voice VLAN assignment first
AnswerB

In WPA2-Enterprise, the access point acts as an 802.1X authenticator and forwards EAP credentials to a RADIUS server. If the shared secret is misconfigured or the RADIUS server is unreachable, the authentication exchange fails after the client associates, precisely matching the symptom of seeing the SSID but being unable to connect. This is the only option that directly impacts the authentication stage rather than association or RF visibility.

Why this answer

WPA2-Enterprise relies on 802.1X with a RADIUS server. If the RADIUS server is unreachable or the shared secret is wrong, users can see the SSID and attempt to authenticate, but the login process fails. Option A is incorrect because RF channel issues would cause connectivity problems, not authentication failures after association.

Option C is incorrect because hiding the SSID is irrelevant to enterprise authentication; the issue is server-side. Option D is incorrect because a voice VLAN is not required for standard client authentication and would not cause login failure.

Exam trap

Remember that WPA2-Enterprise relies on a RADIUS server. Authentication issues often stem from server communication problems, not client-side settings.

Why the other options are wrong

A

RF channel issues cause connectivity or performance problems, not authentication failures after a successful association.

C

Hiding the SSID does not affect the 802.1X authentication process; the failure is likely due to RADIUS communication.

D

Voice VLAN assignment is unrelated to client authentication; clients do not need a voice VLAN to authenticate.

When would these options actually be correct?

A

In a different scenario, if a question asks why clients are unable to connect to an SSID despite being in range, and mentions issues like poor signal strength or interference, then stating that the AP is using the wrong RF channel could be a valid explanation for connectivity problems.

C

In a scenario where a question states that clients are unable to connect to the network because the SSID is not visible, and the context involves a security policy requiring hidden SSIDs for enterprise authentication, this option would be correct.

D

In a different scenario where the question states that clients are required to connect to a voice VLAN for specific services, and they fail to authenticate until they are assigned to that VLAN, this option would be correct. For instance, if the question specifies that voice traffic must be prioritized and VLANs are configured accordingly, then this option would be valid.

Why candidates pick the wrong answer

A

Students often associate wireless problems with RF interference or channel overlap, but authentication failures point to higher-layer issues like RADIUS or credentials.

C

Some believe hiding the SSID adds security, but it is unrelated to authentication success and can actually cause client connectivity issues.

D

Students may confuse VLAN assignment with authentication, thinking a specific VLAN is required before authentication, but VLANs are applied after successful authentication.

648
Multi-Selectmedium

Which three of the following statements about Network Address Translation (NAT) are correct? (Choose three.)

Select 3 answers
.Static NAT provides a one-to-one mapping between a private IP and a public IP.
.Dynamic NAT uses a pool of public IP addresses assigned on a first-come, first-served basis.
.PAT (Port Address Translation) allows multiple internal hosts to share a single public IP address.
.NAT eliminates the need for any routing in a network.
.Dynamic NAT always assigns the same public IP to a given internal host.
.PAT requires a unique public IP for every concurrent session.

Why this answer

Static NAT provides a one-to-one mapping between a private IP and a public IP, ensuring that a specific internal host always uses the same public address. Dynamic NAT uses a pool of public IP addresses assigned on a first-come, first-served basis, so internal hosts compete for available addresses. PAT (Port Address Translation) allows multiple internal hosts to share a single public IP by differentiating sessions via unique port numbers, which is the most common form of NAT used in home and small office routers.

Exam trap

Cisco often tests the misconception that dynamic NAT provides a fixed mapping like static NAT, or that PAT requires multiple public IPs, when in fact PAT is designed to share a single public IP among many hosts.

649
MCQmedium

Why is NTP especially useful when devices send logs to a centralized Syslog server?

A.It helps align device clocks so centralized log timestamps can be correlated more accurately.
B.It assigns the Syslog server an IP address.
C.It replaces the need for a Syslog server.
D.It encrypts every Syslog message automatically.
AnswerA

Network Time Protocol synchronizes the system clocks of routers, switches, and servers, so each device reports the same timestamp for concurrent events. When centralized log correlation combines Syslog outputs from multiple devices, consistent time references enable security analysts to reconstruct the exact sequence of actions and pinpoint root causes. Without NTP alignment, clock drift would cause misleading log ordering and obscure real threats.

Why this answer

NTP is especially useful because synchronized clocks make the log timestamps more meaningful and easier to correlate. In plain language, if each device thinks the current time is different, the sequence of events in the centralized log becomes confusing. NTP helps align time across devices so the logs tell a more accurate story.

This is an operational best practice. Syslog collects the messages, and NTP makes their timing consistent. The correct answer is the one focused on timestamp correlation.

Exam trap

Avoid confusing NTP's function with security or data optimization features; focus on its role in time synchronization.

Why the other options are wrong

B

NTP is a protocol for clock synchronization, not for IP address assignment. IP addresses are assigned via DHCP or static configuration, and NTP operates at the application layer to synchronize time over the network. Therefore, NTP does not assign IP addresses to any device, including Syslog servers.

C

NTP and Syslog serve entirely different purposes. NTP synchronizes clocks, while Syslog is a protocol for sending log messages to a centralized server. NTP cannot replace Syslog because it does not collect, store, or forward log messages.

Both are often used together but are independent services.

D

NTP does not provide encryption for Syslog messages or any other data. NTP is solely responsible for time synchronization and does not include security features like encryption. Syslog messages are typically sent in clear text unless additional security measures like TLS or SSH are implemented.

When would these options actually be correct?

B

In a different question asking about the initial setup of a Syslog server, an option stating that NTP assigns an IP address could be correct if the question is framed around the need for devices to communicate with the Syslog server, implying that IP assignment is part of the configuration process.

C

In a question asking about the role of NTP in a network where logging is handled entirely by a different protocol or system that does not require a Syslog server, this option could be correct. For example, if the question states that all logging is done locally on devices without centralization, then NTP could be seen as sufficient without a Syslog server.

D

If the exam question asked about a protocol that provides both time synchronization and encryption for log messages, such as TLS (Transport Layer Security) applied to Syslog, then this option could be correct.

Why candidates pick the wrong answer

B

Students might confuse NTP with DHCP or other protocols that provide network configuration parameters. Since NTP involves network communication, some may incorrectly assume it also handles IP addressing, especially when they see NTP configured with server IP addresses.

C

A test-taker with partial knowledge might think that because NTP helps with log correlation, it somehow eliminates the need for a separate Syslog server. This confusion arises from misunderstanding the distinct roles of network services.

D

Students may associate NTP with security because accurate time is important for security logs and protocols like Kerberos. However, NTP itself does not encrypt traffic; it only provides time accuracy. The temptation comes from conflating time synchronization with security functions.

650
Multi-Selectmedium

Which two actions are reasonable examples of basic device-hardening practice?

Select 2 answers
A.Disable unused services or interfaces where practical
B.Use SSH instead of Telnet for remote management
C.Allow anonymous administrative login for convenience
D.Place all traffic in VLAN 1 so it is easier to remember
E.Remove authentication from VTY lines
AnswersA, B

Unused services like the HTTP server, CDP, or unused physical interfaces remain active by default and can be exploited as attack vectors or leak sensitive network information. Disabling these services and shutting down unused ports reduces the device's attack surface and prevents unauthorized lateral movement. This is a basic hardening step that every network administrator should implement.

Why this answer

Basic hardening is about reducing unnecessary exposure and making administrative access safer. In plain language, this usually means disabling services or interfaces that are not needed and preferring secure management protocols such as SSH. These choices shrink the attack surface and improve the security of routine device administration without requiring advanced security products.

The wrong answers in hardening questions often suggest convenience at the expense of security, such as leaving insecure access methods enabled or removing authentication. CCNA-level security expects you to recognize that strong fundamentals often come from disciplined configuration choices rather than from complex tools alone.

Exam trap

Avoid choosing convenience over security; protocols like Telnet and HTTP are easy but insecure for management.

Why the other options are wrong

C

Allowing anonymous administrative login means no authentication is required, which completely bypasses access control. This violates the principle of least privilege and exposes the device to unauthorized configuration changes.

D

VLAN 1 is the default VLAN and is often targeted in VLAN hopping attacks. Using VLAN 1 for all traffic violates the security best practice of segregating traffic and using dedicated VLANs for management, user data, and voice.

E

Removing authentication from VTY lines means anyone can connect to the device via Telnet or SSH without a password. This is a critical security flaw that allows unauthorized remote access.

When would these options actually be correct?

C

In a hypothetical exam question focused on legacy systems or specific environments where security policies are relaxed for testing purposes, allowing anonymous administrative login could be deemed acceptable for quick access or troubleshooting without strict security protocols.

D

In a question focused on simplifying network management for a small, non-critical environment where security is not a primary concern, placing all traffic in VLAN 1 might be considered acceptable for ease of configuration and maintenance.

E

In a hypothetical exam scenario focused on a legacy system with strict internal access controls where the question specifies that the system is isolated from external networks, removing authentication from VTY lines might be considered acceptable for ease of access by trusted internal personnel.

Why candidates pick the wrong answer

C

Students might think convenience is a valid trade-off for security, especially in small or lab environments. However, in any production network, anonymous access is never acceptable.

D

VLAN 1 is the default and easiest to configure, so students may assume it is safe or simpler. However, security guidelines explicitly recommend not using VLAN 1 for user traffic.

E

Students might confuse 'no authentication' with 'no password required' for convenience, or they may think that physical security alone is sufficient. However, remote management must always be authenticated.

651
MCQmedium

Which service would a client most directly rely on to convert `server.example.com` into an IP address?

A.DNS
B.ARP
C.NTP
D.CDP
AnswerA

The Domain Name System is the service that directly performs hostname-to-IP address resolution. When a client types a URL like www.cisco.com, it sends a DNS query to a resolver, which returns the corresponding IPv4 or IPv6 address. This is the fundamental name resolution service on which applications rely before establishing TCP connections. Without DNS, users would need to memorize numeric IP addresses.

Why this answer

The client relies on DNS for name resolution. In plain language, DNS is the service that lets devices and users use readable names instead of memorizing numeric IP addresses. When the client needs to reach `server.example.com`, DNS helps translate that hostname into the IP-related information needed for actual communication.

This is different from DHCP, which supplies address configuration, and from NTP, which synchronizes time. It is also different from ARP, which resolves local IPv4 addresses to MAC addresses. The correct answer is the one associated specifically with hostname resolution.

Exam trap

A frequent exam trap is mistaking ARP for DNS because both involve address resolution. However, ARP only resolves IPv4 addresses to MAC addresses within the same local network segment and does not translate hostnames to IP addresses. Candidates might also confuse NTP or CDP as name resolution services, but NTP is for time synchronization, and CDP discovers directly connected Cisco devices.

Misunderstanding these roles leads to selecting incorrect answers, especially since the question specifically asks about converting a hostname to an IP address, which only DNS performs.

Why the other options are wrong

B

ARP is incorrect because it only resolves IPv4 addresses to MAC addresses on the local network segment and does not translate hostnames to IP addresses.

C

NTP is incorrect since it is used for synchronizing time between devices and does not perform any form of hostname or IP address resolution.

D

CDP is incorrect because it is a Cisco proprietary protocol used for discovering directly connected Cisco devices, not for resolving hostnames to IP addresses.

When would these options actually be correct?

B

If the question asked about determining the MAC address of a device given its IP address within a local network, ARP would be the correct answer. For example, 'Which protocol is used to resolve an IP address to a MAC address on a local network?' would make ARP the right choice.

C

If the exam question asked which service is responsible for synchronizing the time on a networked device, then NTP would be the correct answer. For example, a question could state, 'Which protocol ensures accurate timekeeping across devices in a network?'

D

In a question asking about the identification of neighboring Cisco devices on a network, such as 'Which protocol allows a router to discover information about directly connected devices?', CDP would be the correct answer as it is specifically designed for that purpose.

Why candidates pick the wrong answer

B

Students may confuse ARP with DNS because both involve address resolution. However, ARP resolves IP to MAC, not hostname to IP, and is limited to local network communication.

C

The acronym NTP might be confused with DNS due to both being network services, but their functions are entirely different. Students with partial knowledge might think NTP involves some form of lookup or resolution.

D

CDP's ability to provide IP addresses of neighboring devices might lead students to incorrectly assume it can resolve hostnames. However, CDP is a discovery protocol, not a name resolution service like DNS.

652
MCQhard

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

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

The OSPF default route has an AD of 110, while a floating static route is intentionally configured with a higher AD, such as 200. Because the router prefers lower AD, OSPF's default is installed in the routing table. The floating static route remains in the configuration as a backup and only becomes active if OSPF fails or the OSPF default disappears.

Why this answer

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

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

Exam trap

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

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

Why the other options are wrong

B

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

C

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

D

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

When would these options actually be correct?

B

In a different exam scenario, if the question stated that static routes are not allowed in a specific routing protocol configuration or that the router is configured to only use OSPF for routing, then this option could be correct.

C

In a different question setup where the exam asks about the configuration of static routes specifically requiring a subnet mask, this option could be correct if the question states that a static default route must use a specific subnet mask instead of the default 0.0.0.0.

D

In a different exam scenario, if the question specified that a floating static route could only be configured with a next hop that is a loopback interface, then this option would be correct. For example, if the question stated that the router's configuration only allows loopback addresses for floating routes, this would validate option D.

Why candidates pick the wrong answer

B

Students may mistakenly think that enabling a dynamic routing protocol like OSPF disables all static routes, confusing the concept of route preference with protocol exclusivity.

C

Students may confuse the mask for a default route with the mask for a network route, thinking that a default route must have a non-zero mask to be valid.

D

Some students might recall that loopback interfaces are often used for stability in routing protocols, leading them to incorrectly assume that floating static routes also require loopback next hops.

653
PBQhard

You are connected to the console of R1. The network uses IPv6 with EUI-64. R1's GigabitEthernet0/0 interface has MAC address 001e.4a7b.9c0d. You need to configure an IPv6 address on this interface using EUI-64, with the subnet 2001:db8:abcd:1::/64.

Hints

  • Enable IPv6 globally first if not already done.
  • Use the 'ipv6 address' command with the 'eui-64' keyword.
  • The interface must have IPv6 enabled to use EUI-64.
A.ipv6 address 2001:db8:abcd:1::/64 eui-64
B.ipv6 address 2001:db8:abcd:1::/64
C.ipv6 address 2001:db8:abcd:1::/64 link-local
D.ipv6 enable
AnswerA
solution
! R1
interface GigabitEthernet0/0
ipv6 address 2001:db8:abcd:1::/64 eui-64
ipv6 enable

Why this answer

The 'ipv6 address 2001:db8:abcd:1::/64 eui-64' command configures the IPv6 address using EUI-64, which generates the interface ID from the MAC address. This command alone enables IPv6 on the interface and assigns the global address; the 'ipv6 enable' command is not strictly necessary and is only required if a link-local address is needed without a global address. Option B would configure a static interface ID, not EUI-64.

Option C incorrectly uses the 'link-local' keyword, which is not valid in this context. Option D only enables IPv6 for link-local addressing without assigning a global unicast address.

Exam trap

Remember that EUI-64 requires the 'eui-64' keyword after the prefix. Without it, the address is static. Also, 'ipv6 enable' only creates a link-local address, not a global one.

Why the other options are wrong

B

The command lacks the 'eui-64' keyword, so it does not generate the interface ID from the MAC address.

C

The 'link-local' keyword is used for link-local addresses (fe80::/10), not for global prefixes.

D

The command does not assign the specified subnet prefix; it only activates IPv6 processing.

Why candidates pick the wrong answer

B

Candidates may think that simply specifying the prefix is enough, but without 'eui-64', the address is static and incomplete.

C

Candidates might confuse the 'link-local' keyword with EUI-64, thinking it also generates an interface ID.

D

Candidates may think that 'ipv6 enable' is sufficient to configure an EUI-64 address, but it only creates a link-local address.

654
Drag & Drophard

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

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

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

Why this order

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

Exam trap

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

Why candidates pick the wrong answer

B

Candidates often confuse the order of tie-breakers, thinking metric is more important because it is a direct measure of path cost.

C

Candidates may confuse routing table lookup with ACL processing, where the first matching entry is used.

D

Candidates might think that 'higher' is better due to other contexts (e.g., higher bandwidth is better), but for AD, lower is better.

655
MCQmedium

A port connected to an end-user PC should not send or expect VLAN tags from the endpoint. Which interface type is appropriate on the switch?

A.Access port
B.Trunk port
C.Routed port
D.Port-channel interface
AnswerA

An access port is correct because it carries traffic for exactly one VLAN and forwards untagged frames, which is exactly what a PC's NIC expects. PCs do not generate 802.1Q VLAN tags, so an access port's behavior of stripping and expecting untagged data aligns with the end-device's native Ethernet operation. Furthermore, access ports do not transmit DTP (Dynamic Trunking Protocol) frames, preventing any unwanted trunk negotiation toward the PC.

Why this answer

The appropriate interface type is an access port. In plain language, a normal user PC is expected to connect to one VLAN and send ordinary untagged Ethernet frames. The switch associates that traffic with the configured access VLAN.

This is different from a trunk, which is designed to carry multiple VLANs and commonly uses tagging to preserve VLAN identity across the link. Routed ports are Layer 3 interfaces used for routing between VLANs, not for attaching a single end-user PC. Port-channel interfaces aggregate multiple physical links for redundancy and bandwidth, but they do not determine whether VLAN tagging is used; the underlying port mode (access or trunk) still applies.

Therefore, access port is the only correct choice for an untagged, single-VLAN end-device connection.

Exam trap

Don't confuse the need for VLANs with the need for VLAN tagging. Access ports handle untagged traffic for single VLANs.

Why the other options are wrong

B

A trunk port is designed to carry traffic for multiple VLANs using 802.1Q tagging, which is not expected from a standard PC. Using a trunk port for a PC would cause the switch to expect tagged frames, leading to communication failures.

C

A routed port is a Layer 3 interface used for routing between VLANs or connecting to routers, not for connecting end-user PCs. It does not operate as a Layer 2 switchport and would not handle VLAN tagging as required.

D

A port-channel interface is a logical bundling of multiple physical links for increased bandwidth and redundancy, not a single connection to an end-user PC. It is used between switches or to servers, not for typical PC access.

When would these options actually be correct?

B

If the exam question specified a scenario where multiple VLANs need to be transmitted between switches or to a router, and the focus was on inter-switch communication rather than end-user devices, then a trunk port would be the correct answer.

C

In a scenario where the question asks for the appropriate interface type for connecting two routers or Layer 3 devices that need to communicate without VLAN tagging, a routed port would be the correct answer, as it allows for direct IP communication between devices.

D

If the exam question asked about configuring a switch to connect multiple access ports for redundancy and load balancing, where VLAN tagging is not required, then a port-channel interface would be the correct answer. The question would need to focus on link aggregation rather than VLAN handling.

Why candidates pick the wrong answer

B

Students might confuse trunk ports with the ability to carry multiple VLANs, but they forget that end devices typically do not send or understand VLAN tags.

C

Some may think a routed port can be used for any connection, but it lacks the Layer 2 switching functionality needed for a PC access connection.

D

Students might associate port-channels with any type of connection, but they are not appropriate for a simple PC connection where no link aggregation is needed.

656
Multi-Selectmedium

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

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

This is correct because cost is the standard OSPF metric.

Why this answer

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

Exam trap

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

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

Why the other options are wrong

B

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

D

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

E

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

When would these options actually be correct?

B

If the exam question asked about inter-protocol route selection or the behavior of routing protocols in a mixed environment, where OSPF and EIGRP metrics were being compared for route selection, then this option could be correct.

D

In a different context, a question could ask about OSPF configuration requirements for establishing neighbor relationships. If it specified that process IDs must match for a specific feature or scenario, then this option could be correct.

E

In a question specifically asking about OSPF's limitations in a scenario where only a single path is allowed due to configuration constraints or specific network designs, this option could be correct. For example, if the question states that OSPF is configured to not allow ECMP due to a specific policy.

Why candidates pick the wrong answer

B

Students might think that since both are routing protocols, their metrics can be compared directly, but they are calculated differently and are not interchangeable.

D

Students often confuse OSPF process IDs with EIGRP autonomous system numbers, which must match between neighbors. This leads to the incorrect assumption that OSPF process IDs must also match.

E

Some students may think OSPF only uses a single best path because they are familiar with the SPF algorithm's loop-free property, but ECMP is a standard feature in OSPF.

657
PBQeasy

You are connected to SW1 via the console. SW1 is a Layer 2 switch with an access port G0/1 connected to a server. The network administrator has noticed that the server is sending BPDUs, which could cause network instability. You need to configure PortFast and BPDU Guard on port G0/1 to prevent BPDU-related issues and ensure the port transitions to forwarding state immediately.

Network Topology
G0/1ServerSW1

Hints

  • PortFast enables immediate transition from blocking to forwarding state.
  • BPDU Guard disables the port if a BPDU is received.
  • These features are typically applied to access ports connected to end devices.
A.interface G0/1 spanning-tree portfast spanning-tree bpduguard enable
B.interface G0/1 spanning-tree portfast spanning-tree guard root
C.interface G0/1 spanning-tree portfast spanning-tree bpdufilter enable
D.interface G0/1 spanning-tree portfast spanning-tree bpduguard default
AnswerA
solution
! SW1
interface GigabitEthernet0/1
spanning-tree portfast
spanning-tree bpduguard enable

Why this answer

PortFast allows an access port to bypass STP listening/learning states, providing immediate connectivity. BPDU Guard protects the network by shutting down the port if a BPDU is received, preventing potential loops from unauthorized switches.

Exam trap

Cisco exams often test the exact syntax for STP features. Remember that BPDU Guard uses 'enable' at the interface level, while BPDU Filter uses 'enable' as well. Root Guard uses 'guard root'.

Do not confuse these or use global commands on interfaces.

Why the other options are wrong

B

The specific factual error is confusing Root Guard with BPDU Guard. Root Guard is used to enforce the root bridge position, not to protect against BPDUs.

C

The specific factual error is that BPDU Filter silently drops BPDUs instead of taking action, which can allow loops to form if an unauthorized switch is connected.

D

The specific factual error is using the global configuration command on an interface. The global command enables BPDU Guard on all PortFast-enabled ports, but the question asks to configure it on a specific port.

Why candidates pick the wrong answer

B

Candidates pick this because both features are STP enhancement mechanisms, and 'guard' sounds similar to 'BPDU Guard'.

C

Candidates pick this because both BPDU Guard and BPDU Filter deal with BPDUs, and 'filter' might seem like a way to prevent BPDU issues.

D

Candidates pick this because 'default' might be misinterpreted as enabling the feature, and they may not remember the exact syntax for interface-level configuration.

658
MCQhard

A controller-based WLAN uses 5 GHz in an open office. Clients keep disconnecting when users roam between APs, but signal strength remains strong. Based on the exhibit, what is the most likely problem?

A.A transmit power mismatch is creating asymmetric coverage around AP-3.
B.The SSID must use 2.4 GHz only for roaming to work.
C.WPA2 cannot support roaming between APs.
D.The WLAN needs a different DHCP scope on each AP.
AnswerA

A transmit power mismatch on AP-3 creates an oversized basic service area, making its BSSID audible at distances where neighboring AP-3 signals are faint. Clients near the edge of that cell hear AP-3 strongly but transmit at lower client power, so the AP cannot hear them reliably, causing uplink failures and delayed roaming. The asymmetry leads to sticky clients who remain associated to AP-3 even when another AP offers a stronger uplink, degrading throughput and VoIP quality.

Why this answer

The APs are transmitting at much higher power than the clients, creating a coverage imbalance. Clients may hear the AP well enough to stay associated too long, while the AP cannot reliably hear the weaker client at the same cell edge. That leads to sticky-client and roaming issues even when RSSI looks strong.

Exam trap

A common exam trap is assuming that roaming issues are caused by encryption protocols like WPA2 or by requiring 2.4 GHz operation only. Candidates may also mistakenly believe that DHCP scopes must be unique per AP to support roaming. These misconceptions distract from the real issue: transmit power mismatch causing asymmetric coverage.

The APs transmitting at much higher power than clients cause sticky client problems, where clients do not roam properly despite strong signal strength. Understanding this subtle power imbalance is critical to avoid selecting incorrect answers related to encryption or DHCP.

Why the other options are wrong

B

Incorrect because roaming works on 5 GHz and is often preferred there; restricting SSID to 2.4 GHz is unnecessary and unrelated to the problem.

C

Incorrect because WPA2 supports roaming; encryption type does not cause clients to disconnect when roaming between APs.

D

Incorrect because DHCP scopes are shared in controller-based WLANs; separate DHCP scopes per AP are not required for roaming functionality.

When would these options actually be correct?

B

In a different scenario where a question specifies that a WLAN is configured to only operate on the 2.4 GHz band and clients are experiencing roaming issues, then stating that the SSID must use 2.4 GHz only for roaming would be correct, as it would imply that the configuration limits roaming capabilities.

C

In a different question setup where the focus is on a legacy network using WEP or an outdated protocol that does not support roaming, stating that WPA2 cannot support roaming would be correct. For example, if the question specified a network using WEP and asked about roaming capabilities, this option could be valid.

D

In a different scenario where the question specifies that each AP is on a separate subnet and requires distinct DHCP scopes for clients to connect, this option would be correct. For example, if the question described a network with multiple VLANs and DHCP servers, then having different DHCP scopes would be necessary for proper client assignment.

Why candidates pick the wrong answer

B

Students might think that 2.4 GHz has better range and thus might be better for roaming, but roaming is about handoff between APs, not range. The 5 GHz band supports roaming just as effectively.

C

Some might confuse WPA2 with older security methods that had roaming limitations, or think that encryption keys need to be renegotiated causing delays, but WPA2 handles this efficiently.

D

Students might think that each AP needs its own subnet for clients to roam, but in a controller-based WLAN, clients typically stay on the same subnet across APs, and DHCP is handled centrally.

659
PBQhard

You are connected to R1. Configure inter-VLAN routing on R1 using router-on-a-stick so that hosts in VLAN 10 (192.168.10.0/24) and VLAN 20 (192.168.20.0/24) can communicate. The switch SW1 is already configured with VLANs and trunking, but R1's current configuration prevents traffic. Identify and fix the issues.

Network Topology
G0/0trunkR1SW1

Hints

  • Check if the physical interface is administratively down.
  • Verify that the trunk is allowing VLANs 10 and 20.
  • Ensure 'ip routing' is enabled (it is by default).
A.Enable the physical interface with the 'no shutdown' command on R1.
B.Change the encapsulation on the subinterfaces to use dot1Q with native VLAN 10 and 20 respectively.
C.Enable IP routing globally with the 'ip routing' command on R1.
D.Remove the 'no shutdown' from the subinterfaces and apply it only to the physical interface.
AnswerA
solution
! R1
interface GigabitEthernet0/0
no shutdown
exit
show interfaces trunk

Why this answer

The issue was that the physical interface GigabitEthernet0/0 on R1 was administratively down, causing all subinterfaces for VLANs 10 and 20 to be in a down state. Enabling it with 'no shutdown' brings the trunk up, allowing inter-VLAN routing because the switch already has trunking configured. The other options are incorrect because they suggest steps that are either already in place (IP routing) or not needed (changing encapsulation or moving no shutdown to subinterfaces).

Exam trap

A common mistake is overlooking that router-on-a-stick requires the physical interface to be administratively up, as subinterfaces cannot function independently.

Why the other options are wrong

B

Changing encapsulation is unnecessary because the subinterfaces already use the correct dot1Q encapsulation for VLANs 10 and 20.

C

The 'ip routing' command is already enabled by default on routers, and global routing is not the problem here.

D

Subinterfaces do not support a 'no shutdown' command; their operational state is determined solely by the physical interface.

Why candidates pick the wrong answer

B

Candidates might think that each subinterface should match its VLAN's native status, but the native VLAN is a trunk property, not per-VLAN.

C

Candidates often assume that inter-VLAN routing requires explicitly enabling IP routing, but it is on by default.

D

Candidates might think subinterfaces can be independently enabled/disabled, but they are logical interfaces that depend on the physical interface.

660
MCQmedium

Why is BPDU Guard commonly enabled on PortFast-enabled access ports?

A.To make STP root election happen faster
B.To disable STP permanently on access ports
C.To err-disable a port if it receives unexpected BPDUs
D.To allow only one MAC address on the access port
AnswerC

BPDU Guard is a protective feature used with PortFast on access ports to prevent loops from unauthorized BPDUs. If the port receives any BPDU, which should not occur on an end-node connection, the switch immediately err-disables the interface to stop potential bridging loops. This safeguards the network from misconfigured or malicious devices.

Why this answer

PortFast ports are meant for end devices, not for switches. BPDU Guard protects the LAN by shutting down a PortFast port that unexpectedly starts receiving BPDUs, which usually means an unauthorized switch was connected.

Exam trap

Don't confuse BPDU Guard with PortFast or BPDU filtering; each has distinct roles.

Why the other options are wrong

A

BPDU Guard is a security feature that err-disables a port upon receiving BPDUs; it does not accelerate root election. Root election speed is influenced by STP timers and bridge priorities, not BPDU Guard.

B

BPDU Guard does not disable STP permanently; it only reacts to BPDU reception by err-disabling the port. STP remains active on other ports, and the port can be re-enabled after the violation is resolved.

D

Limiting MAC addresses on a port is the function of port security, not BPDU Guard. BPDU Guard specifically monitors for BPDU frames and takes action if any are received.

When would these options actually be correct?

A

In a scenario where the exam question asks about methods to optimize STP performance and mentions features that can enhance the speed of root bridge election, this option could be correct if it was framed around a hypothetical technology that accelerates STP processes.

B

In a different exam scenario, if the question asked about a feature that disables STP on access ports to prevent any STP-related traffic, this option could be correct. For example, a question could specify a configuration where STP is not needed due to a specific network design.

D

In a different exam scenario, if the question asked about the purpose of MAC address filtering on access ports, option D could be correct. For example, a question could state, 'What is the function of limiting MAC addresses on an access port?' where the correct answer would be to allow only one MAC address.

Why candidates pick the wrong answer

A

The name 'Guard' might suggest it protects or speeds up STP processes, but its purpose is purely protective, not performance-related.

B

Students may confuse BPDU Guard with disabling STP because it prevents BPDU processing on the port, but STP is still running globally and on other ports.

D

Both features are commonly applied to access ports for security, leading to confusion between BPDU Guard and port security's MAC address limiting.

661
MCQhard

A host address is 192.168.14.222/28. Which address is the broadcast address of its subnet?

A.192.168.14.207
B.192.168.14.223
C.192.168.14.208
D.192.168.14.224
AnswerB

With /28, the host portion occupies only the last 4 bits, so the usable range for the subnet containing .222 is 192.168.14.208 through 192.168.14.223. Setting all host bits to 1 yields the broadcast address 192.168.14.223, which is the directed broadcast for the /28 subnet that includes .222. This makes .223 the correct answer.

Why this answer

A /28 subnet has a block size of 16. In practical terms, the fourth-octet blocks are 0-15, 16-31, and so on. Because 222 falls within the 208-223 block, the broadcast address is the last address in that block: 192.168.14.223.

This is a subnet-boundary question that depends on identifying the correct /28 block before choosing the broadcast address.

Exam trap

Be careful not to confuse the broadcast address with the network address of the next subnet or a host address within the subnet.

Why the other options are wrong

A

192.168.14.207 is the broadcast address of the previous /28 subnet (192.168.14.192/28), not the subnet containing 192.168.14.222.

C

192.168.14.208 is the network address (subnet ID) of the /28 subnet containing .222, not the broadcast address.

D

192.168.14.224 is the network address of the next /28 subnet (192.168.14.224/28), not the broadcast of the current subnet.

When would these options actually be correct?

A

If the question asked for the broadcast address of a different subnet, such as 192.168.14.192/28, then option A (192.168.14.207) would be correct, as it would be the broadcast address for that specific subnet.

C

If the question specified a subnet mask of /29 instead of /28, and the host address was 192.168.14.208, then option C would be the correct answer as the broadcast address would be 192.168.14.215 for that subnet.

D

If the question specified a subnet mask of /27 instead of /28, the address 192.168.14.224 would be the broadcast address for the subnet 192.168.14.192/27, which encompasses the range from 192.168.14.192 to 192.168.14.224.

Why candidates pick the wrong answer

A

A student might miscalculate the subnet boundaries or confuse the broadcast address with that of an adjacent subnet.

C

Students often confuse the network address with the broadcast address, especially when they know the subnet starts at .208.

D

A student might incorrectly add the block size (16) to the host address or think the broadcast is the next network address.

662
Drag & Dropmedium

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

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

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

Why this order

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

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

Exam trap

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

When would these options actually be correct?

A

This ordering is used when configuring OSPF over NBMA networks such as Frame Relay or ATM, where the Attempt state is introduced.

Why candidates pick the wrong answer

B

Candidates may confuse the order of states after ExStart, thinking Loading follows immediately, or they may forget the Attempt state on NBMA.

C

Candidates might think Init (receiving Hello) comes before Attempt (sending Hello) because they consider receiving as the first step, but the state machine defines Attempt as the state after sending Hello.

663
MCQhard

An administrator wants to block all Telnet access to a router’s VTY lines and allow only SSH. Which change most directly supports that goal?

A.Configure the VTY lines to accept SSH and not Telnet.
B.Enable PortFast on the VTY lines.
C.Use DHCP snooping to protect the VTY lines.
D.Increase the OSPF hello interval.
AnswerA

This is correct because it directly restricts the management protocol accepted on the router.

Why this answer

The most direct change is to configure the VTY lines to accept only SSH, which removes Telnet as an accepted protocol. Option B (PortFast) is a spanning-tree feature that speeds up port transition on access ports and has nothing to do with VTY access. Option C (DHCP snooping) is a Layer 2 security feature to prevent rogue DHCP servers; it does not affect VTY line protocols.

Option D (OSPF hello interval) is an OSPF timer adjustment, unrelated to remote access security. Therefore, only option A directly achieves the goal.

Exam trap

Avoid assuming that ACLs or global commands can replace specific VTY line configurations for protocol restriction.

Why the other options are wrong

B

PortFast is a spanning-tree feature for switch ports, not related to VTY line protocols.

C

DHCP snooping is a Layer 2 security feature against rogue DHCP servers, irrelevant to Telnet/SSH access.

D

Increasing the OSPF hello interval affects OSPF neighbor discovery, not remote access to the router.

When would these options actually be correct?

B

If the question were about optimizing switch port configurations for rapid connectivity in a network where VTY lines are used for management, then enabling PortFast could be the correct answer. For example, a question might ask how to reduce the time it takes for a switch port to become active after being connected.

C

If the question were about securing a network against unauthorized DHCP servers affecting devices that connect to the router, then using DHCP snooping would be the correct answer. In that scenario, the focus would be on protecting the network's IP address assignment rather than access protocols like Telnet or SSH.

D

If the question asked about optimizing OSPF performance in a network where OSPF is being used, increasing the hello interval could be correct. For instance, a scenario might involve reducing OSPF traffic in a stable network environment.

Why candidates pick the wrong answer

B

A student might confuse PortFast with a feature that speeds up or secures connections, but it is unrelated to VTY line configuration and is only applicable to switch ports.

C

The term 'snooping' might imply monitoring or blocking, leading a student to think it could restrict Telnet, but DHCP snooping is specifically for DHCP traffic and not for management protocols.

D

A student might think that increasing the hello interval could slow down or block Telnet sessions, but OSPF timers are unrelated to VTY line configuration and do not affect management access.

664
MCQhard

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

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

With Gi0/1 administratively shut down, its interface state is down at both Layer 1 and Layer 2, so the router cannot use it as a valid output interface. A static route whose configured next-hop resides on a down interface is considered unreachable, and the router will not install it in the routing table. Because both Gi0/0 and Gi0/1 are unavailable, no default route is present, and the router has no path to the unknown destination.

Why this answer

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

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

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

Exam trap

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

Why the other options are wrong

B

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

C

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

D

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

665
Drag & Dropmedium

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

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

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

Why this order

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

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

666
MCQmedium

A network administrator is troubleshooting a Windows 10 workstation that cannot access the internet. The workstation receives an IPv4 address starting with 169.254.x.x. The network uses DHCP, and other workstations on the same subnet are working correctly. What is the most likely cause of this issue?

A.The workstation's DNS server settings are incorrect.
B.The workstation's network cable is unplugged or faulty, preventing DHCP communication.
C.The DHCP server has exhausted its address pool.
D.The workstation's default gateway is misconfigured.
AnswerB

A physical connectivity issue (e.g., unplugged or faulty cable) prevents the workstation from reaching the DHCP server, causing it to fall back to APIPA. This is the most common cause when only one workstation is affected.

Why this answer

The 169.254.x.x address is an Automatic Private IP Addressing (APIPA) address assigned by Windows when DHCP fails. Since other workstations on the same subnet work correctly, the DHCP server and network are functional, isolating the issue to the specific workstation. A faulty or unplugged network cable would prevent the workstation from sending DHCP Discover messages, causing it to fall back to APIPA.

Exam trap

Cisco often tests the distinction between DHCP failure symptoms (APIPA) and other connectivity issues, trapping candidates who confuse DNS or gateway misconfigurations with the inability to obtain an IP lease.

Why the other options are wrong

A

Incorrect DNS settings prevent name resolution but do not affect IP address assignment. The workstation would still receive a valid IP from DHCP, not an APIPA address.

C

If the DHCP pool were exhausted, all workstations would fail to obtain addresses and use APIPA. The scenario states other workstations are working correctly, so pool exhaustion is not the cause.

D

A misconfigured default gateway would prevent internet access but the workstation would still receive a valid IP from DHCP. APIPA addresses are only assigned when DHCP fails entirely.

Why candidates pick the wrong answer

A

Students often confuse DNS issues with DHCP issues because both can cause internet connectivity problems. However, DNS does not impact IP address acquisition.

C

Students may think DHCP pool exhaustion is a common cause of APIPA addresses, but they overlook that it would affect multiple clients, not just one.

D

Since the symptom is no internet access, students might jump to gateway misconfiguration. However, the APIPA address indicates a DHCP failure, not a routing issue.

667
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure inter-VLAN routing using a router-on-a-stick topology.

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

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

Why this order

Inter-VLAN routing via router-on-a-stick requires creating VLANs on the switch, placing access ports in those VLANs, configuring a trunk to the router with the correct native VLAN to avoid mismatch, enabling the physical router interface, and then defining subinterfaces per VLAN with 802.1Q encapsulation and IP addresses. This ensures traffic from different VLANs can be routed.

668
MCQeasy

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

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

The command ip route 0.0.0.0 0.0.0.0 192.0.2.1 installs a default static route whose prefix and mask are both all zeros. Because the routing table uses longest-prefix-match, this quad-zero route matches every IPv4 destination that is not matched by a more specific route. R1 will therefore forward all unknown IPv4 traffic out the interface toward next-hop 192.0.2.1.

Why this answer

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

Exam trap

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

Why the other options are wrong

A

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

C

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

D

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

When would these options actually be correct?

A

If the exam question asked for a specific route to a single host (e.g., 'Which static route on R1 sends traffic only for the IP address 0.0.0.0 to next-hop address 192.0.2.1?'), then option A would be correct as it defines a route for that specific host.

C

This option would be correct in a scenario where the question asks for a route that matches a specific broadcast address, such as directing traffic for all broadcast packets to a next-hop address, which would be relevant in certain network configurations.

D

If the exam question asked for the command to set a default gateway for a Layer 2 device like a switch, then 'ip default-gateway 192.0.2.1' would be the correct answer, as it would direct traffic to the specified gateway for devices that do not have a specific route.

Why candidates pick the wrong answer

A

Students may confuse the all-zeros network address with a default route, but the mask is critical. Using a /32 mask is a common mistake when trying to create a default route.

C

Some test-takers might think that using all ones in the network field represents 'all networks', but this is incorrect. The default route uses all zeros for both network and mask.

D

The term 'default-gateway' sounds similar to 'default route', leading students to believe it is the correct command for routers. However, routers use the 'ip route' command for static routing.

669
Matchingmedium

Match each service to the kind of problem it most directly helps solve.

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

Concepts
Matches

Hostname works incorrectly or cannot be resolved into IP information

Clients need automatic IP configuration

Device timestamps do not line up consistently

Administrators need centralized event and log collection

Why these pairings

DNS solves the problem of remembering IP addresses. DHCP eliminates manual IP configuration. FTP enables file transfers.

SSH provides encrypted remote access. RADIUS and TACACS+ are AAA protocols, with RADIUS commonly used for network access and TACACS+ for device administration.

Exam trap

A common trap is confusing the roles of RADIUS and TACACS+, or thinking that services like DNS or DHCP have overlapping functions. Remember that DNS resolves names, DHCP assigns IPs, FTP transfers files, SSH secures remote access, RADIUS handles network access, and TACACS+ handles device administration.

When would these options actually be correct?

B

This would be correct in a question asking to match services to problems in a deliberately scrambled, non-standard scenario where each service is misassigned to a different problem type, such as a trick question testing attention to detail rather than actual knowledge.

C

If the question asked to match services to problems they solve in a reversed or scrambled order where the pairs are intentionally misaligned but each service is paired with a problem it actually solves (e.g., DNS - name resolution, DHCP - IP assignment, etc.), then this option would be correct if the pairings were correct. However, here the pairings are incorrect.

D

This option would be correct if the question asked to match services to problems they solve in a reversed or misaligned manner, such as 'Match each service to a problem it does NOT solve' or 'Match each service to a common misconception.'

Why candidates pick the wrong answer

B

Candidates may confuse the functions of similar protocols (e.g., RADIUS vs TACACS+) or misremember which service solves which problem, especially under time pressure or when relying on superficial similarities like 'access' or 'remote'.

C

Candidates may confuse the functions of services (e.g., thinking DNS provides encryption due to DNSSEC, or mixing up DHCP and FTP roles) or misread the matching pairs, leading to a plausible but incorrect assignment.

D

Candidates may confuse the functions of similar services (e.g., RADIUS vs. TACACS+) or misremember which service handles encryption, file transfers, or IP configuration, leading to swapped mappings.

670
MCQhard

A trunk link has a native VLAN mismatch between two switches. What is the most likely result?

A.All VLANs except the native VLAN stop forwarding immediately.
B.Untagged frames can be interpreted as belonging to different VLANs on each switch.
C.The trunk automatically converts to an access port.
D.STP is disabled on the trunk until the mismatch is corrected.
AnswerB

With a native VLAN mismatch, each switch places untagged 802.1Q frames into its locally configured native VLAN. For example, if Switch A's native VLAN is 10 and Switch B's is 20, a single untagged frame will be associated with VLAN 10 on one side and VLAN 20 on the other, effectively crossing broadcast domains and potentially exposing traffic to the wrong VLAN. This misclassification can lead to security breaches, routing loops, or connectivity anomalies because VLAN membership is not preserved end-to-end.

Why this answer

Untagged traffic may be placed into different VLANs on each side of the trunk, causing traffic leakage or connectivity problems.

Exam trap

Be careful not to confuse native VLAN mismatches with issues that affect tagged traffic or automatic switch behavior.

Why the other options are wrong

A

A native VLAN mismatch does not cause all other VLANs to stop forwarding. The trunk continues to forward frames for all VLANs, but untagged frames (native VLAN) are miscommunicated.

C

A trunk port does not automatically convert to an access port due to a native VLAN mismatch. The trunk remains operational, but the native VLAN mismatch causes problems for untagged traffic.

D

STP continues to run normally on the trunk link despite a native VLAN mismatch. The mismatch does not disable STP; it only affects the handling of untagged frames.

When would these options actually be correct?

A

In a different scenario, if the question stated that a switch was configured to drop all VLAN traffic except the native VLAN due to a specific security policy, then this option could be correct. This would imply a configuration that restricts forwarding based on VLAN settings.

C

In a different scenario where the question states that a trunk port is configured incorrectly and the switch is set to automatically convert misconfigured ports, option C could be correct. For example, if the exam asks what happens when a trunk port is misconfigured and the switch has a feature enabled that forces a trunk to revert to access mode, then this option would apply.

D

In a different scenario where the question specifies that a trunk link has been configured to disable STP for performance reasons, a native VLAN mismatch could lead to STP being disabled, making this option correct. The question would need to clarify that STP behavior is altered due to specific configurations.

Why candidates pick the wrong answer

A

Students might think that a misconfiguration on the native VLAN would disrupt all VLAN traffic, but in reality, only the native VLAN traffic is affected.

C

Some might confuse a native VLAN mismatch with other trunk misconfigurations that cause the port to revert to access mode, such as a VLAN mismatch on a DTP negotiation.

D

Students may think that any misconfiguration on a trunk would cause STP to shut down the port for safety, but STP only blocks ports to prevent loops, not due to native VLAN mismatches.

671
Multi-Selectmedium

Which two statements accurately describe subnet masks in IPv4?

Select 2 answers
A.It identifies the network-versus-host split in an IPv4 address.
B.It helps a host determine whether a destination is local or remote.
C.It resolves hostnames into IP addresses.
D.It encrypts packets before they leave the host.
E.It replaces the need for a default gateway.
AnswersA, B

A subnet mask is a 32-bit value that uses contiguous 1s to mark the network portion of an IPv4 address and contiguous 0s to mark the host portion. By ANDing an IP address with its mask, you derive the network address, which reveals the exact boundary between the bits that identify the network and the bits assigned to hosts. This boundary is the mask's defining purpose, so saying it identifies the network-versus-host split is accurate.

Why this answer

A subnet mask tells the host which part of the IPv4 address refers to the network and which part refers to the host. In plain language, it helps the device determine whether a destination is local or remote. That decision is essential because it affects whether the host uses ARP directly or forwards traffic to the default gateway.

The wrong answers usually attribute unrelated behaviors to the subnet mask, such as encryption or hostname resolution. The two correct answers are the ones that preserve its role in defining local scope and address structure.

Exam trap

Avoid confusing subnet mask functions with encryption or DNS, as these are unrelated to IP address segmentation.

Why the other options are wrong

C

Subnet masks are used solely for IP addressing and routing purposes, not for name resolution. Hostname-to-IP-address resolution is performed by the Domain Name System (DNS), which is a completely different protocol and service.

D

Subnet masks do not provide any encryption or security functionality. Encryption of packets is performed by protocols such as IPsec, TLS, or other cryptographic mechanisms, which operate independently of subnet masking.

E

A default gateway is still required for any traffic destined to a different subnet. The subnet mask only defines the local network boundary; it does not provide routing to other networks. Without a default gateway, a host cannot send packets off its subnet.

When would these options actually be correct?

C

If the exam question were to ask about the functions of DNS or the process of hostname resolution, then option C would be correct. For example, a question might ask, 'What is the primary function of a DNS server in a network?'

D

If the exam question asked about the functions of network security protocols or methods for securing data transmission over IP networks, then option D could be correct. For instance, a question might ask which methods encrypt packets before transmission, where encryption is a key focus.

E

In a question that asks about network configurations in a scenario where all devices are on the same subnet and no external routing is required, one might argue that a default gateway is unnecessary, making this option seem correct.

Why candidates pick the wrong answer

C

Students often confuse the roles of different network layer functions. Since subnet masks are involved in IP addressing, they might mistakenly think they also handle name resolution, especially when studying both topics in the same context.

D

The term 'mask' might be misinterpreted as something that hides or protects data, leading some students to incorrectly associate it with encryption or security features.

E

Some students might think that if a subnet mask defines the local network, then all destinations within that mask are reachable directly, and they might overlook the need for a gateway to reach external networks.

672
Drag & Dropmedium

A network troubleshooter is using Cisco IOS-XE's embedded packet capture feature to capture traffic on an interface and then analyze it in Wireshark to isolate a Layer 2 or Layer 3 fault. Which of the following sequences represents the correct order of steps?

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

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

Why this order

The correct workflow is to first define the capture point (interface and any filters), then start the capture, stop it when sufficient data is collected, export the captured packets to a file, and finally open that file in Wireshark for analysis. Starting the capture before defining the point, exporting before stopping, or defining the point after stopping all result in an invalid or incomplete capture process.

Exam trap

Remember that the capture point must be defined before starting the capture, and the capture must be stopped before exporting. Do not confuse the order of these steps.

Why candidates pick the wrong answer

B

Candidates might think starting the capture first is intuitive, but the capture point must be defined beforehand.

C

Candidates might think exporting can be done at any time, but the capture must be stopped to ensure data integrity.

D

Candidates may confuse the order, thinking start/stop can be done before configuration, but the capture point must be set first.

673
Multi-Selectmedium

Which two statements accurately describe why organizations use separate employee and guest WLANs?

Select 2 answers
A.They allow different access policies and trust boundaries for different user groups.
B.They help isolate guest access from internal corporate resources.
C.They eliminate the need for wireless security.
D.They make all roaming problems disappear automatically.
E.They replace the need for VLANs or policy controls behind the scenes.
AnswersA, B

Separate WLANs map to distinct security domains, enabling administrators to enforce role-based policies such as 802.1X authentication for employees and PSK access for guests. This segmentation establishes clear trust boundaries, so that device type, user role, or location can determine which network resources are reachable. Without multiple WLANs, all clients might share the same Layer 2 domain, making it impossible to apply differentiated security controls.

Why this answer

Organizations use separate WLANs because different user groups usually require different trust levels, policies, and access rights. In practical terms, employees may need access to internal business systems, while guests usually need a more limited and isolated experience. Separate WLANs make that segmentation and policy enforcement easier.

This is a design and security decision, not just a naming preference.

Exam trap

Avoid assuming that separate WLANs are used for performance improvements or marketing purposes; focus on security and access control.

Why the other options are wrong

C

Separate WLANs do not eliminate the need for wireless security; both employee and guest WLANs require encryption (e.g., WPA2/WPA3) and authentication mechanisms to protect data in transit and prevent unauthorized access.

D

Roaming problems, such as handoff delays or authentication re-requirements, are not automatically resolved by having separate WLANs; they depend on factors like controller configuration, AP placement, and roaming protocols (e.g., 802.11r).

E

Separate WLANs do not replace the need for VLANs or policy controls; in fact, they often rely on VLANs to segregate traffic and on additional policies (e.g., ACLs, firewall rules) to enforce access restrictions between the WLANs and the network.

When would these options actually be correct?

C

In a question that asks about the benefits of a completely unmanaged wireless environment, where security measures are not a concern, this option could be correct if it implies that security is not needed due to the nature of the network.

D

In a question focused on the benefits of advanced wireless technologies, such as a new protocol that inherently resolves roaming issues, this option could be correct if the context is about a specific feature that eliminates roaming problems.

E

In a question focused on network architecture where the context is about simplifying network management by using WLANs instead of VLANs, option E could be correct. For instance, if the question states that WLANs inherently manage segmentation without additional configurations, this option would apply.

Why candidates pick the wrong answer

C

A student might think that because guests are isolated, security is less critical, but in reality, guest WLANs still need security to prevent eavesdropping and misuse.

D

Students may confuse the concept of separate SSIDs with improved roaming, but roaming issues are related to mobility and network design, not just SSID separation.

E

A test-taker might assume that separate WLANs inherently provide full segmentation, but VLANs and policies are still required for Layer 2/3 separation and granular control.

674
MCQhard

A host address is 192.168.50.158/27. Which address is the network address of its subnet?

A.192.168.50.128
B.192.168.50.159
C.192.168.50.160
D.192.168.50.96
AnswerA

With a /27 prefix, the subnet block size is 32 addresses. The host .158 falls within the range .128–.159, and the network address is always the first address of that block, so it is 192.168.50.128. This is the lowest address that identifies this subnet.

Why this answer

A /27 subnet has a block size of 32. In practical terms, the relevant ranges in the last octet are 0-31, 32-63, 64-95, 96-127, 128-159, and so on. Because 158 falls in the 128-159 block, the network address is 192.168.50.128.

This is a block-identification question. Once you identify the correct /27 block, the network address is the first address in that range.

Exam trap

Ensure you calculate the correct block range for the subnet mask given, not just any multiple of the block size.

Why the other options are wrong

B

192.168.50.159 is the broadcast address for the 192.168.50.128/27 subnet, not the network address. The broadcast address is used to send packets to all hosts in the subnet and cannot be assigned to a host.

C

192.168.50.160 is the network address of the next /27 subnet (160-191), not the subnet containing 158. The /27 mask creates subnets with a block size of 32, so the subnet boundaries are multiples of 32.

D

192.168.50.96 is the network address of the 96-127 /27 subnet, which is an earlier subnet. The address 158 falls in the 128-159 range, not the 96-127 range.

When would these options actually be correct?

B

If the question asked for the last usable host address in the subnet 192.168.50.128/27, then 192.168.50.159 would be the correct answer, as it is the highest address before the broadcast address.

C

In a different question where the subnet mask is /26 and the host address is 192.168.50.158, the network address would be 192.168.50.128, making 192.168.50.160 a valid host address within that subnet.

D

If the question asked for a network address within a different subnet using a /25 mask, such as 192.168.50.96/25, then option D would be correct as it would represent the network address for that subnet.

Why candidates pick the wrong answer

B

Students might confuse the last usable host address (158) with the broadcast address (159) or think that the network address is the highest number in the range.

C

A student might miscalculate the subnet boundaries by using a block size of 32 but starting from 0 incorrectly, or they might think 158 is closer to 160 than to 128.

D

Students might incorrectly calculate the subnet by using a block size of 32 but starting from 96 instead of 128, or they might confuse the subnet mask and think the network address is 96.

675
MCQhard

A device administrator can log in securely over SSH, but the organization still insists on restricting source IP ranges and keeping detailed logs. Which statement best explains that decision?

A.Because secure transport alone does not remove the need for source restriction and accountability controls.
B.Because SSH is less secure than Telnet and must be compensated for.
C.Because logs automatically enforce ACL policy.
D.Because source IP restriction replaces the need for authentication.
AnswerA

Secure transport such as SSH safeguards confidentiality and integrity of the management session, but it does not filter which administrative source addresses are permitted or log which user performed specific configuration changes. Without an SSH access-class or management ACL, any reachable source can attempt a login, and without audit logs or AAA accounting, there is no accountability after the fact. Defense-in-depth therefore requires source restriction and accounting in addition to encryption.

Why this answer

The decision reflects defense in depth. SSH encrypts the session and authenticates users, but it does not limit which source IPs can connect or provide audit trails. Source IP restriction reduces the attack surface by allowing only trusted hosts, and logging provides accountability and forensic evidence.

Option B is incorrect because SSH is more secure than Telnet, not less. Option C is incorrect because logs record events but do not enforce ACLs. Option D is incorrect because source IP restriction complements authentication rather than replacing it.

Exam trap

A frequent exam trap is to believe that using SSH alone fully secures remote device access, leading to the mistaken idea that source IP restrictions and logging are redundant. This overlooks that SSH only encrypts the session and authenticates users but does not limit which hosts can connect or provide audit trails. Ignoring source IP filtering increases exposure to brute-force or credential compromise attacks from unauthorized IPs.

Similarly, neglecting logging removes visibility into who accessed the device and when, hindering incident response. The trap is confusing transport security with comprehensive access control and accountability.

Why the other options are wrong

B

SSH is more secure than Telnet, so this option incorrectly suggests it is less secure and requires compensation.

C

Logs record activity but do not automatically enforce ACL policy; enforcement is a separate function.

D

Source IP restriction limits allowed hosts but does not replace the need for user authentication.

When would these options actually be correct?

B

In a different exam scenario where the question states that SSH is being used in an environment with known vulnerabilities or outdated configurations, the statement could be correct if it emphasized the need for additional security measures due to perceived weaknesses in SSH implementation.

C

If the exam question stated that logging was an active mechanism for enforcing security policies, such as in a scenario where logs trigger automated responses to unauthorized access attempts, then this option could be correct.

D

In a different scenario where the question states that a network is entirely secured through IP whitelisting, and no other authentication methods are in place, then the option could be correct. For example, if the question specifies a legacy system that only allows access based on IP addresses without user credentials, then source IP restriction could be seen as a replacement for authentication.

Why candidates pick the wrong answer

B

A student might confuse the relative security of protocols or think that because additional controls are needed, SSH must be weak. However, the need for layered security does not imply SSH is inferior to Telnet.

C

A test-taker might think that logging can automatically trigger actions (like blocking), but standard logs are passive. Some systems can correlate logs with automated responses, but that is not inherent to logging.

D

A student might think that if only certain IPs are allowed, then anyone from those IPs is trusted, ignoring the need for user-level authentication. This is a common misconception about network access control.

Page 8

Page 9 of 19

Page 10