Courseiva

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

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

Page 9

Page 10 of 19

Page 11
676
PBQmedium

You are connected to the console of R1. The network uses IPv6 with EUI-64. R1's GigabitEthernet0/0 interface has MAC address 0011.2233.4455. You must configure the interface to generate an IPv6 link-local address using the 'ipv6 enable' command, and also assign a global unicast address 2001:db8:1::/64 using EUI-64. The interface is currently administratively down.

Network Topology
G0/0linkR1SW1

Hints

  • EUI-64 derives the interface ID from the MAC address.
  • The 'ipv6 enable' command generates a link-local address.
  • The interface must be administratively brought up.
A.R1(config-if)# ipv6 enable R1(config-if)# ipv6 address 2001:db8:1::/64 eui-64 R1(config-if)# no shutdown
B.R1(config-if)# ipv6 address fe80::/10 eui-64 R1(config-if)# ipv6 address 2001:db8:1::/64 eui-64 R1(config-if)# no shutdown
C.R1(config-if)# ipv6 address 2001:db8:1::/64 eui-64 R1(config-if)# no shutdown
D.R1(config-if)# ipv6 enable R1(config-if)# ipv6 address 2001:db8:1::1/64 R1(config-if)# no shutdown
AnswerA
solution
! R1
interface GigabitEthernet0/0
ipv6 enable
ipv6 address 2001:db8:1::/64 eui-64
no shutdown

Why this answer

The ipv6 enable command explicitly creates a link-local address as required by the scenario. The global unicast address with the eui-64 keyword automatically derives the interface ID from the MAC address. Option B is incorrect because it tries to manually configure a link-local address with eui-64, which is unnecessary and invalid.

Option C omits the ipv6 enable command, failing the explicit requirement. Option D assigns a static host portion instead of using eui-64.

Exam trap

When the question specifically mandates the ipv6 enable command for link-local generation, do not omit it; simply configuring a global unicast address will also create a link-local address, but it does not meet the stated objective.

Why the other options are wrong

B

Manually configuring a link-local address with the eui-64 keyword is invalid; link-local addresses are automatically generated.

C

This option does not include the required ipv6 enable command, so it does not satisfy the explicit scenario requirement.

D

Uses a static host address (::1/64) instead of the eui-64 keyword, so the interface ID will not be generated from the MAC address.

Why candidates pick the wrong answer

B

Candidates might think they need to explicitly configure the link-local address with EUI-64, similar to the global unicast address.

C

Candidates might assume that configuring a global unicast address automatically enables IPv6 and generates a link-local address, but that is not the case.

D

Candidates might think that manually specifying the interface ID is acceptable, but the question explicitly requires EUI-64.

677
PBQhard

You are connected to R1 via the console. R1 is configured as an NTP client that should synchronize with the NTP server at 203.0.113.1. You need to verify that R1 is synchronizing correctly and also ensure that the system clock is updated. Additionally, configure R1 to act as an NTP server for downstream devices on the internal network 192.168.1.0/24.

Network Topology
G0/0192.168.1.1/24G0/110.0.0.1/30PCsInternalR1WANNTP server

Hints

  • Check if the NTP server is reachable and the clock is synchronized.
  • The 'master' command sets the stratum level for downstream clients.
  • Use broadcast on the internal interface to distribute time.
A.Use 'show ntp status' to verify synchronization, 'clock set' to update the system clock, and configure 'ntp master' and 'ntp broadcast' on the interface facing 192.168.1.0/24.
B.Use 'show ntp associations' to verify synchronization, 'clock update' to update the system clock, and configure 'ntp server' and 'ntp broadcast' on the interface facing 192.168.1.0/24.
C.Use 'show ntp status' to verify synchronization, 'clock set' to update the system clock, and configure 'ntp server' and 'ntp broadcast' on the interface facing 192.168.1.0/24.
D.Use 'show ntp associations' to verify synchronization, 'clock set' to update the system clock, and configure 'ntp master' and 'ntp broadcast' on the interface facing 192.168.1.0/24.
AnswerA
solution
! R1
ntp server 203.0.113.1
ntp master 4
interface GigabitEthernet0/0
ntp broadcast

Why this answer

The correct verification command is 'show ntp status' because it displays the synchronization state and stratum level. 'show ntp associations' shows configured peers but not the sync state. After NTP sync is established, the system clock is automatically updated; 'clock set' is not typically required but remains a valid command to manually adjust the clock. 'clock update' is not a valid IOS command. To make R1 an NTP server for downstream devices, use the global command 'ntp master 4', not 'ntp server' (which makes the router a client).

Then, on the interface facing 192.168.1.0/24 (G0/0), apply 'ntp broadcast' to send NTP broadcasts so clients can synchronize without polling. Option A correctly combines these steps while other options mix incorrect commands or verification methods.

Exam trap

Be careful to distinguish 'show ntp status' (synchronization state) from 'show ntp associations' (peer list); also remember that 'ntp master' is a global command, while 'ntp broadcast' is applied per interface.

Why the other options are wrong

B

Uses invalid 'clock update' command and incorrectly uses 'ntp server' instead of 'ntp master' to make R1 an NTP server for downstream.

C

Uses 'ntp server' instead of 'ntp master' to make R1 an NTP server; 'ntp server' configures R1 as a client, not a server.

D

Uses 'show ntp associations' which does not show synchronization status; 'show ntp status' is needed for that.

Why candidates pick the wrong answer

B

Candidates might think 'clock update' is a valid command and confuse 'ntp server' with 'ntp master'.

C

Candidates may assume 'ntp server' makes the router a server, but it actually points to an upstream server.

D

Candidates often confuse 'show ntp associations' with 'show ntp status' because both relate to NTP, but only 'show ntp status' provides synchronization details.

678
Multi-Selectmedium

Which two statements accurately describe DNS and DHCP?

Select 2 answers
A.DNS resolves names to IP information, while DHCP dynamically assigns addressing information to clients.
B.DHCP is used primarily to translate private addresses into public addresses.
C.DNS can help users reach services by hostname instead of remembering numeric IP addresses.
D.DHCP replaces the need for subnet masks and default gateways.
E.DNS and DHCP are both Layer 1 technologies.
AnswersA, C

DNS is an application-layer protocol that translates human-friendly domain names into the numeric IP addresses used for routing and identifying hosts. DHCP, on the other hand, is a network management protocol that dynamically allocates IP addresses and other network parameters such as subnet mask, default gateway, and DNS server addresses to clients when they join a network. Thus, DNS resolves names to IPs, while DHCP automates the assignment of addressing information, fulfilling two distinct but complementary roles in network connectivity.

Why this answer

DNS and DHCP solve very different problems, even though both are common infrastructure services. DNS helps devices and users find systems by name. In simple terms, it means people can type a hostname rather than memorizing numeric IP addresses. DHCP automatically gives clients important IP settings such as an address, subnet mask, default gateway, and often DNS server information.

The trick in comparison questions is not to blend their roles together. DHCP does not perform NAT, and it does not eliminate the need for addressing details; it actually supplies them.

Exam trap

A frequent exam trap is confusing DHCP with NAT or assuming DHCP replaces the need for subnet masks and default gateways. Some candidates mistakenly believe DHCP translates private IP addresses to public ones, but this is the role of NAT, not DHCP. Additionally, DHCP does not remove the need for subnet masks or default gateways; instead, it provides these parameters automatically to clients.

Misunderstanding these distinctions can lead to incorrect answers, especially when questions ask about the functions of IP services. Carefully distinguishing DHCP’s role in dynamic addressing from NAT’s role in address translation is essential to avoid this trap.

Why the other options are wrong

B

DHCP does not translate private addresses to public; that is the function of NAT.

D

DHCP does not replace the need for subnet masks and default gateways; it actually provides them automatically.

E

DNS and DHCP operate at the Application Layer (Layer 7), not Layer 1.

When would these options actually be correct?

B

If the exam question asked about protocols that manage address translation in a network, specifically focusing on how private IP addresses are converted to public addresses for internet access, then this option would be correct in that context.

D

In a question that asks about technologies that eliminate the need for traditional network configuration methods, such as static IP addressing, this option could be correct if it implies that DHCP automates configuration, thus reducing manual entry of subnet masks and gateways.

E

In a question that asks which technologies operate at Layer 1, if the context is expanded to include only Layer 1 devices or protocols, one might mistakenly categorize DHCP and DNS as Layer 1 technologies due to their reliance on physical network infrastructure for communication.

Why candidates pick the wrong answer

B

Students may confuse DHCP with NAT because both involve IP address management and are often used together in networks. The term 'translate' might be loosely associated with DHCP's role in assigning addresses, leading to this misconception.

D

Because DHCP automates the assignment of these parameters, some may incorrectly think it eliminates the need for them altogether. However, the parameters are still essential for network communication; DHCP just delivers them dynamically.

E

Students might mistakenly think that because DNS and DHCP are fundamental network services, they belong to lower layers. Additionally, the term 'Layer 1' might be confused with 'Layer 2' or 'Layer 3' due to incomplete understanding of the OSI model.

679
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure and verify HSRP with priority and preemption on an 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
5Step 5
6Step 6

Why this order

First, enter interface configuration mode to start configuring the specific interface. Next, assign an IP address because HSRP requires a real IP on the interface for communication between HSRP routers. After that, define the HSRP group and virtual IP, which clients use as their default gateway.

Then set a higher priority to influence the active router election; priority must be configured before enabling preemption, as preemption relies on priority to determine when to take over. Finally, exit configuration mode and verify with show standby to confirm the HSRP state.

680
MCQhard

An administrator connects a new access-layer switch to a distribution switch. The link comes up but remains in a blocking state and does not forward frames. The administrator issues the show command shown in the exhibit. What is the most likely reason the link is blocked?

A.BPDU Guard is enabled on the port, and the new switch's BPDUs caused the port to enter err-disable state.
B.Loop Guard is enabled, and the port has stopped receiving BPDUs, leading to a loop-inconsistent state.
C.Root Guard is configured on the port, and the new access switch is sending superior BPDUs, triggering a root-inconsistent state.
D.The port is configured with PortFast, and the new switch's BPDU triggered a loop, causing the port to err-disable.
AnswerC

Root Guard is the mechanism that enforces the root bridge position by transitioning a port to the 'root-inconsistent' state when a superior BPDU (lower bridge ID) arrives, effectively blocking the port. Because the new access switch is sending superior BPDUs, the port has been placed in a blocked state to prevent it from becoming the root port and usurping the root bridge. The 'show spanning-tree inconsistentports' output confirms this condition, and the port will automatically recover once the superior BPDUs cease, which is consistent with the exhibit.

Why this answer

The link is blocked because Root Guard is configured on the distribution switch port. When the new access-layer switch sends superior BPDUs (with a lower bridge priority), Root Guard transitions the port to a root-inconsistent (blocking) state to protect the current root bridge from being usurped. This prevents the new switch from becoming the root bridge, which would disrupt the spanning-tree topology.

Exam trap

Cisco often tests the distinction between err-disable states (BPDU Guard) and blocking states (Root Guard, Loop Guard), so the trap here is assuming any BPDU-related protection causes err-disable, when Root Guard specifically causes a blocking state without err-disable.

Why the other options are wrong

A

BPDU Guard results in err-disable, which is not reflected in the show spanning-tree inconsistentports output. The exhibit clearly shows Root Inconsistent, indicating Root Guard, not BPDU Guard.

B

Loop Guard creates a loop-inconsistent listing, not root-inconsistent. The command output explicitly indicates Root Inconsistent, ruling out Loop Guard.

D

Without BPDU Guard, PortFast does not react to BPDUs with a blocking state. The exhibit's root-inconsistent inconsistency is specific to Root Guard, not PortFast or BPDU Guard.

681
MCQhard

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

A.192.168.0.0/16
B.192.168.50.0/24
C.The default route
D.Both routes equally
AnswerB

This is correct because it is the more specific route for the destination.

Why this answer

The 192.168.50.0/24 route is used because it is more specific. In practical terms, even though the /16 also matches, the router always prefers the route that describes the destination more narrowly. Since 192.168.50.99 falls inside the /24, longest-prefix match chooses that entry.

This is a basic but essential routing rule. The broader /16 still matters for other destinations in 192.168.0.0/16, but not for this one.

Exam trap

Remember that routers prefer the most specific route, not the broadest. Always look for the longest prefix match.

Why the other options are wrong

A

The route 192.168.0.0/16 is less specific (larger subnet) than the matching /24 route. In longest prefix match routing, the more specific route (192.168.50.0/24) is always preferred for the destination 192.168.50.99.

C

A default route (0.0.0.0/0) is only used when no more specific route matches the destination. Since both 192.168.0.0/16 and 192.168.50.0/24 match 192.168.50.99, the default route is not considered.

D

Routers do not load balance between routes of different prefix lengths for the same destination. The longest prefix match rule selects a single best route. Both routes are not used equally; the /24 route is chosen.

When would these options actually be correct?

A

In a different scenario where the router has only the route 192.168.0.0/16 and no more specific routes for 192.168.50.0/24, traffic to 192.168.50.99 would use the 192.168.0.0/16 route, making this option correct.

C

In a scenario where the router only has a default route configured and no specific routes for the 192.168.50.0/24 network, a question asking which route would be used for traffic to 192.168.50.99 would correctly identify the default route as the answer.

D

In a different scenario, if the question stated that both routes had equal administrative distances and were configured in a way that allowed for load balancing, then both routes could be used simultaneously for traffic to 192.168.50.99, making this option correct.

Why candidates pick the wrong answer

A

Students may think that because 192.168.50.99 falls within the 192.168.0.0/16 range, this route would be used. However, they overlook the principle of longest prefix match, which prioritizes the route with the longer subnet mask.

C

Students might think that if a default route exists, it could be used as a catch-all. However, the default route has the lowest priority and is only used when no other matching route exists.

D

Students may confuse this with equal-cost multipath (ECMP) where multiple routes with the same prefix length and metric are used. Here, the prefix lengths differ, so ECMP does not apply.

682
MCQmedium

After a switch replacement, users in VLAN 30 cannot reach devices in other VLANs. The replacement switch has a trunk link to the distribution switch that shows as up/up. What is the most likely cause?

A.The native VLAN must be changed to 30
B.VLAN 30 is not permitted on the trunk link
C.The uplink should be configured as an access port
D.STP must be disabled on VLAN 30
AnswerB

The trunk allowed list controls which VLANs traverse the link, and without an explicit 'allowed vlan add 30' statement, frames belonging to VLAN 30 are discarded at the trunk. Because the access switch and distribution switch only carry permitted VLANs, VLAN 30 has no path to the rest of the network. This exactly matches the symptom that only VLAN 30 suffers while other VLANs work normally on the same uplink.

Why this answer

The trunk is up, but VLAN 30 is not allowed on it. Traffic from that VLAN never crosses the uplink, so inter-VLAN reachability fails for users in VLAN 30 even though the local access ports may still look fine.

Exam trap

Ensure you distinguish between management settings and VLAN configuration. Focus on trunk settings when inter-VLAN issues arise.

Why the other options are wrong

A

Changing the native VLAN to 30 would not resolve the issue because the native VLAN is used for untagged traffic on a trunk, and the problem is that VLAN 30 traffic is not being allowed at all. Additionally, native VLAN mismatch can cause connectivity issues, but it does not specifically prevent only VLAN 30 from reaching other VLANs.

C

Configuring the uplink as an access port would place it in a single VLAN, preventing traffic from multiple VLANs (including VLAN 30) from traversing the link. Since the switch needs to carry traffic for multiple VLANs, the uplink must remain a trunk port.

D

Disabling STP on VLAN 30 would be dangerous as it could cause bridging loops and network instability. Moreover, STP does not control whether a VLAN is allowed on a trunk; it only prevents loops. The issue is a missing VLAN in the trunk allowed list, not a spanning-tree problem.

When would these options actually be correct?

A

In a different scenario where a network administrator is troubleshooting a switch that has been configured with a native VLAN of 30, and the requirement is to ensure that untagged traffic is handled correctly, changing the native VLAN to 30 would be appropriate if the design specifies that all untagged traffic should belong to VLAN 30.

C

In a different question context where the prompt indicates that a switch port must connect to a single VLAN and no inter-VLAN routing is required, stating that the uplink should be configured as an access port would be correct. For example, if the question specifies that all devices on the same VLAN need to communicate without routing, this option would be valid.

D

In a scenario where a question states that VLAN 30 is experiencing broadcast storms or loops, and the exam asks for a method to stabilize the network, disabling STP on VLAN 30 could be considered correct to allow for immediate traffic flow, assuming there are no other VLANs affected.

Why candidates pick the wrong answer

A

Students might confuse native VLAN with the VLAN that is allowed on the trunk, or think that setting the native VLAN to 30 would automatically permit VLAN 30 traffic.

C

Students might think that using an access port simplifies configuration, but they overlook the need to carry multiple VLANs between switches.

D

Students might associate STP with VLAN issues because STP operates per VLAN, but they incorrectly assume that disabling STP can fix connectivity problems caused by trunk misconfiguration.

683
MCQhard

Based on the exhibit, which configuration should be added to restore DHCP service for clients in VLAN 30?

A.ip helper-address 10.99.99.20 under interface Vlan30
B.switchport mode trunk under interface Vlan30
C.ip default-gateway 10.99.99.20 under interface Vlan30
D.spanning-tree portfast under interface Vlan30
AnswerA

The VLAN 30 SVI is the Layer 3 gateway for that subnet, so DHCP client broadcasts must be relayed as unicast to the server at 10.99.99.20. The ip helper-address command enables this relay function and is correctly placed on the SVI that receives the clients' requests. Without it, the broadcast would be dropped by the router.

Why this answer

The correct fix is to add an IP helper address pointing to the remote DHCP server on the Layer 3 interface for VLAN 30. In practical terms, the clients are sending DHCP discovery as a broadcast, and the server is on another subnet. The SVI for VLAN 30 is the local gateway that must relay those requests toward the server.

This is one of the most exam-realistic campus troubleshooting scenarios because it tests both subnet boundaries and the role of the local gateway interface.

Exam trap

A common exam trap is confusing the ip helper-address command with ip default-gateway or Layer 2 commands like switchport mode trunk. Candidates might incorrectly apply switchport commands to an SVI, which is a Layer 3 interface, or think setting ip default-gateway will relay DHCP requests. These mistakes cause DHCP broadcasts to fail reaching the remote server, leading to no IP address assignment for clients.

Understanding that ip helper-address is the DHCP relay mechanism on Layer 3 interfaces is critical to avoid this trap.

Why the other options are wrong

B

Incorrect. The command switchport mode trunk is a Layer 2 switchport configuration and cannot be applied to an SVI, which is a Layer 3 interface. This does not affect DHCP relay.

C

Incorrect. The ip default-gateway command sets the default gateway for management traffic on a Layer 2 device and does not relay DHCP broadcasts. It does not restore DHCP service for clients.

D

Incorrect. The spanning-tree portfast command is used on physical Layer 2 switchports to speed up port transitions and has no effect on DHCP relay or SVIs.

When would these options actually be correct?

B

In a different scenario where the question asks about configuring a switch port to allow multiple VLANs to pass through, 'switchport mode trunk' would be the correct answer. For example, if the question specified that VLAN 30 needs to communicate with other VLANs via a trunk link, this option would be appropriate.

C

In a scenario where the question asks for configuring a Layer 2 switch to communicate with a router for routing purposes, 'ip default-gateway 10.99.99.20' would be the correct answer if the switch needs to reach the DHCP server for clients on a different VLAN.

D

In a different scenario where the question asks about optimizing switch port configurations for end devices connected to VLAN 30, 'spanning-tree portfast' would be correct to reduce the time it takes for ports to transition to the forwarding state, improving connectivity for clients.

Why candidates pick the wrong answer

B

Students may confuse SVIs with physical switch ports and think that trunking is needed to carry VLAN 30 traffic, but SVIs are already associated with a VLAN and do not require trunk configuration.

C

The term 'default-gateway' might be associated with routing, and a student might think it helps forward DHCP requests, but it does not perform DHCP relay.

D

PortFast is a common feature that students learn, and they might incorrectly assume it helps with DHCP by reducing delays, but it does not address the need to forward DHCP broadcasts across subnets.

684
MCQhard

Refer to the exhibit. A network administrator is troubleshooting why not all OSPF neighbors are fully adjacent on a multi-access broadcast segment. After issuing the show ip ospf neighbor command on R1, the output is displayed. What is the most likely cause of the 2WAY/DROTHER state for neighbor 172.16.1.1?

A.The neighbor is a DROther and a full adjacency with another DROther is not required; adjacency is formed only with the DR and BDR.
B.The OSPF hello and dead timers are mismatched between R1 and neighbor 172.16.1.1.
C.The network type is configured as point-to-point on one side and broadcast on the other, causing a DR/BDR election failure.
D.The neighbor's router ID 172.16.1.1 is not reachable, preventing the completion of the adjacency process.
AnswerA

The exhibit shows neighbor 172.16.1.1 in state 2WAY/DROTHER. In a broadcast multi-access OSPF network, DROthers exchange hellos and reach 2-Way state with each other but stop at that stage, establishing full adjacency only with the DR and BDR. This is standard OSPF behavior and the most likely reason for the state.

Why this answer

In a multi-access broadcast OSPF network, only the Designated Router (DR) and Backup Designated Router (BDR) form full adjacencies with all other routers. DROthers (routers that are neither DR nor BDR) only form full adjacencies with the DR and BDR, and remain in the 2WAY state with other DROthers. The show ip ospf neighbor output on R1 shows neighbor 172.16.1.1 as 2WAY/DROTHER, which is normal behavior because both are DROthers and do not need to exchange LSAs directly.

Exam trap

Cisco often tests the misconception that any neighbor state other than FULL is a problem, but here the trap is that 2WAY/DROTHER is actually expected behavior for non-DR/BDR routers on a broadcast segment, and candidates may incorrectly assume a timer mismatch or reachability issue.

Why the other options are wrong

B

Candidates mistakenly think any non-FULL state implies a timer mismatch, overlooking that timer issues prevent even reaching 2WAY.

C

Some candidates assume any DR/BDR-related issue indicates a network type mismatch, but the exhibit clearly shows successful DR/BDR formation, ruling out this option.

D

Candidates may confuse LSA reachability with neighbor adjacency requirements. The 2WAY state proves basic connectivity is intact.

685
MCQmedium

A switch administrator enters the following commands on interface GigabitEthernet1/0/10: interface g1/0/10 switchport mode access switchport access vlan 30 spanning-tree portfast spanning-tree bpduguard enable A user connects a small managed switch to this port, and the access port immediately changes to an err-disabled state. Which feature caused the port to shut down?

A.PortFast
B.BPDU Guard
C.Access VLAN 30 assignment
D.The interface being in access mode
AnswerB

Correct. BPDU Guard is correct because it is specifically designed to shut down an edge port that should not receive BPDUs. In plain terms, the switch sees evidence that another switch was attached and decides to protect the topology by disabling the port instead of allowing a possible loop or unexpected spanning-tree participation.

Why this answer

BPDU Guard is the feature that caused the shutdown. This question is really about separating two features that are often configured together on user-facing ports: PortFast and BPDU Guard. PortFast helps an edge port come up quickly, which is useful for PCs and phones.

BPDU Guard adds protection by watching for BPDUs on that same port. If a switch is connected where only an end device should exist, the newly connected switch may send BPDUs. The local switch interprets that as a topology risk and disables the port to protect the Layer 2 network.

The clues are the err-disabled state and the fact that another switch was connected. VLAN assignment and access mode are normal here and do not explain the shutdown.

Exam trap

Remember that BPDU Guard, not PortFast, causes a port to shut down when BPDUs are received. PortFast only affects port transition speed.

Why the other options are wrong

A

PortFast is a feature that allows a port to transition immediately to the forwarding state, bypassing the usual spanning-tree listening and learning phases. It does not cause a port to shut down or enter an err-disabled state; it only speeds up convergence for end-user devices.

C

Assigning an access VLAN (VLAN 30) simply places the port into a specific broadcast domain for user traffic. It has no mechanism to detect or react to BPDUs, and it does not cause a port to enter an err-disabled state. The port would remain operational regardless of the VLAN assignment.

D

Configuring a port as an access port is a standard practice for connecting end devices. It does not inherently cause any shutdown or err-disabled condition. The port remains up and forwarding traffic unless another feature, such as BPDU Guard, triggers a protective action.

When would these options actually be correct?

A

In a different scenario, if the question asked about a port configured for PortFast that is connected to a device that sends BPDUs, the port could go into an err-disabled state due to BPDU Guard being enabled. In this case, PortFast would be the correct answer if the focus was on the immediate transition to forwarding.

C

In a different scenario, if the question asked about a switch port configured to allow only specific VLANs and a device that sends traffic on a VLAN not permitted on that port is connected, the Access VLAN assignment could lead to issues. In such a case, the port might be disabled due to VLAN mismatches or misconfigurations.

D

In a different scenario where an exam question asks about the effects of configuring a switch port in access mode with specific VLAN assignments and other settings, a candidate might be asked to identify the potential issues caused by misconfigurations that could lead to err-disabled states. In such a case, if the question specified that the access mode was incorrectly configured for a trunking scenario, this option could be correct.

Why candidates pick the wrong answer

A

Students often confuse PortFast with BPDU Guard because they are commonly configured together on edge ports. Since PortFast is involved in the scenario, it is tempting to think it is responsible for the shutdown, but the actual disabling action is performed by BPDU Guard.

C

A test-taker might think that the VLAN assignment could cause a conflict or misconfiguration leading to a shutdown, but VLAN assignment alone does not trigger any protective action. The confusion may arise from scenarios where VLAN mismatches cause issues, but those do not result in err-disabled state.

D

Some students may think that access mode is restrictive and could cause issues when connecting a switch, but access mode simply disables trunking. The actual cause of the shutdown is the reception of a BPDU, which is detected by BPDU Guard, not by the access mode configuration.

686
MCQhard

A network engineer configures a static route: ip route 192.168.10.0 255.255.255.0 10.1.1.2. The next hop 10.1.1.2 is reachable via OSPF. Later, the engineer notices that the route to 192.168.10.0/24 has disappeared from the routing table. What is the most likely cause?

A.The OSPF route to 10.1.1.0/30 has been lost, making the next-hop address 10.1.1.2 unresolvable.
B.The static route has a higher administrative distance than OSPF, so OSPF's route to 192.168.10.0/24 replaced it.
C.The static route uses a next-hop IP address that is not directly connected, which is unsupported on this platform.
D.A routing loop caused by recursive lookups has suppressed the static route to prevent loops.
AnswerA

A recursive static route requires a next-hop that is resolvable via an existing route. Without the OSPF route to the subnet containing 10.1.1.2, the router cannot reach the next hop and removes the static route from the routing table.

Why this answer

The static route to 192.168.10.0/24 uses 10.1.1.2 as the next-hop address. For a static route with a next-hop IP (rather than an exit interface) to be installed in the routing table, the next-hop must be reachable via a valid route in the routing table. If the OSPF route to the subnet containing 10.1.1.2 (e.g., 10.1.1.0/30) is lost, the next-hop becomes unreachable, and the static route is removed from the routing table.

This is the most likely cause of the route disappearing.

Exam trap

Cisco often tests the concept that a static route with a next-hop IP requires a valid route to that IP in the routing table, and candidates mistakenly think the static route will always remain or that administrative distance is the cause of its removal.

Why the other options are wrong

B

Believing that a static route is removed from the routing table when a better route exists, rather than understanding it remains but is inactive.

C

Assuming that a static route's next-hop must be directly attached, ignoring that recursive routing via another routing protocol or static route is allowed.

D

Thinking that recursive static routes are prone to loop suppression, rather than understanding that the route is simply withdrawn when the next-hop is no longer reachable.

687
Multi-Selectmedium

Which two statements accurately describe the value of named administrative accounts?

Select 2 answers
A.They improve accountability by tying actions to specific individuals.
B.They improve traceability during audits or incident reviews.
C.They replace the need for authorization controls.
D.They can be used only with Telnet and not SSH.
E.They exist only for wireless guest administration.
AnswersA, B

Named accounts (like AAA with local or RADIUS/TACACS+) bind authenticated users to a unique identity, so every command or configuration change can be logged with the responsible person's username. This is the basis for accountability: when multiple admins share a generic credential, you cannot determine who executed a specific action, but named accounts unambiguously assign responsibility. This deterrence and forensic attribution is a core driver for using AAA rather than shared passwords.

Why this answer

Named administrative accounts are valuable because they tie actions to individual identities and make access review more meaningful. In practical terms, when multiple people share one generic admin account, accountability becomes weaker. Named identities improve traceability and support auditing, investigations, and operational review.

This is a core secure-administration concept and a good reasoning item rather than just a memorization exercise.

Exam trap

Beware of confusing named accounts with other security measures like password policies or role-based access control.

Why the other options are wrong

C

Named accounts provide identification and authentication, but authorization (what actions an account can perform) is a separate control typically enforced via privilege levels, role-based access control (RBAC), or command authorization (e.g., using TACACS+). Replacing authorization with identity alone would violate the principle of least privilege.

D

Named accounts are protocol-agnostic and work with any management protocol, including SSH, HTTPS, and SNMPv3. Telnet is insecure and rarely used in modern networks; named accounts are actually more important with secure protocols to maintain accountability without compromising security.

E

Named administrative accounts are used across all network device administration, including routers, switches, firewalls, and wireless controllers. Wireless guest administration typically uses separate guest accounts or captive portal authentication, not administrative accounts.

When would these options actually be correct?

C

In a scenario where a question asks if named administrative accounts can function independently without any authorization mechanisms, option C could be correct if it specifies that named accounts can be used in a context where no other access controls are enforced, such as in a poorly configured legacy system.

D

In a question that specifically asks about the limitations of administrative account usage in legacy systems or protocols, stating that named administrative accounts are only applicable to Telnet could be correct if the context is focused on outdated practices where SSH was not implemented.

E

If the exam question specifically asked about the purpose of administrative accounts in the context of managing wireless guest access, then this option could be correct. For example, a question could state, 'What is a primary function of named administrative accounts in wireless guest networks?'

Why candidates pick the wrong answer

C

Students may confuse authentication (who you are) with authorization (what you can do), thinking that a named account inherently defines permissions. In reality, authorization must be explicitly configured, often through AAA or local privilege levels.

D

A test-taker might associate named accounts with older protocols like Telnet because both are commonly discussed in the context of legacy network management. However, named accounts are a best practice regardless of protocol, and SSH is the standard for secure remote access.

E

The phrase 'guest administration' might lead a student to think of guest wireless networks, but administrative accounts are for managing the network infrastructure itself, not for guest access. The term 'administration' here refers to device management, not user services.

688
MCQhard

Refer to the exhibit. A network engineer is troubleshooting a connectivity issue on R1. The serial link to R2 on interface Serial0/1 is using HDLC encapsulation, and the physical cable has been verified as good. The engineer has confirmed that the encapsulation type matches on both routers and that the clock rate is correctly configured on the DCE end. Based on the output, what is the most likely cause of the line protocol down state on Serial0/1?

A.The encapsulation type is mismatched between R1 and R2.
B.The clock rate has not been configured on the DCE end of the serial link.
C.The IP address configured on Serial0/1 conflicts with another interface.
D.The keepalive packets are not being received, causing the protocol to stay down.
AnswerD

In HDLC serial links, routers exchange keepalive messages every 10 seconds by default, and the line protocol is declared down when successive keepalives are not received from the far end. Even though the physical layer is up (represented by the 'up' in 'Serial0/1 is up'), the protocol remains down because the local router has lost contact with the remote router at the data link layer. With encapsulation and clocking verified as correct, the most consistent cause is that keepalive packets are not being received, preventing the line protocol from transitioning to 'up'.

Why this answer

The output shows that the line protocol is down while the physical layer (Serial0/1 is up). With HDLC encapsulation and clock rate confirmed correct, the most likely cause is that keepalive packets are not being exchanged between R1 and R2. HDLC uses keepalives to maintain the data link layer; if they are not received (e.g., due to a misconfiguration like 'no keepalive' on one side or a faulty cable), the protocol state will remain down even though the physical layer is operational.

Exam trap

Cisco often tests the distinction between physical layer (line is up) and data link layer (protocol is down), leading candidates to incorrectly blame encapsulation or clock rate when the real issue is keepalive failure.

Why the other options are wrong

A

Candidates might fixate on the up/down status and assume encapsulation mismatch without considering the explicitly stated troubleshooting steps.

B

Students often associate up/down with missing clock rate, but the question precludes this by confirming correct configuration.

C

Some learners confuse Layer 3 problems (IP issues) with the line protocol status that reflects Layer 2 health.

689
MCQmedium

A router advertises its LAN network into OSPF, but no OSPF Hellos should be sent toward end-user devices on that LAN. Which configuration approach solves this cleanly?

A.Use ip ospf cost 65535 on the LAN interface
B.Configure the LAN interface as a passive interface in OSPF
C.Disable OSPF globally and redistribute connected routes
D.Convert the LAN interface to a loopback
AnswerB

The `passive-interface` command under the OSPF process tells OSPF to stop transmitting Hello packets on that interface while still injecting the interface's subnet as an OSPF route. This preserves full route reachability into the LAN without forming neighbor adjacencies, cutting unnecessary protocol overhead. It is the standard, purpose-built mechanism for LAN-facing OSPF interfaces.

Why this answer

A passive interface advertises the connected subnet into OSPF without sending or processing Hellos on that interface. That is exactly what you want for user-facing LANs with no OSPF neighbors.

Exam trap

A frequent exam trap is selecting the option to increase the OSPF cost on the LAN interface to prevent Hello packets. While adjusting the cost changes the metric used for route selection, it does not stop the router from sending or receiving OSPF Hellos. Another common mistake is to disable OSPF globally and redistribute connected routes, which is unnecessarily complex and does not address the problem of suppressing Hellos on a specific interface.

Additionally, converting the LAN interface to a loopback is irrelevant because loopbacks are logical interfaces used for router IDs and testing, not for controlling OSPF Hello behavior on physical LAN interfaces.

Why the other options are wrong

A

Using 'ip ospf cost 65535' on the LAN interface only changes the OSPF metric for that interface. It does not prevent the router from sending or receiving OSPF Hello packets, so neighbor adjacencies can still form, which is not the desired behavior.

C

Disabling OSPF globally and redistributing connected routes is an overly complex and unnecessary approach. It does not selectively stop Hello packets on the LAN interface and can introduce routing complexity and instability.

D

Converting the LAN interface to a loopback interface changes the interface type entirely and is not a standard or practical solution for suppressing OSPF Hellos on a LAN. Loopbacks are logical interfaces used for router IDs and testing, not for controlling OSPF Hello behavior.

When would these options actually be correct?

A

In a scenario where the question asks for a method to influence OSPF path selection without needing to suppress Hello packets, setting the OSPF cost to 65535 could be correct. For example, if the question specifies that the goal is to manipulate OSPF metrics for routing decisions without affecting neighbor relationships.

C

If a question asked how to completely eliminate OSPF from a router while still allowing connected routes to be advertised through another routing protocol, then disabling OSPF globally would be the correct approach.

D

If the question asked for a method to isolate OSPF routing from a specific segment of the network while still allowing the interface to function normally for other purposes, converting the LAN interface to a loopback could be a valid solution, as loopbacks are often used for management or routing purposes without direct user connectivity.

Why candidates pick the wrong answer

A

Students might think that setting a very high cost could effectively suppress OSPF operations on the interface, but cost only affects route selection, not protocol behavior like Hello transmission.

C

A test-taker might consider this option because redistribution can advertise routes without running OSPF on the interface, but they overlook that disabling OSPF globally affects all interfaces and requires additional configuration to re-advertise routes.

D

Students might confuse the passive-interface concept with loopback interfaces, thinking that loopbacks do not send Hellos (which is true), but this approach is impractical and alters the network design unnecessarily.

690
Matchingmedium

Match each route source or route type to its most accurate description.

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

Concepts
Matches

Present because the network is directly attached

Manually configured route

Learned dynamically through the routing protocol

Backup static route with higher administrative distance

Why these pairings

Connected routes are automatically installed when an interface is configured with an IP address and is in the up/up state. Static routes are manually configured by an administrator to specify a fixed path. OSPF is a link-state routing protocol that uses cost as its metric and maintains a complete topology database.

EIGRP is a hybrid protocol that uses bandwidth and delay as metrics and supports unequal-cost load balancing.

Exam trap

The exam often tests the automatic nature of connected routes. Do not confuse them with static or dynamic routes. Remember that connected routes appear only when the interface is up/up.

691
MCQmedium

Which OSPF network type on Ethernet performs a DR and BDR election by default?

A.Point-to-point
B.Broadcast
C.Point-to-multipoint nonbroadcast
D.Loopback
AnswerB

On Ethernet segments, OSPF automatically defaults to the broadcast network type. This type relies on multicast hello packets to 224.0.0.5 and elects a Designated Router (DR) and Backup Designated Router (BDR) to minimize the number of adjacencies and reduce LSA flooding on the multi-access link. Therefore, broadcast is the correct network type where DR/BDR election occurs.

Why this answer

Broadcast multiaccess networks such as Ethernet elect a DR and BDR by default.

Exam trap

A frequent exam trap is selecting point-to-point or point-to-multipoint nonbroadcast as the network type that performs DR/BDR elections. Candidates often assume any multi-router link requires DR/BDR, but OSPF only elects DR/BDR on broadcast and NBMA networks. Point-to-point links connect exactly two routers and do not need DR/BDR, while point-to-multipoint nonbroadcast requires manual neighbor configuration and does not elect DR/BDR by default.

Misunderstanding these distinctions leads to incorrect answers. Remember, Ethernet interfaces default to broadcast network type, which triggers DR/BDR elections automatically.

Why the other options are wrong

A

Point-to-point links connect only two routers directly and do not require or perform DR/BDR elections because there is no need to reduce flooding on a single link. Selecting this option is incorrect for Ethernet interfaces that default to broadcast.

C

Point-to-multipoint nonbroadcast network type requires manual neighbor configuration and does not perform DR/BDR elections by default. This does not match the default behavior of Ethernet interfaces.

D

Loopback interfaces are virtual interfaces used for router identification and do not participate in OSPF DR/BDR elections because they are not multiaccess networks.

When would these options actually be correct?

A

If the question were to ask about OSPF network types that do not require DR and BDR elections, such as in a scenario involving a direct link between two routers, then 'Point-to-point' would be the correct answer.

C

If the exam question asked which OSPF network type supports multiple connections to a central point without requiring a broadcast medium, or if it focused on scenarios involving non-broadcast multi-access (NBMA) networks, then point-to-multipoint nonbroadcast would be the correct answer.

D

If the question were to ask about the OSPF network type that is used for router identification or for creating a stable OSPF endpoint, then Loopback would be the correct answer. For example, a question could specify the importance of using Loopback interfaces for OSPF router IDs.

Why candidates pick the wrong answer

A

Students may confuse point-to-point with Ethernet because both can be used on point-to-point Ethernet links, but the default OSPF network type on Ethernet is broadcast, which triggers DR/BDR election.

C

The term 'nonbroadcast' might confuse students into thinking it applies to Ethernet when they consider scenarios without multicast, but Ethernet inherently supports broadcast, making this type incorrect.

D

Students might think loopback interfaces participate in OSPF elections because they can be advertised in OSPF, but they are not multi-access and thus do not require DR/BDR.

692
Multi-Selectmedium

Which two statements accurately describe why NetFlow is useful for operations teams?

Select 2 answers
A.It helps identify which conversations or applications contribute to link utilization.
B.It can provide more detail than simple interface counters alone.
C.It replaces the need for all routing protocols.
D.It is the main wireless encryption protocol for guest access.
E.It eliminates the usefulness of Syslog.
AnswersA, B

NetFlow samples or captures packet metadata into flow records that identify source/destination IP, ports, and protocol, allowing engineers to rank traffic by conversation or application. This visibility pinpoints which specific flows (e.g., a video-streaming host or an application server) are responsible for congestion, transforming raw link utilization into actionable per-flow intelligence.

Why this answer

NetFlow is useful because it helps teams move beyond simple interface utilization and see which traffic conversations are responsible for usage. In practical terms, it can reveal which hosts, protocols, or applications are contributing to the traffic profile, making it valuable for troubleshooting, capacity planning, and security investigations. Option E is incorrect because NetFlow does not eliminate the usefulness of Syslog; Syslog provides device event logging while NetFlow provides traffic flow data, and both tools complement each other in network operations.

Exam trap

A frequent exam trap is mistaking NetFlow for a routing protocol, a security mechanism, or a replacement for Syslog.

Why the other options are wrong

C

Option C is incorrect because NetFlow does not replace routing protocols; it is a monitoring technology that provides visibility into traffic flows but does not perform routing functions or influence path selection.

D

Option D is incorrect as NetFlow is unrelated to wireless encryption protocols. Wireless encryption standards like WPA2 or WPA3 handle security, whereas NetFlow focuses on traffic flow monitoring.

E

Option E is incorrect because NetFlow does not eliminate the usefulness of Syslog. Syslog provides event logging and system messages, which complement NetFlow’s traffic flow data for comprehensive network monitoring.

When would these options actually be correct?

C

In a question asking about the benefits of using a comprehensive network monitoring solution that integrates multiple functionalities, including traffic analysis and routing management, this option could be correct if it states that a specific tool replaces the need for traditional routing protocols in a simplified network environment.

D

If the exam question asked about the primary functions of wireless security protocols or the best practices for securing guest access in a wireless network, then this option could be correct. In that context, identifying the main wireless encryption protocol would be relevant.

E

In a question asking about the advantages of using NetFlow over traditional logging methods, one might state that NetFlow eliminates the need for Syslog in certain scenarios, such as when only traffic flow data is required and no event logging is necessary.

Why candidates pick the wrong answer

C

Students might confuse NetFlow with routing protocols because both involve network traffic, but NetFlow is about monitoring existing traffic, not making forwarding decisions. The word 'flow' might be mistakenly associated with routing.

D

The term 'flow' might be confused with 'Wi-Fi' or 'wireless' in some contexts, and students may think NetFlow is related to wireless security because both are network-related. However, NetFlow has no role in encryption.

E

Students might think that since NetFlow provides detailed traffic information, it could replace Syslog for monitoring. However, Syslog captures different data (e.g., interface status changes, authentication failures) that NetFlow cannot provide.

693
MCQhard

An administrator sees high interface utilization through SNMP graphs but wants to identify which conversations are responsible. Which addition best closes that visibility gap?

A.NetFlow
B.Another DHCP scope
C.A new STP priority
D.A larger OSPF metric
AnswerA

NetFlow (and similar flow export technologies) captures metadata for each IP conversation traversing the interface, including source/destination addresses, L4 ports, and byte counts. This allows the administrator to aggregate by host, application, or TCP/UDP port and immediately identify the top talkers driving the interface to high utilization. Unlike SNMP counters that show only aggregate usage, NetFlow correlates the utilization to specific flows.

Why this answer

NetFlow provides conversation-level visibility into which hosts and applications are consuming bandwidth, closing the gap left by SNMP's interface totals. A new DHCP scope assigns IP addresses but offers no traffic insight. An STP priority manages loop-free topology and does not affect monitoring.

A larger OSPF metric influences routing path selection, not traffic analysis.

Exam trap

Avoid assuming all network monitoring tools provide the same level of detail. Understand the specific capabilities of each tool.

Why the other options are wrong

B

A DHCP scope handles address assignment and has no role in traffic conversation visibility.

C

An STP priority manages spanning-tree topology and does not provide bandwidth usage details.

D

A larger OSPF metric affects routing path selection but does not reveal which conversations are using bandwidth.

When would these options actually be correct?

B

In a scenario where the question asks about expanding IP address availability in a network with multiple subnets experiencing address exhaustion, adding another DHCP scope could be the correct answer to ensure devices can obtain IP addresses.

C

In a scenario where the question asks about optimizing network performance by adjusting STP settings to prevent loops or improve redundancy, selecting a new STP priority could be correct. For example, if the question focuses on reducing broadcast storms in a VLAN environment, adjusting STP priority could be the right answer.

D

In a scenario where the question asks about optimizing OSPF routing performance or managing traffic flow in a congested network, increasing the OSPF metric for certain routes could be the correct answer. This would prioritize other routes and potentially alleviate congestion.

Why candidates pick the wrong answer

B

Students might confuse DHCP with network monitoring tools because DHCP is involved in network configuration, but it has no capability to report on traffic conversations.

C

Students might think that STP priority affects traffic paths and thus could help identify conversations, but STP only controls the logical topology for loop prevention, not traffic monitoring.

D

Students might associate OSPF metrics with traffic engineering and assume they can help identify bandwidth hogs, but metrics only influence routing decisions, not monitoring.

694
Multi-Selectmedium

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

Select 2 answers
A.LACP uses the 'active' and 'passive' modes to negotiate an EtherChannel.
B.The 'show etherchannel summary' command displays the channel group number, port-channel interface, member ports, and their status.
C.LACP uses the 'auto' and 'desirable' modes to negotiate an EtherChannel.
D.The 'show etherchannel summary' command shows the LACP system priority for each channel.
E.An EtherChannel can be formed only if all member ports use the same LACP mode.
AnswersA, B

This statement is correct. LACP negotiation relies on two modes: 'active' and 'passive'. An interface in 'active' mode actively sends LACP packets to initiate the link aggregation, while one in 'passive' mode waits for a response and only sends packets after receiving them. For an EtherChannel to form, at least one side must be 'active'; if both sides are 'passive', the channel will not come up because no negotiation is initiated.

Why this answer

LACP (IEEE 802.3ad) uses 'active' and 'passive' modes to negotiate an EtherChannel. Option B is correct because the 'show etherchannel summary' command displays the channel group number, port-channel interface, member ports, and their status flags (e.g., P for in port-channel, S for suspended). Option C is incorrect because 'auto' and 'desirable' are PAgP modes, not LACP modes.

Option D is incorrect because 'show etherchannel summary' does not show LACP system priority; that is displayed with 'show lacp sys-id' or 'show etherchannel detail'. Option E is incorrect because an EtherChannel can be formed with mismatched LACP modes as long as at least one side is 'active'; for example, 'active' + 'passive' works.

Exam trap

Cisco often tests the distinction between LACP modes ('active'/'passive') and PAgP modes ('auto'/'desirable'), and candidates frequently confuse which protocol uses which set of modes.

Why the other options are wrong

C

LACP does not use 'auto' and 'desirable' modes; those are PAgP modes.

D

The 'show etherchannel summary' command does not display LACP system priority; that is shown via 'show lacp sys-id' or 'show etherchannel detail'.

E

An EtherChannel can be formed even if member ports use different LACP modes (e.g., active and passive), as long as at least one side is active.

Why candidates pick the wrong answer

C

Students often confuse LACP and PAgP modes because both protocols are used for link aggregation. Since 'auto' and 'desirable' are well-known PAgP modes, test-takers with partial knowledge may mistakenly associate them with LACP.

D

Test-takers might think that because 'show etherchannel summary' provides a high-level view of EtherChannel, it would include LACP system priority. However, that information is considered detailed and is only available in more specific commands.

E

Students might assume that all ports must use the same mode for consistency, similar to other configuration parameters like speed and duplex. However, LACP is designed to allow mixed modes as long as negotiation is possible.

695
MCQmedium

Why is a default route useful on a small branch router connected to a single upstream provider?

A.It provides a simple next hop for unknown destinations toward the upstream connection.
B.It makes every route more specific.
C.It replaces the need for any interface addressing.
D.It forces all users into one VLAN.
AnswerA

The default route is a catch-all route, typically 0.0.0.0/0 for IPv4, that matches any destination not found in the routing table. On a small branch router, it points to the upstream ISP or WAN gateway, allowing all unknown traffic to be forwarded toward the provider with a single simple next hop. This eliminates the need to manually configure many remote network routes.

Why this answer

A default route is useful because it gives the branch a simple fallback next hop for destinations the router does not know specifically. In practical terms, the branch router does not need a full table of every external destination if all unknown traffic should go upstream. That keeps the design simple and efficient.

This is one of the most practical default-route use cases in small or edge networks.

Exam trap

A frequent exam trap is assuming that a default route makes every route more specific or that it replaces the need for interface addressing. Some candidates mistakenly believe the default route refines routing granularity, but it actually represents the least specific route, catching all unknown destinations. Others incorrectly think default routes eliminate the need for IP addresses on interfaces, which is false because interfaces must always have valid IP configurations for routing to function.

Misunderstanding these points can lead to incorrect answers about routing behavior and network design.

Why the other options are wrong

B

Incorrect because a default route is the least specific route and does not make routes more specific; it serves as a catch-all for unknown destinations.

C

Incorrect because interface addressing is mandatory for routing to function properly; a default route does not replace the need for IP addresses on interfaces.

D

Incorrect because default routes influence packet forwarding decisions and have no impact on VLAN assignments, which are Layer 2 configurations.

When would these options actually be correct?

B

In a scenario where a question asks about route summarization or optimization techniques in a complex network with multiple subnets, stating that a default route can make routes more specific could be correct if discussing how it simplifies routing decisions by summarizing multiple routes into one.

C

In a question about a router configuration where a network is entirely using a point-to-point link with no local subnets, and the question asks if a default route can eliminate the need for interface addressing, this option could be considered correct as the context implies a simplified setup.

D

In a different scenario, a question might ask about network segmentation strategies in a multi-VLAN environment where a network administrator needs to ensure all traffic from users is confined to a specific VLAN for security or management purposes. In that case, the option could be correct if the context involves forcing users into a designated VLAN.

Why candidates pick the wrong answer

B

Students might confuse the default route with route summarization or aggregation, which can make routes more specific by combining them. However, the default route is the opposite—it is the most general route.

C

Some learners might think that a default route can serve as a substitute for proper addressing because it directs all traffic to a single next hop, but addressing is still required for the router to function at Layer 3.

D

Test-takers might associate 'default' with a default VLAN (VLAN 1) or think that a default route somehow forces traffic into a single VLAN, but these are unrelated concepts.

696
MCQhard

A network technician is troubleshooting connectivity between two directly connected Cisco switches. Hosts on VLAN 10 connected to SwitchA cannot ping the default gateway on SwitchB. The interface on SwitchB shows up/up, but the interface on SwitchA shows up/down. The technician examines the interface configuration and status on SwitchA. What is the most likely cause of this issue?

A.Replace the Ethernet cable because it is faulty.
B.Configure both interfaces with the same duplex and speed settings, either both auto or both manually set to full-duplex and 1000 Mbps.
C.Issue the 'shutdown' and 'no shutdown' commands on the interface to recover from err-disabled state.
D.Check the VLAN configuration on SwitchA because the interface is administratively down.
AnswerB

The line protocol being down with up/up on the remote suggests a duplex mismatch, which can occur when one side is manually set and the other is auto-negotiating. Setting both sides consistently resolves the issue.

Why this answer

The interface on SwitchA shows up/down, meaning Layer 1 is active but the line protocol is down. This is commonly caused by a speed mismatch between the two ends. A duplex mismatch, in contrast, typically results in both interfaces showing up/up with CRC errors.

Therefore, the most likely cause is that the speed settings differ—for example, one interface is set to auto-negotiate while the other is hard-coded to a specific speed. Configuring both interfaces with identical speed and duplex settings, either both auto or both manually configured, resolves the issue.

Exam trap

The trap is that up/down is often misinterpreted as a faulty cable or an err-disabled state, but it actually points to a speed mismatch or auto-negotiation failure, not a duplex mismatch.

Why the other options are wrong

A

The interface status shows 'up, line protocol is down', which indicates a Layer 2 issue, not a physical cable fault. Additionally, no CRC, runts, giants, or collisions are reported, so the cable is likely not faulty.

C

The interface status is 'up, line protocol is down', not 'err-disabled'. The err-disabled state would show 'err-disabled' in the interface status, and a shutdown/no shutdown would be appropriate only for err-disabled recovery.

D

The interface status is 'up', not 'administratively down'. An administratively down interface would show 'administratively down, line protocol is down'. VLAN configuration issues typically cause the interface to be up/up but unable to forward traffic, not up/down.

Why candidates pick the wrong answer

A

Students often assume that any connectivity problem is due to a bad cable, especially when the interface is up/down. However, the absence of physical layer errors suggests the cable is fine.

C

Students may confuse the 'up/down' state with an err-disabled state, as both can cause connectivity loss. However, err-disabled is a specific condition triggered by port security or other violations.

D

Students might think VLAN misconfiguration can cause the interface to go down, but VLAN issues usually affect Layer 3 connectivity, not the line protocol state of a trunk or access port.

697
PBQmedium

You are connected to the console of R1. The network administrator reports that hosts on VLAN 10 cannot ping the default gateway (192.168.10.1). R1's GigabitEthernet0/1 is connected to a switch with trunk port allowing VLAN 10 and 20. The interface configuration on R1 appears correct, but the VLAN 10 interface is not operational.

Network Topology
G0/1 .1trunkR1SW1

Hints

  • Check the status of the subinterface.
  • Verify that the physical interface is not administratively down.
  • Confirm that the encapsulation command is correct.
A.The physical interface GigabitEthernet0/1 was administratively down.
B.The VLAN 10 subinterface was configured with the wrong encapsulation dot1q VLAN ID.
C.The switch port connected to R1 was not configured as a trunk.
D.The VLAN 10 subinterface was missing the 'no shutdown' command.
AnswerA
solution
! R1
interface GigabitEthernet0/1
no shutdown
interface GigabitEthernet0/1.10
encapsulation dot1Q 10
ip address 192.168.10.1 255.255.255.0

Why this answer

The GigabitEthernet0/1 interface was administratively down (missing 'no shutdown' in the initial config). Although the subinterface had 'no shutdown', the physical interface must also be up. Bringing up the physical interface resolved the issue.

Exam trap

Do not assume that subinterfaces can be independently brought up; always check the physical interface state first. A common trap is to focus on subinterface configuration while ignoring the parent interface.

Why the other options are wrong

B

The specific factual error is that the subinterface would still show as up/up (though traffic would not be forwarded) if the encapsulation were wrong; the problem is the physical interface being down.

C

The specific factual error is that the switch trunk configuration is given as correct; the problem is on the router side, not the switch.

D

The specific factual error is that subinterfaces do not have an independent administrative state; they rely on the physical interface being up.

Why candidates pick the wrong answer

B

Candidates often confuse encapsulation mismatches with interface state issues, assuming a misconfigured VLAN ID causes the interface to be down.

C

Candidates may think the issue is on the switch side because trunk misconfiguration is a common cause of VLAN connectivity problems.

D

Candidates often assume subinterfaces need their own 'no shutdown' and overlook the physical interface state.

698
PBQmedium

You are connected to R1 via the console. R1 and R2 are configured with EIGRP AS 100. R1 has two paths to the 172.16.1.0/24 network: one via a FastEthernet link to R2 (bandwidth 100 Mbps, delay 100 microseconds) and another via a serial link to R2 (bandwidth 1.544 Mbps, delay 20000 microseconds). The EIGRP metric is calculated using the default K-values. The FastEthernet link is preferred, but you need to make the serial link the backup by adjusting the administrative distance.

Network Topology
Fa0/0 10.0.0.1/30Fa0/0 10.0.0.2/30R1R2

Hints

  • The default administrative distance for EIGRP is 90 for internal routes.
  • Use an administrative distance value greater than 90 to make the static route less preferred.
  • The command uses 'ip route' with an AD value at the end.
A.Configure a static route to 172.16.1.0/24 with next-hop 10.0.0.6 and administrative distance 170.
B.Configure a static route to 172.16.1.0/24 with next-hop 10.0.0.6 and administrative distance 90.
C.Configure a static route to 172.16.1.0/24 with next-hop 10.0.0.6 and administrative distance 1.
D.Configure a static route to 172.16.1.0/24 with next-hop 10.0.0.6 and administrative distance 255.
AnswerA
solution
! R1
ip route 172.16.1.0 255.255.255.0 10.0.0.6 170

Why this answer

A floating static route is configured with an administrative distance of 170, which is higher than EIGRP's default distance of 90. This ensures that the static route is only used when the EIGRP route is not available. The static route points to the next-hop IP address of R2's serial interface.

Exam trap

Remember that a floating static route must have an administrative distance higher than the dynamic protocol's AD. EIGRP's default AD is 90, so choose an AD like 170. Avoid using AD 255, as it means the route is not installed.

Why the other options are wrong

B

The specific factual error is that an AD of 90 does not make the static route less preferred than EIGRP; it creates equal preference.

C

The specific factual error is that a lower AD makes the route more preferred, so the static route would override EIGRP.

D

The specific factual error is that AD 255 means the route is not trusted and is effectively ignored.

Why candidates pick the wrong answer

B

Candidates might think that matching the AD of EIGRP is sufficient, but they overlook that the static route must be less preferred to serve as a backup.

C

Candidates might think that a low AD is always good, but they fail to understand that backup routes require a higher AD.

D

Candidates might think that a very high AD ensures it is only used as a last resort, but they miss that AD 255 is reserved for routes that are not usable.

699
MCQhard

A host is configured as 192.168.50.130/25. Which address is the broadcast address for its subnet?

A.192.168.50.127
B.192.168.50.128
C.192.168.50.255
D.192.168.50.254
AnswerC

With a /25 prefix, the subnet mask is 255.255.255.128, which splits the 192.168.50.0/24 network into two 128-address blocks. The address 192.168.50.130 falls into the upper block, 192.168.50.128/25, which spans .128 through .255. The broadcast address is the last address in that block, .255, where all seven host bits are set to 1.

Why this answer

A /25 divides the /24 into two blocks: 0–127 and 128–255. In plain language, because the host ends in 130, it belongs to the upper half, which starts at 128 and ends at 255. The last address in that block is the broadcast address, so the broadcast is 192.168.50.255.

This is a classic subnetting pattern because it tests whether you can identify not just the subnet, but also the reserved last address in that subnet.

Exam trap

A frequent exam trap is mistaking the network address or a high usable host address for the broadcast address. Candidates often select 192.168.50.128, confusing it as the broadcast because it is the start of the upper subnet, or 192.168.50.254, assuming it is the broadcast since it is near the subnet's end. The trap lies in not recognizing that the broadcast address is always the highest address in the subnet, which in this case is 192.168.50.255.

Misidentifying these addresses leads to incorrect subnet calculations and can cause network communication failures in real scenarios.

Why the other options are wrong

A

192.168.50.127 is the broadcast address for the lower /25 subnet (192.168.50.0/25), not the subnet containing 192.168.50.130. Since the host IP is in the upper subnet, this option is incorrect.

B

192.168.50.128 is the network address of the upper /25 subnet (192.168.50.128/25), not the broadcast address. Network addresses cannot be assigned to hosts or used as broadcast addresses, so this option is incorrect.

D

192.168.50.254 is a valid usable host address within the upper /25 subnet. It is not the broadcast address, so this option is incorrect.

When would these options actually be correct?

A

In a different scenario where the subnet mask is /25 and the network address is 192.168.50.0, the broadcast address for the subnet would be 192.168.50.127. A question could ask for the broadcast address of the subnet 192.168.50.0/25, making this option correct.

B

If the question specified a subnet mask of /25 for the address 192.168.50.128, then option B would be correct as the broadcast address for that subnet would be 192.168.50.255, and the first usable address would be 192.168.50.129.

D

If the question specified a subnet mask of /24 instead of /25, then 192.168.50.254 would be the broadcast address for the subnet 192.168.50.0/24, as it would cover the range from 192.168.50.0 to 192.168.50.255.

Why candidates pick the wrong answer

A

Students often confuse the broadcast address of the lower subnet with that of the upper subnet, especially when the host IP is close to the subnet boundary.

B

Some might think that the first address after the subnet boundary is the broadcast, but it is actually the network address. The broadcast is the last address in the range.

D

Students might assume that the last usable host address (.254) is the broadcast, but the broadcast is actually the very last address (.255) in the subnet.

700
MCQmedium

A network engineer queries a REST API and receives data in JSON format. Which statement about JSON is correct?

A.JSON is a transport protocol that replaces HTTPS
B.JSON stores data as key-value pairs and arrays
C.JSON can be used only with Cisco DNA Center
D.JSON requires XML tags around each object
AnswerB

JSON's syntax is built around two core structures: objects, which are unordered collections of key-value pairs enclosed in curly braces, and arrays, which are ordered lists of values enclosed in square brackets. Each value within an object or array can itself be a string, number, boolean, null, or another nested object or array. This self-describing, hierarchical format is language-independent, making it both human-readable and easily parsed by machines.

Why this answer

JSON is a lightweight data-interchange format that represents data as key-value pairs and arrays. Option A is incorrect because JSON is not a transport protocol; it is a data format exchanged over HTTPS. Option C is incorrect because JSON is platform-agnostic and used by many APIs, not limited to Cisco DNA Center.

Option D is incorrect because JSON uses a flexible syntax with colons and brackets, not XML tags.

Exam trap

Avoid confusing JSON with binary formats or assuming it requires a schema like XML.

Why the other options are wrong

A

JSON is a lightweight data-interchange format, not a transport protocol. HTTPS is a secure version of HTTP used for communication, and JSON does not replace it; instead, JSON data is often transmitted over HTTPS.

C

JSON is a platform-independent data format used by many APIs and services, not just Cisco DNA Center. It is supported by virtually all programming languages and is a standard for web APIs across different vendors.

D

JSON does not use XML tags; it uses a syntax of curly braces, colons, and commas to define objects and arrays. XML uses angle brackets for tags, which is a different markup language.

When would these options actually be correct?

A

If the exam question stated that JSON is a protocol designed to facilitate data transfer over the internet, and it was framed in a context where JSON was being compared to other transport protocols, then option A could be considered correct.

C

If the question were framed to ask about a proprietary API that only supports JSON for data interchange within Cisco DNA Center, then this option could be considered correct in that specific context.

D

If the question were to ask about a data format that requires XML tags for structuring data, such as in a comparison between XML and JSON, then this option would be correct. For example, a question could ask, 'Which format requires tags to define objects?'

Why candidates pick the wrong answer

A

Students might confuse JSON with a protocol because it is commonly used in API communications, leading them to think it is a transport protocol rather than a data format.

C

A student might associate JSON with Cisco DNA Center because it is commonly used in Cisco's REST APIs, but this does not mean it is exclusive to that platform.

D

Students might confuse JSON with XML because both are used for data interchange, but they have distinct syntaxes. The mention of 'tags' is a clear indicator of XML, not JSON.

701
Matchingmedium

Match each REST-style method to the most common intent.

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

Concepts
Matches

Retrieve information

Create or submit data

Update or replace a resource

Remove a resource

Why these pairings

RESTful methods map to CRUD operations: GET retrieves, POST creates, PUT replaces, PATCH partially updates, DELETE removes, and OPTIONS returns allowed methods.

Exam trap

The exam tests your understanding of the specific intent of each HTTP method. Common traps include confusing GET with POST for creation, or PUT with PATCH for updates. Remember: GET is read-only, POST creates, PUT replaces, PATCH modifies partially.

When would these options actually be correct?

B

If the question asked 'Which HTTP method is used to retrieve a resource?' then 'GET - Retrieve a resource' would be correct. Alternatively, if the question was about a non-standard API that uses GET for creation (which violates REST principles), but this is not typical for the exam.

C

If the question asked 'Which method is used to submit data to create a new resource?', then POST would be correct.

D

In a question asking 'Which HTTP method is used to replace an entire resource?' or 'Which method is idempotent and updates a resource by sending a complete representation?', PUT would be correct.

Why candidates pick the wrong answer

B

Candidates may confuse GET with POST because they know both can send data, or they might think 'GET' can create resources if the server processes query parameters to create something, which is a common misconception.

C

Candidates may confuse POST with GET because both can send data, but they forget that POST is for creation/submission, not retrieval.

D

Candidates may confuse PUT with PATCH, or think 'update' broadly applies to PUT, overlooking the 'partial' distinction.

702
Multi-Selectmedium

Which two statements accurately describe WPA2 and WPA3 in wireless security?

Select 2 answers
A.Both are wireless security standards used to help protect WLAN access and traffic.
B.WPA3 is the newer standard relative to WPA2.
C.Both are names for specific 802.11 radio frequencies.
D.WPA2 and WPA3 are types of trunk ports.
E.WPA3 eliminates the need for SSIDs.
AnswersA, B

WPA2 and WPA3 are security protocols that provide authentication and encryption for wireless LANs. WPA2 relies on AES-CCMP for data confidentiality, while WPA3 uses AES-GCMP (with 128-bit keys) and mandates Protected Management Frames to strengthen integrity. They both secure the communications between a wireless client and an access point, thereby protecting WLAN access and traffic from eavesdropping, tampering, and unauthorized use.

Why this answer

WPA2 and WPA3 are wireless security standards used to protect WLAN access and traffic. In practical terms, both are associated with securing wireless communication, but WPA3 is generally positioned as the newer standard with security improvements over WPA2. The key idea at CCNA level is recognizing them as WLAN security standards rather than confusing them with SSIDs, controllers, or radio bands.

You do not need deep protocol internals here. You need the role and relative positioning right.

Exam trap

Avoid assuming WPA3 is limited to specific frequency bands or that WPA2 offers superior security features.

Why the other options are wrong

C

WPA2 and WPA3 are security protocols, not radio frequencies. 802.11 radio frequencies refer to bands like 2.4 GHz and 5 GHz, which are unrelated to security standards.

D

Trunk ports are a concept in switched networks for carrying multiple VLANs, typically using 802.1Q tagging. WPA2 and WPA3 have nothing to do with switch port configuration.

E

WPA3 does not eliminate the need for SSIDs; SSIDs are still required to identify and differentiate wireless networks. WPA3 focuses on authentication and encryption, not network identification.

When would these options actually be correct?

C

If the exam question asked about the naming conventions of wireless standards and their association with specific frequency bands, then this option could be correct if it referred to a hypothetical scenario where WPA2 and WPA3 were misinterpreted as frequency designations.

D

If the exam question specifically asked about types of network configurations or VLAN implementations, a statement about WPA2 and WPA3 being types of trunk ports could be correct in a hypothetical context where the question mistakenly conflates wireless security with network topology.

E

If the exam question were to ask about a hypothetical future wireless security standard that integrates SSID-less connections, then this option could be correct. For example, a question might state, 'What advancements in wireless security protocols eliminate the need for SSIDs?'

Why candidates pick the wrong answer

C

Students might confuse the '802.11' in Wi-Fi standards with security protocols, or mistakenly think that WPA versions correspond to different frequency bands.

D

The term 'trunk' might be confused with 'wireless' due to similar-sounding terminology, or a student might incorrectly associate security with port types.

E

A student might think that newer security standards remove older concepts like SSIDs, or confuse SSID with security features like pre-shared keys.

703
PBQhard

You are connected to R1. The network uses a router-on-a-stick design with a single switch (SW1) and two VLANs (10 and 20). Currently, hosts in VLAN 10 cannot ping hosts in VLAN 20, and the trunk between R1 and SW1 shows a native VLAN mismatch. Examine the provided configuration and output, then apply the necessary corrections to R1 so that inter-VLAN routing works correctly.

Hints

  • Check the native VLAN on the trunk — it might not match the switch.
  • Examine each subinterface's encapsulation — one may have the wrong VLAN ID.
  • Is IP routing enabled? The router needs to forward between VLANs.
A.Change the native VLAN on R1's trunk interface to 99, correct the encapsulation on G0/0.20 to dot1Q 20, and enable IP routing globally.
B.Change the native VLAN on R1's trunk interface to 99, correct the encapsulation on G0/0.20 to dot1Q 20, but do not enable IP routing because it is enabled by default.
C.Change the native VLAN on R1's trunk interface to 1, correct the encapsulation on G0/0.20 to dot1Q 20, and enable IP routing globally.
D.Change the native VLAN on R1's trunk interface to 99, correct the encapsulation on G0/0.10 to dot1Q 10, and enable IP routing globally.
AnswerA
solution
! R1
interface GigabitEthernet0/0
switchport trunk native vlan 99
exit
interface GigabitEthernet0/0.20
encapsulation dot1Q 20
exit
ip routing

Why this answer

The configuration has three issues: 1) The native VLAN on the trunk is VLAN 1, but the switch expects VLAN 99 (common mismatch scenario). 2) Subinterface G0/0.20 uses encapsulation dot1Q 10 instead of 20, causing VLAN 20 traffic to be mis-tagged. 3) The 'ip routing' command is missing globally, so R1 cannot route between subinterfaces. To fix, configure the main interface G0/0 with 'encapsulation dot1Q 99 native' to set the native VLAN to 99, correct the encapsulation on G0/0.20 to 'dot1Q 20', and enable IP routing with 'ip routing'.

Exam trap

Candidates often forget to enable 'ip routing' globally, assuming it is on by default. They may also overlook the native VLAN mismatch or incorrectly use a Layer 2 switchport command instead of 'encapsulation dot1Q 99 native' on the router interface.

Why the other options are wrong

B

The specific factual error is that IP routing is not enabled by default; it requires the 'ip routing' global command.

C

The specific factual error is that the native VLAN must match on both sides; changing R1's native VLAN to 1 does not match the switch's native VLAN 99.

D

The specific factual error is that the subinterface G0/0.20 is associated with VLAN 20, so its encapsulation must be dot1Q 20, not 10.

Why candidates pick the wrong answer

B

Candidates may assume that a router automatically routes between interfaces, but in Cisco IOS, routing must be enabled globally.

C

Candidates might think that native VLAN 1 is the default and acceptable, but the switch has been configured with native VLAN 99, so R1 must match that.

D

Candidates might confuse the VLAN IDs or think that correcting the native VLAN is sufficient, but the subinterface encapsulation must match the VLAN it serves.

704
PBQhard

You are connected to R1. Configure NTP client so that R1 synchronizes with the NTP server at 198.51.100.10, using its Loopback0 (10.0.0.1/32) as the source interface. Also configure syslog to send messages of severity 5 (notifications) and above to 192.0.2.20. The current configuration shows a misconfigured NTP server address and an incorrect logging trap level. Verify with 'show ntp status' (stratum should not be 16) and 'show logging'.

Hints

  • Check the NTP server address in running-config — it might point to a wrong IP.
  • Verify that the source interface for NTP is configured; otherwise R1 may use an unreachable interface.
  • The logging trap level is set too high (debugging) — change it to notifications (level 5) to filter out lower severity messages.
A.ntp server 198.51.100.10 source Loopback0 logging trap notifications
B.ntp server 198.51.100.10 source Loopback0 logging trap 4
C.ntp server 198.51.100.10 logging trap notifications
D.ntp server 203.0.113.5 source Loopback0 logging trap 7
AnswerA
solution
! R1
configure terminal
no ntp server 203.0.113.5
ntp server 198.51.100.10
ntp source Loopback0
no logging trap debugging
logging trap notifications
end
write memory

Why this answer

The misconfigured NTP server address (203.0.113.5) and the debug-level logging trap (7) must be corrected to meet requirements. The correct commands are 'ntp server 198.51.100.10 source Loopback0' to use the specified server and Loopback0 as source, and 'logging trap notifications' (severity 5) to send only notifications and more severe messages. Option B is wrong because 'logging trap 4' sets the trap level to warning, which would not forward notifications.

Option C misses the source interface, and Option D uses the wrong NTP server and an overly verbose trap level.

Exam trap

Candidates often confuse the numeric severity levels with the keyword equivalents for logging trap. Also, they may forget to specify the source interface for NTP, assuming the router will use the loopback automatically. Always verify that the NTP source interface is explicitly configured when required.

Why the other options are wrong

B

logging trap 4 sets the severity to warning (4), so it does not include notifications (5).

C

The missing source interface causes NTP to use an incorrect source address, likely resulting in unsynchronized status.

D

The NTP server address is incorrect and 'logging trap 7' sends all debug messages instead of limiting to notifications and above.

Why candidates pick the wrong answer

B

Candidates might think that using the numeric value is acceptable, but the question explicitly mentions the keyword, so the answer using the keyword is more precise.

C

Candidates may forget to specify the source interface, especially if they assume the router will automatically use the loopback interface.

D

This option reflects the misconfigured state mentioned in the question, so candidates might think it is the correct fix, but it actually perpetuates the errors.

705
MCQhard

A router has an OSPF-learned route to a destination prefix and also a directly connected route to a broader supernet that includes that destination. The OSPF route is more specific. Which route is used for the destination?

A.The more specific OSPF route
B.The directly connected broader route
C.Both routes equally
D.Neither route can be used because the sources differ
AnswerA

This is correct because the most specific matching prefix is preferred first.

Why this answer

The more specific OSPF route is used. In practical terms, route specificity is checked before broader route-source considerations when the prefixes are different. Even though the connected route is a directly attached source and often strongly trusted, it still loses if it is less specific than another matching route.

This is a subtle route-selection question because it combines source type and specificity. The key is that longest-prefix match comes first.

Exam trap

A common exam trap is assuming that directly connected routes always take precedence over OSPF routes because they have a lower administrative distance. Candidates may incorrectly select the broader directly connected route, forgetting that routers first apply longest prefix match before considering administrative distance. This leads to the mistaken belief that a less specific connected route overrides a more specific OSPF route.

The trap is confusing route source preference with prefix specificity, which can cause incorrect answers on routing questions involving multiple route sources.

Why the other options are wrong

B

This option is incorrect because a directly connected route, even though it has a lower administrative distance, does not override a more specific OSPF route due to prefix length precedence.

C

This option is incorrect because routers do not use multiple routes equally when one route is a more specific match; only the best matching route is used for forwarding.

D

This option is incorrect because routers can compare and select routes from different sources; differing sources do not prevent route usage if one route is the best match.

When would these options actually be correct?

B

In a scenario where the OSPF route is down or not available, and the question asks which route would be used for the destination, the directly connected broader route would then be the correct answer as it would be the only available route.

C

In a different question where both routes are equally preferred due to equal administrative distances or when using a routing policy that allows for load balancing, the exam could state that both routes are valid and can be used simultaneously for the destination prefix.

D

In a different scenario, if the question stated that both routes were from different routing protocols and the router was configured to not use OSPF routes due to administrative distance settings, then this option could be correct, indicating that neither route would be used.

Why candidates pick the wrong answer

B

Students might think that directly connected routes have a lower administrative distance (0) than OSPF (110), so they would be preferred. However, prefix length takes precedence over administrative distance in the route selection process.

C

Students may confuse this scenario with ECMP, where multiple routes to the same destination are used for load balancing. However, ECMP requires identical prefix lengths and metrics, not different prefix lengths.

D

Students might think that routes from different sources are incomparable or that administrative distance alone determines the winner. However, prefix length is the primary factor, and different sources are compared normally.

706
Multi-Selectmedium

Which two tasks are strong candidates for network automation? (Choose two.)

Select 2 answers
A.Polling many devices for interface status on a schedule
B.Replacing a failed power supply in a branch switch
C.Pushing a standard NTP configuration to many routers
D.Tracing one cable through a crowded rack by hand
E.Listening for fan noise in a wiring closet
AnswersA, C

Automation excels at scheduled, repetitive data collection. Polling interface status from hundreds of devices via SNMP, NETCONF, or streaming telemetry is a deterministic, read-only operation that can be automated to run at consistent intervals, capturing operational state without human intervention. This enables proactive monitoring, historical trend analysis, and quick fault detection, while reducing the burden on network engineers who would otherwise manually connect to each device. The scale and regularity of the task make it a textbook candidate for automation.

Why this answer

Automation works best for repetitive, rule-based tasks such as gathering state information or pushing standard configuration changes across many devices.

Exam trap

Avoid assuming that all network tasks can be automated. Focus on repetitive and rule-based tasks.

Why the other options are wrong

B

Replacing a failed power supply is a physical hardware task that requires hands-on intervention, not a software-based or configuration task that network automation tools can perform.

D

Tracing a cable by hand is a physical, manual task that cannot be automated with network automation tools, which focus on software-based configuration and monitoring.

E

Listening for fan noise is a physical inspection task that relies on human senses and cannot be performed by network automation software, which deals with digital data and configurations.

When would these options actually be correct?

B

In a question asking about tasks that involve hardware maintenance or physical repairs in a network environment, such as 'Which tasks can be performed by on-site technicians?', option B would be correct as it directly relates to hardware replacement.

D

If the exam question asked for tasks that require physical interaction or manual troubleshooting in a network environment, then tracing a cable would be appropriate. For example, a question might ask for tasks that involve identifying physical connectivity issues in a data center.

E

If the exam question asked for tasks related to environmental monitoring or physical maintenance of network equipment, then listening for fan noise could be considered a valid task. For example, a question might ask which tasks can help ensure optimal hardware performance in a data center.

Why candidates pick the wrong answer

B

Students might think that any repetitive task in network operations is automatable, but automation primarily targets software-configurable tasks, not physical hardware replacements.

D

Students might confuse cable tracing with tasks like network discovery or topology mapping, which can be automated, but physical tracing remains a manual process.

E

Students might think that environmental monitoring (e.g., via sensors) is automatable, but the specific act of listening by ear is not a digital workflow.

707
MCQeasy

Users can reach a server by IP address but not by hostname. Which service should be checked first?

A.NTP
B.DNS
C.QoS
D.HSRP
AnswerB

Users can reach a server by IP address but not by hostname. This is the classic symptom of a DNS resolution failure: the client cannot translate the fully qualified domain name (FQDN) into an IP address, so the connection attempt fails at the name lookup stage. The fact that the IP path itself works proves Layer 3 routing and the server's services are reachable, isolating the problem to name resolution.

Why this answer

If the server is reachable by IP but not by name, the likely issue is name resolution, which points to DNS.

Exam trap

A common exam trap is selecting NTP, QoS, or HSRP as the cause when users cannot reach a server by hostname. NTP synchronizes time and does not affect name resolution. QoS prioritizes traffic but does not translate hostnames to IP addresses.

HSRP provides gateway redundancy and does not influence DNS functionality. Choosing any of these distractors wastes time and leads to incorrect troubleshooting. The key is to recognize that hostname resolution depends solely on DNS, so DNS must be the first service checked when IP connectivity exists but hostname access fails.

Why the other options are wrong

A

NTP (Network Time Protocol) is responsible for synchronizing clocks across devices but does not handle hostname resolution or IP address translation, so it cannot cause hostname access failures.

C

QoS (Quality of Service) manages traffic prioritization and bandwidth allocation but does not perform any function related to hostname resolution or IP address translation.

D

HSRP (Hot Standby Router Protocol) provides gateway redundancy and failover but does not influence DNS or the ability to resolve hostnames to IP addresses.

When would these options actually be correct?

A

If the exam question asked about issues related to time synchronization affecting application performance that relies on timestamps, NTP could be the correct answer. For example, if users are experiencing problems with logging or data integrity due to time discrepancies, NTP would be the service to check.

C

In a scenario where a question asks about troubleshooting network performance issues related to bandwidth allocation or latency, QoS would be the correct service to check first. For instance, if users report slow access to a server by both IP and hostname, indicating potential traffic shaping issues.

D

In a scenario where the question asks about ensuring high availability and failover for multiple routers in a network, HSRP would be the correct answer. For example, if users are unable to reach a server due to a router failure, checking HSRP configurations would be appropriate.

Why candidates pick the wrong answer

A

Students might confuse NTP with DNS because both are network services, or they might think time synchronization is needed for hostname resolution, but that is incorrect.

C

Students might think QoS could block or delay DNS traffic, but the symptom is specific to hostname resolution, not performance. QoS issues would typically cause poor performance, not complete failure to resolve.

D

Students might confuse HSRP with DNS because both involve redundancy or failover, but HSRP is unrelated to name resolution. The symptom of being able to reach by IP but not hostname points to DNS, not gateway redundancy.

708
MCQmedium

Why is a default route often described as a route of last resort?

A.Because it is used only when no more specific route matches.
B.Because it always has the lowest bandwidth.
C.Because it is more specific than any other route.
D.Because it can be learned only through OSPF.
AnswerA

The default route, 0.0.0.0/0, matches every IP destination, but routers use longest-prefix-match forwarding. A packet is sent via the default route only when no other route in the routing table has a longer prefix length that matches the destination. Thus it acts as the final fallback, or route of last resort.

Why this answer

It is described that way because it is used only when no more specific route matches the destination. In practical terms, the router checks for connected, static, or dynamic routes that describe the destination more precisely. If it finds none, the default route becomes the fallback path.

This phrase captures the default route’s purpose exactly. It is not the fastest route or the most specific route. It is simply the catch-all route for otherwise unknown destinations.

Exam trap

A frequent exam trap is assuming the default route is the most specific or fastest route, or that it is exclusively learned through OSPF. Candidates may confuse the default route with routes learned dynamically or with specific metrics. The default route is actually the least specific route, matching all destinations not covered by other entries.

Misunderstanding this can lead to incorrect answers about routing behavior and protocol dependencies, especially since default routes can be configured statically or learned via multiple protocols, not just OSPF.

Why the other options are wrong

B

This option is incorrect because bandwidth does not determine whether a route is a default route. Default routes are about specificity and fallback behavior, not link speed or bandwidth.

C

This option is incorrect because the default route is the least specific route, not more specific than others. It matches all destinations not covered by other routes, so it cannot be more specific.

D

This option is incorrect because default routes can be learned through various routing protocols such as OSPF, EIGRP, or configured statically. It is not exclusive to OSPF.

When would these options actually be correct?

B

In a question asking about the characteristics of routing protocols and their performance metrics, if it specified that the default route is always chosen when bandwidth is the primary consideration, this option could be correct. For example, if the question stated that the default route is selected based on bandwidth constraints in a specific network configuration.

C

In a different scenario, if the question asked about a routing protocol that uses a default route as a more specific option for certain traffic, such as a specialized routing setup in a lab environment, this option could be correct. For example, if a question stated that a specific routing protocol treats a default route as a specific route for certain traffic classes, option C could be valid.

D

If the question asked specifically about OSPF and its ability to learn routes, a scenario could involve discussing OSPF's limitations in certain configurations where a default route is only propagated through OSPF, making this option correct in that context.

Why candidates pick the wrong answer

B

Students may confuse the concept of 'last resort' with a route that has poor performance characteristics, such as low bandwidth, or they might mistakenly associate default routes with backup links that have lower bandwidth.

C

The phrase 'route of last resort' might be misinterpreted as 'most specific' because it is the final option, but in routing terminology, specificity refers to prefix length, not priority.

D

Students may recall that OSPF can generate a default route using the 'default-information originate' command, leading them to incorrectly assume that OSPF is the only way to learn a default route.

709
MCQhard

A network engineer notices that a newly connected switch-to-switch link is up, but traffic from multiple VLANs is not passing. When issuing the show interfaces trunk command, no trunk ports are listed. Both switch ports are configured with switchport mode dynamic auto. What is the most likely cause?

A.There is a native VLAN mismatch between the two switches.
B.The connecting cable is a straight-through Ethernet cable rather than a crossover cable.
C.One switch lacks a VLAN that exists on the other switch.
D.Both ports are set to dynamic auto, so neither switch initiates DTP negotiation.
AnswerD

In dynamic auto mode, a switch port passively waits for DTP negotiation requests. When both ends are dynamic auto, no side initiates the negotiation, so the ports default to access mode. This perfectly matches the symptom: the link is up, but no trunk appears under show interfaces trunk, and multi-VLAN traffic is not passing.

Why this answer

When both switch ports are configured with switchport mode dynamic auto, neither actively initiates Dynamic Trunking Protocol (DTP) negotiation. DTP dynamic auto ports wait for the other side to send DTP frames to form a trunk; since both sides are passive, the link remains in access mode and does not become a trunk, preventing traffic from multiple VLANs from passing.

Exam trap

Cisco often tests the subtle difference between dynamic auto (passive) and dynamic desirable (active) DTP modes, leading candidates to incorrectly assume that two dynamic auto ports will automatically form a trunk.

Why the other options are wrong

A

Confusing DTP trunk negotiation with the operational consequences of a native VLAN mismatch.

B

Assuming that a crossover cable is mandatory for switch-to-switch connections, ignoring auto-MDIX.

C

Mistaking the ability to forward traffic for a specific VLAN with the ability to negotiate a trunk.

710
MCQhard

Two switches, SW1 and SW2, are connected via a trunk link. Hosts in VLAN 50 on SW1 cannot communicate with hosts in VLAN 50 on SW2, while hosts in other VLANs communicate normally. What is the most likely cause?

A.VLAN 50 is not allowed on the trunk from SW1.
B.The native VLAN must be changed to 50 on both switches.
C.The trunk must be changed to an access port.
D.The switches must run PPP on the uplink.
AnswerA

The trunk between SW1 and SW2 has a configured allowed VLAN list that excludes VLAN 50; any frames tagged for that VLAN are dropped at the trunk interface. Because 802.1Q trunks only forward VLANs explicitly permitted in the `switchport trunk allowed vlan` list, the missing entry prevents VLAN 50 traffic from reaching SW2. This would cause clients in VLAN 50 to lose connectivity across the link.

Why this answer

The strongest explanation is that VLAN 50 is missing from the allowed VLAN list on one side of the trunk. In practical terms, the trunk is up and carrying other VLANs, so the problem is selective rather than total. When one VLAN is omitted from the allowed list, only that VLAN fails while others continue to work normally.

This is a high-value switching troubleshooting pattern because it rewards careful reading of operational output rather than generic trunk theory.

Exam trap

Be careful to distinguish between total trunk failures and selective VLAN issues. Check the allowed VLAN list on trunk links when only one VLAN is affected.

Why the other options are wrong

B

The native VLAN is used for untagged traffic on a trunk and does not affect the forwarding of tagged frames for other VLANs. Changing the native VLAN to 50 would not resolve the issue because VLAN 50 frames are still tagged and require inclusion in the allowed VLAN list.

C

An access port can only carry a single VLAN, so changing the trunk to an access port would prevent the link from carrying multiple VLANs, including VLAN 50. The link is intended to carry multiple VLANs, so a trunk is required.

D

PPP (Point-to-Point Protocol) is a WAN protocol used on serial links, not on Ethernet trunks. Ethernet trunks use 802.1Q or ISL encapsulation, and PPP has no relevance to VLAN trunking issues.

When would these options actually be correct?

B

In a different scenario where the question specifies that both switches are configured with VLAN 50 as the native VLAN and that there is a requirement for untagged traffic to be sent on VLAN 50, this option would be correct. The question could ask about the implications of having mismatched native VLANs causing connectivity issues.

C

In a different scenario where the question specifies that a switch is incorrectly configured to use an access port for a connection that should carry multiple VLANs, changing the trunk to an access port could be the correct answer if the goal is to isolate traffic to a single VLAN.

D

In a different scenario where the question specifies that the switches are connected via a serial link requiring PPP for communication, and the configuration is incorrectly set to Ethernet, this option would be correct. The question might ask about the necessary protocol for inter-switch communication in a non-Ethernet environment.

Why candidates pick the wrong answer

B

Students often confuse the native VLAN with the concept of a 'management VLAN' or think that setting the native VLAN to the desired VLAN will automatically allow that VLAN across the trunk, but the native VLAN only affects untagged frames.

C

Some test-takers might think that if a specific VLAN is not working, converting the link to an access port and assigning it to VLAN 50 could solve the problem, but this would break connectivity for other VLANs and is not a proper solution for inter-switch VLAN communication.

D

Students might recall that PPP can be used for authentication or encapsulation on point-to-point links and mistakenly think it could be applied to Ethernet trunks, but PPP is not used in Ethernet switching environments.

711
PBQhard

You have console access to both R1 and R2. Configure OSPFv2 on both routers to establish a single-area adjacency in area 0. The link between R1 and R2 uses 10.0.0.0/30. Currently, OSPF is not configured on either router. After configuration, verify the adjacency forms and routes are exchanged.

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

Hints

  • Use 'router ospf <process-id>' to enter OSPF configuration mode.
  • The network statement uses a wildcard mask, not a subnet mask. For a /30, use 0.0.0.3.
  • Remember to set a router-id; it can be any IP address, but must be unique per router.
A.Configure 'router ospf 1' on R1 and R2, set router-id, and use 'network 10.0.0.0 0.0.0.3 area 0' on both routers.
B.Configure 'router ospf 1' on R1 only, and use 'network 10.0.0.0 0.0.0.3 area 0' on R1; R2 does not need OSPF configuration because it will learn routes via the directly connected interface.
C.Configure 'router ospf 1' on both routers, set router-id, and use 'network 10.0.0.0 255.255.255.252 area 0' on both routers.
D.Configure 'router ospf 1' on both routers, set router-id, and use 'network 10.0.0.0 0.0.0.0 area 0' on both routers.
AnswerA
solution
! R1
configure terminal
router ospf 1
router-id 1.1.1.1
network 10.0.0.0 0.0.0.3 area 0
network 192.168.1.0 0.0.0.255 area 0
network 10.1.1.1 0.0.0.0 area 0
passive-interface GigabitEthernet0/1
passive-interface Loopback0
end

Why this answer

The essential requirement is enabling OSPFv2 on both routers with matching area 0 on the 10.0.0.0/30 link. On R1 and R2, enter 'router ospf 1', set a unique router-id, and use 'network 10.0.0.0 0.0.0.3 area 0' to advertise the link. The solution commands include optional networks (192.168.1.0/24 and Loopback0) that are not required for the adjacency and are shown only as examples; candidates should focus on the link network.

After configuration, 'show ip ospf neighbor' should show a FULL state. Common mistakes include using a subnet mask instead of a wildcard mask (option C) or a /32 wildcard (option D), and not configuring OSPF on R2 (option B).

Exam trap

Remember that OSPF network statements use wildcard masks, not subnet masks. Also, both routers must be configured; OSPF does not automatically enable on all interfaces. Use 'show ip ospf neighbor' to verify adjacency formation.

Why the other options are wrong

B

The specific factual error is that OSPF is a dynamic routing protocol that must be enabled on both ends of a link for adjacency to form; one-sided configuration does not work.

C

The specific factual error is confusing subnet masks with wildcard masks; OSPF uses inverse masks in network statements.

D

The specific factual error is using a host wildcard mask that does not cover the actual interface IPs; the correct wildcard mask must include the range of IPs on the link.

Why candidates pick the wrong answer

B

Candidates might think that because the link is directly connected, OSPF will automatically discover neighbors without explicit configuration on both sides.

C

Candidates often mistakenly use subnet masks instead of wildcard masks because they are more familiar with subnet masks from IP addressing.

D

Candidates might think that using a host mask (0.0.0.0) is sufficient because the network statement is for the network address, but OSPF matches the interface IP, not the network address.

712
Multi-Selectmedium

Which two statements accurately describe APIs in controller-based networking?

Select 2 answers
A.They provide a defined interface through which software can communicate with the controller.
B.They can be used by automation tools to retrieve data or request changes.
C.They replace all need for forwarding devices.
D.They remove the need for authentication and authorization.
E.They are Ethernet cabling standards.
AnswersA, B

APIs provide a formal, documented contract that shields external clients from the controller's internal mechanics. For example, a northbound REST API defines specific URIs, methods, and schemas for exchanging operational state or configuration data. This allows software to communicate precisely and predictably without needing to understand the underlying controller implementation.

Why this answer

APIs are important in controller-based networking because they give external software a defined way to request data or trigger changes on the controller. In plain language, they make the controller accessible to automation tools, dashboards, orchestration systems, and custom scripts. This helps integrate the controller into broader workflows. APIs do not eliminate the need for security controls, but they do make software-driven operations possible.

The wrong answers usually confuse APIs with physical interfaces or claim that they remove the need for authentication. The two correct answers are the ones focused on programmatic access and software integration.

Exam trap

Avoid confusing APIs with physical interfaces or assuming they bypass security protocols.

Why the other options are wrong

C

APIs are software interfaces that enable communication with the controller, but they do not replace forwarding devices like switches and routers. These devices still handle packet forwarding based on policies set via the controller; the controller does not eliminate the need for physical or virtual forwarding hardware.

D

APIs do not remove the need for authentication and authorization. In fact, secure API access typically requires credentials, tokens, or certificates to ensure only authorized users or systems can interact with the controller. Removing these controls would create severe security vulnerabilities.

E

APIs are software interfaces, not physical cabling standards. Ethernet cabling standards like Cat5e, Cat6, or fiber optics define physical layer specifications for wired network connections. Confusing APIs with cabling is a fundamental category error.

When would these options actually be correct?

C

In a question focused on the theoretical aspects of network architecture, where the context is about a fully virtualized environment that abstracts traditional hardware, this option could be correct if it states that APIs can eliminate the need for physical forwarding devices in such a scenario.

D

If the exam question were to focus on a hypothetical scenario where an API is designed for a fully trusted internal network with no security concerns, it could state that authentication and authorization are not necessary, making this option correct.

E

If the exam question asked about networking standards or protocols related to Ethernet technology, such as 'Which of the following are standards for Ethernet cabling?' then option E would be the correct answer, as it would accurately describe a category of networking specifications.

Why candidates pick the wrong answer

C

A student might think that because the controller centralizes control and uses APIs for automation, the forwarding devices become unnecessary. However, the controller only manages the control plane; the data plane still requires forwarding devices to actually move traffic.

D

Some might assume that because APIs are automated, security checks are bypassed. However, automation does not imply lack of security; APIs enforce authentication and authorization to protect network resources.

E

The term 'interface' in networking can refer to both physical ports and software APIs. A student with limited exposure might mistakenly associate 'interface' with physical cabling, especially if they have not yet learned about software-defined networking concepts.

713
MCQhard

R1 and R2 are directly connected and both configured for OSPF area 0. The IP addresses are correct, but the routers do not become neighbors. What is the most likely cause?

A.The OSPF network types on the interfaces do not match.
B.The routers need matching hostnames to exchange LSAs.
C.The /30 subnet is too small for OSPF to operate.
D.The interfaces must be converted into switch trunks.
AnswerA

This is correct because OSPF network type controls fundamental adjacency behaviors such as Hello/Dead timer intervals and DR/BDR election. A point-to-point interface expects to form an adjacency without a DR, while a broadcast interface will wait for a DR/BDR process, and their timer values typically differ. Even if both routers have matching subnet masks and are directly connected, a mismatch in network type causes the routers to discard each other's Hello packets or fail to reach Full state, preventing any LSA exchange.

Why this answer

The most likely cause is an OSPF network type mismatch. In practical terms, both routers are on the same IP segment and both are trying to use OSPF in the same area, but they do not agree on the type of OSPF network the interface represents. That matters because OSPF behavior changes depending on the network type, including how neighbors are discovered and how adjacencies are formed.

This is a classic exam-style troubleshooting case because the obvious items look correct: IP addressing works and the area matches. But a mismatch between point-to-point and broadcast expectations can still stop the relationship from forming cleanly. That makes network type mismatch the strongest answer here.

Exam trap

A frequent exam trap is to overlook the importance of matching OSPF network types on connected interfaces. Candidates might assume that correct IP addressing and area numbers are sufficient for adjacency. However, if one router uses a broadcast network type and the other uses point-to-point, they will not become neighbors despite appearing correctly configured.

This subtle mismatch is often missed because it does not generate explicit errors, leading to confusion and incorrect troubleshooting steps.

Why the other options are wrong

B

This option is incorrect because OSPF neighbor relationships do not depend on matching hostnames. Hostnames are administrative identifiers and do not affect OSPF protocol operations or LSA exchanges.

C

This option is incorrect because a /30 subnet is a standard subnet size for point-to-point links and does not prevent OSPF from operating or forming adjacencies. OSPF works normally over /30 subnets.

D

This option is incorrect because OSPF runs over routed interfaces and does not require interfaces to be configured as switch trunks. Trunking is related to VLAN tagging and switching, not OSPF adjacency.

When would these options actually be correct?

B

In a different scenario, if the question specified that the routers were configured to use OSPF with a custom authentication method that required matching hostnames for verification, then this option could be correct. For example, if the routers were part of a security policy that mandates hostname verification for OSPF neighbor relationships.

C

In a different scenario, if the question stated that OSPF requires a minimum of a /29 subnet for its operation due to specific network design constraints or if it involved a multi-access network setup, then this option could be correct.

D

In a different scenario where the question involves OSPF running on a switch with multiple VLANs, and the interfaces are configured as access ports instead of trunk ports, this option could be correct. If the routers were connected through a switch that required trunking for OSPF to function, then this would be a valid cause for neighbor issues.

Why candidates pick the wrong answer

B

Students may confuse the requirement for matching hostnames in other protocols (like EIGRP) or think that OSPF uses hostnames for neighbor authentication, but OSPF does not require hostname matching.

C

Some might think that OSPF requires a larger subnet (like /24) because they associate OSPF with broadcast networks, but OSPF works fine with /30 on point-to-point links.

D

Students may confuse OSPF with VLAN routing or think that trunking is needed for OSPF to carry multiple VLANs, but OSPF operates at Layer 3 and does not require trunk ports.

714
MCQhard

Why are data models such as YANG important in network automation?

A.They define a structured way to represent configuration and state data
B.They replace IPv4 and IPv6 addressing
C.They remove the need for routing protocols
D.They are used only for naming wireless SSIDs
AnswerA

YANG defines a hierarchical, schema-based data model (RFC 6020/7950) that standardizes how configuration and operational state are represented, enabling programmatic access via NETCONF/RESTCONF. This structured representation allows automation tools to reliably validate, read, and modify device settings across vendors without ad-hoc CLI parsing.

Why this answer

Data models such as YANG standardize how configuration and operational data are described, which improves consistency for automation systems and APIs.

Exam trap

A common exam trap is to mistakenly believe that YANG data models replace fundamental network functions such as IPv4/IPv6 addressing or routing protocols. Some candidates incorrectly assume that because YANG structures configuration data, it eliminates the need for routing protocols like OSPF or EIGRP, or that it changes how IP addresses function. However, YANG is strictly a modeling language that describes how configuration and state data are represented for automation purposes.

It does not alter core networking protocols or addressing schemes. Confusing these roles can lead to selecting incorrect answers that misattribute YANG’s purpose.

Why the other options are wrong

B

Option B is incorrect because YANG does not replace IPv4 or IPv6 addressing schemes. IP addressing remains a core network function independent of data modeling languages.

C

Option C is wrong since YANG does not remove the need for routing protocols. Routing protocols like OSPF and EIGRP continue to operate and are configured using data models but are not replaced by them.

D

Option D is false because YANG’s scope is much broader than naming wireless SSIDs. It models a wide range of network configurations and operational data beyond wireless settings.

When would these options actually be correct?

B

If the exam question asked about the evolution of network protocols and their roles in addressing schemes, or if it specifically inquired about the future of IP addressing, then option B could be correct in a context discussing the transition from IPv4 to IPv6.

C

In a question asking about the impact of automation on network architecture, if it stated that automation frameworks can streamline or simplify routing processes, this option could be considered correct in the context of discussing how certain automation tools might reduce the complexity of routing protocol management.

D

If the exam question asked specifically about the use of YANG in a context limited to wireless networking, such as configuring wireless access points or SSIDs, then option D could be correct. For example, a question might ask, 'What is a specific application of YANG in managing wireless network configurations?'

Why candidates pick the wrong answer

B

A student might confuse YANG with a protocol that modifies network layer addressing, or think that automation models can eliminate the need for traditional addressing, but YANG only structures how addressing is represented.

C

A test-taker might assume that automation and data models can replace dynamic routing by hardcoding routes, but YANG is about representation, not replacing functionality.

D

A student with limited exposure to YANG might only have seen it used in wireless contexts, such as modeling SSID parameters, and incorrectly assume that is its sole purpose.

715
MCQhard

Users report that their PCs take over 30 seconds to obtain IP addresses and reach the network after being powered on. A network technician checks a switch port connected to a PC and observes that the port transitions through blocking, listening, learning, and then forwarding states, taking about 30 seconds to complete. The switch is running standard 802.1D STP. The technician confirms the port is an access port and only connects to a PC. What should the technician do next?

A.Reduce the STP forward delay timer globally on the switch.
B.Enable PortFast on the access port.
C.Disable STP on the access VLAN assigned to the port.
D.Enable Rapid PVST+ on the switch.
AnswerB

PortFast is designed for ports that connect to end hosts. It forces the port to transition directly to the forwarding state, skipping the normal STP listening and learning phases, which is exactly what is needed to eliminate the 30-second boot-time delay.

Why this answer

The 30-second delay is caused by the standard 802.1D STP port states (blocking → listening → learning → forwarding). Since the port is an access port connecting only to a PC (an end host), there is no risk of a bridging loop. Enabling PortFast immediately transitions the port to the forwarding state, bypassing the listening and learning states and eliminating the delay.

Exam trap

Cisco often tests the misconception that disabling STP or changing global timers is acceptable for a single access port, when the correct solution is to use PortFast to bypass the STP states safely only on end-host ports.

Why the other options are wrong

A

This action is too drastic and impacts all ports, whereas the issue is specific to access ports connected to end devices. PortFast is the standard, safe method for eliminating delay on edge ports.

C

Candidates might think that turning off STP on a single VLAN is a quick fix, but it removes the safety net against loops and is not a recommended network practice. PortFast provides the immediate-forwarding benefit while preserving STP loop protection.

D

Candidates often assume that Rapid PVST+ immediately forwards on all access ports, but the edge port behavior must be configured. The scenario explicitly mentions the port is an access port connected only to a PC; the immediate fix is to enable PortFast, not change the entire STP mode.

716
PBQmedium

You are connected to the console of R1. The output of 'show interfaces serial0/0/0' displays that the interface is administratively down (status: administratively down, line protocol is down). The network administrator reports that the serial link between R1 and R2 was recently configured but is not working. You need to troubleshoot and restore connectivity. The serial interface on R1 is Serial0/0/0, and the link is a point-to-point HDLC connection.

Network Topology
S0/0/0S0/0/0serial cableR1R2

Hints

  • Check the interface status with show interfaces.
  • Look for 'administratively down' in the output.
  • Use the no shutdown command to enable the interface.
A.Enter interface configuration mode for Serial0/0/0 and issue the 'no shutdown' command.
B.Enter global configuration mode and issue the 'clock rate 64000' command.
C.Enter interface configuration mode for Serial0/0/0 and issue the 'encapsulation ppp' command.
D.Enter privileged EXEC mode and issue the 'clear interface serial0/0/0' command.
AnswerA
solution
! R1
interface Serial0/0/0
no shutdown

Why this answer

The interface status 'administratively down' indicates the interface has been manually shut down with the 'shutdown' command. Issuing 'no shutdown' in interface configuration mode re-enables it, bringing the line protocol up and restoring connectivity. Option B is incorrect because clock rate configuration is necessary only if R1 is the DCE and clocking is missing; the issue here is the administrative state, not clocking.

Option C is incorrect because changing the encapsulation to PPP would not resolve an administratively down state and could create a mismatch. Option D is wrong because 'clear interface' only resets counters and does not change the interface's administrative status.

Exam trap

The trap is that candidates may overlook the 'administratively down' status and instead focus on clocking or encapsulation issues. Always check the interface status first; if it says 'administratively down', the fix is 'no shutdown'.

Why the other options are wrong

B

The specific factual error: The 'clock rate' command configures the clocking rate on a DCE serial interface, not the administrative state.

C

The specific factual error: The encapsulation command changes the Layer 2 protocol but does not affect the administrative state of the interface.

D

The specific factual error: The 'clear interface' command does not enable an administratively down interface; it only resets statistics.

Why candidates pick the wrong answer

B

Candidates pick this because they may confuse a clocking issue with an administrative shutdown, or think that setting a clock rate is necessary for HDLC links.

C

Candidates pick this because they might think the link is down due to encapsulation mismatch, but the question states it is an HDLC connection and the issue is administrative.

D

Candidates pick this because they may think 'clear' will reset the interface to an operational state, similar to a reload, but it does not override the shutdown command.

717
MCQhard

Refer to the exhibit. A network engineer is troubleshooting a connectivity issue between two routers connected via a serial link. The engineer runs the show interfaces Serial0/0/0 command on R1. Based on the output, what is the most likely cause of the problem?

A.The interface is configured with the wrong encapsulation type.
B.The interface is administratively shut down.
C.The serial cable is disconnected or has a physical fault.
D.The DCE end of the serial link is missing a clock rate configuration.
AnswerD

The output explicitly states 'DCE, no clock rate set'. On a serial WAN link, the data communications equipment (DCE) must supply the clock signal. Without the clock rate command, the line protocol cannot come up, regardless of all other settings being correct.

Why this answer

The output shows that the interface is up (line protocol is down), and the serial cable is physically connected. The absence of a clock rate on the DCE end of a serial link causes the line protocol to remain down because the receiving router cannot synchronize bit timing. Option D is correct because the DCE device must provide a clock signal for the serial link to establish Layer 2 connectivity.

Exam trap

Cisco often tests the distinction between 'interface is up, line protocol is down' (Layer 1 up, Layer 2 down) and 'interface is down, line protocol is down' (Layer 1 fault), tricking candidates into thinking a physical cable issue is the cause when the real problem is a missing clock rate on the DCE.

Why the other options are wrong

A

Many candidates assume that a Layer 2 protocol down on a serial link is always caused by an encapsulation mismatch, overlooking the explicit clocking issue displayed in the output.

B

Novice engineers might misinterpret 'line protocol is down' as an indication that the interface is disabled, without reading the full status line.

C

The trap: candidates see 'line protocol is down' and immediately think of a physical problem, missing the clear distinction that the interface itself is 'up'.

718
Drag & Dropmedium

Drag and drop the following steps into the correct order to enable a third-party SFP transceiver and verify its diagnostics on a Cisco switch.

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

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

Why this order

Cisco switches by default only support Cisco-branded SFP transceivers. To use a third-party transceiver, the command `service unsupported-transceiver` must be enabled in global configuration mode. After configuring the interface, the `show interfaces transceiver` command displays diagnostic information including temperature, voltage, and optical power, which helps verify proper operation.

719
MCQhard

A phone and PC share one switchport. The phone works, but the PC cannot reach its normal data resources. The switchport voice VLAN is configured, and the access VLAN is incorrect. Which explanation is strongest?

A.The PC is likely in the wrong data VLAN even though the phone still uses the correct voice VLAN.
B.If the phone works, the PC must also work because both use the same VLAN always.
C.The issue must be BGP because phones cannot use VLANs.
D.The access VLAN becomes irrelevant whenever a voice VLAN is configured.
AnswerA

The PC is likely in the wrong data VLAN even though the phone still uses the correct voice VLAN because a single switchport can serve two logical VLANs simultaneously: an access VLAN for untagged data traffic and a voice VLAN for tagged voice traffic. In a typical Cisco IP phone deployment, the phone tags its voice frames with the voice VLAN and passes the PC's untagged frames onto the access VLAN, so the phone's operation only proves the voice VLAN path is healthy. The PC's connectivity depends entirely on the access VLAN configuration—if the access VLAN ID, subnet, or DHCP scope is misconfigured, the PC will fail while the phone continues to work. Thus, the symptom directly points to a data VLAN issue, not a voice VLAN problem.

Why this answer

The switchport is configured with a voice VLAN for the phone and an access VLAN for the PC. If the access VLAN is incorrect, the PC will be placed in the wrong data VLAN, preventing it from reaching its normal data resources, while the phone continues to operate correctly on its designated voice VLAN. This is a common misconfiguration where the data VLAN ID does not match the network segment the PC expects.

Exam trap

Cisco often tests the misconception that a working phone implies the PC is also correctly configured, but the trap here is that voice and data VLANs are independent, so a misconfigured access VLAN only affects the PC.

Why the other options are wrong

B

This statement is incorrect because the phone and PC can operate on different VLANs on the same port. The phone uses the voice VLAN, while the PC uses the access (data) VLAN. They are not required to use the same VLAN, and misconfiguration of the access VLAN can cause the PC to fail while the phone works.

C

BGP (Border Gateway Protocol) is a routing protocol used between autonomous systems, not related to VLAN configuration on a switchport. The issue described is about Layer 2 VLAN assignment, not Layer 3 routing. BGP has no role in this scenario.

D

The access VLAN remains relevant even when a voice VLAN is configured. The access VLAN is used for the PC's data traffic, while the voice VLAN is used for the phone's traffic. If the access VLAN is incorrect, the PC will not be able to communicate on the correct data network.

When would these options actually be correct?

B

In a different scenario where both devices are explicitly stated to be on the same VLAN and the question focuses on a situation where a misconfiguration affects both devices equally, this option could be correct. For example, if the question specified that both the phone and PC are configured on the same VLAN and the VLAN is down, then this option would apply.

C

In a different question setup where the context involves a network configuration issue specifically related to BGP routing and VLANs, this option could be correct if the question states that BGP is misconfigured, causing devices on the same VLAN to fail to communicate. For example, if the question describes a scenario where both devices are on the same VLAN but cannot reach external resources due to BGP issues.

D

In a scenario where a switchport is configured to only support voice traffic and is set to trunk mode without any access VLAN specified, this option could be correct. For example, if the question states that the switchport is exclusively for voice traffic and does not allow data traffic, then the access VLAN would indeed be irrelevant.

Why candidates pick the wrong answer

B

Students might assume that since both devices share the same physical port, they must be on the same VLAN. This confusion arises from a lack of understanding of how voice VLANs work, where the switchport is configured to carry multiple VLANs and the phone is placed on a separate VLAN from the PC.

C

Students might confuse BGP with other protocols or think that any network issue involving phones must involve a routing protocol. The mention of 'phones' might trigger an association with VoIP and routing, but the problem is clearly about VLANs, not BGP.

D

Students might think that configuring a voice VLAN overrides or makes the access VLAN unnecessary. However, both VLANs are active on the port, and the access VLAN still determines the VLAN for untagged data traffic from the PC.

720
PBQmedium

You are connected to R1 via console. R1 is connected to R2 via GigabitEthernet0/0 (10.0.0.1/30) and to R3 via GigabitEthernet0/1 (10.0.0.5/30). R1 has a management subnet 192.168.1.0/24 connected to GigabitEthernet0/2. The network administrator wants to ensure that traffic from the management subnet to the Internet (203.0.113.0/24) uses R2 as the primary path and R3 as a backup. Currently, OSPF is running with default metrics. You must configure a floating static route that will be used only if the OSPF route fails.

Network Topology
G0/010.0.0.1/30G0/110.0.0.5/30G0/2192.168.1.1/24R1R2R3Management subnet

Hints

  • Floating static route has a higher administrative distance than the dynamic route you want to back up.
  • The next-hop IP for the backup route is R3's interface IP connected to R1.
  • Check the OSPF administrative distance (default 110) and set the static route's AD accordingly.
A.ip route 203.0.113.0 255.255.255.0 10.0.0.6 150
B.ip route 203.0.113.0 255.255.255.0 10.0.0.2 150
C.ip route 203.0.113.0 255.255.255.0 10.0.0.6 110
D.ip route 0.0.0.0 0.0.0.0 10.0.0.6 150
AnswerA
solution
! R1
ip route 203.0.113.0 255.255.255.0 10.0.0.6 150

Why this answer

The floating static route is configured with an administrative distance of 150, which is higher than OSPF's default AD of 110. This ensures that the static route is only installed in the routing table when the OSPF route is not present (e.g., due to a failure). The next-hop is R3's IP on the directly connected link.

Exam trap

Remember that a floating static route requires an administrative distance higher than the dynamic protocol's default. Also, ensure the next-hop is the backup router's IP, not the primary. Do not confuse the destination network with a default route unless the question asks for Internet access in general.

Why the other options are wrong

B

The next-hop should be R3 (10.0.0.6), not R2 (10.0.0.2).

C

The AD must be higher than OSPF's 110 (e.g., 150) to act as a floating static route.

D

The destination network should be 203.0.113.0/24, not a default route.

Why candidates pick the wrong answer

B

Candidates may confuse the primary path (R2) with the backup path (R3) and incorrectly use R2's IP.

C

Candidates may think matching the AD is sufficient, but floating static requires a higher AD to be less preferred.

D

Candidates often use default routes for Internet traffic, but the question explicitly requires a route to a specific subnet.

721
Multi-Selectmedium

Which TWO statements correctly describe the behavior of Rapid PVST+ in a Layer 2 network?

Select 2 answers
A.Rapid PVST+ runs a separate instance of RSTP for each VLAN.
B.Rapid PVST+ is an enhancement of PVST+ and uses the same timer-based convergence as standard 802.1D.
C.Rapid PVST+ uses the 802.1D standard to compute the spanning tree for each VLAN.
D.PortFast and BPDU Guard are commonly configured on access ports to prevent loops and speed up convergence.
E.Rapid PVST+ uses the 802.1Q trunking protocol to reduce the number of spanning-tree instances.
AnswersA, D

Rapid PVST+ creates a logical RSTP instance for every active VLAN, meaning each VLAN has its own bridge ID, root bridge election, and set of port roles. This per-VLAN separation lets a network engineer assign different root bridges per VLAN, enabling load balancing where traffic for different VLANs follows different spanning-tree paths. The underlying algorithm is 802.1w RSTP, not 802.1D, and because instances are separate, a topology change in one VLAN does not force a reconvergence in other VLANs.

Why this answer

Rapid PVST+ runs a separate instance of RSTP (802.1w) for each VLAN, enabling per-VLAN rapid convergence and load balancing. Option D is correct because PortFast allows access ports to transition to forwarding immediately, while BPDU Guard prevents loops by disabling a port that receives a BPDU. Option B is incorrect because Rapid PVST+ uses RSTP's handshake mechanism, not timer-based convergence like 802.1D.

Option C is wrong: Rapid PVST+ is based on 802.1w, not 802.1D. Option E is false because Rapid PVST+ does not use 802.1Q to reduce instances; it maintains a separate spanning-tree instance per VLAN.

Exam trap

Cisco often tests the distinction between PVST+ (802.1D-based) and Rapid PVST+ (802.1w-based), and the trap here is assuming Rapid PVST+ still relies on timer-based convergence like standard 802.1D, when in fact it uses the faster RSTP handshake mechanism.

Why the other options are wrong

B

Rapid PVST+ uses RSTP's rapid handshake process, not timer-based convergence like standard 802.1D.

C

Rapid PVST+ is based on the 802.1w standard (RSTP), not 802.1D.

E

Rapid PVST+ runs a separate instance per VLAN and does not use 802.1Q to consolidate instances.

Why candidates pick the wrong answer

B

Students may confuse Rapid PVST+ with PVST+, assuming both use the same convergence mechanism, or they may think that 'Rapid' only implies faster timers rather than a fundamentally different protocol.

C

Since Rapid PVST+ is a per-VLAN implementation, some may incorrectly assume it still uses the older 802.1D standard, especially if they are not familiar with RSTP enhancements.

E

Some may think that using 802.1Q trunking reduces STP instances because it is associated with VLAN tagging, but Rapid PVST+ actually increases instances compared to MSTP, which can group VLANs.

722
Multi-Selectmedium

Which two actions help protect access-layer switch ports from rogue DHCP servers?

Select 2 answers
A.Enable DHCP snooping globally and for the needed VLANs
B.Trust the uplink toward the legitimate DHCP server path
C.Enable PortFast on all trunks to block rogue servers
D.Disable ARP on access ports
E.Set every access port as trusted
AnswersA, B

DHCP snooping is the foundational security feature that validates DHCP messages and constructs the binding table. Enabling it globally activates the feature, but you must also enable it on specific VLANs to apply filtering to access layer ports. Without this step, the switch will not inspect DHCP traffic, leaving client ports vulnerable to rogue DHCP replies. This configuration is mandatory for any DHCP snooping protection to take effect in the VLAN.

Why this answer

DHCP snooping marks trusted and untrusted interfaces and filters server-type DHCP messages on untrusted ports. Uplink ports toward the real DHCP server or relay are typically trusted, while user-facing ports stay untrusted. Option C is incorrect because PortFast does not filter DHCP messages; it only speeds up spanning tree convergence.

Option D is incorrect because disabling ARP breaks normal communication and does not block DHCP. Option E is incorrect because marking all access ports as trusted would permit rogue DHCP servers on those ports.

Exam trap

Do not confuse port security with DHCP snooping; they address different security concerns.

Why the other options are wrong

C

PortFast is used to speed up spanning tree convergence on access ports, not to block rogue DHCP servers. Enabling PortFast on trunks does not prevent rogue DHCP attacks and could cause loops if misconfigured.

D

Disabling ARP on access ports would break normal IP communication, as ARP is essential for resolving IP addresses to MAC addresses. It does not prevent rogue DHCP servers from responding to DHCP requests.

E

Setting every access port as trusted would allow rogue DHCP servers connected to any access port to respond to DHCP requests, defeating the purpose of DHCP snooping.

When would these options actually be correct?

C

In a question about preventing spanning tree topology changes or reducing convergence time on access ports connected to end devices, enabling PortFast would be correct. For example: 'Which feature allows an access port to transition immediately to forwarding state?'

D

In a question about preventing ARP spoofing or man-in-the-middle attacks, enabling Dynamic ARP Inspection (DAI) or disabling ARP on untrusted ports might be correct. For example: 'Which feature helps prevent ARP cache poisoning on access ports?'

E

In a scenario where all access ports are connected only to known, authorized devices (e.g., a fully managed environment with no possibility of rogue devices), and the question asks for a configuration to minimize DHCP snooping overhead, marking all ports as trusted could be acceptable.

Why candidates pick the wrong answer

C

Candidates may confuse PortFast with security features like DHCP snooping or BPDU guard, thinking it blocks unwanted traffic, or they might incorrectly associate 'fast' with immediate blocking of rogue servers.

D

Candidates may confuse DHCP snooping with ARP security features, or think that disabling ARP would block all server responses, including rogue DHCP offers.

E

Candidates may mistakenly think that trusting all ports simplifies configuration and still provides security, not realizing that trust should be limited to ports connected to legitimate DHCP servers.

723
MCQhard

A network administrator is troubleshooting connectivity issues in a switched network. Users on VLAN 10 report intermittent connectivity to the server farm. The network uses Rapid PVST+ as the spanning-tree protocol. The administrator examines the switch that is the root bridge for VLAN 10 and notices that one of the uplink interfaces to an access switch is in a blocking state. What is the most likely cause of this issue?

A.Change the port type of Gi0/3 to trunk to allow multiple VLANs.
B.Configure spanning-tree portfast on Gi0/3 to speed up convergence.
C.Check the spanning-tree priority on other switches to ensure the intended root bridge has the lowest priority for VLAN 10.
D.Enable BPDU guard on Gi0/3 to prevent unauthorized switches from affecting the network.
AnswerC

The root bridge is elected based on the lowest bridge priority. If another switch has a lower priority, it becomes the root, causing ports on the current root to block. Verifying and adjusting priorities will ensure the correct root bridge election.

Why this answer

In Rapid PVST+, the root bridge for a VLAN should have all its ports in a forwarding state. If an uplink interface on the root bridge is blocking, it indicates that another switch is being elected as the root bridge for VLAN 10, likely because it has a lower spanning-tree priority. By checking and adjusting the priority on other switches, the administrator can ensure the intended switch becomes the root bridge, resolving the intermittent connectivity caused by suboptimal path selection.

Exam trap

Cisco often tests the misconception that a blocking port on a root bridge indicates a physical or configuration issue with that specific port, when in fact it signals that the switch is not the root bridge due to a lower priority on another switch.

Why the other options are wrong

A

Changing the port type to trunk does not affect spanning-tree root bridge election or port roles. The blocking state is determined by spanning-tree topology, not by trunk configuration.

B

Portfast is intended for access ports connected to end devices to bypass listening/learning states; it is not used on uplinks and does not resolve a blocking state caused by spanning-tree topology.

D

BPDU guard is used on access ports to protect against rogue switches by disabling the port if a BPDU is received. It does not affect root bridge election or port roles on uplinks.

Why candidates pick the wrong answer

A

Students might think that a trunk port is needed for multiple VLANs and that misconfiguration could cause blocking, but the issue is about root bridge election, not port type.

B

Portfast is often associated with faster convergence, so a student might incorrectly assume it can fix a blocking state, but it only applies to edge ports.

D

BPDU guard is a common security feature, and students might think it could prevent unwanted topology changes, but it is not applicable to uplink ports in this scenario.

724
MCQhard

A network engineer notices that clients in the 192.168.10.0/24 subnet are receiving the IP address 192.168.10.1 from the DHCP server, causing a duplicate IP conflict with the router’s own interface. What is the most likely cause?

A.The DHCP pool does not exclude the router’s own interface IP address.
B.The DHCP conflict logging feature is disabled on the router.
C.The DHCP lease time is set too low, causing frequent re-issuing of addresses.
D.The DHCP pool’s default-router address is misconfigured, so the client uses the router’s IP as its own.
AnswerA

When no excluded-address is configured for the router’s IP, the DHCP server treats it as available from the pool and can offer it to clients, creating a conflict. Adding 'ip dhcp excluded-address 192.168.10.1' prevents the server from offering that address.

Why this answer

The most likely cause is that the DHCP pool configuration does not exclude the router's own interface IP address (192.168.10.1) from the range of addresses that the DHCP server can assign. By default, a Cisco router acting as a DHCP server will lease any address within the configured network statement unless an explicit ip dhcp excluded-address command is applied. Since the router's interface already uses 192.168.10.1, leasing that same address to a client creates a duplicate IP conflict.

Exam trap

Cisco often tests the distinction between the DHCP pool's network statement (which defines the range of assignable addresses) and the need to explicitly exclude addresses that are already in use, leading candidates to overlook the ip dhcp excluded-address command and instead focus on unrelated features like conflict logging or lease timers.

Why the other options are wrong

B

Many candidates confuse conflict detection with a preventive mechanism, thinking that enabling it would stop the assignment of an already-used address.

C

Candidates may associate short leases with instability, but the root cause is the missing exclusion, not the lease timer.

D

Beginners often conflate the default gateway with the assigned IP address, believing a mistake in the default-router setting could cause an address conflict.

725
MCQmedium

A network engineer at a large enterprise observes repeated spikes in latency on the core network every weekday at 10:00 AM, but no corresponding increase in overall bandwidth utilization. The engineer wants to use AI/ML to automatically identify the root cause and take corrective action without manual intervention. Which concept best describes this approach?

A.Anomaly detection
B.Intent-based networking
C.Predictive analytics
D.Machine learning classification
AnswerB

Intent-based networking (IBN) uses closed-loop automation to continuously monitor the network, detect when the actual state deviates from the intended state (e.g., latency spikes), and automatically reconfigure the network to restore the intent. This matches the scenario of automatic identification and correction.

Why this answer

Intent-based networking (IBN) is correct because it describes a closed-loop system where the network continuously validates that its operational state matches the desired business intent. In this scenario, the engineer wants the network to automatically detect the latency anomaly, correlate it with other telemetry (e.g., routing changes, queue drops), and take corrective action (e.g., reroute traffic, adjust QoS) without human intervention — which is the core promise of IBN, often implemented via Cisco's DNA Center with Assurance and AI/ML capabilities.

Exam trap

Cisco often tests the distinction between a single AI/ML technique (like anomaly detection) and the full closed-loop automation framework (IBN), leading candidates to pick the narrower answer when the question explicitly requires both detection and automated corrective action.

Why the other options are wrong

A

Anomaly detection identifies unusual patterns like latency spikes, but it does not include automatic corrective action. The scenario requires both detection and automated response, which anomaly detection alone cannot provide.

C

Predictive analytics forecasts future events (e.g., predicting when a link will fail), but it does not automatically take corrective action. The scenario involves detecting and correcting an existing anomaly, not predicting a future one.

D

Machine learning classification categorizes data (e.g., classifying traffic as normal or anomalous), but it does not inherently include automated corrective actions. The scenario requires a system that both detects and corrects.

Why candidates pick the wrong answer

A

Students may think anomaly detection is sufficient because it can identify the latency spikes, but they overlook the requirement for automatic corrective action without manual intervention.

C

Students might confuse predictive analytics with proactive detection, but the scenario describes an ongoing issue that needs immediate correction, not prediction of future events.

D

Students may think classification can identify the root cause, but classification alone does not trigger automated corrective actions; it only labels data.

726
MCQhard

A network administrator is troubleshooting an issue where internal hosts can ping the company's web server by IP address (192.0.2.10) but cannot access it using the fully qualified domain name www.example.com. The DNS server (192.0.2.5) is reachable and responds to queries. The administrator runs nslookup www.example.com from a host and receives the following output: C:\> nslookup www.example.com Server: UnKnown Address: 192.0.2.5 Name: www.example.com Address: 192.0.2.20 Based on the output, what is the most likely cause of the problem?

A.The host's DNS cache is corrupted; flush it using ipconfig /flushdns.
B.The DNS A record for www.example.com is incorrect; update it to point to 192.0.2.10.
C.The web server's firewall is blocking traffic from the host; add an allow rule.
D.The DNS server is not authoritative for the example.com zone; delegate the zone to a different server.
AnswerB

Correct. The nslookup output shows that www.example.com resolves to 192.0.2.20, but the actual web server is at 192.0.2.10. This indicates the DNS A record is incorrect and must be updated to point to the correct IP address.

Why this answer

The nslookup output shows that www.example.com resolves to 192.0.2.20, but the web server is at 192.0.2.10. This indicates the DNS A record is incorrect and must be updated to point to the correct IP. Pinging by IP works because it bypasses DNS, confirming network connectivity.

The host's DNS cache is not the issue because nslookup queries the server directly and still returns the wrong address. The firewall is not involved since pinging by IP succeeds, and the DNS server is authoritative (the response is received).

Exam trap

The trap here is that candidates may assume a DNS server that responds to queries is functioning correctly, overlooking that the response itself can contain an incorrect A record, which is the actual cause of the resolution failure.

Why the other options are wrong

A

The nslookup output shows the DNS server is returning an incorrect IP address (198.51.100.1) for www.example.com, not a local cache issue. Flushing the DNS cache would not resolve the problem because the host is querying the DNS server and receiving the wrong answer.

C

The host can successfully ping the web server at 192.0.2.10, which indicates that ICMP traffic is not blocked by the firewall. The problem is that the host is trying to reach the wrong IP address (198.51.100.1) due to DNS resolution, not that the correct IP is being blocked.

D

The nslookup response includes the server name 'dns.example.com', which indicates that the DNS server is authoritative for the example.com zone. If it were not authoritative, the response would typically show a non-authoritative answer or refer to another server. Delegation is not needed because the server is already authoritative.

Why candidates pick the wrong answer

A

Students often confuse DNS resolution failures with local cache corruption, especially when the host can ping the correct IP but not the FQDN. The ipconfig /flushdns command is a common troubleshooting step for DNS issues, but it is only effective when the cache contains stale or incorrect entries, not when the authoritative server returns a wrong record.

C

Firewall rules are a common cause of connectivity issues, and students may assume that if a web server is unreachable by name, the firewall is blocking HTTP/HTTPS traffic. However, the successful ping to the correct IP shows that the network path is open; the issue is purely with name resolution.

D

Students may think that if a DNS server returns an incorrect IP, it might not be authoritative for the zone. However, the nslookup output clearly shows the server is authoritative. The issue is a misconfiguration within the zone, not a lack of authority.

727
PBQmedium

You are connected to R1 via the console. R1 is a Cisco ISR 4321 router running IOS-XE 17.3. The network team has reported intermittent connectivity issues between VLAN 10 hosts and the server at 10.0.0.100. You suspect a routing problem and need to analyze the IP routing table, ARP cache, and interface status to identify the cause. Use the provided outputs to diagnose the issue.

Network Topology
G0/0192.168.10.1/24G0/110.0.0.1/30G0/010.0.0.2/30linkG0/010.0.0.2/3010.0.0.100linkHostsVLAN 10R1R2Server

Hints

  • Check the IP routing table for a default route or specific route to 10.0.0.100.
  • Examine the ARP cache to see if the MAC address of the next hop (10.0.0.2) is present.
  • Verify that both interfaces are up/up and have correct IP addresses.
A.The routing table shows a default route via 192.168.1.1, but the ARP cache has an incomplete entry for that next-hop IP, indicating a Layer 2 connectivity issue.
B.The routing table has a static route to 10.0.0.0/24 via 192.168.1.2, but the interface GigabitEthernet0/0/0 is administratively down.
C.The routing table shows a route to 10.0.0.0/16 via 192.168.1.1, but the ARP cache has a complete entry for 192.168.1.1, indicating the issue is at Layer 3.
D.The routing table has no route to 10.0.0.100, and the ARP cache is empty for all entries, indicating a complete routing failure.
AnswerA
solution
! R1
show ip route
show ip arp
show interfaces GigabitEthernet0/0
show interfaces GigabitEthernet0/1

Why this answer

The issue is likely a missing or incorrect route, an incomplete ARP entry, or an interface problem. By checking the routing table, you can confirm if a route to 10.0.0.100 exists. The ARP cache shows whether the next-hop MAC is learned.

Interface status indicates if the link is operational. The solution commands reveal these details, allowing you to pinpoint the cause (e.g., default route missing, ARP timeout, or interface down).

Exam trap

The exam trap is that candidates often jump to routing table issues first, but the question emphasizes 'intermittent' connectivity, which typically indicates Layer 2 problems like ARP failures or flapping interfaces. Always correlate routing table, ARP cache, and interface status together.

Why the other options are wrong

B

The specific factual error is that an administratively down interface results in a hard failure, not intermittent connectivity.

C

The specific factual error is that a complete ARP entry indicates no Layer 2 problem, contradicting the symptom of intermittent connectivity.

D

The specific factual error is that a missing route results in consistent unreachability, not intermittent problems.

Why candidates pick the wrong answer

B

Candidates might pick this because they know interface status affects routing, but they overlook the 'intermittent' clue.

C

Candidates might pick this because they focus on routing table entries but ignore that ARP completeness suggests the path is functional.

D

Candidates might pick this because they assume routing table absence is the only cause, but they miss the 'intermittent' qualifier.

728
MCQhard

Based on the exhibit, what is the most likely reason PAT is not working correctly?

A.The inside and outside NAT interface roles are reversed.
B.PAT requires OSPF to be enabled on the WAN link.
C.The ACL must be numbered 100 instead of 1.
D.The router must use GRE before PAT can overload.
AnswerA

For PAT (overload) to translate private addresses to a public IP, the interface facing the internal LAN must be configured as `ip nat inside` and the interface facing the ISP/WAN as `ip nat outside`. If these are reversed, the router attempts to translate traffic entering the public interface and exiting the private interface, so the source addresses of internal users are never translated, breaking PAT. This is the most likely cause given the exhibit shows mismatched interface roles.

Why this answer

PAT is not working correctly because the inside and outside NAT roles are reversed on the interfaces. In practical terms, the private LAN-facing interface should be marked as inside, and the public-facing WAN interface should be marked as outside. In the exhibit, the router has those roles backwards, so translation logic is applied in the wrong direction.

This is a very realistic NAT troubleshooting item because the configuration is close to correct and the failure comes from one directional mistake.

Exam trap

A common exam trap is confusing the NAT inside and outside interface roles. Candidates might overlook that reversing these roles causes PAT to fail silently, as translation direction depends on correct interface designation. Misunderstanding this can lead to incorrect troubleshooting steps, such as focusing on routing protocols or ACL numbering, which do not impact PAT functionality directly.

Why the other options are wrong

B

Incorrect because PAT does not depend on OSPF or any routing protocol to function; enabling OSPF on the WAN link is unrelated.

C

Incorrect because the ACL number does not have to be 100; standard ACLs like 1 are valid for NAT configurations.

D

Incorrect because GRE tunneling is not required for PAT; PAT operates independently of GRE.

When would these options actually be correct?

B

In a different scenario where the question specifies that PAT is being implemented in a network that relies on OSPF for routing updates, and the exam asks about the necessity of OSPF for proper NAT functionality, this option could be correct if the question indicates that OSPF misconfigurations are impacting NAT operations.

C

In a different scenario, if the question specifically states that the router is using a legacy configuration where only numbered ACLs are supported, and that ACL 100 is explicitly required for NAT rules, then this option would be correct.

D

In a different scenario where the question specifies that the network is using GRE tunnels for remote site connectivity, and the configuration requires PAT to be applied to traffic traversing these tunnels, then this option could be correct. For example, if the question states that PAT is not functioning due to the absence of GRE encapsulation on the WAN link, this would validate the option.

Why candidates pick the wrong answer

B

Students may think that because the WAN link often runs OSPF for routing, PAT might depend on it, but PAT works independently of the routing protocol used.

C

Some students confuse the ACL numbering with the requirement for extended ACLs in NAT, but standard ACLs are sufficient when only source IP matching is needed.

D

Students might associate GRE with NAT because both are used in VPN scenarios, but PAT functions independently and does not rely on GRE.

729
MCQhard

A host address is 192.168.88.66/27. Which address is the network address of the subnet?

A.192.168.88.32
B.192.168.88.64
C.192.168.88.95
D.192.168.88.96
AnswerB

The /27 mask creates 32-address subnets, and the range from .64 to .95 is one such subnet. Host .66 is within this range, so the network address is the first address of the block, 192.168.88.64. All hosts in this subnet share the same network bits, and .64 is the all-zero host portion for that range.

Why this answer

A /27 subnet has a block size of 32. In practical terms, the fourth-octet ranges are 0-31, 32-63, 64-95, and so on. Because 66 falls within the 64-95 block, the network address is 192.168.88.64.

This is a classic subnet-boundary calculation. The key step is identifying the correct block first.

Exam trap

Avoid assuming the host address is in the first or last subnet without calculating the correct range.

Why the other options are wrong

A

192.168.88.32 is the network address of the previous /27 subnet (32-63). Since the host address 192.168.88.66 falls in the 64-95 range, the correct network address is 192.168.88.64, not 192.168.88.32.

C

192.168.88.95 is the broadcast address for the /27 subnet that starts at 192.168.88.64. The broadcast address is the last address in the subnet, used to send packets to all hosts in that subnet, not the network address.

D

192.168.88.96 is the network address of the next /27 subnet (96-127). The host 192.168.88.66 is not in that range; it belongs to the subnet starting at 192.168.88.64.

When would these options actually be correct?

A

In a different question where the subnet mask is /26 (255.255.255.192) and the host address is 192.168.88.66, the network address would be 192.168.88.0, and if the question asked for the network address of a subnet that starts at 192.168.88.32, then option A would be correct.

C

In a different question where the subnet mask is /25 and the host address is 192.168.88.95, this address could be the correct answer as it would then represent the last usable host address in that subnet, which ranges from 192.168.88.64 to 192.168.88.95.

D

In a different scenario where the subnet mask was changed to /26 (255.255.255.192), the network address for the range starting at 192.168.88.64 would be 192.168.88.64, and the next subnet would start at 192.168.88.64 + 64 = 192.168.88.128. In this case, 192.168.88.96 could be a valid address within a different subnet.

Why candidates pick the wrong answer

A

A student might miscalculate the subnet boundaries by using a wrong block size or misidentifying the subnet increment. For example, they might think the block size is 16 instead of 32, leading them to choose 32 as the network address.

C

Students often confuse the broadcast address with the network address because both are boundary addresses. They might think the last address is the network address, especially when they remember that the subnet includes addresses from 64 to 95.

D

A student might incorrectly round up the host address to the next multiple of 32 (96) instead of rounding down to the previous multiple (64). This is a common mistake when calculating network addresses without careful division.

730
Drag & Dropmedium

Drag and drop the following steps into the correct order to troubleshoot a suspected duplex mismatch and CRC errors on a Cisco switch 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 correct troubleshooting sequence starts with entering privileged EXEC mode (step A) because 'show' and 'configure' commands require it. Next, use the 'show interfaces' command (step B) to check for CRC errors and duplex mismatch on the interface. Then, enter global configuration mode (step D) to access interface configuration.

Finally, configure the interface with the 'duplex full' command (step C) to fix the mismatch. Placing step C before step D would be invalid because you must be in global configuration mode before you can configure an interface.

Exam trap

The exam trap is that candidates often skip the initial step of entering privileged EXEC mode, thinking they can directly check errors or configure. Remember that 'show' and 'configure' commands require the appropriate mode.

731
PBQmedium

You are connected to R1 via the console. R1 is a Cisco IOS-XE router. The network manager wants to use an Ansible playbook to configure a loopback interface with IP address 10.0.0.1/24 on R1. You need to write the Ansible YAML playbook that connects to R1 and configures this interface. The playbook must not use the 'parents' argument in the ios_config module.

Hints

  • Ansible uses the 'cisco.ios.ios_config' module for configuration.
  • Specify the lines parameter with a list of CLI commands.
  • Set provider or vars for connection details.
A.- name: Configure Loopback hosts: R1 gather_facts: no connection: network_cli tasks: - name: Configure interface ios_config: lines: - interface Loopback0 - ip address 10.0.0.1 255.255.255.0 - no shutdown
B.- name: Configure Loopback hosts: R1 gather_facts: no connection: ssh tasks: - name: Configure interface ios_config: lines: - interface Loopback0 - ip address 10.0.0.1/24 - no shutdown
C.- name: Configure Loopback hosts: R1 gather_facts: no connection: network_cli tasks: - name: Configure interface ios_config: lines: - interface Loopback0 - ip address 10.0.0.1 255.255.255.0 - shutdown
D.- name: Configure Loopback hosts: R1 gather_facts: no connection: network_cli tasks: - name: Configure interface ios_config: lines: - interface Loopback0 - ip address 10.0.0.1 255.255.255.0 - no shutdown parents: interface Loopback0
AnswerA
solution
! R1
interface Loopback0
ip address 10.0.0.1 255.255.255.0
no shutdown

Why this answer

It uses the network_cli connection type, applies the correct subnet mask (255.255.255.0), includes 'no shutdown' to enable the interface, and does not use the 'parents' argument, meeting the requirement. Option B is wrong because it uses an 'ssh' connection (not network_cli) and writes the IP address in CIDR notation (/24) instead of the required dotted-decimal mask. Option C is wrong because it uses 'shutdown' instead of 'no shutdown', which disables the interface.

Option D is wrong because it uses the 'parents' argument, which the stem explicitly forbids, even though the configuration would otherwise be valid.

Exam trap

Be careful with the connection type for network devices: use 'network_cli', not 'ssh'. Also, remember that Cisco IOS uses subnet masks (e.g., 255.255.255.0) in the 'ip address' command, not CIDR notation. Finally, ensure you use 'no shutdown' to enable an interface, not 'shutdown'.

Why the other options are wrong

B

Incorrect connection type 'ssh' and uses CIDR notation /24 instead of subnet mask.

C

Uses 'shutdown' command, which disables the interface instead of enabling it.

D

Uses the 'parents' argument, which is explicitly prohibited by the requirement.

Why candidates pick the wrong answer

B

Candidates might think 'ssh' is acceptable because Ansible uses SSH for many connections, but network_cli is specifically needed for network device modules. Also, CIDR notation is common in other contexts, leading to confusion.

C

Candidates might confuse 'shutdown' with 'no shutdown' or forget that interfaces are often shut by default, so they may think 'shutdown' is needed to enable it.

D

Candidates might think 'parents' is required to enter interface configuration mode, but the ios_config module can accept the full commands directly in the lines list.

732
MCQmedium

Why does traceroute reveal each router hop along a path?

A.Each router appends its hostname to the packet payload
B.Each router sends an ARP response back to the source
C.Each router decrements TTL or hop limit, and expired packets trigger ICMP messages
D.Each switch on the path sends a syslog message to the source host
AnswerC

Traceroute sends packets with an incrementing IP time-to-live (TTL or IPv6 hop limit), starting at 1. Each router along the path decrements this value; when it reaches 0, the router discards the packet and sends an ICMP Time Exceeded message back to the source. That ICMP message carries the router's IP address in its source field, which reveals each hop in sequence as the TTL is increased.

Why this answer

Traceroute sends packets with increasing TTL or hop-limit values. When the value expires, the router that drops the packet returns an ICMP message, identifying that hop.

Exam trap

Don't confuse traceroute's use of TTL and ICMP Time Exceeded messages with ping's use of ICMP Echo Requests.

Why the other options are wrong

A

Routers do not modify packet payloads to add hostnames during normal forwarding. Traceroute relies on ICMP Time Exceeded messages generated by routers when TTL expires, not on payload modifications. Adding hostnames would violate IP packet integrity and is not a standard function.

B

ARP (Address Resolution Protocol) operates only within a local network segment to map IP addresses to MAC addresses. It is not used for path discovery across multiple routed hops. Traceroute uses TTL expiry to trigger ICMP responses, not ARP replies.

D

Switches operate at Layer 2 and do not decrement TTL or generate ICMP Time Exceeded messages for traceroute. Syslog is a logging protocol used for network device event reporting, not for hop-by-hop path discovery. Traceroute relies on ICMP or UDP/TCP probes, not syslog messages.

When would these options actually be correct?

A

In a different question asking how routers communicate their identities to the source host, where the context involves a network protocol that includes hostname information in the payload, this option could be correct. For example, if the question specified a protocol that includes hostnames in its data packets, such as DNS queries, this answer would apply.

B

If the question were about how devices communicate on a local network and the role of ARP in identifying devices, then this option could be correct. For example, a question asking how a device learns the MAC address of a router on the same subnet would make this option valid.

D

In a different question asking about network monitoring or logging mechanisms, one could ask how switches communicate events to a central logging server. In this context, the option could be correct if the question specified that switches are configured to send syslog messages for certain events.

Why candidates pick the wrong answer

A

A test-taker might think that since traceroute displays hostnames (if DNS resolution is enabled), routers must embed them. In reality, hostnames are resolved via reverse DNS lookups of the source IP addresses in ICMP messages, not from the packet payload.

B

Students may associate ARP with network discovery and assume it plays a role in traceroute. However, ARP is limited to Layer 2 and cannot traverse routers, making it unsuitable for multi-hop path tracing.

D

Students may confuse syslog with the ICMP messages used in traceroute, as both involve network devices sending messages. However, syslog is unrelated to the TTL-based mechanism of traceroute.

733
Multi-Selectmedium

Which THREE statements correctly describe the configuration of AAA with RADIUS or TACACS+ on Cisco IOS-XE?

Select 3 answers
A.RADIUS encrypts the entire packet payload, including all attributes.
B.TACACS+ encrypts the entire body of the packet but leaves the standard TCP header unencrypted.
C.TACACS+ uses UDP as its transport protocol, while RADIUS uses TCP.
D.TACACS+ separates authentication, authorization, and accounting into three distinct functions, allowing independent server configuration for each.
E.RADIUS combines authentication and authorization into a single process, meaning an access-accept packet includes both authentication success and authorization attributes.
F.When configuring 802.1X on IOS-XE, the switch acts as the authentication server and validates client credentials locally.
AnswersB, D, E

TACACS+ encrypts the entire payload (body) of the packet—including the authentication, authorization, and accounting attributes and fields—while the TCP header remains in clear text for transport. This provides complete confidentiality of the AAA data, including usernames, passwords, and authorization decisions. The encryption uses a shared secret key to compute an MD5-based hash to obfuscate the body, whereas RADIUS only encrypts the password attribute.

Why this answer

TACACS+ encrypts the entire body of the packet (including all attributes) but leaves the TCP header unencrypted. Option D is correct: TACACS+ separates authentication, authorization, and accounting into three distinct functions, allowing independent server configuration for each. Option E is correct: RADIUS combines authentication and authorization into a single process, so an access-accept packet includes both authentication success and authorization attributes.

Option A is wrong: RADIUS only encrypts the password in the Access-Request packet, not the entire payload. Option C is wrong: TACACS+ uses TCP (port 49), while RADIUS uses UDP (ports 1812/1645 for authentication, 1813/1646 for accounting). Option F is wrong: In 802.1X on IOS-XE, the switch acts as an authenticator (not the authentication server) and forwards credentials to an external RADIUS server.

Exam trap

Cisco often tests the confusion between RADIUS and TACACS+ encryption scope and transport protocols, where candidates mistakenly think RADIUS encrypts the entire payload or that TACACS+ uses UDP, when in fact RADIUS only encrypts the password and uses UDP, while TACACS+ encrypts the full body and uses TCP.

Why the other options are wrong

A

RADIUS only encrypts the password attribute in the access-request packet; the rest of the packet, including other attributes like username and authorization data, is sent in clear text. This is a key security limitation of RADIUS compared to TACACS+.

C

TACACS+ uses TCP (port 49) as its transport protocol, while RADIUS uses UDP (ports 1812/1813). This is a fundamental difference: TCP provides reliable, connection-oriented delivery, whereas UDP is connectionless and faster but less reliable.

F

In 802.1X, the switch acts as an authenticator (passing EAP messages between the client and the authentication server), not as the authentication server itself. The authentication server is typically a RADIUS server that validates client credentials.

Why candidates pick the wrong answer

A

Students may confuse RADIUS's encryption of the password with full payload encryption, especially since RADIUS is often described as 'secure' in authentication contexts.

C

The names 'RADIUS' and 'TACACS+' are often confused, and students may incorrectly associate the more reliable protocol (TCP) with the more common protocol (RADIUS) or vice versa.

F

Students may think the switch performs local authentication because it is the device enforcing access control, but 802.1X relies on a separate authentication server for credential validation.

734
MCQhard

Why is HTTPS usually preferred over HTTP when accessing controller APIs?

A.Because HTTPS provides encrypted transport for sensitive API communication.
B.Because HTTPS provides better throughput for API responses
C.Because HTTPS replaces the need for authentication.
D.Because HTTPS is the only protocol that can carry JSON.
AnswerA

HTTPS uses TLS to encrypt the entire HTTP conversation, ensuring that sensitive payloads like authentication tokens, personal data, or financial records cannot be read or tampered with in transit. This protects API communication from eavesdropping and man-in-the-middle attacks, which is the primary reason it is preferred for sensitive exchanges over unencrypted HTTP.

Why this answer

HTTPS is preferred because it protects the API traffic in transit with encryption. In plain language, controller APIs may carry credentials, tokens, device state, or configuration data, and sending that information in clear text over plain HTTP would expose it to interception. HTTPS helps protect that communication channel.

This does not make HTTPS a data format or an access policy by itself, but it is a major transport-security improvement. The correct answer is the one focused on secure transport for sensitive API traffic.

Exam trap

Don't confuse HTTPS with data formats or access policies; it's about securing data in transit.

Why the other options are wrong

B

HTTPS adds encryption overhead, which can reduce throughput compared to HTTP, not improve it.

C

HTTPS provides transport-layer encryption but does not replace authentication. API access still requires authentication mechanisms such as API keys, OAuth tokens, or certificates to verify the identity of the client.

D

JSON is a data format that can be carried over any transport protocol, including HTTP, HTTPS, or even raw TCP. HTTPS is not required for JSON; it is used to secure the transport, not to enable a specific data format.

When would these options actually be correct?

B

In a question focused on network management or configuration, where the context involves the automatic assignment of VLANs based on traffic types or protocols, this option could be correct if discussing a specific technology that integrates VLAN assignment with secure protocols.

C

In a different exam scenario, a question might ask about the benefits of using HTTPS in a context where authentication methods are being discussed. If the question implied that HTTPS simplifies the authentication process by providing a secure channel, this option could be considered correct.

D

In a question specifically asking about protocols that can transmit JSON data, where the context is limited to comparing HTTPS with other protocols that cannot carry JSON, this option could be correct. For example, a question might ask which protocol is exclusively used for JSON transmission, making D the right choice.

Why candidates pick the wrong answer

B

Students might confuse HTTPS with other network protocols that manage VLANs, such as VTP or DTP, or mistakenly think that 'secure' implies broader network management capabilities.

C

Some learners may assume that encryption inherently verifies identity, but encryption only ensures confidentiality and integrity, not authentication. This confusion is common when studying TLS handshake details.

D

Students might associate JSON with REST APIs, which often use HTTPS, and incorrectly conclude that JSON requires HTTPS. However, JSON is independent of the transport layer.

735
Drag & Dropmedium

Drag and drop the following steps into the correct order to troubleshoot a client PC that cannot connect to a remote web server.

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

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

Why this order

The correct order follows Cisco's bottom-up troubleshooting methodology: first verify local IP configuration with ipconfig, then confirm the local TCP/IP stack with a loopback ping, then verify the NIC and IP binding by pinging the assigned address. Next, test connectivity to the default gateway to ensure the local subnet and router are reachable. After that, attempt to reach the remote server's IP address with ping.

If that fails, use traceroute to identify where along the path the packets are lost. This sequence efficiently isolates the fault domain from the local device to the internetwork.

736
MCQmedium

Which command places a switch port into access mode directly?

A.switchport mode access
B.switchport trunk allowed vlan 10
C.switchport mode dynamic desirable
D.no switchport
AnswerA

The `switchport mode access` command explicitly configures the switch port to operate in a single-VLAN, non-trunking state, satisfying the stem’s requirement to place the port “directly” into access mode without intermediate negotiation. This command immediately disables Dynamic Trunking Protocol (DTP) on the interface, forcing it into a static access role rather than relying on dynamic auto or desirable modes.

Why this answer

A switch port is placed into access mode with the `switchport mode access` command. In plain language, this tells the switch that the interface should behave as a single-VLAN user-facing access port rather than as a trunk or a negotiation-based port. This is the normal choice for an endpoint such as a PC, printer, or IP camera that should belong to one VLAN.

This command matters because it makes the intended role of the interface explicit. That clarity is useful operationally and helps avoid accidental trunking behavior. The correct answer is the command that directly defines the switchport as access rather than assigning a VLAN without setting the role or relying on negotiation.

Exam trap

Be careful not to confuse VLAN assignment or negotiation commands with those that explicitly set port modes.

Why the other options are wrong

B

The command 'switchport trunk allowed vlan 10' is used on a trunk port to specify which VLANs are allowed to traverse the trunk link. It does not change the port mode to access; instead, it assumes the port is already a trunk. Therefore, it is incorrect for placing a switch port into access mode.

C

The command 'switchport mode dynamic desirable' enables Dynamic Trunking Protocol (DTP) to actively negotiate trunking with the connected device. This does not directly place the port into access mode; instead, it allows the port to become a trunk if the neighbor agrees. The port remains in a dynamic state until negotiation completes.

D

The command 'no switchport' converts a Layer 2 switch port into a Layer 3 routed port, which is used for routing between VLANs or connecting to routers. This removes all Layer 2 switching functionality, including VLAN assignment, and is the opposite of placing the port into access mode.

When would these options actually be correct?

B

If the question asked about configuring VLANs on a trunk port, specifically how to restrict the allowed VLANs to only VLAN 10, then this option would be correct as it directly addresses that scenario.

C

If the question asked which command configures a switch port to dynamically negotiate trunking with another device, then 'switchport mode dynamic desirable' would be the correct answer, as it enables the port to initiate trunking negotiation.

D

If the exam question asked which command would disable Layer 2 functionality on a switch port and convert it to a Layer 3 routed port, then 'no switchport' would be the correct answer.

Why candidates pick the wrong answer

B

Students might confuse VLAN configuration with port mode, thinking that specifying an allowed VLAN on a trunk is similar to assigning a VLAN to an access port. The word 'vlan' in the command can mislead them into believing it sets the port to access mode.

C

Test-takers with partial knowledge might think 'dynamic desirable' is a mode that automatically configures the port as access, confusing the dynamic negotiation feature with a static access mode. The word 'desirable' can imply a preferred state, but it is actually a trunk negotiation setting.

D

Students might misinterpret 'no switchport' as removing trunking or reverting to a default access state, not realizing it changes the port to a routed interface. The negation of 'switchport' can be confusing, leading them to think it sets the port to a basic switching mode.

737
Multi-Selectmedium

Which two statements accurately describe JSON?

Select 2 answers
A.JSON is a structured data format commonly used by APIs.
B.JSON uses square brackets for arrays.
C.JSON is the same thing as HTTPS.
D.JSON is required only for IPv6 networks.
E.JSON is a spanning-tree mode.
AnswersA, B

JSON (JavaScript Object Notation) is a lightweight, text-based data-interchange format that represents data as key-value pairs and ordered lists. RESTful APIs frequently use JSON for request and response payloads because it is language-agnostic, human-readable, and easily parsed by most programming languages. Its structure enables nested objects and arrays, making it suitable for complex hierarchical data exchange.

Why this answer

JSON is a lightweight structured data format commonly used in APIs and automation workflows. In plain language, it provides a readable way to represent data as key-value pairs, objects, and arrays so software can exchange information consistently. It is popular in network automation because it is compact and widely supported by tools, controllers, and web-based interfaces.

CCNA questions on JSON usually test recognition, not coding expertise. You should be able to identify that JSON is a data format, not a transport protocol, and that arrays are shown with square brackets. The correct answers in this question focus on those recognition skills rather than on advanced programming details.

Exam trap

A frequent exam trap is confusing JSON with network protocols or features, such as HTTPS or spanning-tree modes. Candidates might incorrectly assume JSON is a transport protocol or a network technology because it is often mentioned alongside APIs and automation. This misunderstanding leads to selecting incorrect answers that describe JSON as a protocol or network mode.

The key is to remember that JSON is strictly a data format used to represent structured information, not a protocol or network operation. Misreading JSON’s role can cause errors in questions testing automation and programmability concepts.

Why the other options are wrong

C

Option C is incorrect because JSON is not a protocol like HTTPS. HTTPS is a secure transport protocol, whereas JSON is a data format used within protocols or APIs for data representation, not for transport or security.

D

Option D is wrong since JSON is not tied to IPv6 networks or any specific IP version. JSON is a general-purpose data format used across various network environments and protocols, independent of IP addressing schemes.

E

Option E is incorrect because JSON has no relation to spanning-tree modes or any Layer 2 network protocol functions. JSON is purely a data format and does not influence or configure network protocols like STP.

When would these options actually be correct?

C

If the exam question asked about the relationship between data formats and protocols, or if it specifically inquired whether JSON can be used in secure communications, then stating that JSON is the same as HTTPS could be interpreted as correct in a misleading context.

D

If the question were about data formats required for specific network configurations, and it specified that JSON is necessary for data representation in IPv6 applications, then this option could be correct. For example, a question could ask which data format is used in APIs for IPv6-enabled services.

E

If the exam question asked about network protocols and their configurations, specifically regarding spanning-tree protocols, then stating that JSON is a spanning-tree mode could be correct if it were rephrased to refer to a specific JSON configuration for spanning-tree settings in a network management context.

Why candidates pick the wrong answer

C

Students might confuse JSON with HTTPS because both are commonly associated with web APIs and data exchange. The acronyms sound similar, and both are frequently mentioned together in the context of web services, leading to the mistaken belief that they are the same thing.

D

A test-taker might think JSON is required for IPv6 because both are modern technologies often discussed in the context of network evolution. The word 'required' might trigger a false association, especially if the student has heard that IPv6 networks need new data formats, which is incorrect.

E

The acronym 'JSON' might be confused with 'JST' or other spanning-tree related terms. Additionally, students who are not familiar with JSON might guess that it is a network protocol because it sounds technical, and spanning-tree is a common topic in CCNA, leading to a plausible but incorrect association.

738
PBQhard

You are connected to R1 via the console. The network has a DNS server at 203.0.113.10 that should resolve www.example.com to 203.0.113.100. However, when you ping www.example.com, it fails. Diagnose and resolve the DNS resolution issue. The DNS server is reachable via ping, but nslookup from R1 returns a server failure. Configure R1 so that it can successfully resolve www.example.com. Additionally, verify that the DNS server is correctly configured for forward and reverse lookups.

Network Topology
G0/010.0.0.1/30G0/010.0.0.2/30linkG0/1203.0.113.2/24203.0.113.10/24linkR1R2DNS Server

Hints

  • Check the configured name-server IP address in the running-config.
  • The DNS server is reachable, but the router is querying the wrong server.
  • After fixing the name-server, ensure the DNS server has the correct A record for the domain.
A.Configure 'ip name-server 203.0.113.10' under global configuration and ensure the DNS server has an A record for www.example.com pointing to 203.0.113.100.
B.Configure 'ip domain-lookup' and 'ip name-server 10.0.0.2' under global configuration, then verify with ping www.example.com.
C.Configure 'ip domain-lookup' and 'ip host www.example.com 203.0.113.100' under global configuration, then verify with ping www.example.com.
D.Configure 'ip dns server' under global configuration to make R1 act as a DNS server, then add an A record for www.example.com.
AnswerA
solution
! R1
configure terminal
no ip name-server 10.0.0.2
ip name-server 203.0.113.10
end
write memory

Why this answer

The issue is that the DNS server IP address configured under 'ip name-server' is incorrect (10.0.0.2) instead of the actual DNS server (203.0.113.10). Additionally, the DNS server itself is not configured with the proper A record for www.example.com. The fix involves correcting the name-server address and ensuring the DNS server has the correct forward mapping.

After correcting the name-server, nslookup and dig should return the IP address 203.0.113.100. For reverse lookup, a PTR record for 203.0.113.100 pointing to www.example.com must exist on the DNS server.

Exam trap

The exam trap is that candidates may confuse the 'ip name-server' command with 'ip host' or 'ip dns server'. They might also overlook the need to verify the DNS server's records. Always check the configured name-server IP first when DNS resolution fails.

Why the other options are wrong

B

The specific factual error: The name-server address must match the actual DNS server; using 10.0.0.2 will not resolve the hostname.

C

The specific factual error: The 'ip host' command creates a static mapping, not a DNS resolution. The question requires DNS resolution to work, not a static override.

D

The specific factual error: The 'ip dns server' command enables DNS server services on the router, but the router is not meant to be a DNS server in this scenario. The fix is to point to the existing DNS server.

Why candidates pick the wrong answer

B

Candidates might think that enabling domain-lookup is sufficient and that any DNS server will work, or they may confuse the IP addresses.

C

Candidates might think that creating a static host entry is a valid fix for DNS problems, but it does not address the underlying DNS configuration.

D

Candidates might confuse the client-side DNS resolver with the server-side DNS service, thinking that enabling DNS server on R1 will resolve the issue.

739
MCQhard

Users in 10.10.10.0/24 must be prevented from reaching the web server at 172.16.1.10 over HTTP, but all other traffic should be allowed. Which ACL entry best matches the requirement?

A.deny tcp 10.10.10.0 0.0.0.255 host 172.16.1.10 eq 80
B.deny ip 10.10.10.0 0.0.0.255 host 172.16.1.10
C.deny udp 10.10.10.0 0.0.0.255 host 172.16.1.10 eq 80
D.permit tcp 10.10.10.0 0.0.0.255 host 172.16.1.10 eq 80
AnswerA

This is correct because it blocks only TCP port 80 traffic from the source subnet to the web server.

Why this answer

The correct ACL entry is an extended ACL deny statement that matches TCP from the source subnet to the destination host on port 80. In practical terms, the requirement is narrow: block HTTP only, from one source network to one server, while allowing everything else. That means using `deny tcp` with the right source, destination, and port is more accurate than using a broad `deny ip`.

This is a classic ACL precision question. The exam is testing whether you can match the requirement exactly rather than overblocking.

Exam trap

A common exam trap is selecting a deny statement that blocks all IP traffic (option B) instead of just HTTP traffic. This overblocking disrupts legitimate services beyond HTTP, violating the requirement to allow all other traffic. Another trap is denying UDP port 80 (option C), which is ineffective because HTTP uses TCP, not UDP.

Additionally, mistakenly permitting TCP port 80 traffic (option D) contradicts the goal of blocking HTTP access. Understanding the difference between protocol types and the impact of broad versus specific ACL entries is essential to avoid these pitfalls.

Why the other options are wrong

B

Option B denies all IP traffic from the source subnet to the destination host, which is too broad and blocks all services, not just HTTP, violating the requirement to allow other traffic.

C

Option C denies UDP traffic on port 80, but HTTP uses TCP, so this entry would not block HTTP traffic and fails to meet the requirement.

D

Option D permits TCP traffic on port 80, which contradicts the requirement to block HTTP traffic from the source subnet to the web server.

When would these options actually be correct?

B

In a scenario where the requirement is to block all IP traffic from the 10.10.10.0/24 subnet to the web server at 172.16.1.10, regardless of the protocol, option B would be the correct choice. For instance, if the question specified to block all access to the server, including HTTPS and other protocols, this option would apply.

C

If the question specified that the web server communicates over UDP for a specific application, such as a video streaming service that uses UDP for transport, then this option would correctly deny UDP traffic from the specified subnet to the web server.

D

This option would be correct in a scenario where the requirement is to allow HTTP traffic from the 10.10.10.0/24 subnet to the web server at 172.16.1.10, perhaps in a question that specifies that users need access to the web server for legitimate purposes.

Why candidates pick the wrong answer

B

Students might think 'ip' covers all traffic including HTTP, but they overlook that it blocks everything, not just HTTP.

C

Students may confuse TCP and UDP, or think that HTTP could use UDP in some cases, but standard HTTP always uses TCP.

D

Students might mistakenly think 'permit' is needed to allow other traffic, but the requirement is to block HTTP; a deny entry is needed for that specific traffic.

740
Matchingmedium

Match the security feature to its main purpose.

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

Concepts
Matches

Filters traffic based on defined permit and deny rules

Helps block rogue DHCP servers and build trusted binding information

Validates ARP traffic against trusted information to reduce ARP spoofing

Limits and controls MAC addresses learned on a switch port

Why these pairings

ACLs are correct because they use permit and deny statements to filter traffic based on source/destination IP, protocol, or port. DHCP Snooping is correct because it identifies trusted ports and builds a DHCP binding table to block rogue DHCP servers and prevent spoofed DHCP messages. DAI is correct because it leverages the DHCP Snooping binding table to validate ARP packets, dropping those that do not match trusted bindings and thus preventing ARP spoofing attacks.

Port Security is correct because it restricts the number and specific MAC addresses learned on a switch port, mitigating MAC flooding and unauthorized device access.

Exam trap

Avoid confusing the general term 'security' with specific functions. Firewalls filter traffic; they do not encrypt, detect endpoint malware, or provide centralized log analysis. Each security tool has a defined purpose.

741
MCQhard

Exhibit: OSPF neighbors are not reaching FULL state on an Ethernet segment with multiple routers. The output of show ip ospf neighbor on R2 shows a neighbor in the 2WAY/DROTHER state. What is the most likely reason?

A.Authentication mismatch between R2 and 3.3.3.3
B.The 2WAY state with another DROTHER on a broadcast segment is normal
C.R2 must be configured as a point-to-point network type
D.R2 has a duplicate router ID
AnswerB

On a broadcast multiaccess segment, OSPF elects a DR and BDR; all other routers are DROTHERs. DROTHERs only form full adjacencies with the DR and BDR, while two DROTHERs remain in 2WAY, which is the normal and expected state. The exhibit showing R2 in 2WAY with another DROTHER is therefore not a problem, so this is the correct explanation.

Why this answer

On a broadcast Ethernet network, two routers normally become fully adjacent through the DR or BDR. If the local router is stuck in 2WAY with another DROTHER, that is normal behavior. It is not a fault by itself.

Exam trap

A common exam trap is assuming that neighbors stuck in the 2-Way state indicate a problem requiring troubleshooting or configuration changes. Many candidates mistakenly believe that all OSPF neighbors on a broadcast segment must reach the FULL state with each other. However, OSPF’s design limits full adjacency to DR and BDR routers only.

DROTHER routers remain in 2-Way state with each other, which is normal and expected. Misinterpreting this behavior can lead to incorrect answers such as blaming authentication or router ID issues when the output actually reflects standard OSPF operation.

Why the other options are wrong

A

Authentication mismatches prevent OSPF neighbors from reaching the 2-Way state by blocking bidirectional communication. Since the neighbors here have reached 2-Way, authentication mismatch is unlikely the cause.

C

Configuring the network type as point-to-point is not required on Ethernet segments and would change the adjacency formation behavior rather than explain the current normal 2-Way state with DROTHER routers.

D

Duplicate router IDs cause adjacency failures and routing problems but do not cause neighbors to remain in the 2-Way state with DROTHER routers. The output does not indicate a router ID conflict.

When would these options actually be correct?

A

In a different question setup where the context involves OSPF neighbors failing to establish any adjacency due to mismatched authentication settings, option A would be correct. For example, if the question described a scenario where both routers are configured with different OSPF authentication methods, this option would accurately identify the problem.

C

In a different scenario where the question specifies that R2 is connected to a point-to-point link rather than a broadcast segment, configuring R2 as a point-to-point network type would be necessary to establish a full OSPF adjacency with its neighbor.

D

In a different scenario where the question specifies that R2 is part of an OSPF network where multiple routers have been assigned the same router ID, this option would be correct as it would directly cause OSPF to fail to establish proper neighbor relationships.

Why candidates pick the wrong answer

A

Students often associate neighbor issues with authentication mismatches, but the 2WAY state proves that the routers have successfully exchanged Hello packets, which includes authentication checks.

C

Students may think that changing to point-to-point solves adjacency issues, but here the 2WAY state is expected, not a problem. The point-to-point type would force full adjacencies but is not required.

D

Duplicate router IDs are a common OSPF misconfiguration, but they would prevent the neighbor state from progressing beyond DOWN or INIT, not reach 2WAY.

742
MCQeasy

What problem does Spanning Tree Protocol solve in a switched network?

A.IP address exhaustion
B.Layer 2 switching loops
C.Slow DNS lookups
D.Weak wireless encryption
AnswerB

Spanning Tree Protocol (IEEE 802.1D) eliminates Layer 2 switching loops by placing redundant switch ports in a blocking state, leaving a single active loop-free path between hosts. Without STP, broadcast frames cycle endlessly, creating broadcast storms, MAC address flapping, and duplicated unicast frames that severely degrade the switching fabric. Redundant links remain available and are activated automatically if the primary path fails.

Why this answer

STP prevents Layer 2 loops by blocking redundant paths when necessary, which avoids broadcast storms and MAC table instability.

Exam trap

Avoid confusing STP with technologies like EtherChannel, IPsec, or QoS, which address different network concerns.

Why the other options are wrong

A

Spanning Tree Protocol (STP) operates at Layer 2 and has no mechanism to manage or allocate IP addresses; IP address exhaustion is addressed by protocols like DHCP or IPv6 transition technologies.

C

DNS lookups are application-layer processes that rely on IP connectivity and name resolution servers; STP does not influence DNS performance or resolution speed.

D

Wireless encryption is a security feature implemented at the data link layer (e.g., WPA2/3) and is unrelated to STP, which deals with physical topology loop prevention.

When would these options actually be correct?

A

In a question asking about the challenges of IPv4 addressing in a large network or the implications of subnetting, option A could be correct if it discusses the depletion of available IP addresses due to insufficient subnetting or address planning.

C

In a different exam question asking about network performance issues, if the question specifically relates to factors affecting application response times, such as slow DNS resolution due to misconfigured DNS servers, option C could be correct. For example, a question might ask about the causes of slow website loading times, where DNS lookups are a factor.

D

If the exam question asked about security protocols in wireless networks, specifically regarding encryption methods like WPA2 or WPA3, then 'weak wireless encryption' could be the correct answer in the context of discussing vulnerabilities in wireless security.

Why candidates pick the wrong answer

A

Students might confuse STP with routing protocols or think that any network protocol can help with IP address management, but STP is strictly for loop prevention.

C

A test-taker might think that network loops cause slow DNS due to broadcast storms, but STP's primary role is loop prevention, not DNS optimization.

D

Students may associate 'spanning tree' with wireless mesh networks or confuse STP with security protocols, but STP is specifically for wired Ethernet switches.

743
MCQhard

An engineer configures a floating static route to 0.0.0.0/0 with an administrative distance of 200 while OSPF is providing a default route. What is the intended behavior?

A.The static default route acts as a backup and becomes active only if the OSPF default route is lost.
B.The static default route overrides OSPF immediately because it is manually configured.
C.Both default routes must always load-balance together.
D.The router ignores both defaults because they overlap.
AnswerA

A floating static route is configured with an administrative distance greater than OSPF's default of 110, such as 150. While the OSPF default route exists in the routing table, the static route remains dormant because the router prefers the lower AD. If the OSPF route disappears due to a neighbor loss or removal of the default-information originate command, the static route is then installed and used as the default path.

Why this answer

The intended behavior is that the static default route stays in reserve and becomes active only if the OSPF-learned default route disappears. In plain language, the administrator wants a backup path, not a replacement for the normal OSPF path. By assigning the static route a higher administrative distance than OSPF, the router treats it as less trustworthy during normal operation.

This is a standard floating-static design. The static route is still configured, but it does not normally appear as the preferred forwarding choice until the lower-distance route is lost. That is the key operational purpose of the configuration.

Exam trap

Don't assume static routes always take precedence over dynamic ones; administrative distance dictates preference.

Why the other options are wrong

B

The static default route has an administrative distance of 200, which is higher than OSPF's default distance of 110. Therefore, OSPF's route is preferred, and the static route does not override it. Manual configuration does not bypass administrative distance; the router always prefers the lower distance.

C

Load balancing requires multiple routes with equal administrative distance and metric. Here, OSPF and the static route have different administrative distances (110 vs. 200), so they are not equal. The router will only use the best route (OSPF) and not load-balance.

D

Overlapping default routes are common and do not cause the router to ignore them. The router uses the route with the lowest administrative distance (OSPF) and ignores the static route unless OSPF fails. There is no conflict that would cause both to be ignored.

When would these options actually be correct?

B

In a different scenario where the static route is configured with an administrative distance lower than OSPF (e.g., 100), the static route would override the OSPF default route immediately, making this option correct.

C

In a different scenario where both the static and OSPF default routes are configured with the same administrative distance, a question could ask about load-balancing behavior. In that case, the correct answer would be that both routes would be used for load balancing.

D

In a different scenario where both the OSPF and static routes are configured with the same administrative distance, a question could state that the router is configured to ignore routes with overlapping prefixes. In this case, if the router's configuration explicitly states to ignore overlapping routes, this option would be correct.

Why candidates pick the wrong answer

B

Students often think that static routes always take precedence over dynamic routes because they are manually configured. However, administrative distance is the decisive factor, and a higher distance makes the static route less preferred.

C

Some might assume that multiple default routes automatically load-balance traffic, but load balancing only occurs when routes are equally preferred. The different administrative distances prevent this.

D

A student might think that having two default routes creates a conflict or ambiguity, but routing protocols handle this by preferring the best route. The router does not ignore both; it selects the best one.

744
Multi-Selectmedium

Which two statements accurately describe controller-based networking?

Select 2 answers
A.It can centralize management and policy decisions.
B.It commonly exposes APIs for software and automation tools to interact with the controller.
C.It eliminates the need for network devices such as switches and routers.
D.It removes the need for authentication and authorization.
E.It works only on wireless networks.
AnswersA, B

One of the primary advantages of a controller-based model is the ability to centralize configuration, monitoring, and policy decisions across the entire network. Instead of configuring each switch or router individually, an administrator defines policies at the controller level, which then automatically distributes them to all managed devices. This centralization improves operational efficiency, ensures consistent enforcement of security and QoS rules, and reduces human error.

Why this answer

Controller-based networking centralizes certain management and policy functions and commonly exposes APIs for software interaction. In practical terms, the controller becomes the coordination point while outside applications or automation tools can talk to it through structured interfaces. This does not eliminate the need for actual forwarding devices, but it changes how the network is managed.

The wrong answers usually go too far and pretend the controller replaces everything. The two correct answers are the ones that keep centralization and programmability as the core ideas.

Exam trap

A common exam trap is to incorrectly believe that controller-based networking eliminates the need for physical network devices like switches and routers. Some candidates assume the controller replaces all hardware, which is false because forwarding devices remain essential for data traffic. Another trap is thinking that controller-based networking removes the need for authentication and authorization; however, secure access controls to the controller are still mandatory.

These misconceptions can lead to selecting incorrect answers that overstate the controller’s role or ignore security requirements.

Why the other options are wrong

C

This option is incorrect because controller-based networking does not eliminate the need for physical network devices like switches and routers; these devices still forward traffic.

D

This option is incorrect since authentication and authorization remain necessary to secure access to the controller and protect network integrity.

E

This option is incorrect because controller-based networking applies to both wired and wireless networks and is not limited to wireless environments.

When would these options actually be correct?

C

In a hypothetical exam question that asks about a theoretical networking model where all network functions are virtualized and managed through a single software interface without any physical hardware, option C could be correct. For example, a question might describe a fully virtualized network environment that operates without traditional hardware components.

D

In a question focused on a theoretical networking model that assumes a completely autonomous network environment, where all devices are inherently trusted and security is managed through physical isolation rather than authentication, this option could be deemed correct.

E

If the exam question specifically asked about the applicability of controller-based networking in different environments, and the context was limited to wireless networks, then stating it works only on wireless networks could be correct. For instance, a question could ask, 'In the context of wireless networking, which statement is true about controller-based networking?'

Why candidates pick the wrong answer

C

The idea of a 'controller' might suggest that all intelligence is moved to a central point, leading some to think that the forwarding devices are no longer needed, but they still handle traffic forwarding.

D

Students might think that centralization simplifies security to the point of eliminating authentication, but in reality, security is still critical and often enhanced through centralized policy.

E

Students may associate controllers primarily with wireless LAN controllers (WLCs) because they are a common example, leading to the misconception that controller-based networking is exclusive to wireless.

745
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure a Windows 10 host with a static IPv4 address, subnet mask, and default gateway.

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

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

Why this order

The correct order begins with opening Network and Sharing Center to access network settings. Then, you must click 'Change adapter settings' to see the list of network connections. Right-clicking the appropriate adapter and selecting Properties opens its configuration.

Selecting IPv4 and clicking Properties allows you to set the IP parameters. Choosing 'Use the following IP address' enables the fields for static input. Finally, entering the IP address, subnet mask, and default gateway followed by OK/Close applies the configuration.

This sequence follows the logical navigation of the Windows GUI to reach the static IP assignment interface.

746
MCQmedium

SW1 is the root bridge for VLAN 10. A user switch receives a BPDU on an access port connected to a desk-side unmanaged switch. What should happen if BPDU Guard is enabled on that port?

A.The port transitions to forwarding more quickly
B.The port is moved to err-disabled state
C.The switch elects a new root bridge
D.The port becomes a trunk automatically
AnswerB

When BPDU Guard is enabled on a PortFast edge access port, receiving any BPDU is considered a violation because a legitimate end host should never generate BPDUs. The switch immediately places the port into the err-disabled state, effectively shutting it down to prevent a rogue switch from participating in VLAN 10 spanning tree. This protects the root bridge's topology by blocking the unauthorized device at the access layer.

Why this answer

BPDU Guard is designed to protect edge ports. If a BPDU is received on a PortFast access port, the switch places the interface into the err-disabled state to stop a potential Layer 2 loop or rogue switch.

Exam trap

Remember that BPDU Guard actively disables ports, it doesn't just log or ignore BPDUs.

Why the other options are wrong

A

PortFast allows a port to transition to forwarding immediately upon link up, but it does not react to BPDU reception. BPDU Guard is a separate feature that disables the port upon receiving a BPDU, not accelerate forwarding.

C

Receiving a BPDU on a single edge port does not trigger a root bridge election. Root bridge election is based on bridge ID comparison across the entire spanning-tree domain, not on a single BPDU on a port.

D

BPDU Guard does not change the port mode; it only reacts to BPDU reception by disabling the port. Port mode (access or trunk) is configured separately and is not affected by STP protection features.

When would these options actually be correct?

A

In a different scenario, if the question asked about a switch port that is configured with Rapid Spanning Tree Protocol (RSTP) and receives a BPDU, one might mistakenly think that the port would transition to forwarding mode due to the rapid convergence feature of RSTP, making this option appear correct.

C

In a different scenario where a question asks about the behavior of a switch when a BPDU is received on a port configured as a root port or in a situation where a switch is actively participating in Spanning Tree Protocol (STP), the switch may elect a new root bridge if it determines that the received BPDU indicates a better root bridge candidate.

D

In a different scenario where a switch is configured to automatically negotiate trunking on a port and receives a specific configuration BPDU indicating a trunking request, the port could transition to trunk mode. The question would need to focus on trunk negotiation protocols like DTP (Dynamic Trunking Protocol) rather than BPDU Guard.

Why candidates pick the wrong answer

A

Students often confuse PortFast and BPDU Guard because both are commonly applied to edge ports. Since PortFast speeds up forwarding, they might think BPDU Guard also does something similar when a BPDU is received.

C

Test-takers may think that any BPDU reception can influence root bridge selection, especially if they confuse BPDU Guard with root guard. Root guard prevents a port from becoming a root port, but BPDU Guard simply disables the port.

D

Some might think that because BPDUs are typically sent on trunk ports, receiving a BPDU on an access port would cause the switch to automatically convert it to a trunk. However, this is not how STP protections work.

747
PBQhard

You are connected to R1. The network administrator reports that hosts on VLAN 10 cannot communicate with the server attached to R2's GigabitEthernet0/1 interface. Troubleshoot and resolve the issue. Identify the root cause and apply the necessary fix on R1.

Network Topology
G0/0192.168.1.1/30linkG0/1192.168.1.5/30G0/1192.168.1.6/30linklinkR2R1Switch1Hosts in VLAN10

Hints

  • The high input error count on G0/0 suggests a Layer 1 issue, possibly duplex mismatch.
  • Compare the configured duplex on R1's G0/0 with the typical auto-negotiation settings on a switch.
  • Reverting to auto-negotiation on both speed and duplex is often the solution for such mismatches.
A.Configure 'no duplex' and 'no speed' under interface GigabitEthernet0/0 to enable auto-negotiation.
B.Change the duplex setting on GigabitEthernet0/0 to half-duplex using 'duplex half'.
C.Apply 'speed 100' and 'duplex full' on GigabitEthernet0/0 to match a common switch configuration.
D.Clear the interface counters on GigabitEthernet0/0 with 'clear counters gigabitethernet0/0' without changing any configuration.
AnswerA
solution
! R1
configure terminal
interface GigabitEthernet0/0
no duplex
no speed
end
clear counters GigabitEthernet0/0

Why this answer

The issue is a duplex mismatch on GigabitEthernet0/0. R1 is configured with 'duplex full' and 'speed 1000', but the connected switch port is likely set to auto-negotiate or is set to half-duplex. This causes high input errors (1500) and degraded performance.

The fix is to set R1's G0/0 to auto-negotiate both speed and duplex, matching the switch's configuration. Enter interface configuration mode for G0/0, issue 'no duplex' and 'no speed' to revert to auto, then clear the interface counters with 'clear counters gigabitethernet0/0'.

Exam trap

The exam trap is that candidates often focus on speed mismatches or clearing counters, but the real issue is duplex mismatch. Remember that on GigabitEthernet interfaces, auto-negotiation is the default and recommended setting; static duplex/speed settings can cause mismatches and errors.

Why the other options are wrong

B

The specific factual error is that manually setting half-duplex does not resolve a mismatch; it may create a new mismatch or degrade performance further.

C

The specific factual error is that GigabitEthernet interfaces usually operate at 1000 Mbps; setting speed to 100 may cause the interface to not come up or to underperform.

D

The specific factual error is that clearing counters is a diagnostic step, not a fix. The root cause (duplex mismatch) remains unaddressed.

Why candidates pick the wrong answer

B

Candidates might think that since the switch is half-duplex, setting the router to half-duplex will match, but they overlook that the switch may be auto-negotiating or that the router's current full-duplex setting is the problem.

C

Candidates might think that lowering the speed to 100 Mbps and setting full duplex is a safe fallback, but this ignores the interface's capabilities and the actual issue of duplex mismatch.

D

Candidates might think that clearing counters resolves the issue because it temporarily removes the error count, but they fail to recognize that the problem persists.

748
MCQhard

A router learns the same destination from EIGRP and OSPF. The EIGRP route has a metric of 1000, and the OSPF route has a metric of 10. Which route is installed by default?

A.The OSPF route, because 10 is lower than 1000
B.The EIGRP route, because its source has a lower default administrative distance
C.Both routes automatically install for load balancing
D.Neither route installs until the administrator chooses manually
AnswerB

The EIGRP route is chosen because Cisco's default administrative distance for EIGRP is 90, while OSPF uses a default AD of 110. Since the router compares AD first to decide which protocol's route to trust, the lower AD of EIGRP makes it the preferred source for the destination, and OSPF's route is held as a backup only. The metric values, no matter how attractive, are not considered until the AD comparison is resolved, so EIGRP wins outright.

Why this answer

The EIGRP route is installed by default because route selection between different routing protocols is based on administrative distance before the protocol-specific metric is compared across sources. In plain language, the router does not compare an OSPF metric of 10 directly against an EIGRP metric of 1000 because those metrics come from different systems and are not numerically comparable in a meaningful cross-protocol way. Instead, the router first looks at the trustworthiness of the source.

By default, internal EIGRP routes have a lower administrative distance than OSPF routes, so EIGRP wins even though the OSPF metric value appears lower. This is a classic CCNA trap designed to catch people who compare metrics across different protocols without considering administrative distance first.

Exam trap

A common exam trap is to assume that the route with the numerically lowest metric is always preferred, regardless of the routing protocol. In this question, the OSPF route has a metric of 10, which looks better than the EIGRP metric of 1000. However, metrics from different protocols are not directly comparable.

The router first compares administrative distance, which rates the trustworthiness of the routing source. Since EIGRP’s default administrative distance (90) is lower than OSPF’s (110), the router installs the EIGRP route despite its higher metric. This trap tests your understanding of routing protocol preference, not just metric values.

Why the other options are wrong

A

This option is incorrect because it assumes the router compares OSPF and EIGRP metrics directly. Metrics from different protocols are not comparable until administrative distance is considered, so the lower OSPF metric does not guarantee route installation.

C

This option is incorrect because load balancing occurs only when multiple equal-cost routes exist within the same routing protocol. Routes from different protocols are not automatically load-balanced simply because they reach the same destination.

D

This option is incorrect because the router automatically selects the best route using its decision process based on administrative distance and metric. Manual intervention is not required for route installation in this scenario.

When would these options actually be correct?

A

In a different scenario where the question states that both routes have the same administrative distance, and the metrics are the only factors considered, the OSPF route would be installed because it has a lower metric value of 10 compared to EIGRP's 1000.

C

In a different scenario where both EIGRP and OSPF routes have the same administrative distance and the router is configured to allow load balancing, the question could state that both routes are valid for the same destination, leading to both being installed for load balancing.

D

In a different scenario where the question states that both routes have been configured with a 'no auto-summary' command and the router is set to not install any routes until explicitly enabled, this option would be correct as it would require manual intervention to install routes.

Why candidates pick the wrong answer

A

Students often confuse metric with administrative distance, thinking that a lower metric always means a better route, regardless of the routing protocol. Since OSPF's metric of 10 is numerically lower than EIGRP's 1000, it seems intuitive to choose the OSPF route.

C

Students may think that because both routes reach the same destination, the router will automatically use both for load balancing to improve performance. However, the router's default behavior is to select a single best path based on AD, not to combine routes from different protocols.

D

Some students might believe that when there is a tie or conflict between routing protocols, the router will wait for an administrator to decide. However, the router has a deterministic process (AD comparison) that resolves such conflicts without manual input.

749
Matchingmedium

Drag and drop the protocols/technologies on the left to the descriptions on the right.

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

Concepts
Matches

Uses XML-encoded RPCs over SSH for network device configuration

Uses HTTP/HTTPS methods (GET, POST, PUT, DELETE) with JSON or XML

Data modeling language that defines the structure of configuration and state data

High-performance RPC framework using Protocol Buffers and HTTP/2

Vendor-neutral YANG data models for network configuration and monitoring

Why these pairings

SSH (Secure Shell) provides encrypted remote access to network devices, typically using TCP port 22. It is the secure alternative to Telnet. Telnet (port 23) is unencrypted and insecure.

HTTP (port 80) is used for web traffic, not remote access. FTP (port 21) is for file transfers and is not designed for remote shell access. Therefore, only SSH matches the description of secure remote access.

Exam trap

Candidates often think Telnet is secure because it also provides remote access, but Telnet transmits data in plaintext. SSH uses encryption, making it the only secure option among these.

Why candidates pick the wrong answer

B

Candidates may confuse Telnet with SSH because both are used for remote CLI access, but Telnet lacks security.

C

Candidates might think HTTP can be used for device management (e.g., web interface) but forget that HTTPS is the secure version.

D

Candidates may associate FTP with remote access because it requires authentication, but it is not used for device administration.

750
MCQhard

Based on the exhibit, why are clients in VLAN 70 failing to resolve hostnames even though they can reach remote IP addresses?

A.The clients are missing valid DNS server information.
B.The default gateway must be removed from the DHCP scope.
C.The clients must use PPP before DNS works.
D.The VLAN must be converted to the native VLAN on all trunks.
AnswerA

The DHCP scope assigns IP configuration but does not include Option 6 (DNS server), so clients receive no resolver address. When a user pings a hostname, the client cannot query a DNS server, causing resolution failure; direct IP access works because no DNS is required. This exactly matches the exhibited symptom of IP connectivity succeeding while hostname-based access fails.

Why this answer

The strongest explanation is that the clients are missing valid DNS server information. In practical terms, successful reachability to remote IP addresses proves that Layer 3 forwarding is working. The failure occurs only when a hostname is used, which points to a naming service problem rather than a general connectivity problem. The DHCP scope shown provides an address and default gateway, but no DNS server option is defined.

This is a very realistic IP-services troubleshooting pattern because the network path works while application usability still fails.

Exam trap

A frequent exam trap is to mistake the inability to resolve hostnames as a routing or VLAN trunking problem. Candidates might incorrectly believe that removing the default gateway or converting the VLAN to the native VLAN on trunks will resolve the issue. However, these options do not address DNS resolution, which is an application-layer service independent of Layer 3 forwarding.

The trap arises because clients can reach remote IP addresses, misleading candidates to focus on routing or VLAN configuration rather than missing DNS server information in the DHCP scope.

Why the other options are wrong

B

Removing the default gateway from the DHCP scope is incorrect because the default gateway is essential for routing traffic outside the local VLAN. Its presence does not cause hostname resolution failures.

C

The suggestion that clients must use PPP before DNS works is incorrect because PPP is unrelated to DNS resolution in a typical VLAN and DHCP environment. DNS operates independently of PPP.

D

Converting the VLAN to the native VLAN on all trunks does not affect DNS resolution. This option addresses Layer 2 trunking issues, which are unrelated to the hostname resolution problem described.

When would these options actually be correct?

B

In a different scenario, if a question specified that clients were unable to communicate with any external networks due to misconfigured DHCP settings, and the default gateway was indeed incorrectly set, then removing it could be the correct action to restore connectivity.

C

In a scenario where the question specifies that clients are connecting over a PPP link and that DNS resolution is dependent on the successful establishment of a PPP connection, this option would be correct. For instance, if the question stated that clients can only access DNS after establishing a PPP connection, then this would apply.

D

In a different exam scenario, if the question asked about issues related to VLAN tagging and inter-VLAN communication where the native VLAN configuration was misconfigured, then this option could be correct if it led to traffic being untagged and not reaching the correct destination for DNS queries.

Why candidates pick the wrong answer

B

Students might confuse the default gateway with DNS, thinking that removing it could force clients to use alternative name resolution methods, but this is incorrect as the gateway is required for routing.

C

Test-takers might associate PPP with dial-up or WAN connections where DNS might be negotiated, but in a LAN scenario, PPP is irrelevant.

D

Students might think that VLAN configuration issues can cause all communication problems, but the symptom of working IP access but failing hostname resolution points specifically to DNS, not VLAN misconfiguration.

Page 9

Page 10 of 19

Page 11