Courseiva

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

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

Page 13

Page 14 of 19

Page 15
976
Multi-Selectmedium

Which TWO statements correctly describe the configuration and verification of AAA with RADIUS/TACACS+ and 802.1X port-based authentication on IOS-XE?

Select 2 answers
A.The switch port must be configured as an access port and the command 'authentication port-control auto' must be applied.
B.AAA authentication for 802.1X must be configured using TACACS+ as the protocol of choice.
C.The global command 'aaa new-model' is sufficient to enable 802.1X on all interfaces.
D.RADIUS is the recommended protocol for 802.1X authentication because it supports EAP and is widely used in network access control.
E.802.1X can be configured on a trunk port to authenticate multiple VLANs simultaneously.
AnswersA, D

802.1X operates only on Layer 2 access ports because it authenticates a single connected host before any traffic is forwarded. The interface must be an access port, and 'authentication port-control auto' is required so the port begins in the unauthorized state, forcing the supplicant to complete EAP/RADIUS authentication before the port becomes authorized. Without 'auto', the port would default to the authorized state and bypass authentication.

Why this answer

802.1X requires the switch port to be an access port (not trunk or dynamic) and the 'authentication port-control auto' command enables EAPoL-based authentication. Option D is correct because RADIUS is the recommended protocol for 802.1X; it natively supports EAP extensions and is widely used for network access control, whereas TACACS+ does not support EAP and is more suited for device administration. Option B is false because AAA authentication for 802.1X should use RADIUS, not TACACS+.

Option C is false because 'aaa new-model' only activates the AAA framework; 802.1X requires additional global commands like 'dot1x system-auth-control' and per-interface configuration. Option E is false because 802.1X is typically configured on access ports and cannot be used on trunk ports to authenticate multiple VLANs; the port must be in access mode.

Exam trap

Cisco often tests the misconception that 'aaa new-model' alone enables all AAA features, including 802.1X, when in fact it only activates the AAA framework and separate interface-level commands are required.

Why the other options are wrong

B

TACACS+ encrypts only the password and is designed for device administration, not for 802.1X authentication which requires EAP support—RADIUS is the correct choice.

C

The global command 'aaa new-model' enables the AAA architecture but does not automatically enable 802.1X on interfaces; additional commands like 'dot1x system-auth-control' and per-interface 'authentication port-control auto' are needed.

E

802.1X requires the switch port to be in access mode, not trunk mode; trunk ports do not support 802.1X because multiple VLANs would conflict with the authentication process.

977
Multi-Selectmedium

Which three of the following are valid features of Enhanced Interior Gateway Routing Protocol (EIGRP)? (Choose three.)

Select 3 answers
.EIGRP maintains a topology table containing all routes learned from neighbors.
.EIGRP uses the Diffusing Update Algorithm (DUAL) to ensure loop-free paths.
.EIGRP supports unequal-cost load balancing using the 'variance' command.
.EIGRP is a link-state routing protocol similar to OSPF.
.EIGRP uses multicast address 224.0.0.5 for all neighbor communications.
.EIGRP automatically summarizes routes at classful boundaries by default on all interfaces.

Why this answer

All three statements are correct features of EIGRP. EIGRP maintains a topology table that stores all routes learned from directly connected neighbors, including feasible successors. It uses the Diffusing Update Algorithm (DUAL) to guarantee loop-free paths by performing a diffusing computation when a route is lost.

Additionally, EIGRP supports unequal-cost load balancing by using the 'variance' command, which allows traffic to be distributed across multiple paths with different metrics, as long as the metric of the alternate path is within the variance multiplier times the best metric.

Exam trap

Cisco often tests the distinction between EIGRP's topology table (which stores all learned routes) and its routing table (which stores only the best routes), and candidates may confuse the 'variance' command with equal-cost load balancing only, forgetting that it enables unequal-cost load balancing.

978
MCQhard

Refer to the exhibit. A network engineer notices that a user connected to GigabitEthernet0/5 cannot access the network. The engineer issues the show port-security interface GigabitEthernet0/5 command. Based on the output, what is the most likely cause of the issue?

A.The interface is administratively shut down.
B.An unauthorized device with a different MAC address was connected, triggering a port-security violation and placing the port in an error-disabled state.
C.The sticky MAC address feature is disabled, allowing any MAC address to cause a violation.
D.The maximum number of secure MAC addresses has been exceeded, causing the port to err-disable.
AnswerB

The output shows 'Port Status: Secure-shutdown' after a violation, a violation count of 3, and the 'Last Source Address' (aaaa.bbbb.cccc) differing from the sticky MAC. This confirms an unauthorized MAC triggered the violation and shut down the port.

Why this answer

The output of 'show port-security interface GigabitEthernet0/5' would show a port status of 'err-disabled' and a security violation count greater than zero. This occurs because an unauthorized device with a different MAC address connected to the port, triggering a port-security violation (typically a security violation action of 'shutdown'), which places the interface in an error-disabled state. This matches the scenario where the user cannot access the network.

Exam trap

Cisco often tests the distinction between the violation action 'shutdown' (which err-disables the port) and 'restrict' or 'protect' (which do not err-disable), and candidates may confuse exceeding the maximum MAC addresses with the specific trigger of a different MAC address being seen after the maximum is already learned.

Why the other options are wrong

A

A common misconception is that any down state is an admin shutdown, but Cisco IOS distinguishes 'Secure-shutdown' for port-security errdisable from 'administratively down'.

C

Some candidates misread the output and assume sticky is off, but the presence of a sticky MAC count proves it is active.

D

It is tempting to assume any violation with maximum 1 is due to exceeding the limit, but in this case the secure MAC is the original sticky address, and the violation is from a different unauthorized MAC, which still respects the limit count but fails the authorization check.

979
Multi-Selectmedium

An engineer is comparing data serialization formats used by controllers and automation tools. Which two statements correctly describe JSON?

Select 2 answers
A.It represents data as key-value pairs and arrays
B.It is commonly used in REST API payloads
C.It requires closing tags like XML
D.It can only represent numeric values
AnswersA, B

JSON represents structured data as an unordered collection of key-value pairs inside an object, where keys are double-quoted strings and values can be any valid JSON type. It also supports arrays as ordered lists of values, which map directly to lists in programming languages. This means JSON can describe both records and collections of records, making it a foundational format for data interchange.

Why this answer

JSON structures data using key-value pairs (objects) and ordered lists (arrays), which are fundamental to its syntax. Option B is correct as JSON is the standard payload format for REST API requests and responses due to its lightweight nature and ease of parsing. Option C is incorrect because JSON does not use closing tags; instead, it relies on curly braces {} for objects and square brackets [] for arrays.

Option D is incorrect because JSON supports multiple data types beyond numeric values, including strings, booleans, null, arrays, and nested objects.

Exam trap

A frequent exam trap is assuming JSON requires closing tags similar to XML, which is incorrect. JSON uses braces and brackets to define objects and arrays without paired tags, so confusing these formats can lead to wrong answers. Another common mistake is believing JSON only supports numeric values, ignoring that it also supports strings, booleans, null, arrays, and nested objects.

Misunderstanding these details can cause candidates to incorrectly reject JSON as a serialization format in automation scenarios, especially when comparing it to XML or other data formats.

Why the other options are wrong

C

Option C is incorrect because JSON does not require closing tags like XML; it uses braces and brackets to delimit data structures, making this statement false.

D

Option D is incorrect as JSON supports a variety of data types beyond numeric values, including strings, booleans, arrays, objects, and null, so it is not limited to numbers.

When would these options actually be correct?

C

If the question asked 'Which statement correctly describes XML?', then 'It requires closing tags like XML' would be correct, as XML elements must have both opening and closing tags.

D

In a question about a data serialization format that only supports numeric values (e.g., a custom binary format or a specific use case like Protocol Buffers with only numeric fields), this option would be correct.

Why candidates pick the wrong answer

C

Candidates familiar with XML may incorrectly assume JSON also uses closing tags because both are data serialization formats, leading to confusion between their syntax rules.

D

Candidates may confuse JSON with simpler formats or mistakenly think JSON is limited to numbers due to its use in numeric-heavy contexts like configuration files.

980
PBQhard

You are connected to R1, a router that must establish OSPFv3 adjacency with R2 over the directly connected link G0/0. The current configuration is incomplete: OSPFv3 process is configured but not enabled on the interface, and global IPv6 unicast routing is missing. Configure R1 so that it becomes an OSPFv3 neighbor with R2 and learns the loopback route 2001:db8:1:2::/64 via OSPFv3. Then verify neighbor state and routing table.

Network Topology
G0/02001:db8:0:1::1/64G0/02001:db8:0:1::2/64linkR1R2

Hints

  • OSPFv3 requires IPv6 unicast routing to be enabled globally before it can operate.
  • OSPFv3 is enabled on an interface using the 'ipv6 ospf <process-id> area <area-id>' command.
  • Without the interface-level command, the router will not send hellos and will not form an adjacency.
A.Enable IPv6 unicast routing globally and activate OSPFv3 on GigabitEthernet0/0 with the command 'ipv6 ospf 1 area 0'.
B.Enable IPv6 unicast routing globally and configure OSPFv3 process 1 with the 'network' command under the OSPFv3 router configuration mode.
C.Enable IPv6 unicast routing globally and configure OSPFv3 process 1 with the 'router-id' command to ensure adjacency.
D.Enable IPv6 unicast routing globally and configure OSPFv3 process 1 with the 'passive-interface default' command to allow adjacency.
AnswerA
solution
! R1
ipv6 unicast-routing
interface GigabitEthernet0/0
ipv6 ospf 1 area 0

Why this answer

R1 is missing two critical configurations: global IPv6 unicast routing must be enabled with 'ipv6 unicast-routing', and OSPFv3 must be activated on GigabitEthernet0/0 using 'ipv6 ospf 1 area 0' under the interface. Without these, R1 cannot send or receive OSPFv3 hellos, so no adjacency forms and routes are not exchanged. After applying both commands, the neighbor state becomes FULL and the remote loopback appears in the IPv6 routing table.

Exam trap

The exam trap is that OSPFv3 configuration differs from OSPFv2: OSPFv3 does not use network statements under the router process; instead, it is enabled directly on the interface. Additionally, IPv6 unicast routing must be globally enabled before OSPFv3 can function. Candidates often forget one of these two steps.

Why the other options are wrong

B

The specific factual error is that OSPFv3 uses interface-level configuration, not network statements under the OSPF process.

C

The specific factual error is that setting a router ID alone does not activate OSPFv3 on an interface; OSPFv3 must be explicitly enabled on the interface.

D

The specific factual error is that 'passive-interface default' would actually prevent adjacency, not help form it.

Why candidates pick the wrong answer

B

Candidates familiar with OSPFv2 might mistakenly apply the same 'network' command logic to OSPFv3, not realizing the difference in configuration method.

C

Candidates may think that configuring a router ID is the key missing step, especially if they see OSPFv3 process running but no neighbor forming, but they overlook the interface activation.

D

Candidates might confuse 'passive-interface' with enabling OSPF on an interface, or think that making an interface passive is necessary for OSPF to work, but the opposite is true for adjacency formation.

981
Multi-Selecthard

Exhibit: An OSPFv2 adjacency between two routers on Ethernet is not forming. Which two mismatches would directly prevent the routers from becoming neighbors?

Select 2 answers
A.Different OSPF area assignments on the interfaces
B.Authentication mismatch between the interfaces
C.Different hostnames on the routers
D.Different loopback addresses used for management
E.One router using SSH version 2
AnswersA, B

When two routers on the same Ethernet segment have different OSPF area assignments, the area ID embedded in each Hello packet differs. A router receiving a Hello with a mismatched area ID discards the packet, preventing the neighbor relationship from even reaching the 2-Way state. Thus, area numbers must match exactly on the shared link for OSPFv2 adjacency to form.

Why this answer

On an OSPFv2 network, area mismatch and authentication mismatch both directly prevent adjacency formation. Mismatched timers (such as hello or dead intervals) also block adjacency on all network types, including Ethernet. In this scenario, the correct choices are area mismatch (A) and authentication mismatch (B).

Exam trap

A common exam trap is selecting options like different hostnames or loopback addresses as causes for OSPF adjacency failure. Candidates may mistakenly believe that router identification parameters affect neighbor formation. However, OSPF adjacency strictly depends on protocol parameters such as area ID and authentication.

Hostnames and loopback interfaces are used for management or router ID purposes but do not block adjacency. Misunderstanding this can lead to incorrect troubleshooting steps or exam answers, wasting valuable time and causing confusion.

Why the other options are wrong

C

Different hostnames do not affect OSPF adjacency since hostnames are used only for identification and management, not neighbor formation.

D

Different loopback addresses used for management do not influence OSPF adjacency on Ethernet interfaces, so they do not block neighbor relationships.

E

One router using SSH version 2 is unrelated to OSPF adjacency because SSH is a management protocol and does not impact routing protocol neighbor formation.

When would these options actually be correct?

C

In a question about EIGRP neighbor formation over Frame Relay, mismatched hostnames could prevent adjacency if the hostname is used in the EIGRP authentication process (e.g., MD5 authentication with key-chain).

D

In a question about OSPF router ID selection, if two routers have the same router ID (e.g., due to identical loopback addresses), they would not form an adjacency. The correct answer would be that identical router IDs prevent neighbor formation.

E

In a question about why SSH access to a router fails between two devices, mismatched SSH versions (e.g., one using SSHv1 and the other SSHv2) would prevent secure connection.

Why candidates pick the wrong answer

C

Candidates may confuse hostname with router ID or think that OSPF uses hostnames for neighbor verification, leading them to incorrectly select this option.

D

Candidates may confuse loopback addresses with OSPF router IDs, thinking mismatched loopbacks cause issues, or they may overgeneralize that any IP mismatch prevents OSPF adjacency.

E

Candidates may confuse security protocols used for device management with routing protocol authentication, thinking any mismatch in security settings blocks OSPF adjacency.

982
MCQhard

Refer to the exhibit. A network administrator is troubleshooting an OSPF adjacency on R1's GigabitEthernet0/0 interface connected directly to R2. R2 is powered on and shows correct OSPF configuration, but the adjacency is stuck in the INIT or DOWN state. Based on the output, what is the most likely cause of the failure?

A.The OSPF network type on R1's GigabitEthernet0/0 does not match the network type on R2.
B.The OSPF hello and dead timers on R1 do not match those configured on R2.
C.The GigabitEthernet0/0 interface on R1 has been assigned to a different OSPF area than R2's connected interface.
D.The OSPF passive-interface command has been applied to GigabitEthernet0/0, preventing hello packets from being sent.
AnswerD

The line 'No Hellos (Passive interface)' in the output is the direct and definitive indication that the GigabitEthernet0/0 interface has been configured with the OSPF passive-interface command. This command prevents OSPF from sending Hello packets out of this interface, and without Hellos, R1 cannot discover R2 or form an adjacency with it. Passive-interface is a common administrative choice to stop OSPF on a LAN segment while still advertising the connected subnet, but it breaks neighbor formation entirely, which is exactly the problem described in the scenario.

Why this answer

The adjacency is stuck in INIT or DOWN state, which indicates that R1 is not receiving OSPF Hello packets from R2. The passive-interface command on GigabitEthernet0/0 prevents R1 from sending Hellos, so R2 never sees R1, and R1 may see R2's Hellos (stuck in INIT) or not (stuck in DOWN). This matches the symptom exactly, as passive-interface suppresses outgoing Hellos while still allowing the interface to be advertised.

Exam trap

Cisco often tests the passive-interface command as a subtle cause of OSPF adjacency failure, where candidates mistakenly think it only affects routing updates (like in EIGRP) rather than Hello suppression in OSPF.

Why the other options are wrong

A

Candidates may think network type mismatch when they see no adjacency, but the exhibit does not indicate a mismatch and explicitly shows the passive state.

B

Timer mismatch is a classic troubleshooting trap, but the 'No Hellos (Passive interface)' message overrides any timer considerations.

C

Candidates may guess area mismatch as a cause, but the exhibit provides no evidence of it, while the passive-interface message is a direct cause.

983
Drag & Dropmedium

Drag and drop the following steps into the correct order to implement a basic network monitoring workflow using telemetry and streaming analytics on Cisco IOS-XE.

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 workflow begins by collecting data via telemetry from network devices (A), then streaming that data to an analytics platform (B). After streaming, the data is monitored using dashboards (C), and finally alerts are generated for threshold violations (D).

Exam trap

Students often reverse the order of streaming and monitoring; data must be streamed before it can be visualized.

984
Drag & Dropmedium

Drag and drop the following steps into the correct order to set up gRPC streaming telemetry subscription on a Cisco IOS-XE device.

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

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

Why this order

The correct sequence for setting up gRPC streaming telemetry on a Cisco IOS-XE device is: first, enter global configuration mode. Next, create a telemetry subscription because the subscription provides the sub-mode where the remaining elements are configured. Within the subscription, you can configure the receiver (specifying destination, protocol, and encoding) and define the sensor path (selecting YANG data nodes) in any order, as neither depends on the other.

Finally, associate the sensor group to bind the sensor path to the subscription. Only option A follows this exact order. Options B, C, and D contain ordering errors that would cause configuration failure.

Exam trap

A common mistake is trying to define a sensor path or associate a sensor group before the telemetry subscription has been created; the subscription must be established first to host those elements. Another pitfall is confusing the flexible order of receiver and sensor path with the need to create the subscription first.

Why candidates pick the wrong answer

B

Candidates might think the sensor path is defined independently before the subscription, similar to how access-lists are created before being applied.

C

Candidates might think the receiver is a global configuration independent of the subscription, similar to configuring an SNMP host.

D

Candidates might think the sensor path is defined immediately after the subscription, similar to how a route-map is configured after creation.

985
MCQhard

A host has a valid IP address and subnet mask from DHCP but cannot reach remote networks because no gateway was provided. What is the best explanation?

A.The host has no next-hop gateway for traffic destined outside its local subnet.
B.The host cannot use ARP on the local network anymore.
C.The host automatically becomes part of every remote subnet.
D.The host must convert its access port into a trunk.
AnswerA

A DHCP lease supplies the host's IP address, subnet mask, and often a default gateway, but without that gateway entry the host's routing table contains no route for off-subnet destinations. When a packet's destination IP is outside the host's local subnet, the host must send it to a next-hop router; in its absence, the packet is dropped or never transmitted. The host can still communicate with neighbors on the same subnet, but it is effectively isolated from all other networks.

Why this answer

The best explanation is that the host has no next-hop path for off-subnet traffic. In plain language, the device knows what its own local network looks like, but it does not know where to send packets when the destination is outside that local range. Without a default gateway, remote communication usually fails even though local communication can still work.

This is a core host-configuration concept. The correct answer is the one focused on the absence of a next hop for remote destinations.

Exam trap

A common exam trap is assuming that a host without a default gateway cannot communicate at all. Many candidates mistakenly believe that missing a gateway disables all network communication, but in reality, the host can still communicate with devices on its local subnet using ARP. The trap lies in confusing local subnet communication with remote network access.

The question specifically tests understanding that the lack of a gateway prevents forwarding to remote networks, not local connectivity. Misreading this can lead to selecting incorrect options that focus on ARP or subnet expansion rather than the gateway role.

Why the other options are wrong

B

This option is incorrect because ARP is used for local subnet communication and does not depend on the presence of a default gateway. The host can still use ARP to communicate locally.

C

This option is wrong because a host does not automatically become part of every remote subnet without a gateway. The subnet mask defines the local subnet boundaries, and gateway absence does not change this.

D

This option is unrelated to the problem. Converting an access port to a trunk port affects VLAN tagging on switches but does not impact a host’s ability to have or use a default gateway.

When would these options actually be correct?

B

In a different scenario where a question states that a host is unable to communicate with any devices on the local network and has been misconfigured with an incorrect subnet mask, option B could be correct, as ARP requests would fail due to the host being unable to identify devices in the same subnet.

C

In a question where a host is configured with multiple subnets and routing protocols are enabled, stating that it automatically becomes part of every remote subnet could be correct if discussing a scenario involving dynamic routing or a specific network design that allows for such behavior.

D

In a scenario where a question asks about VLAN configurations and the need for a switch port to carry multiple VLANs for inter-VLAN routing, converting an access port to a trunk would be the correct answer. This would apply if the question specified that the host needs to communicate across different VLANs.

Why candidates pick the wrong answer

B

Candidates may choose this option due to a misunderstanding of ARP functionality, thinking that a lack of a gateway affects local network communication, leading to confusion about the role of ARP in local subnet communication.

C

Candidates may find this option tempting due to a misunderstanding of how subnets and routing work, mistakenly believing that a device can communicate across all networks without proper routing configurations.

D

Candidates might choose this option due to confusion between layer 2 switching and layer 3 routing concepts, mistakenly believing that port configuration changes can resolve routing issues.

986
PBQmedium

You are connected to R1 via console. R1 is connected to three routers (R2, R3, R4) over Ethernet links, all in OSPF area 0. Due to network topology, R1 should not become the Designated Router (DR) or Backup Designated Router (BDR) on any of its interfaces. You need to configure R1's OSPF priority appropriately to ensure it never participates in DR/BDR elections.

Network Topology
G0/010.0.0.1/24G0/110.0.1.1/24G0/210.0.2.1/24R1R2R3R4

Hints

  • The DR/BDR election is based on the highest OSPF priority, with a tiebreaker on router ID.
  • Setting the priority to 0 on an interface means the router cannot become DR or BDR.
  • The command is configured under the interface.
A.Set the OSPF priority to 0 on all interfaces of R1.
B.Set the OSPF priority to 255 on all interfaces of R1.
C.Set the OSPF priority to 1 on all interfaces of R1.
D.Set the OSPF priority to 0 on the loopback interface of R1.
AnswerA
solution
! R1
interface GigabitEthernet0/0
ip ospf priority 0
interface GigabitEthernet0/1
ip ospf priority 0
interface GigabitEthernet0/2
ip ospf priority 0

Why this answer

Setting the OSPF priority to 0 on each Ethernet interface excludes R1 from DR/BDR elections entirely, as a priority of 0 signals that the router is ineligible. In contrast, option B (priority 255) is incorrect because the highest priority makes a router the most likely to become DR/BDR, not prevent it. Option C (priority 1) allows the router to participate in elections and could still become DR/BDR if no higher-priority router exists.

Option D is wrong because setting priority to 0 on the loopback interface does not affect the physical Ethernet interfaces where elections occur.

Exam trap

Remember that only a priority of 0 prevents a router from being elected as DR or BDR. Do not confuse priority with other OSPF parameters like cost or hello interval. Also, priority must be set on the actual interfaces facing the multiaccess network, not on loopback or other logical interfaces.

Why the other options are wrong

B

A priority of 255 is the highest possible value, ensuring the router becomes the DR or BDR, not excluding it.

C

Priority 1 is the default and allows the router to be elected if it has the highest priority or Router ID.

D

Loopback interfaces are not used for DR/BDR elections; they are logical interfaces. The priority must be set on the physical interfaces connecting to other routers.

Why candidates pick the wrong answer

B

Candidates may mistakenly think that a high priority prevents election, or they confuse priority with the concept of 'preference'.

C

Candidates might think that a low priority (like 1) excludes the router, but only 0 does that.

D

Candidates may think that OSPF priority is a global setting or that loopback interfaces influence elections, but they don't.

987
MCQeasy

An ACL on R1 contains only these entries: access-list 101 permit tcp 10.10.10.0 0.0.0.255 any eq 443 access-list 101 permit icmp any any What happens to an HTTP packet sourced from 10.10.10.25 and destined for 198.51.100.10 if ACL 101 is applied in the traffic path?

A.It is permitted because the source subnet is allowed.
B.It is denied by the implicit deny.
C.It is translated by NAT before the ACL is checked.
D.It is converted to HTTPS automatically.
AnswerB

The HTTP packet, utilising TCP port 80, does not match the first ACL entry, which specifically permits TCP traffic only for destination port 443. It also fails to match the second entry, which permits ICMP traffic. As the packet does not match any explicit `permit` statement within ACL 101, it is processed by the implicit `deny ip any any` that exists at the end of every Cisco access control list. This mechanism ensures the HTTP packet is denied.

Why this answer

HTTP uses TCP port 80, not 443. Because the ACL does not include a permit for that traffic, it is dropped by the implicit deny at the end of the ACL. The ICMP entry is irrelevant because the packet is TCP.

Exam trap

Be careful not to confuse TCP with ICMP or overlook the specific port numbers in ACL entries.

Why the other options are wrong

A

This option is wrong because the ACL only permits TCP traffic on port 443 and ICMP traffic, so an HTTP packet (port 80) from the specified source would be denied by the implicit deny rule at the end of the ACL.

C

This option is wrong because NAT does not occur before ACL evaluation; the ACL is applied directly to the packet as it arrives at the interface. Therefore, the HTTP packet is evaluated against the ACL without any translation taking place.

D

This option is wrong because the ACL does not automatically convert HTTP traffic to HTTPS; it only permits or denies traffic based on the defined rules. The packet from 10.10.10.25 is not permitted by the ACL since it is not targeting port 443.

When would these options actually be correct?

A

In a different scenario where the ACL allowed all traffic from the source subnet (e.g., 'access-list 101 permit ip 10.10.10.0 0.0.0.255 any'), then an HTTP packet from 10.10.10.25 would be permitted, making this option correct.

C

In a different scenario where the question specifies that NAT is configured on the router and the ACL is applied after NAT processing, an HTTP packet could be translated to a different address before being evaluated by the ACL. In this case, the packet might be permitted or denied based on the translated address.

D

In a different scenario, if the question stated that the network device has a feature that automatically upgrades HTTP traffic to HTTPS based on specific configurations, then this option could be correct. For example, if the device was configured to enforce secure connections for all HTTP traffic, the packet could be converted to HTTPS before being processed.

Why candidates pick the wrong answer

A

Candidates may choose this option because they might misinterpret the ACL's source address as sufficient for permitting all types of traffic, overlooking the specific port restrictions.

C

Candidates may find this option tempting because they might confuse the order of operations in packet processing, thinking that NAT would modify the packet before ACL evaluation, which is a common misconception in networking.

D

Candidates may choose this option due to a common understanding that many modern networks implement security features that automatically upgrade HTTP to HTTPS, leading to confusion about the capabilities of ACLs in this context.

988
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure a Cisco switch as a DHCP relay agent with DHCP snooping, where the DHCP server is located on a remote router.

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

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

Why this order

First, the DHCP server must be properly configured on the router. Next, DHCP snooping is enabled globally on the switch to protect against rogue servers. Then, the specific client VLANs must be added to the snooping database.

After that, the uplink interface to the DHCP server must be trusted to allow legitimate server responses. Finally, the ip helper-address command is placed on the client's SVI to forward DHCP broadcasts to the remote server.

989
PBQhard

You are connected to R1 via console. R1 connects two networks: GigabitEthernet0/0 (10.0.0.1/30) to the ISP, and GigabitEthernet0/1 (172.16.1.1/24) to an internal network. The internal hosts (172.16.1.0/24) need to communicate with a server at 10.0.0.2 (ISP side) using a static NAT mapping. Configure static NAT so that internal host 172.16.1.100 is mapped to public IP 10.0.0.3 (which is not assigned to any interface; assume ISP routes 10.0.0.3 to R1). Also configure a static route to reach 10.0.0.3 via the ISP router (next-hop 10.0.0.2).

Network Topology
G0/1172.16.1.1/24172.16.1.100G0/010.0.0.1/30HostLANR1ISPServer (10.0.0.2,

Hints

  • Static NAT uses 'ip nat inside source static' mapping private to public.
  • Designate inside and outside interfaces correctly.
  • A static route is needed for the public IP because it is not directly connected.
A.ip nat inside source static 172.16.1.100 10.0.0.3 interface GigabitEthernet0/0 ip nat outside interface GigabitEthernet0/1 ip nat inside ip route 10.0.0.3 255.255.255.255 10.0.0.2
B.ip nat inside source static 10.0.0.3 172.16.1.100 interface GigabitEthernet0/0 ip nat inside interface GigabitEthernet0/1 ip nat outside ip route 10.0.0.3 255.255.255.255 10.0.0.2
C.ip nat inside source static 172.16.1.100 10.0.0.3 interface GigabitEthernet0/0 ip nat inside interface GigabitEthernet0/1 ip nat outside ip route 10.0.0.3 255.255.255.255 10.0.0.2
D.ip nat outside source static 172.16.1.100 10.0.0.3 interface GigabitEthernet0/0 ip nat outside interface GigabitEthernet0/1 ip nat inside ip route 10.0.0.3 255.255.255.255 10.0.0.2
AnswerA
solution
! R1
ip nat inside source static 172.16.1.100 10.0.0.3
interface GigabitEthernet0/1
ip nat inside
interface GigabitEthernet0/0
ip nat outside
ip route 10.0.0.3 255.255.255.255 10.0.0.2

Why this answer

Static NAT provides a one-to-one mapping between a private and public IP. The inside/outside interface designations are critical for NAT to function. The static route ensures that return traffic to 10.0.0.3 is routed via the ISP.

Exam trap

Be careful with the order of addresses in the static NAT command: inside local (private) first, then inside global (public). Also, remember that the inside interface is the one facing your internal network, and the outside interface faces the external network. The static route is needed for the public IP that is not directly connected.

Why the other options are wrong

B

The static NAT command syntax is 'ip nat inside source static [inside-local] [inside-global]'. Here, the inside local (private) should be 172.16.1.100 and inside global (public) should be 10.0.0.3. Also, the inside interface is the one facing the internal network (G0/1) and outside is facing the ISP (G0/0).

C

NAT requires that the interface facing the internal network be marked as 'ip nat inside' and the interface facing the external network be marked as 'ip nat outside'. Here, G0/0 connects to the ISP (outside) and G0/1 connects to the internal network (inside).

D

The command 'ip nat outside source static' translates the source address of packets arriving on the outside interface. For translating internal host addresses to a public IP, 'ip nat inside source static' must be used.

Why candidates pick the wrong answer

B

Candidates might confuse the order of addresses in the static NAT command or think that the outside interface should be the one with the public IP.

C

Candidates might think that the interface with the public IP should be inside, or they may misread the topology.

D

Candidates might confuse inside and outside source NAT, or think that because the public IP is on the outside, the command should be 'outside source'.

990
MCQhard

A network engineer notices that traffic from the router to server 192.168.10.5 is being sent over a slow backup link, even though the primary high-speed link is up. The routing table has an OSPF route for 192.168.10.0/24 via the primary link and a static host route to 192.168.10.5/32 via the backup link. Why is the backup link used for traffic to the server?

A.The static route has an administrative distance of 1, which is lower than OSPF's 110, so it is always preferred.
B.The router is load-balancing between the two routes, and traffic is being hashed to the backup link for this particular flow.
C.The OSPF route is not installed in the routing table because the static route has a better AD.
D.The static /32 route is a more specific match than the OSPF /24 route, so it is selected regardless of administrative distance.
AnswerD

The router selects the static /32 route because it offers the longest prefix match for destination 192.168.10.5. Even though OSPF has a higher administrative distance, prefix length is evaluated first in the forwarding decision. The /32 route exactly matches the destination, whereas the /24 route only matches the general subnet, so the more specific route is always chosen.

Why this answer

The router uses the most specific matching route in the routing table to forward traffic. The static host route to 192.168.10.5/32 has a longer prefix length (32 bits) than the OSPF route for 192.168.10.0/24 (24 bits), making it a more specific match. Even though OSPF has a higher administrative distance, the longest prefix match rule takes precedence over administrative distance when both routes are present in the routing table.

Exam trap

Cisco often tests the misconception that administrative distance is the sole factor in route selection, when in fact the longest prefix match rule is evaluated first and takes priority over AD for any routes that are already in the routing table.

Why the other options are wrong

A

Administrative distance is only compared when two routes have the same prefix length. Here, the /32 route has a longer prefix, so it is chosen first.

B

Load balancing requires routes with identical prefix lengths and metrics. The /32 and /24 routes are treated as different destinations.

C

AD is only compared when routes have the exact same prefix length. The routing table can hold multiple overlapping routes as long as they differ in prefix length.

991
MCQhard

An OSPF-enabled router has two paths to the same destination network, and both paths have the same OSPF cost. What is the most likely default behavior?

A.Install both routes and use equal-cost multipath forwarding
B.Discard both routes because OSPF cannot handle duplicates
C.Always keep only the route learned first
D.Replace both routes with a default route
AnswerA

OSPF is a link-state protocol that computes the shortest path tree using Dijkstra's algorithm, and when two or more paths to a destination have identical metrics, it intentionally installs them all as equal-cost multipath routes. These parallel next hops are placed in the routing table, and Cisco IOS uses CEF to load-balance traffic across them, maximizing bandwidth utilization and providing fast failover if one link goes down.

Why this answer

When OSPF learns two equally good paths to the same destination, the router can install both and perform equal-cost multipath forwarding. In plain language, the router does not have to throw one away simply because there are two valid answers. If the routes are truly equal from OSPF’s perspective, it can use both paths to improve resilience and share traffic.

This is a classic routing behavior question because many candidates assume the router must always choose only one best path. In reality, equal-cost multipath is a normal feature in many routing environments. The key is that the paths must be equally good according to the protocol’s metric logic.

Exam trap

A frequent exam trap is believing that OSPF must select only one best route when multiple paths have the same cost. Many candidates mistakenly think OSPF discards duplicates or keeps only the first learned route. This misunderstanding leads to incorrect answers suggesting route discarding or default route replacement.

The trap arises because some routing protocols or older implementations do not support equal-cost multipath. However, OSPF explicitly supports installing multiple equal-cost routes to improve load balancing and fault tolerance, so assuming otherwise causes errors in exam scenarios.

Why the other options are wrong

B

Incorrect because OSPF can handle multiple equal-cost routes and does not discard them; it uses all equal-cost paths to improve traffic distribution.

C

Incorrect since OSPF does not keep only the first learned route when multiple equal-cost paths exist; it installs all such routes for load balancing.

D

Incorrect because OSPF does not replace multiple valid equal-cost routes with a default route; default routes are used only when no specific routes exist.

When would these options actually be correct?

B

In a hypothetical exam scenario where the question specifies that OSPF is configured to only allow unique routes and duplicates are filtered out, option B would be correct. For example, if the question states that 'OSPF is configured with a unique route filter,' then discarding duplicates would be the expected behavior.

C

In a different scenario where a routing protocol only allows a single route to a destination, such as a legacy protocol that does not support multipath routing, the question might ask what happens when two routes are learned, leading to the correct answer being to keep only the first learned route.

D

In a different scenario, if the question specified that OSPF was configured to use a default route for all traffic due to specific routing policies or if the network was designed to only allow a default route for redundancy, then this option could be correct.

Why candidates pick the wrong answer

B

Candidates might choose this option due to a misunderstanding of OSPF's capabilities, thinking that it cannot manage multiple paths to the same destination, leading to the assumption that duplicates must be discarded.

C

Candidates may find this option tempting due to a misunderstanding of OSPF's capabilities, mistakenly believing that it cannot handle multiple routes to the same destination, leading them to choose the option that suggests discarding duplicates.

D

Candidates might choose this option due to a misunderstanding of OSPF's behavior with multiple routes, confusing it with other routing protocols that may discard routes in favor of a default route under certain conditions.

992
MCQhard

Refer to the exhibit. An administrator has configured PAT for internal hosts to access the internet, but users report that they cannot reach external websites. The administrator suspects a NAT issue and runs the show ip nat statistics command. What is the most likely cause of the problem?

A.The NAT overload pool is incorrectly configured with the inside interface Gi0/1 instead of the outside interface Gi0/0.
B.The access-list 1 used in the NAT statement is not matching any traffic.
C.CEF switching is disabled, causing all packets to be punted to the process level and NAT to fail.
D.The maximum number of NAT translations has been reached, causing new translations to be denied.
AnswerA

The ip nat inside source list 1 interface GigabitEthernet0/1 overload statement binds the overload pool to Gi0/1, which is an inside interface per the interface commands. Since NAT overload must use the outside interface's address as the public source address, this misconfiguration prevents any valid translation from being built. The dynamic mapping line clearly shows the wrong interface, making this the definitive root cause of the misses.

Why this answer

The show ip nat statistics output likely shows that the NAT overload pool is referencing the inside interface (Gi0/1) instead of the outside interface (Gi0/0). For PAT (overload) to work, the router must translate the source IP of internal traffic to the IP address of the outside interface (Gi0/0) that connects to the internet. If the pool incorrectly uses the inside interface IP, the translated packets will have a source address that is not routable on the external network, causing connectivity failure.

Exam trap

Cisco often tests the distinction between inside and outside interface configuration in NAT, where candidates may overlook that the overload pool must reference the outside interface (Gi0/0) rather than the inside interface (Gi0/1) for internet-bound traffic.

Why the other options are wrong

B

Candidates may focus on Hits: 0 and Misses: 15042 as typical of an ACL issue, but the explicit interface binding in the dynamic mapping is the direct evidence of misconfiguration.

C

The high CEF Punted count mirrors the misses, leading some to believe CEF is the problem, but the exhibit does not indicate CEF is disabled.

D

Candidates might assume that a high miss count reflects a full translation table, but the total active translations show 0.

993
MCQhard

Which command output would be the best next step to verify whether the port-channel is operational after configuration changes?

A.show etherchannel summary
B.show ip ospf neighbor
C.show ip route
D.show access-lists
AnswerA

This command displays the EtherChannel bundle status, including the port-channel interface, member ports, and their state (e.g., LACP, PAgP, or static). It directly shows whether the port channel is up and which physical interfaces are bundled, making it the best next step to confirm EtherChannel operation.

Why this answer

The best next step is to check EtherChannel status directly. In practical terms, after fixing the member-link configuration, the quickest verification is to inspect the summary output that shows whether the bundle exists and whether the member ports are actively participating. That is more direct than checking unrelated switching or routing tables.

This is a simulation-style 'what do you verify next' question, which is important for realistic CCNA prep.

Exam trap

Avoid confusing general interface or trunk status with specific EtherChannel status. Always use the command that directly addresses the feature in question.

Why the other options are wrong

B

The command 'show ip ospf neighbor' is used to display OSPF neighbor relationships, which is not directly related to verifying the operational status of a port-channel. This command would not provide information about the port-channel configuration or status.

C

The command 'show ip route' is used to display the routing table of a device, which does not provide information about the operational status of a port-channel after configuration changes.

D

The command 'show access-lists' is not relevant for verifying the operational status of a port-channel; it focuses on access control lists rather than link aggregation status.

When would these options actually be correct?

B

In a different scenario where the question asks about verifying OSPF neighbor relationships after configuring OSPF on a router, 'show ip ospf neighbor' would be the correct command to check if OSPF is functioning properly and neighbors are established.

C

In a scenario where the question asks for verification of routing paths and connectivity issues, 'show ip route' would be the correct command to determine if routes are correctly established and if traffic can be forwarded through the configured interfaces.

D

In a different exam scenario where the question asks about troubleshooting traffic filtering or security policies, 'show access-lists' would be the correct command to verify which traffic is permitted or denied based on configured access lists.

Why candidates pick the wrong answer

B

Candidates may choose this option because they associate OSPF with network connectivity and assume that verifying OSPF neighbors could indirectly indicate the status of the port-channel, especially if they are not fully aware of the specific commands for EtherChannel verification.

C

Candidates might choose this option because they associate port-channel functionality with routing, thinking that verifying the routing table could indirectly confirm connectivity through the port-channel.

D

Candidates may choose this option because they associate access lists with traffic management and might mistakenly believe that verifying access lists is part of checking overall link functionality.

994
MCQmedium

An API call returns HTTP status code 401. What does that usually mean?

A.The resource was moved permanently
B.The request was successful but no content was returned
C.Authentication is required or the credentials are invalid
D.The server cannot parse JSON
AnswerC

HTTP 401 Unauthorized is specifically the status code that signals a failure to authenticate: either no credentials were supplied in the request, or the provided credentials (e.g., API key, token, username/password) were invalid or expired. The server sends a 401 to force the client to re-authenticate with valid credentials before the requested API resource can be accessed. It is not a permission-denied error like 403, but strictly an authentication error.

Why this answer

A 401 response means the request lacks valid authentication credentials. The token may be missing, expired, or invalid.

Exam trap

A frequent exam trap is confusing the 401 Unauthorized status code with other HTTP errors such as 403 Forbidden or 400 Bad Request. Candidates might incorrectly assume a 401 means the server cannot parse the request or that the resource was moved, which are actually indicated by 400 and 301 status codes respectively. This misunderstanding leads to incorrect troubleshooting steps in automation scenarios.

Remember, 401 always points to missing or invalid authentication credentials, not to resource relocation or malformed requests.

Why the other options are wrong

A

Option A is incorrect because a 301 status code indicates that the requested resource has been moved permanently to a new URL, not an authentication issue. Confusing 301 with 401 can lead to misdiagnosing API errors.

B

Option B is incorrect since a 204 status code means the request was successful but no content was returned. It does not indicate any authentication problem, unlike 401 which specifically relates to authorization failures.

D

Option D is incorrect because a server's inability to parse JSON usually results in a 400 Bad Request error, not a 401 Unauthorized. The 401 code is strictly about authentication, not parsing or syntax errors.

When would these options actually be correct?

A

In a question asking about the meaning of HTTP status code 301, such as 'What does HTTP status code 301 indicate when returned by a server?', option A would be correct as it accurately describes the permanent redirection of a resource.

B

If the question asked about an HTTP status code that indicates a successful request with no content returned, such as 204 No Content, then option B would be correct. This would involve a scenario where the API successfully processes a request but has no data to return.

D

If the question were about a scenario where a server received a request with malformed JSON data in the body and could not process it, then a status code indicating a parsing error, such as 400 Bad Request, would be appropriate. In that context, option D could be correct.

Why candidates pick the wrong answer

A

Candidates may confuse HTTP status codes and their meanings, leading them to mistakenly associate 401 with resource movement due to a lack of familiarity with the specific codes and their definitions.

B

Candidates may confuse the 401 status code with other success-related codes, leading them to mistakenly believe that a successful request could yield no content, especially if they are not fully familiar with the nuances of HTTP status codes.

D

Candidates might confuse the implications of different HTTP status codes and associate 401 with general request failures, leading them to mistakenly select an option related to parsing errors.

995
MCQhard

Exhibit: R1 has a default route pointing to 10.1.1.2. Users lose internet access when that next hop fails, even though a floating static backup exists. Why is the backup not installed?

A.The backup route has a higher administrative distance and therefore is never considered
B.The primary static route remains installed because there is no tracking to remove it
C.Floating statics work only with dynamic routing protocols
D.The backup route must use the same next hop as the primary route
AnswerB

In the absence of IP SLA tracking or a similar object-tracking mechanism, the router continues to install the primary static route even after its next hop becomes unreachable. Static routes do not have built-in liveness detection, so the route remains in the routing table and traffic is sent toward the dead 10.1.1.2 next hop. The floating backup route, having a higher administrative distance, is never selected because the lower-AD primary is still present.

Why this answer

A floating static route is used only when the primary route disappears from the routing table. If the primary interface stays up and the next hop becomes unreachable beyond that segment, the route can remain installed unless tracking or another detection mechanism removes it.

Exam trap

A frequent exam trap is believing that a floating static route activates automatically when the primary next hop fails. Many candidates overlook that the router only removes the primary static route if it detects the route is invalid or unreachable. Without IP SLA or object tracking, the router sees the primary route as valid because the interface remains up, so it never installs the backup route.

This misunderstanding causes confusion about why users lose internet access despite a floating static backup being configured. The exam tests your knowledge of how Cisco routers handle administrative distance and route tracking, not just static route configuration.

Why the other options are wrong

A

Option A incorrectly states that the backup route is never considered because of its higher administrative distance. In reality, the higher AD is intentional to make it a floating static route that only activates when the primary route is removed.

C

Option C is incorrect because floating static routes do not require dynamic routing protocols to work. They are static routes with adjusted administrative distance and can function independently.

D

Option D is wrong because backup routes typically use a different next hop to provide true redundancy. Using the same next hop would not protect against next-hop failure.

When would these options actually be correct?

A

In a different scenario, if the question stated that the backup route had an administrative distance of 20 while the primary route had an administrative distance of 10, then option A would be correct, as the backup would never be considered due to the higher administrative distance.

C

In a question where the configuration of a router includes both static and dynamic routing protocols, and the scenario specifies that floating static routes are not being utilized due to the presence of a dynamic routing protocol, this option would be correct. For example, if the question stated that a floating static route was not being considered because a dynamic protocol was overriding it, then this option would apply.

D

In a scenario where a question specifies that both the primary and backup static routes must have the same next hop for redundancy to be valid, this option would be correct. For example, if the exam states that both routes are required to point to the same next hop for the floating static to take effect.

Why candidates pick the wrong answer

A

Candidates may choose this option because they understand that administrative distance affects route selection, leading them to mistakenly believe that a higher distance always prevents a route from being used, without considering the specific context of the question.

C

Candidates may choose this option due to a misunderstanding of how floating static routes interact with dynamic routing protocols, leading them to believe that such routes are incompatible with dynamic routing configurations.

D

Candidates may choose this option due to a misunderstanding of how floating static routes function, mistakenly believing that they require identical next hops to be valid. This misconception can stem from confusion with dynamic routing protocols that often have stricter requirements.

996
MCQmedium

A host with IP address 172.16.50.130 and mask 255.255.255.192 needs to reach 172.16.50.190. Which statement is correct?

A.The destination is on a remote subnet, so the host must send to the default gateway.
B.The destination is local, so the host ARPs for 172.16.50.190 directly.
C.The destination is a directed broadcast for the local subnet.
D.The source host is using the network address of the subnet.
AnswerB

With a /26 mask, 172.16.50.130 and 172.16.50.190 both reside in the 172.16.50.128/26 subnet, whose broadcast address is .191. Because the destination is on the same data-link segment, the host does not involve the default gateway; instead, it sends an ARP request for .190 and forwards the frame directly to that resolved MAC address.

Why this answer

Both 172.16.50.130 and 172.16.50.190 fall within the 172.16.50.128/26 subnet (range .128 to .191). Therefore, the destination is local, and the host will use ARP to resolve the destination IP directly. Option A is incorrect because the destination is not remote.

Option C is incorrect because the directed broadcast address for this subnet is 172.16.50.191, not .190. Option D is incorrect because 172.16.50.130 is a valid host address, not the network address (.128).

Exam trap

Be cautious of subnet mask calculations and ensure you understand the IP range it defines.

Why the other options are wrong

A

The destination is local to the same /26 subnet, so it does not need to go through the default gateway.

C

The subnet directed broadcast is 172.16.50.191 (the last address in the .128/26 range), not .190.

D

The source address 172.16.50.130 is a usable host address, not the network address of the subnet.

When would these options actually be correct?

A

In a different scenario where the host's IP address is 172.16.50.130 with a subnet mask of 255.255.255.128, and the destination IP is 172.16.51.190, the destination would be on a different subnet, requiring the host to send packets to the default gateway.

C

If the question stated that the host's subnet mask was 255.255.255.128, making the subnet range 172.16.50.128 to 172.16.50.255, then 172.16.50.190 would be a directed broadcast address for the subnet 172.16.50.128/25, making this option correct.

D

In a different scenario where the question specifies that the host's IP address is 172.16.50.128 with the same subnet mask, option D would be correct, as 172.16.50.128 is indeed the network address of the subnet 172.16.50.128/26.

Why candidates pick the wrong answer

A

Candidates may choose this option due to a misunderstanding of subnetting, leading them to incorrectly assume that any IP outside the first three octets must be on a different subnet.

C

Candidates may choose this option due to confusion about subnetting and broadcast addresses, leading them to incorrectly assume that any address outside the host's IP is a broadcast address.

D

Candidates may be tempted by this option due to a misunderstanding of subnetting concepts, leading them to incorrectly identify valid host addresses as network addresses.

997
Multi-Selectmedium

Which TWO statements about fiber optic cables and SFP/SFP+ transceivers are correct?

Select 2 answers
A.Single-mode fiber (SMF) uses a smaller core diameter than multimode fiber (MMF).
B.Multimode fiber supports longer distances than single-mode fiber.
C.SFP+ transceivers are commonly used for 10 Gigabit Ethernet connections.
D.SFP modules support data rates up to 10 Gbps.
E.Multimode fiber typically has a core diameter of 9 microns.
AnswersA, C

Single-mode fiber is engineered with a much smaller core—typically 9 microns—compared to multimode fiber's 50- or 62.5-micron core. This narrow core forces light to travel in a single straight path, virtually eliminating modal dispersion. As a result, SMF supports longer transmission distances and higher bandwidth than MMF, which is why it is used for long-haul and carrier-grade links.

Why this answer

Single-mode fiber (SMF) has a core diameter of about 9 microns, which is smaller than multimode fiber (MMF) cores of 50 or 62.5 microns. Option C is correct because SFP+ transceivers are indeed designed for 10 Gigabit Ethernet, supporting data rates up to 10 Gbps. Option B is wrong because multimode fiber is used for shorter distances (up to a few hundred meters) due to higher modal dispersion, while single-mode fiber supports longer distances (tens of kilometers).

Option D is wrong because standard SFP modules support up to 1 Gbps, not 10 Gbps; SFP+ modules handle 10 Gbps. Option E is wrong because a 9-micron core is characteristic of single-mode fiber, not multimode fiber.

Exam trap

Cisco often tests the misconception that 'multimode' implies longer reach due to its name, but the opposite is true because of modal dispersion limits.

Why the other options are wrong

B

Single-mode fiber supports much longer distances (up to 10 km or more) than multimode fiber (typically up to 550 m for 10 Gbps).

D

SFP is limited to 1 Gbps; for 10 Gbps, SFP+ is required.

E

This describes single-mode fiber, not multimode.

998
MCQhard

A subnet must support at least 62 usable IPv4 host addresses. Which prefix is the most restrictive that meets the requirement?

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

This is correct because /26 provides 62 usable host addresses.

Why this answer

A /26 is the smallest valid answer. In practical terms, a /26 provides 64 total addresses and 62 usable host addresses after subtracting the network and broadcast addresses. A /27 would be too small because it provides only 30 usable hosts.

This is a standard minimum-prefix question because it checks whether you can work backward from the host requirement and choose the smallest subnet that fits.

Exam trap

Avoid confusing total addresses with usable ones; remember to subtract network and broadcast addresses.

Why the other options are wrong

A

A /27 subnet provides only 30 usable host addresses (32 total minus 2 for network and broadcast), which does not meet the requirement of at least 62 usable addresses.

C

Option C: /25 provides 126 usable host addresses, which exceeds the requirement of at least 62 usable addresses. However, it is not the smallest prefix that meets the requirement, as /26 suffices with 62 usable addresses.

D

Option D: /24 provides 256 total addresses, with 254 usable, which exceeds the requirement of at least 62 usable addresses. However, it is not the smallest prefix that meets the requirement.

When would these options actually be correct?

A

If the question asked for the smallest subnet that supports at least 30 usable addresses, then /27 would be the correct answer, as it provides exactly 30 usable addresses.

C

In a scenario where a question specifies the need for a subnet that can accommodate at least 126 usable addresses, option C: /25 would be the correct choice, as it meets the requirement without exceeding it unnecessarily.

D

In a different scenario where the question asks for a subnet that can support a larger number of hosts, such as at least 200 usable addresses, /24 would be the correct answer as it provides 254 usable addresses.

Why candidates pick the wrong answer

A

Candidates may confuse the number of usable addresses with the total number of addresses in the subnet, leading them to mistakenly believe that /27 could meet a lower requirement than specified.

C

Candidates may choose option C because they recognize that /25 offers a substantial number of addresses, leading them to mistakenly believe it is the smallest prefix that meets the requirement without considering the specific need for minimality.

D

Candidates may choose /24 because it is a common subnet size that many are familiar with, leading them to assume it is a safe choice for any requirement without calculating the specific needs.

999
MCQmedium

A network administrator is configuring a new Windows 10 workstation on a network that uses DHCP. The workstation receives an IPv4 address of 169.254.10.20 with a subnet mask of 255.255.0.0 and no default gateway. The user cannot access the internet or other subnets. What is the most likely cause of this issue?

A.The workstation has a duplicate IP address conflict.
B.The workstation's DNS server configuration is incorrect.
C.The workstation's subnet mask is misconfigured.
D.The DHCP server is unreachable or not responding.
AnswerD

When a DHCP client fails to receive an IP address from a DHCP server, it self-assigns an APIPA address from the 169.254.0.0/16 range. This explains the observed address and the absence of a default gateway.

Why this answer

The IP address 169.254.10.20 with a /16 subnet mask is an Automatic Private IP Addressing (APIPA) address, which Windows assigns when a DHCP discovery broadcast (DHCPDISCOVER) fails to receive a response from a DHCP server. Without a valid DHCP lease, the workstation has no default gateway, so it cannot communicate outside its local subnet, explaining the lack of internet or inter-subnet access. The most likely cause is that the DHCP server is unreachable or not responding, forcing the client to self-assign an APIPA address.

Exam trap

Cisco often tests the misconception that a 169.254.x.x address indicates a duplicate IP or a subnet mask issue, but the real trap is that APIPA is a direct symptom of DHCP server unavailability, not a configuration error on the client.

Why the other options are wrong

A

Duplicate IP conflicts typically result in a warning but do not cause the system to assign a 169.254.x.x address.

B

DNS issues do not affect IP address assignment via DHCP.

C

The subnet mask is correct for the APIPA range; the problem is the lack of a DHCP server response.

1000
PBQhard

You are connected to SW1. Configure an LACP EtherChannel between SW1 and SW2 using ports GigabitEthernet0/1 and GigabitEthernet0/2. Set the channel-group mode to active on both sides. The port-channel interface should be configured as a trunk allowing VLANs 10, 20, and 30. Initially, the EtherChannel fails to form due to mismatched speed/duplex on one link. Identify and correct the issue, then verify the channel is up and operational.

Network Topology
Gi0/1-Gi0/2Gi0/1-Gi0/2EtherChannelSW1SW2

Hints

  • Check the speed and duplex settings on each member interface.
  • LACP requires all ports in the channel to have identical speed and duplex.
  • Use 'show interfaces status' to quickly see speed/duplex mismatches.
A.Change speed and duplex on Gi0/2 to 1000 and full, then verify with 'show etherchannel summary'.
B.Change the channel-group mode on Gi0/2 to passive, then verify with 'show etherchannel summary'.
C.Change the allowed VLANs on the port-channel to include only VLAN 1, then verify with 'show etherchannel summary'.
D.Change the port-channel interface to access mode, then verify with 'show etherchannel summary'.
AnswerA
solution
! SW1
interface GigabitEthernet0/2
speed 1000
duplex full

Why this answer

The EtherChannel fails because GigabitEthernet0/2 has speed 100 and duplex half, while GigabitEthernet0/1 has speed 1000 and duplex full. LACP requires all member ports to have identical speed and duplex settings. To resolve, change the speed and duplex on Gi0/2 to match Gi0/1: 'speed 1000' and 'duplex full'.

After correction, the channel will bundle. Verify with 'show etherchannel summary' to see both ports in the 'P' (bundled) state.

Exam trap

Do not confuse Layer 1 issues (speed/duplex) with Layer 2 configuration (VLANs, trunking) or LACP mode settings. Always check physical parameters first when an EtherChannel fails to form.

Why the other options are wrong

B

The specific factual error is that LACP modes must be compatible (active-active or active-passive), but the question states both sides are active, so mode is not the issue.

C

The specific factual error is that VLAN settings are irrelevant to the physical bundling of ports in an EtherChannel.

D

The specific factual error is that interface mode is a Layer 2 property unrelated to the physical bundling process.

Why candidates pick the wrong answer

B

Candidates might think that LACP mode mismatch is the cause, especially if they recall that one side must be active and the other passive in some configurations.

C

Candidates might confuse trunk configuration requirements with EtherChannel prerequisites, thinking that VLAN mismatches can prevent channel formation.

D

Candidates might think that trunk mode requires additional configuration that could cause issues, or they might confuse the port-channel interface configuration with the physical port settings.

1001
MCQhard

Users can reach an internal server by IP address but not by hostname. What is the most likely cause?

A.Name resolution is failing even though IP connectivity to the server works.
B.The server must be in the wrong VLAN because IP works.
C.The default gateway is missing on the client.
D.A GRE tunnel is required for hostname access.
AnswerA

This is correct because the symptom points directly to a DNS-related problem.

Why this answer

The strongest explanation is a DNS problem rather than a raw IP connectivity problem. In practical terms, successful access by IP address shows that Layer 3 reachability to the server exists. Failure only when using the hostname strongly suggests name resolution is missing, incorrect, or unavailable.

This is a classic symptom-based troubleshooting question. The network path works, but the naming service does not.

Exam trap

A common exam trap is to confuse IP connectivity problems with DNS resolution issues. Candidates often select options related to VLAN misconfigurations or missing default gateways because they assume network path problems cause hostname failures. However, if users can reach the server by IP address, Layer 3 routing and VLAN membership are correct.

The trap is ignoring the DNS layer, which is responsible for translating hostnames. Misinterpreting this leads to incorrect troubleshooting steps and wrong exam answers.

Why the other options are wrong

B

Incorrect because if the server were in the wrong VLAN, users would not be able to reach it by IP address. Successful IP access proves VLAN membership is correct.

C

Incorrect because a missing default gateway would prevent IP connectivity to the server if it were on a different subnet. Since IP access works, the default gateway is present and functional.

D

Incorrect because GRE tunnels are unrelated to hostname resolution. Hostname access depends on DNS, not tunneling protocols like GRE.

When would these options actually be correct?

B

In a different scenario, if a question asked why a server is unreachable by IP address but reachable by hostname, and the context indicated that VLAN configurations were misapplied, then option B could be correct, suggesting the server is in a different VLAN than the clients.

C

In a different scenario, if a question stated that users cannot access any external resources or internal servers by IP address, and the context indicated that the client is on a different subnet without a configured default gateway, then this option would be correct.

D

In a different question, if the scenario involved a network where hostname resolution required a GRE tunnel due to segmentation across different networks, then this option could be correct. For example, if the question stated that users could access servers in different VLANs only through GRE tunnels, this would validate the need for a GRE tunnel for hostname resolution.

Why candidates pick the wrong answer

B

Candidates might choose this option due to a misunderstanding of VLAN functionality, thinking that if hostname resolution fails, it could be related to VLAN misconfigurations, especially if they have encountered similar issues in practical scenarios.

C

Candidates may choose this option due to a misunderstanding of network fundamentals, believing that a default gateway is essential for any IP communication, leading them to overlook the specific context of the question.

D

Candidates might choose this option because they associate GRE tunnels with complex network configurations and assume that hostname resolution issues could stem from tunneling requirements, especially in environments with multiple VLANs or subnets.

1002
MCQhard

R1 loses its route to 192.168.20.0/24 whenever R2's GigabitEthernet0/0 interface flaps. The network engineer has configured a floating static route with an administrative distance of 200. The OSPF route has an AD of 110. After R2's G0/0 interface recovers, the floating static route appears in the routing table instead of the OSPF route. What should the technician do next?

A.Adjust the administrative distance of the floating static route to 201.
B.Check the carrier delay timers on R2's GigabitEthernet0/0 interface.
C.Clear the IP routing table and reset the OSPF process on R1.
D.Verify that the MTU on R1 and R2's GigabitEthernet0/0 interfaces match.
AnswerB

A high carrier-delay (interface debounce) timer can keep the link down for too long after a flap, delaying OSPF neighbor formation. While the interface remains down, the floating static route stays in the table. Checking this timer is a logical, non‑destructive next step.

Why this answer

When R2's GigabitEthernet0/0 interface flaps, the OSPF neighbor relationship goes down, causing R1 to lose the OSPF route. The floating static route (AD 200) then takes over. After the interface recovers, OSPF should re-establish and install its route (AD 110) over the static route.

However, if the carrier delay timer on R2's interface is set too high, the interface may not come up quickly enough for OSPF to re-converge before the floating static route is already installed and preferred. Checking and adjusting the carrier delay timer ensures that the interface state change is propagated promptly, allowing OSPF to re-establish and replace the static route.

Exam trap

Cisco often tests the concept that a floating static route can persist after a link recovers due to interface timers (carrier delay) delaying OSPF convergence, leading candidates to mistakenly focus on administrative distance adjustments or clearing the routing table.

Why the other options are wrong

A

Misunderstanding of route preference: a higher AD value does not keep a floating static installed when a better OSPF route becomes available.

C

Troubleshooting should follow the OSI model bottom‑up; immediately resetting processes skips basic interface‑level verification.

D

It targets a different root cause (OSPF adjacency failure due to MTU) that would manifest constantly, not only after interface recovery.

1003
MCQhard

A network requires at least 500 usable host addresses in one IPv4 subnet. Which prefix is the smallest that meets the requirement?

A./24
B./23
C./22
D./25
AnswerB

This is correct because a /23 provides 510 usable host addresses.

Why this answer

To support at least 500 usable hosts, the subnet must provide at least 502 total addresses when the network and broadcast addresses are included. In plain language, that means 256 total addresses in a /24 are not enough, so the next larger power-of-two block is required. A /23 provides 512 total addresses and 510 usable host addresses, which satisfies the requirement while remaining the smallest valid option.

This is a classic host-capacity question because it checks whether you can work backward from a required usable host count and choose the smallest prefix that works without wasting more space than necessary.

Exam trap

Be careful not to confuse the total number of addresses with the number of usable host addresses. Remember to account for network and broadcast addresses.

Why the other options are wrong

A

A /24 subnet provides only 256 usable host addresses, which is insufficient for the requirement of at least 500 usable addresses. Therefore, it cannot be the correct answer.

C

Option C (/22) provides 1022 usable addresses, which exceeds the requirement of 500 usable addresses, but it is not the smallest prefix that meets the requirement. The correct answer is /23, which provides exactly 510 usable addresses.

D

Option D: /25 provides only 126 usable host addresses, which is insufficient for a requirement of at least 500 usable addresses in a single subnet.

When would these options actually be correct?

A

If the question specified a requirement for a network with fewer than 256 usable host addresses, such as needing a subnet for a small office or a specific application, then a /24 would be the correct choice.

C

In a scenario where the question asks for a subnet that can accommodate at least 1000 usable addresses, option C (/22) would be correct, as it provides 1022 usable addresses, satisfying the requirement.

D

In a scenario where a question asks for the smallest subnet that can accommodate 126 usable hosts, option D: /25 would be the correct answer, as it meets the requirement exactly.

Why candidates pick the wrong answer

A

Candidates may mistakenly believe that a /24 subnet is sufficient due to familiarity with common subnet sizes, leading them to overlook the specific requirement for at least 500 usable addresses.

C

Candidates may choose option C because they recognize that it meets the minimum address requirement, but they overlook the need for the smallest prefix, leading to confusion between sufficient and optimal solutions.

D

Candidates may choose /25 due to a misunderstanding of subnetting, thinking that smaller prefixes can still accommodate more hosts than they actually can, or they may confuse the number of hosts with the prefix length.

1004
Multi-Selecteasy

An engineer is reviewing transport protocols for a new application. Which two characteristics are associated with TCP rather than UDP?

Select 2 answers
A.Connection establishment before data transfer
B.Best-effort delivery with no acknowledgments
C.Sequencing and retransmission support
D.Lower overhead because no session state is tracked
AnswersA, C

TCP performs a three-way handshake (SYN, SYN-ACK, ACK) to establish a connection before any application data is transmitted, ensuring both hosts are synchronized and ready. This connection-oriented process negotiates initial sequence numbers and window sizes, providing a reliable session foundation. UDP, in contrast, sends datagrams immediately without any setup, so this behavior is uniquely characteristic of TCP and therefore correct.

Why this answer

TCP is connection-oriented and provides reliability with sequence numbers, acknowledgments, and retransmissions. UDP is lighter but does not guarantee delivery.

Exam trap

Don't confuse reliability with speed; TCP's reliability features add overhead, making it slower than UDP.

Why the other options are wrong

B

Best-effort delivery with no acknowledgments is a characteristic of UDP, not TCP. TCP provides reliable delivery with acknowledgments and retransmission.

D

TCP has higher overhead because it maintains session state (sequence numbers, acknowledgments, etc.), while UDP is stateless and has lower overhead. The question asks for characteristics of TCP, not UDP.

When would these options actually be correct?

B

This option would be correct in a question asking for characteristics of UDP, such as 'Which two characteristics are associated with UDP rather than TCP?'

D

This option would be correct if the question were 'Which two characteristics are associated with UDP rather than TCP?' or 'Which characteristic describes UDP compared to TCP?'

Why candidates pick the wrong answer

B

Candidates may confuse the terms 'best-effort' with TCP's reliable delivery, or they might think TCP also uses best-effort at the network layer, ignoring transport layer reliability.

D

Candidates may confuse the characteristics of TCP and UDP, or they might think 'lower overhead' is a general advantage that could apply to TCP in some contexts, but TCP's overhead is inherently higher due to its reliability features.

1005
MCQhard

A packet is larger than the outgoing interface MTU and the DF bit is set in the IPv4 header. What should the router do?

A.Fragment the packet anyway and forward all fragments.
B.Drop the packet and send an ICMP message indicating fragmentation was needed.
C.Clear the DF bit and then fragment the packet.
D.Encapsulate the packet in GRE automatically.
AnswerB

When the DF bit is set and the packet exceeds the outgoing interface MTU, the router cannot fragment it without violating the IPv4 specification. The only compliant action is to discard the packet and return an ICMP Type 3, Code 4 message carrying the MTU of the next-hop link. This error informs the source so it can reduce its segment size, which is the basis of Path MTU Discovery.

Why this answer

If fragmentation is required but DF is set, the router drops the packet and returns an ICMP unreachable message indicating fragmentation was needed.

Exam trap

A common exam trap is selecting option A, assuming the router will fragment the packet despite the DF bit. Remember, the DF (Don't Fragment) bit explicitly prevents fragmentation. Another trap is option C, thinking the router can clear the DF bit and fragment, which routers do not do.

Option D is unrelated to MTU handling and can mislead if you confuse GRE tunneling with fragmentation behavior.

Why the other options are wrong

A

Incorrect because the DF bit explicitly forbids fragmentation; the router cannot fragment the packet if DF is set.

C

Incorrect because routers do not clear the DF bit to fragment packets; they respect the DF bit as set by the source.

D

Incorrect because GRE encapsulation is unrelated to MTU handling and fragmentation behavior.

When would these options actually be correct?

A

In a different scenario where the DF bit is not set, a question might ask what a router should do when a packet exceeds the MTU. In that case, the router could fragment the packet and forward all fragments without violating protocol rules.

C

In a different scenario where the question specifies that the DF bit is not set, a router could clear the DF bit and fragment the packet to fit the MTU of the outgoing interface. This would be a valid action when fragmentation is permissible.

D

In a different scenario where the question asks about handling packets that need to be tunneled for secure transmission, and the GRE protocol is explicitly mentioned, the correct answer could involve encapsulating packets in GRE regardless of MTU issues, assuming the context allows for such a solution.

Why candidates pick the wrong answer

A

Candidates may choose this option due to a misunderstanding of how fragmentation works in relation to the DF bit, leading them to incorrectly assume that routers can override the DF setting.

C

Candidates may choose this option because they recall that fragmentation is a common network operation and mistakenly believe that routers can modify packet headers to facilitate forwarding, especially under pressure during an exam.

D

Candidates may find this option tempting because GRE is often associated with tunneling and can handle larger packets, leading to confusion about its role in fragmentation scenarios.

1006
PBQhard

You are connected to R1. Configure DHCP server on R1 to assign addresses from 192.168.50.0/24 to hosts on VLAN 50, excluding 192.168.50.1-192.168.50.20, with default-router 192.168.50.1 and DNS server 8.8.8.8. On switch SW1, configure DHCP snooping globally and on VLAN 50, and enable trusted ports on the uplink to R1. Then, a host on VLAN 50 reports it received an incorrect IP address; troubleshoot and fix the issue: the wrong helper-address is configured on SW1, the excluded range is too large, and a rogue DHCP server is present on port Fa0/5.

Hints

  • Check the DHCP snooping configuration first — is it enabled and on the correct VLAN?
  • Look at the helper-address: the DHCP server is on the SVI, not on the point-to-point link.
  • The excluded range on R1 is too large; it should only exclude the first 20 addresses.
A.Enable DHCP snooping globally and on VLAN 50, trust the uplink port to R1, correct the excluded range on R1 to 192.168.50.1-192.168.50.20, and change the helper-address on SW1's G0/1 to 192.168.50.1.
B.Enable DHCP snooping globally and on VLAN 50, trust the uplink port to R1, and change the helper-address on SW1's G0/1 to 10.0.0.1.
C.Enable DHCP snooping globally and on VLAN 50, trust the uplink port to R1, and correct the excluded range on R1 to 192.168.50.1-192.168.50.20.
D.Enable DHCP snooping globally and on VLAN 50, trust the uplink port to R1, and change the helper-address on SW1's G0/1 to 192.168.50.1.
AnswerA
solution
! R1
configure terminal
no ip dhcp excluded-address 192.168.50.1 192.168.50.100
ip dhcp excluded-address 192.168.50.1 192.168.50.20
end
write memory

! SW1
configure terminal
ip dhcp snooping
ip dhcp snooping vlan 50
interface GigabitEthernet0/1
ip dhcp snooping trust
no ip helper-address 10.0.0.1
ip helper-address 192.168.50.1
interface FastEthernet0/5
shutdown
end
write memory

Why this answer

The host received a wrong IP because a rogue DHCP server on Fa0/5 was responding. First, enable DHCP snooping globally with 'ip dhcp snooping' and on VLAN 50 with 'ip dhcp snooping vlan 50'. Then, trust the uplink port to R1 (G0/1) with 'ip dhcp snooping trust'.

Next, fix the excluded range on R1: change it to exclude only the first 20 addresses (192.168.50.1-192.168.50.20) so that hosts can obtain other addresses. Finally, correct the helper-address on SW1's G0/1: change 'ip helper-address 10.0.0.1' to 'ip helper-address 192.168.50.1' because the DHCP server is on the VLAN 50 SVI, not on the point-to-point link.

Exam trap

This question tests your ability to troubleshoot a multi-faceted DHCP issue. Common traps include: (1) forgetting that DHCP snooping must be enabled both globally and per VLAN, (2) assuming the helper-address should be the router's link IP instead of the server's SVI IP, (3) overlooking the excluded range configuration, and (4) thinking that only one of the issues needs to be fixed. Always verify all components: snooping, trust, helper-address, and pool configuration.

Why the other options are wrong

B

The helper-address must be the IP of the DHCP server, which is the SVI address 192.168.50.1, not the link address 10.0.0.1.

C

The helper-address misconfiguration prevents DHCP requests from being forwarded to the correct server, so fixing only the excluded range is insufficient.

D

The excluded range must be corrected to allow hosts to receive addresses from the pool; otherwise, the DHCP server will not assign addresses.

Why candidates pick the wrong answer

B

Candidates might think the helper-address should be the next-hop IP or the IP of the router interface facing the switch.

C

Candidates might focus only on the excluded range issue and overlook the helper-address, especially if they assume the helper-address is correct.

D

Candidates might think that DHCP snooping alone will solve the issue, or they may forget to adjust the excluded range after troubleshooting.

1007
MCQhard

If a host has a valid IP address and subnet mask but no default gateway, what is the most likely result?

A.The host can usually reach only local-subnet destinations and not remote networks.
B.The host cannot use ARP at all.
C.The host automatically joins every subnet in the LAN.
D.The host becomes the default gateway for other devices.
AnswerA

Without a default route, the host's IP stack has no next-hop entry for packets whose destination IPv4 address is outside the host's directly connected subnet. The host will attempt to deliver such packets to the local network only if a matching route exists, but since the destination is off-subnet, no ARP resolution is possible and the packets are discarded. Conversely, destination addresses within the host's configured subnet are considered on-link, so the host uses ARP to resolve their MAC addresses and can communicate with them directly.

Why this answer

The host will normally reach local destinations but fail to reach remote networks. In practical terms, the subnet mask still lets the host identify what is local, but without a default gateway it has no next hop for off-subnet traffic. That means local ARP-based communication can still work, while remote communication usually fails.

This is a core host-configuration concept and a very common certification question. The missing gateway does not break all communication — it breaks off-subnet communication.

Exam trap

A common exam trap is assuming that a host without a default gateway cannot use ARP or communicate at all. This is incorrect because ARP is used for local Layer 2 address resolution and remains functional. Another trap is believing the host automatically joins other subnets or becomes a gateway for others, which does not happen.

The key mistake is confusing local subnet communication with remote network access. The default gateway only affects off-subnet traffic, so the host can still communicate locally but fails to reach remote destinations.

Why the other options are wrong

B

This option is incorrect because ARP is used for local Layer 2 address resolution and remains functional even if the default gateway is missing; the host can still resolve MAC addresses on the local subnet.

C

This option is incorrect because the host’s subnet membership is determined by its IP address and subnet mask, not by the presence or absence of a default gateway; it does not join other subnets automatically.

D

This option is incorrect because a host does not become a default gateway for other devices simply by lacking a configured gateway; routing and gateway roles require explicit configuration on routers.

When would these options actually be correct?

B

In a different question, if it stated that a host was configured with a static IP address but was isolated from the local network (e.g., due to a misconfiguration), then it might be plausible to say that the host cannot use ARP at all because it cannot communicate with any devices to resolve addresses.

C

In a different scenario where the question states that the host is configured with a special network protocol that allows it to bridge multiple subnets without a default gateway, option C could be correct. For example, if the host is part of a virtualized environment that uses overlay networking, it may interact with multiple subnets seamlessly.

D

In a scenario where the question states that a host has been configured with routing capabilities and is set to act as a gateway for other devices, this option would be correct. For example, if the question specifies a router-like setup where a host is assigned a role to route traffic, then it could act as a default gateway.

Why candidates pick the wrong answer

B

Candidates might choose this option due to a misunderstanding of ARP's function, mistakenly believing that a lack of a default gateway entirely disables ARP capabilities, rather than recognizing its local subnet functionality.

C

Candidates may find this option tempting due to a misunderstanding of how network protocols can allow devices to communicate across subnets, leading them to incorrectly assume that a lack of a default gateway means automatic access to all subnets.

D

Candidates may find this option tempting because they might confuse the concept of a host's role in a network with that of a router, leading them to incorrectly assume that any host can serve as a gateway.

1008
MCQeasy

An AP broadcasts the correct SSID, but many clients on one floor experience poor performance while the same SSID works well on another floor. Which category of issue is most strongly suggested first?

A.A radio-frequency or local wireless environment issue on that floor
B.The SSID name must be misspelled only on that floor
C.BGP autonomous system mismatch
D.IPv6 loopback addressing on the clients
AnswerA

The problem is strictly local to that floor while the AP continues to broadcast the correct SSID, which isolates the fault to Layer 1 RF conditions rather than the WLAN configuration. Interference from co-channel neighboring APs, physical obstructions, or RF absorption by building materials can degrade signal-to-noise ratio enough to cause client disconnects or poor throughput even though the beacon remains visible. This matches the symptom of a location-specific environmental issue.

Why this answer

The issue is location-specific, with performance problems only on one floor. This strongly suggests a local radio frequency (RF) or wireless environment issue such as interference, signal attenuation, or channel congestion on that floor. The SSID is correctly broadcast because clients on other floors connect successfully, so option B (misspelling) is not plausible.

Options C and D are unrelated to wireless performance: BGP is a routing protocol not used in basic WLAN deployments, and IPv6 loopback addressing does not affect client connectivity or throughput. Therefore, the most direct and likely first suspect is an RF or environmental issue on that specific floor.

Exam trap

Avoid assuming that SSID issues are always configuration-related; consider environmental factors when performance issues are location-specific.

Why the other options are wrong

B

An SSID misspelling would prevent all clients from seeing the SSID, but since clients on other floors connect successfully, this cannot be the issue.

C

BGP autonomous system mismatch is a routing protocol concept unrelated to wireless LAN performance issues and would not cause performance problems on a single floor.

D

IPv6 loopback addressing is a configuration detail that does not impact wireless client performance or connectivity in a local-area network context.

When would these options actually be correct?

B

In a scenario where a question specifies that clients are unable to connect to the SSID at all on one floor while it works perfectly on another, and the problem is attributed to a typo in the SSID configuration on that specific floor, then this option would be correct.

C

If the exam question described a scenario where multiple networks are interconnected and clients on one floor are unable to reach external resources due to routing issues, a BGP autonomous system mismatch could be the correct answer, indicating a problem with inter-network routing.

D

In a different question scenario where clients are unable to connect to the network at all, and the question specifies that the issue is related to IPv6 configurations, a focus on loopback addressing could be correct if the loopback address is incorrectly configured, preventing proper communication over the network.

Why candidates pick the wrong answer

B

Candidates may choose this option due to a common misconception that connectivity issues often stem from simple configuration errors, such as misspellings, rather than more complex environmental factors.

C

Candidates may confuse the symptoms of poor performance with broader network issues, leading them to incorrectly associate routing protocols like BGP with local connectivity problems, especially if they lack familiarity with wireless troubleshooting.

D

Candidates may choose this option due to a misunderstanding of how IPv6 addressing works, mistakenly believing that loopback addressing could impact client connectivity in a wireless environment, especially if they are familiar with IPv4 addressing concepts.

1009
MCQhard

Why might a controller return interface information as a JSON array instead of a single JSON object?

A.Because an array is the appropriate structure for an ordered list of multiple interface entries.
B.Because a JSON object cannot contain fields.
C.Because arrays are used only for IPv6 interfaces.
D.Because arrays eliminate the need for API authentication.
AnswerA

In JSON, an array is an ordered collection of values, making it the correct structure to represent multiple interface entries where each entry follows a sequential order and may repeat. A controller returning interface information as an array allows consumers to iterate over the list predictably, with each element being a distinct interface object. This mirrors the data model for a list of interfaces rather than a single scalar value.

Why this answer

A controller might return interface information as a JSON array because there are multiple interface records to present as a list. In practical terms, an array is the correct structure when the response includes several similar items, such as multiple interfaces, routes, or VLANs. Each element in the array can then be its own object with fields like name, status, or IP address.

This is a data-structure recognition question. It is not about networking behavior directly, but about understanding how automation systems represent repeated information.

Exam trap

A frequent exam trap is believing that JSON objects cannot contain multiple fields or that arrays are only used for specific interface types like IPv6. This misunderstanding leads to incorrect assumptions about data representation in network automation. Candidates might also confuse data structure choices with unrelated concepts like API authentication, mistakenly thinking arrays affect security.

The trap lies in conflating the purpose of JSON arrays as a data structure for multiple similar items with other unrelated networking or security concepts. Understanding that arrays simply represent ordered lists of items, such as multiple interfaces, is crucial to avoid this confusion.

Why the other options are wrong

B

This option is incorrect because JSON objects do contain fields; they are collections of key-value pairs representing attributes of a single entity, so the claim that objects cannot contain fields is false.

C

This option is wrong because JSON arrays are a general data structure used for any list of items, not exclusively for IPv6 interfaces; interface type does not dictate JSON structure.

D

This option is incorrect because the choice of JSON data structure (array vs. object) does not affect API authentication or security; these are separate concerns unrelated to data formatting.

When would these options actually be correct?

B

If the exam question asked about the limitations of JSON objects in a specific context, such as a scenario where a JSON object was improperly formatted or lacked fields due to a programming error, this option could be correct.

C

In a different question asking why arrays are specifically used for representing IPv6 interfaces in a networking API, this option could be correct if the context is limited to a system that only supports IPv6 and requires array structures for its interface data.

D

In a different question context that asks about the benefits of using arrays in API responses, one might argue that using arrays can simplify data handling, which could be misinterpreted as reducing the need for authentication due to perceived simplicity in data management.

Why candidates pick the wrong answer

B

Candidates might choose this option due to a misunderstanding of JSON structures, confusing the capabilities of objects and arrays. The phrasing may lead them to believe that objects are somehow less capable than arrays in terms of containing data.

C

Candidates may choose this option due to a misunderstanding of JSON structures and a common association of arrays with lists of items, leading them to incorrectly link arrays exclusively with IPv6 interfaces.

D

Candidates might choose this option due to a misunderstanding of how data structures relate to security practices, leading them to incorrectly associate the use of arrays with reduced complexity in API design.

1010
MCQhard

A host uses address 192.168.5.126/25. Which address is the broadcast address for its subnet?

A.192.168.5.63
B.192.168.5.127
C.192.168.5.128
D.192.168.5.255
AnswerB

The /25 CIDR notation specifies a subnet mask of 255.255.255.128, meaning the first 25 bits define the network portion. For the host 192.168.5.126, the network address is 192.168.5.0, as the 25th bit is 0. This subnet, 192.168.5.0/25, encompasses IP addresses from 192.168.5.0 to 192.168.5.127. The broadcast address is always the last address in the subnet range, where all host bits are set to one, which in this scenario is 192.168.5.127.

Why this answer

A /25 divides the /24 into two halves: 0–127 and 128–255. In plain language, the host address 192.168.5.126 is in the lower half, which runs from .0 through .127. The last address in that block is the broadcast address, so the broadcast is 192.168.5.127.

This is a classic subnetting question because it checks whether you can identify the correct block and then select the last address in that block as the broadcast address.

Exam trap

Remember that the broadcast address is the last address in the subnet, not the first address of the next subnet or the broadcast for the entire /24.

Why the other options are wrong

A

Option A (192.168.5.63) is incorrect because it does not fall within the subnet defined by the address 192.168.5.126/25, which has a valid range of 192.168.5.128 to 192.168.5.255 for host addresses.

C

The address 192.168.5.128 is incorrect because it falls outside the subnet defined by 192.168.5.126/25, which includes addresses from 192.168.5.0 to 192.168.5.127. The broadcast address for this subnet is 192.168.5.127.

D

Option D, 192.168.5.255, is incorrect because it is the broadcast address for the entire 192.168.5.0/24 subnet, not the /25 subnet specified in the question.

When would these options actually be correct?

A

If the question were to ask for the broadcast address of a subnet defined by 192.168.5.0/26, then option A (192.168.5.63) would be correct, as it would represent the broadcast address for that specific subnet range.

C

If the question specified a subnet mask of /24 instead of /25, then 192.168.5.128 would be the correct broadcast address for the subnet 192.168.5.0/24, which ranges from 192.168.5.0 to 192.168.5.255.

D

If the question asked for the broadcast address of the 192.168.5.0/24 subnet instead of the /25 subnet, then option D would be correct, as it represents the highest address in that larger subnet.

Why candidates pick the wrong answer

A

Candidates may be tempted by this option because they might confuse the subnet mask and miscalculate the broadcast address, mistakenly believing that the lower range of addresses is valid for the given subnet.

C

Candidates might choose this option due to a misunderstanding of subnetting, mistakenly associating the higher address in the range with the broadcast address without calculating the correct subnet mask.

D

Candidates might choose option D due to a misunderstanding of subnetting, confusing the broader /24 range with the specific /25 range, leading them to think of the highest address in the entire subnet.

1011
MCQhard

A trunk is up between two switches, but traffic for VLAN 40 fails while other VLANs work. Which output item should be checked first?

A.Whether VLAN 40 is included in the allowed VLAN list on the trunk
B.Whether the router ID matches on both switches
C.Whether NetFlow is enabled on the VLAN
D.Whether NTP is synchronized on the switches
AnswerA

A trunk being administratively up indicates the physical and data-link layers are functioning, but Layer 2 connectivity for a particular VLAN depends on the VLAN being present in the trunk's allowed list (via switchport trunk allowed vlan). If VLAN 40 is not included on one or both sides, its frames are silently discarded or not placed on the trunk, even though other VLANs pass normally. This configuration discrepancy is the classic cause of a single-VLAN outage on an otherwise healthy trunk.

Why this answer

The first thing to check is whether VLAN 40 appears in the trunk’s allowed VLAN list. In practical terms, this is a selective failure, not a total trunk failure. Since other VLANs are crossing successfully, the link is operational. That strongly suggests one VLAN is being excluded rather than the trunk being generally broken.

This is one of the most common VLAN troubleshooting patterns in switching.

Exam trap

Avoid assuming a total trunk failure when only one VLAN is affected. Focus on VLAN-specific configurations.

Why the other options are wrong

B

This option is wrong because the router ID is relevant for routing protocols, not for VLAN traffic issues on a trunk link. The problem specifically pertains to VLAN 40 traffic, which is not influenced by router IDs.

C

NetFlow is a network protocol used for collecting IP traffic information, but it does not directly affect VLAN traffic flow on a trunk link. Therefore, checking if NetFlow is enabled does not address the issue of VLAN 40 traffic failure.

D

NTP synchronization is not directly related to VLAN traffic issues on a trunk link; it primarily affects time-sensitive protocols. Therefore, checking NTP synchronization would not help diagnose why VLAN 40 traffic is failing.

When would these options actually be correct?

B

In a question about OSPF or EIGRP configuration, where the focus is on ensuring proper routing between switches, checking the router ID would be crucial to confirm that both switches are configured to recognize each other in the routing domain.

C

In a question where the focus is on monitoring and analyzing traffic flows within a network, a scenario might ask about verifying configurations related to traffic analysis. If the question involved ensuring that traffic data is being collected for VLAN 40, then checking if NetFlow is enabled would be relevant.

D

In a different scenario where the question asks about the overall stability and performance of network services that rely on accurate timekeeping, such as logging or security protocols, verifying NTP synchronization could be crucial. For instance, if the question involved troubleshooting time-sensitive applications, this option could be relevant.

Why candidates pick the wrong answer

B

Candidates may choose this option due to a misunderstanding of the relationship between VLANs and routing protocols, mistakenly believing that routing configuration issues could affect VLAN traffic.

C

Candidates may confuse traffic analysis tools like NetFlow with VLAN configurations, thinking that monitoring settings could impact VLAN traffic, leading them to incorrectly select this option.

D

Candidates might choose this option due to a general understanding that synchronization issues can lead to various network problems, leading them to mistakenly believe it could impact VLAN traffic.

1012
MCQhard

An engineer wants a static route to be used only if the OSPF route to the same network disappears. What should be configured?

A.A static route with lower administrative distance than OSPF
B.A static route with higher administrative distance than OSPF
C.A second OSPF route with a lower metric
D.A default route with no next hop
AnswerB

Configuring a static route with an administrative distance (AD) higher than OSPF's default AD (110) ensures it is less preferred by the router. Routers always prioritise routes with lower ADs when multiple paths to the same destination exist. This setup precisely satisfies the requirement for the static route to be used *only if* the OSPF route, which normally has a lower AD and is thus preferred, becomes unavailable in the routing table.

Why this answer

A floating static route is given a higher administrative distance than the preferred dynamic route so it stays out of the routing table unless the dynamic route is lost.

Exam trap

Remember, administrative distance determines route preference across different protocols, not metrics.

Why the other options are wrong

A

This option is wrong because a static route with a lower administrative distance than OSPF would take precedence over OSPF routes, making it active even when OSPF is available, contrary to the requirement of using the static route only when the OSPF route is unavailable.

C

This option is wrong because a second OSPF route with a lower metric would not serve as a backup to the existing OSPF route; instead, it would be preferred over the static route, which contradicts the requirement for the static route to be used only if the OSPF route disappears.

D

A default route with no next hop would not serve as a backup for an OSPF route because it lacks specificity and cannot direct traffic to a specific network. It would be ineffective in scenarios where a specific static route is needed when OSPF fails.

When would these options actually be correct?

A

In a different scenario where the question asks for a static route that should always be preferred over OSPF routes for a specific network, configuring a static route with a lower administrative distance would be correct to ensure it is used preferentially.

C

In a scenario where the question asks for a method to ensure that a specific OSPF route is preferred for traffic, while a static route should only be used if the OSPF route fails, this option would be correct if the static route had a lower metric than the existing OSPF route.

D

If a question asked for a route that should be used for all traffic when no specific routes exist, a default route with no next hop could be correct. For example, in a scenario where a network is designed to send all unmatched traffic to a single exit point without needing to specify a next hop.

Why candidates pick the wrong answer

A

Candidates might choose this option because they understand that lower administrative distances indicate higher preference, leading them to mistakenly believe that this would ensure the static route is used when OSPF is down.

C

Candidates may choose this option because they may misinterpret the question as seeking a way to enhance routing redundancy, thinking that adding another OSPF route would provide a backup solution.

D

Candidates may find this option tempting because it seems like a catch-all solution for routing, especially if they misunderstand the need for specificity in routing tables and the role of default routes.

1013
MCQhard

Users in a branch office can reach internal networks but cannot browse the Internet. The router has a correct default route and PAT is configured. Which missing item is the most likely cause if inside hosts are still using private source addresses on the WAN?

A.A correct ACL or source match identifying inside local addresses for NAT
B.An STP root bridge election on the WAN side
C.A voice VLAN on the branch access switches
D.A loopback interface with a higher IP address
AnswerA

PAT (NAT overload) relies on an access list or route map to identify which inside local source addresses are eligible for translation. If that match is missing or incorrect, the router has a route for the internal networks and will forward the packets, but it never rewrites the source to the public address. As a result, private addresses are sent out the WAN unmodified, and return traffic cannot be routed back, which exactly matches the reported symptom.

Why this answer

If inside hosts are still appearing with private source addresses on the WAN side, the most likely missing element is a correct NAT inside source match for the internal subnet. In plain language, the router knows where Internet traffic should go because the default route exists, but it is not actually translating the private addresses before sending the traffic out. That means upstream devices see RFC 1918 private addresses that are not valid on the public Internet and return traffic fails.

This is a common CCNA troubleshooting pattern: routing and NAT are separate functions. A valid default route only tells the router where to send packets. It does not automatically translate them. PAT also depends on a correct ACL or source match identifying which inside addresses should be translated. If that match is missing or wrong, the router forwards the traffic but without performing the necessary translation. That is why the missing or incorrect NAT match is the most likely root cause.

Exam trap

A common exam trap is assuming that configuring a default route and enabling PAT alone guarantees Internet access for inside hosts. Candidates often overlook the necessity of a correct NAT ACL or source match that explicitly identifies which inside local addresses should be translated. Without this ACL, the router forwards packets with private IP addresses unchanged, causing return traffic to fail because upstream devices reject packets with non-routable source addresses.

This mistake leads to the false conclusion that routing or PAT is misconfigured, when the real issue is the missing or incorrect NAT match.

Why the other options are wrong

B

Incorrect because Spanning Tree Protocol (STP) root bridge election affects Layer 2 switching topology, not Layer 3 NAT translation or routing on the WAN interface.

C

Incorrect because voice VLAN configuration on branch access switches does not influence NAT translation or whether private IP addresses are translated on the WAN interface.

D

Incorrect because a loopback interface IP address does not affect PAT translation of inside user traffic; PAT depends on NAT ACLs and routing, not loopback IP addresses.

When would these options actually be correct?

B

In a different scenario, if the question involved issues with VLANs and STP configurations affecting traffic flow between multiple switches, a candidate might need to identify the root bridge to ensure proper traffic forwarding, making this option relevant.

C

In a different scenario where the question specifies that voice traffic is prioritized over data traffic and there are issues with voice traffic not reaching the WAN, a voice VLAN could be the correct answer if the configuration of the VLAN is misconfigured, preventing proper communication.

D

In a scenario where the question asks about routing issues or path selection in a network where multiple loopback interfaces exist, a loopback interface with a higher IP address could be the correct answer if it is being used as a next-hop address for routing decisions, affecting connectivity.

Why candidates pick the wrong answer

B

Candidates may mistakenly associate STP with connectivity issues, believing that problems in Layer 2 could impact Layer 3 operations like NAT, leading them to select this option despite its irrelevance to the question.

C

Candidates may confuse VLAN configurations with routing issues, thinking that any misconfiguration related to VLANs could affect overall network connectivity, leading them to mistakenly select this option.

D

Candidates may be tempted by this option due to a misunderstanding of how routing and NAT interact, thinking that the loopback interface's configuration might influence the NAT process or connectivity to external networks.

1014
MCQmedium

A client receives an IP address but cannot reach remote networks. Which DHCP option is most likely missing or incorrect?

A.DNS server option
B.Lease time option
C.Default gateway option
D.TFTP server option
AnswerC

The DHCP 'Default Gateway' option (router option) supplies the client with the IP address of the local router that provides exit from the subnet. Without a correct gateway address, the client does not know where to forward packets destined for non-local networks, so it attempts to ARP for the destination address directly and ultimately drops the traffic. This is why an incorrect or missing gateway prevents all off-subnet communication.

Why this answer

The client can obtain an IP address but cannot reach remote networks, which indicates that the DHCP server is not providing the default gateway (option 3). Without a default gateway, the client has no route to destinations outside its local subnet, so traffic to remote networks is dropped. The DHCP server must be configured to supply the router's IP address as the default gateway for clients to forward inter-network traffic.

Exam trap

Cisco often tests the distinction between DHCP options by presenting a symptom like 'can't reach the internet' and expecting candidates to recognize that the default gateway (option 3) is the critical missing piece, not DNS or lease time.

Why the other options are wrong

A

The DNS server option is not critical for basic connectivity to remote networks; it primarily affects name resolution. If a client can obtain an IP address but cannot reach remote networks, the issue is more likely related to the default gateway configuration.

B

The lease time option specifies how long a DHCP lease is valid, but it does not affect the ability to reach remote networks. Therefore, a missing or incorrect lease time would not directly cause connectivity issues.

D

The TFTP server option is not necessary for a client to reach remote networks, as it primarily facilitates file transfers and does not impact routing or network accessibility. Therefore, its absence would not directly cause connectivity issues to remote networks.

When would these options actually be correct?

A

In a different scenario where the question specifies that clients can access local resources but fail to resolve domain names, the DNS server option would be the correct answer. For example, if the client can ping local IPs but not external domains, the DNS configuration would be the likely issue.

B

In a different scenario, if a question asks about DHCP configurations affecting client connectivity specifically related to lease durations, a missing lease time option could lead to clients not being able to renew their IP addresses, thus causing connectivity issues.

D

In a scenario where a question asks about a client that can reach local resources but cannot download files from a remote server, the TFTP server option could be missing or incorrectly configured. This would directly affect the client's ability to access TFTP services, making this option correct in that context.

Why candidates pick the wrong answer

A

Candidates may choose this option because they associate DNS with network connectivity issues, especially if they have encountered problems where name resolution failures caused access issues. This can lead to confusion about the role of DNS in overall network functionality.

B

Candidates may confuse the lease time option with overall network connectivity, thinking that if a client cannot reach remote networks, it could be due to lease issues rather than routing configurations.

D

Candidates may be tempted by this option because TFTP is often associated with network services and can seem relevant when discussing connectivity issues, leading them to mistakenly believe it could impact overall network access.

1015
MCQmedium

A network automation script sends this HTTP request to a controller API: POST /api/v1/devices What does the POST method typically indicate in a RESTful API?

A.It retrieves an existing resource without changing it
B.It creates a new resource or submits data to be processed
C.It deletes the targeted resource permanently
D.It replaces the entire existing resource in an idempotent way
AnswerB

Correct. This is correct. POST commonly creates a new resource or submits data to the API for processing. In automation questions, that usually means the script is asking the controller to add something or perform an action using the payload it sends.

Why this answer

POST usually means the client is submitting information to create a new resource or asking the server to process the provided payload. In a controller-based networking context, that often means onboarding a device, creating an object, or starting a workflow. This question is testing method recognition rather than deep programming skill.

GET is commonly used for retrieval, DELETE for removal, and PUT for full replacement or update behavior that is typically idempotent. POST is different because repeating the same POST can create multiple objects or trigger repeated actions, depending on the API design. For CCNA purposes, the plain-English takeaway is simple: POST is generally associated with create-or-submit behavior, not read-only retrieval.

Exam trap

Remember that POST is for creating resources, not retrieving, deleting, or updating them.

Why the other options are wrong

A

Option A is incorrect because the POST method is not used for retrieving resources; instead, it is intended for creating new resources or submitting data for processing in a RESTful API context.

C

The POST method is used to create or submit data, not to delete resources. Option C incorrectly describes the function of the DELETE method in RESTful APIs, which is responsible for removing resources.

D

Option D is incorrect because the POST method is not idempotent and does not replace an existing resource; it is primarily used to create new resources or submit data.

When would these options actually be correct?

A

If the question were to ask about the HTTP GET method instead of POST, option A would be correct, as GET is specifically designed to retrieve existing resources without making any changes to them.

C

If the question were to ask about the DELETE method in a RESTful API context, stating that it permanently deletes a targeted resource would be correct. For example, a question could ask, 'What does the DELETE method typically indicate in a RESTful API?'

D

If the question were to ask about the PUT method instead of POST, and the context specified that the operation was intended to update an existing resource, then option D would be correct as PUT is idempotent and replaces the entire resource.

Why candidates pick the wrong answer

A

Candidates may choose this option due to a misunderstanding of HTTP methods, confusing POST with GET, or recalling that some methods can retrieve data without modification, leading to an incorrect association.

C

Candidates may confuse the POST method with other HTTP methods due to overlapping functionalities in API design, leading them to mistakenly associate POST with deletion instead of creation.

D

Candidates may confuse the POST method with the PUT method, as both are used to modify resources, leading them to mistakenly believe that POST can also replace existing resources.

1016
MCQhard

A company wants unauthorized devices plugged into unused wall ports to have as little chance of gaining access as possible. Which action most directly supports that goal?

A.Administratively disable unused switch ports.
B.Convert every unused port into a trunk.
C.Enable Telnet on unused ports for monitoring.
D.Remove all VLAN assignments from active user ports.
AnswerA

Administratively disabling unused switch ports, typically with the shutdown command in interface configuration mode, places the port in an administratively down state so no device can establish link connectivity or pass traffic. This directly eliminates the exposure of unneeded wall jacks because even if a rogue device is physically plugged in, the switch will not forward frames or negotiate an active Layer 1 link. Unlike VLAN or trunk adjustments, this hardening step does not alter the operation of active user ports and is the industry-standard first-line defense against unauthorized access to unused infrastructure.

Why this answer

Administratively shutting down unused switch ports most directly supports the goal because it eliminates the access point entirely. Option B, converting unused ports into trunks, would actually increase risk by potentially allowing VLAN hopping and unauthorized traffic. Option D, removing VLAN assignments from active user ports, does not address unused ports and could disrupt legitimate users by forcing them into the default VLAN.

Disabling unused ports is a simple and effective hardening measure that reduces attack surface.

Exam trap

Don't confuse methods that limit or monitor access with those that completely prevent it. Focus on actions that eliminate the risk entirely.

Why the other options are wrong

B

Converting unused ports into a trunk does not prevent unauthorized access; it actually allows multiple VLANs to be carried over a single link, potentially exposing sensitive data. This action could inadvertently grant access to unauthorized devices if they connect to these trunked ports.

C

Enabling Telnet on unused ports does not prevent unauthorized access; instead, it creates a potential security vulnerability by allowing remote access to those ports. This action could expose the network to unauthorized monitoring or control.

D

Removing VLAN assignments from active user ports does not prevent unauthorized devices from accessing the network; it could disrupt legitimate user access instead. The goal is to secure unused ports, not impact active ones.

When would these options actually be correct?

B

If the question asked about optimizing network performance or allowing multiple VLANs for a specific purpose, converting unused ports into a trunk could be the correct answer. For instance, if a network administrator needs to consolidate VLAN traffic for efficiency, this option would be appropriate.

C

If the question asked about monitoring and managing network traffic on all ports, including unused ones, enabling Telnet could be seen as a way to track unauthorized access attempts. In such a scenario, the focus would be on visibility rather than prevention.

D

In a scenario where the question asks how to enhance security by isolating user devices from unauthorized access, and specifically mentions VLAN management, removing VLAN assignments from active ports could be correct if it prevents unauthorized access by segmenting the network effectively.

Why candidates pick the wrong answer

B

Candidates may choose this option because they associate trunk ports with increased network capacity and flexibility, mistakenly believing that it enhances security by managing VLANs effectively, rather than recognizing the security implications of unauthorized access.

C

Candidates may choose this option because they associate Telnet with network management and monitoring, mistakenly believing that enabling it on unused ports would provide oversight and security against unauthorized access.

D

Candidates may choose this option thinking that removing VLAN assignments would enhance security by limiting access points, not realizing that it could inadvertently disrupt legitimate user connectivity.

1017
MCQhard

A switchport connected to another switch is configured with `switchport mode dynamic auto` on both ends. What is the most likely outcome if neither side actively negotiates trunking?

A.The link is likely to remain non-trunking because both sides are waiting passively.
B.The link always becomes a trunk immediately.
C.The link becomes a routed Layer 3 link.
D.All VLANs are deleted from both switches.
AnswerA

On a switchport configured with dynamic auto, the interface passively listens for DTP frames but does not actively send them. Since the neighboring switch is also in dynamic auto, neither side initiates a trunk negotiation, so DTP never completes and the link remains in its default access mode, functioning as a normal nontrunking port.

Why this answer

If both ends are set to dynamic auto, the most likely outcome is that the link does not become a trunk automatically. In plain language, both interfaces are waiting passively for the other side to initiate the negotiation. Since neither side is actively trying to form the trunk, the link typically remains non-trunking unless one side is changed to a more active mode or trunk is configured directly.

This is a classic DTP behavior question because it tests whether you understand the difference between active and passive negotiation roles. The correct answer is the one that reflects the passive nature of dynamic auto on both sides.

Exam trap

Be careful not to confuse dynamic auto with dynamic desirable. Only dynamic desirable actively negotiates trunking.

Why the other options are wrong

B

This option is wrong because `switchport mode dynamic auto` does not force immediate trunking; it relies on negotiation, and if neither side actively negotiates, the link remains non-trunking.

C

This option is wrong because a switchport configured with `switchport mode dynamic auto` does not automatically convert to a routed Layer 3 link unless explicitly configured to do so. The default behavior is to remain in access mode unless trunking is negotiated.

D

Option D is incorrect because configuring `switchport mode dynamic auto` does not delete VLANs; it merely affects trunk negotiation. VLANs remain configured on the switches regardless of trunking status.

When would these options actually be correct?

B

In a different scenario where both switches are configured with `switchport mode trunk`, the link would always become a trunk immediately upon connection, regardless of negotiation. A question could specify that both ends are set to trunk mode, leading to this outcome.

C

In a different scenario, if the question specified that both switches were configured with `switchport mode access` and there was no trunk negotiation, then the link would indeed operate as a routed Layer 3 link if the switches were configured to route traffic.

D

In a different scenario where a question states that a switchport is configured to delete VLAN information upon a specific command or configuration change, option D could be correct. For example, if the question involved a command that explicitly removes VLAN configurations, then this option would apply.

Why candidates pick the wrong answer

B

Candidates may choose this option due to a misunderstanding of dynamic trunking protocols, mistakenly believing that any configuration involving 'dynamic' would automatically result in trunking without considering the negotiation process.

C

Candidates may choose this option due to a misunderstanding of switchport modes and the assumption that dynamic configurations imply automatic Layer 3 functionality, leading to confusion between access and trunking modes.

D

Candidates may find this option tempting due to a misunderstanding of how switchport configurations impact VLANs, leading them to incorrectly associate trunking negotiation failures with VLAN deletion.

1018
MCQhard

Refer to the exhibit. A network engineer is troubleshooting an ACL that is not filtering traffic as expected. The engineer runs the show access-lists 110 command and notices that all access control entries (ACEs) show zero matches, even though traffic that should match the permit or deny statements is traversing the network. The engineer then checks the interface configuration. What is the most likely cause?

A.The ACL is applied to the interface in the wrong direction (inbound instead of outbound).
B.The access-list 110 syntax has incorrect subnet masks causing no matches.
C.The ACL 110 is not applied to any interface.
D.The interface GigabitEthernet0/0 is administratively down, preventing ACL processing.
AnswerC

The 'Inbound access list is not set' and 'Outgoing access list is not set' lines in the exhibit directly prove that no ACL has been applied to GigabitEthernet0/0. Since ACL 110 exists but isn't attached to any interface, it never processes traffic and shows zero hit counts.

Why this answer

If an ACL is not applied to any interface, it will never process traffic, and the 'show access-lists' command will show zero matches for all ACEs. The engineer confirmed that traffic matching the ACL entries is traversing the network, but the ACL counters remain at zero, which directly indicates that the ACL is not being invoked by any interface configuration. Applying an ACL to an interface with the 'ip access-group' command is required for it to filter traffic.

Exam trap

Cisco often tests the distinction between creating an ACL and applying it to an interface, trapping candidates who assume that simply defining an ACL with 'access-list' commands is enough to filter traffic, when in fact the 'ip access-group' command under the interface is mandatory for the ACL to take effect.

Why the other options are wrong

A

A common mistake is to try to explain zero matches by directional misapplication without first checking whether an ACL is actually present. The exhibit explicitly shows no ACL is bound.

B

Some candidates fixate on ACL configuration details instead of verifying interface assignment. The output confirms the interface has no ACL, not that an ACL is configured incorrectly.

D

Candidates sometimes misread interface status. This output clearly shows the interface is enabled and up, so a down state is not the issue.

1019
MCQhard

Why is administratively shutting down unused switch ports considered a useful hardening measure?

A.It reduces the attack surface by removing unnecessary network entry points.
B.It increases available bandwidth on the switch backplane.
C.It enables 802.1Q trunking on all remaining ports.
D.It forces port security to activate automatically.
AnswerA

An unused enabled switchport is a potential access point for unauthorized devices, allowing threats such as ARP spoofing, DHCP starvation, or rogue access points. Administratively shutting it down disables the physical layer, preventing any frames from entering or leaving that interface and eliminating this entry vector. This is a fundamental network-hardening practice that reduces the attack surface without affecting other ports.

Why this answer

Unused active ports create unnecessary opportunity for unauthorized connection. Disabling them reduces the attack surface and makes opportunistic access much harder. Option B is incorrect because administratively shutting down a port does not increase backplane bandwidth; bandwidth is a fixed hardware characteristic.

Option C is incorrect because shutting down ports does not enable 802.1Q trunking; trunking is configured separately. Option D is incorrect because port security must be explicitly enabled; it is not activated automatically by shutting down ports.

Exam trap

Do not confuse port shutdown with network performance improvements or IP address management. Focus on security implications.

Why the other options are wrong

B

This option is incorrect because shutting down unused switch ports does not directly increase available bandwidth; rather, it is a security measure to minimize potential vulnerabilities. Bandwidth on the switch backplane is determined by the overall switch architecture and the active ports' configurations, not by disabling unused ports.

C

This option is wrong because administratively shutting down unused switch ports does not enable 802.1Q trunking; trunking is a configuration that allows multiple VLANs to traverse a single physical link, which is unrelated to the status of unused ports.

D

This option is wrong because administratively shutting down unused switch ports does not automatically activate port security; it is a separate configuration that must be enabled explicitly on the switch.

When would these options actually be correct?

B

In a question focused on optimizing network performance, such as 'What actions can improve the overall bandwidth efficiency of a switch?', this option could be correct if it specifies that shutting down unused ports can help allocate resources more effectively by reducing unnecessary traffic on the switch.

C

In a question focused on VLAN configuration, where the context is about optimizing trunking capabilities across a switch, stating that enabling 802.1Q trunking on all remaining ports is correct could be valid. For example, if the question asks how to ensure that all active ports can handle multiple VLANs efficiently, this option could be correct.

D

In a question asking about the benefits of enabling port security on a switch, one might state that shutting down unused ports can help ensure that port security is enforced on active ports, as it reduces the risk of unauthorized access through unused ports.

Why candidates pick the wrong answer

B

Candidates may be tempted by this option because they associate port management with performance improvements, leading them to believe that disabling ports could somehow enhance bandwidth availability.

C

Candidates may choose this option due to a misunderstanding of the relationship between port status and VLAN configurations, mistakenly believing that shutting down ports directly facilitates trunking capabilities.

D

Candidates may choose this option because they associate port security with overall network security and might mistakenly believe that shutting down ports triggers security features automatically, reflecting a misunderstanding of how these configurations interact.

1020
MCQhard

A non-root switch has two uplinks toward the root bridge. One path has a lower total STP cost than the other. What role will the lower-cost uplink have?

A.Alternate port
B.Root port
C.Designated port
D.Disabled port
AnswerB

The root port is selected on each non-root bridge by comparing received BPDUs; the port with the lowest cumulative root path cost (with tie-breaking rules) becomes the root port, placing it in the forwarding state. This is the port that provides the single best path toward the root bridge, carrying all upstream traffic. Since the non-root switch has two uplinks, the one with the lower cost to the root is the root port.

Why this answer

On a non-root switch, the port with the lowest path cost toward the root bridge becomes the root port. The higher-cost uplink would become an alternate (blocked) port. A designated port is found on the upstream switch toward this switch, not on the non-root switch itself.

A disabled port is administratively shut down, which does not apply here.

Exam trap

Remember, the root port is determined by the lowest path cost to the root bridge, not by any other criteria.

Why the other options are wrong

A

The higher-cost uplink becomes an alternate (blocked) port, not the lower-cost one.

C

A designated port exists on the upstream switch toward this switch, not on the non-root switch.

D

A disabled port is administratively shut down, not a port with a lower STP cost.

When would these options actually be correct?

A

In a different scenario where a switch has multiple uplinks and one link fails, the remaining uplink with a higher cost could be designated as an alternate port, providing a backup path to the root bridge while the primary path is down.

C

In a different scenario, if the question stated that a switch has multiple segments and one of the uplinks is the only connection to a segment with multiple switches, then that uplink could be designated if it has the lowest cost to the root bridge for that segment.

D

In a different scenario, if a switch is configured with a specific port that has been administratively shut down or if the STP has determined that the port should not be used due to a loop or misconfiguration, the question might ask about the status of that port, making 'disabled port' the correct answer.

Why candidates pick the wrong answer

A

Candidates may confuse the roles of ports in STP, especially if they focus on the presence of multiple uplinks and mistakenly associate lower-cost paths with alternate roles instead of recognizing the active forwarding role of the root port.

C

Candidates might confuse the roles of ports in STP, thinking that any port involved in forwarding traffic could be designated, especially if they overlook the specific context of uplinks and cost comparisons.

D

Candidates may confuse the concept of port states in STP and mistakenly think that a lower-cost path could be disabled due to misconfigurations or administrative actions, leading them to choose this option.

1021
PBQhard

You are connected to R1 (192.0.2.1/24). Use RESTCONF to query the operational state of GigabitEthernet0/0 using the ietf-interfaces YANG module. Then, send a PATCH request to disable the interface (set 'enabled' to false) using the Cisco-IOS-XE-native YANG module. Identify the error when a PATCH request is sent with the wrong Content-Type header (application/json instead of application/yang-data+json) and when the PATCH URI uses an incorrect YANG path (ietf-interfaces instead of Cisco-IOS-XE-native).

Hints

  • RESTCONF requires Content-Type: application/yang-data+json for write operations.
  • The ietf-interfaces module is read-only for operational state; use Cisco-IOS-XE-native for configuration changes.
  • Check the URI path: /restconf/data/ followed by the YANG module and container/leaf.
A.The PATCH request fails with a 415 Unsupported Media Type error because the Content-Type header must be application/yang-data+json, not application/json.
B.The PATCH request fails with a 404 Not Found error because the URI uses ietf-interfaces, which is a read-only module for operational state; the server cannot write to it.
C.The PATCH request succeeds but the interface is not disabled because the body must use 'shutdown' instead of 'enabled'.
D.The PATCH request fails with a 400 Bad Request error because the body must be XML, not JSON.
AnswerA
solution
! R1
GET /restconf/data/ietf-interfaces:interfaces/interface=GigabitEthernet0/0 --header 'Accept: application/yang-data+json'
PATCH /restconf/data/Cisco-IOS-XE-native:native/interface/GigabitEthernet=0/0 --header 'Content-Type: application/yang-data+json' -d '{"Cisco-IOS-XE-native:interface":{"GigabitEthernet":[{"name":"0/0","shutdown":true}]}}'

Why this answer

The correct GET request uses the ietf-interfaces YANG module path to retrieve interface state. For the PATCH, the Cisco-IOS-XE-native module is used because it supports writing native configuration (including shutdown). Sending PATCH with Content-Type: application/json is rejected because RESTCONF requires application/yang-data+json.

Using ietf-interfaces in the PATCH URI fails because that module is read-only for operational state; the server returns 404 or 405. The correct PATCH body sets 'shutdown' to true within the native interface container.

Exam trap

The trap is that candidates may focus on the YANG module path error (ietf-interfaces vs Cisco-IOS-XE-native) and miss that the question explicitly asks about the error when the Content-Type header is wrong. Always read the question carefully to identify the specific condition being tested.

Why the other options are wrong

B

The specific factual error is that the question asks about the error when the Content-Type header is wrong, not the URI path. The URI path error is a separate issue.

C

The specific factual error is that a wrong Content-Type header causes a rejection before any body parsing, so the request does not succeed.

D

The specific factual error is that RESTCONF does accept JSON; the issue is the exact media type string, not the format.

Why candidates pick the wrong answer

B

Candidates might pick this because they know that ietf-interfaces is read-only and that using it in a PATCH would fail, but they overlook that the question is specifically about the Content-Type header error.

C

Candidates might think that the server might accept the request but ignore the 'enabled' field, not realizing that the Content-Type error prevents processing.

D

Candidates might confuse RESTCONF with NETCONF, which uses XML, or think that JSON is not supported, but RESTCONF supports both.

1022
MCQhard

Clients in VLAN 30 are not receiving addresses from the DHCP server located in VLAN 99. Which configuration change should be made on the Layer 3 interface for VLAN 30?

A.Add ip dhcp snooping trust under interface Vlan30.
B.Add switchport mode trunk under interface Vlan30.
C.Add ip default-gateway 10.99.99.20 under interface Vlan30.
D.Add ip helper-address 10.99.99.20 under interface Vlan30.
AnswerD

This is correct because the SVI for VLAN 30 is the interface that receives the client DHCP broadcasts. By adding `ip helper-address 10.99.99.20`, the Layer 3 device forwards the request as a unicast packet to the DHCP server in VLAN 99.

Why this answer

The DHCP server is on a different subnet, so the client broadcast messages from VLAN 30 will not naturally cross the Layer 3 boundary. In simple terms, the clients are asking for an address by shouting on their own floor of the building, but the server lives on another floor and cannot hear that broadcast directly. The router or Layer 3 switch must relay the request for them. On Cisco devices, that relay function is usually configured with `ip helper-address` on the interface that receives the client broadcasts.

Here, that receiving interface is Vlan30, because that is the default gateway for the clients in VLAN 30. Pointing `ip helper-address` to 10.99.99.20 tells the Layer 3 device to forward DHCP requests to the remote server. DHCP snooping trust is a separate security feature, trunk mode is unrelated to an SVI, and `ip default-gateway` is not the correct solution for relaying DHCP across subnets.

Exam trap

Remember that DHCP snooping and trunk mode do not facilitate DHCP relay. Focus on the purpose of `ip helper-address` for relaying requests across VLANs.

Why the other options are wrong

A

This option is wrong because enabling DHCP snooping trust on VLAN 30 does not facilitate communication with the DHCP server in VLAN 99; it only protects against rogue DHCP servers.

B

Adding 'switchport mode trunk' under interface Vlan30 is incorrect because VLAN 30 is already configured as a Layer 3 interface, and trunking is not applicable to Layer 3 interfaces. This command is used for Layer 2 interfaces to allow multiple VLANs over a single link.

C

This option is wrong because the command 'ip default-gateway' is used to set a default gateway for a Layer 2 device, not for enabling DHCP relay on a Layer 3 interface. Clients in VLAN 30 need a helper address to reach the DHCP server in VLAN 99.

When would these options actually be correct?

A

In a different scenario where the question asks about securing a network with multiple VLANs and preventing unauthorized DHCP servers, adding 'ip dhcp snooping trust' under interface Vlan30 would be correct to allow trusted DHCP responses from a legitimate server.

B

In a different scenario where the question asks about configuring a Layer 2 switch port that connects to another switch, and the requirement is to allow multiple VLANs to traverse that link, 'switchport mode trunk' would be the correct configuration to enable trunking on that interface.

C

In a scenario where the question asks about configuring a Layer 2 switch that needs to communicate with a router for routing purposes, using 'ip default-gateway 10.99.99.20' would be correct to ensure the switch can reach the router for management traffic.

Why candidates pick the wrong answer

A

Candidates may choose this option due to a misunderstanding of DHCP snooping, believing that it directly relates to the DHCP process rather than its role in securing the network against rogue servers.

B

Candidates may choose this option because they might confuse Layer 3 interfaces with Layer 2 configurations, thinking that trunking is necessary for VLAN communication, especially if they are familiar with VLAN setups in general.

C

Candidates may choose this option because they recognize the need for a default gateway for devices in a VLAN, mistakenly believing it applies to enabling DHCP services instead of understanding the specific role of DHCP relay.

1023
Matchingmedium

Drag and drop the route types on the left to the correct administrative distance and use case descriptions on the right.

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

Concepts
Matches

AD 1; manually configured path

AD 5; backup route when primary fails

AD 1; catch-all for unknown destinations

AD 110; used for internal routing within an AS

AD 0; network directly attached to router interface

Why these pairings

All the given pairings are correct. Connected routes use AD 0 because they are directly connected. Static routes use AD 1 as they are manually configured.

EIGRP internal routes have AD 90, and OSPF routes have AD 110; both are IGPs used for routing within the same autonomous system.

Exam trap

A common mistake is confusing the AD values of connected (0) and static (1). Also, note that EIGRP internal (90) and OSPF (110) are both IGPs but with different ADs; some might incorrectly assign OSPF an AD of 90.

1024
PBQmedium

You are connected to R1 via console. R1 is a new router connecting two subnets: 192.168.1.0/24 on G0/0 and 192.168.2.0/24 on G0/1. You need to configure IPv6 static routes so that hosts on these subnets can reach the IPv6 Internet via R2 (2001:db8:1::2). R1's G0/0 has IPv6 address 2001:db8:1::1/64, and R2 is the next-hop. Also configure a default IPv6 route toward R2.

Network Topology
G0/02001:db8:1::1/64G0/02001:db8:1::2/64G0/12001:db8:2::1/64R1R2internal

Hints

  • The default IPv6 route uses the prefix ::/0.
  • The next-hop address must be reachable via a directly connected interface.
  • No need to create static routes for directly connected networks.
A.ipv6 route ::/0 2001:db8:1::2
B.ipv6 route 2001:db8:1::/64 2001:db8:1::2
C.ipv6 route ::/0 g0/0
D.ipv6 route 2001:db8:1::2/128 g0/0
AnswerA
solution
! R1
ipv6 route ::/0 2001:db8:1::2

Why this answer

A default IPv6 static route with prefix ::/0 points to the next-hop 2001:db8:1::2, which correctly forwards all traffic not in the local routing table to R2 for Internet reachability. Option B is wrong because it creates a static route for the directly connected network 2001:db8:1::/64, which is already in the routing table and unnecessary. Option C fails because on Ethernet interfaces, a static route must specify a next-hop IP address, not just an exit interface.

Option D is incorrect because it creates a host route to 2001:db8:1::2, which is a directly connected address, and does not provide a default route.

Exam trap

Be careful to distinguish between a default route (::/0) and a specific route. Also, remember that on Ethernet interfaces, static routes must specify a next-hop IP address, not just an exit interface. Directly connected networks do not require static routes.

Why the other options are wrong

B

Creates a static route for a directly connected network that is already in the routing table, which is unnecessary.

C

On Ethernet interfaces, a static route must specify a next-hop IP address; specifying only an exit interface does not work for multi-access networks.

D

Creates a host route for the next-hop address itself, which is directly connected and already reachable, and does not provide a default route.

Why candidates pick the wrong answer

B

Candidates might think they need to route traffic to the next-hop network explicitly, but directly connected networks are automatically in the routing table.

C

Candidates may recall that static routes can use an exit interface, but they forget that this is only appropriate for point-to-point links (e.g., serial) or when the next-hop is implicitly known.

D

Candidates might think they need to define a route to the next-hop before using it, but the next-hop is already reachable via the connected route. They confuse the need for a default route with a route to the next-hop.

1025
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure PAT (Port Address Translation) on a Cisco IOS-XE router and describe the translation process for an outbound packet.

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

For PAT configuration on a Cisco IOS-XE router, the correct order is: first enter global configuration mode (configure terminal), then define inside and outside interfaces (ip nat inside / ip nat outside under interface configuration), then create the global address pool (ip nat pool), and finally enable PAT with overload (ip nat inside source list ... pool ... overload). This sequence matches only option A. Option B is incorrect because creating the pool must be done after entering global configuration mode, not before.

Option C is incorrect because marking interfaces must be done from global configuration mode, and enabling PAT requires a pool to exist. Option D is incorrect because enabling PAT without a pool will fail, and marking interfaces must be done before enabling PAT.

Exam trap

Candidates often confuse the order of steps, especially thinking that creating the pool or marking interfaces can be done before entering global configuration mode. Remember: you must always be in global configuration mode before issuing any configuration commands. Also, the global address pool must be created before it can be referenced in the ip nat inside source list overload command.

Why candidates pick the wrong answer

B

Candidates might think that creating the pool is the first step because it defines the addresses, but they forget that you need to be in configuration mode first.

C

Candidates might think that marking interfaces is the first step because it defines the NAT boundaries, but they overlook the need to be in configuration mode first.

D

Candidates might think that creating the pool and enabling PAT are the core steps and that interface marking can be done later, but the order matters for proper operation.

1026
MCQhard

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

A.192.168.20.159
B.192.168.20.191
C.192.168.20.192
D.192.168.20.255
AnswerB

192.168.20.191 is the broadcast address for the 192.168.20.128/26 subnet. A /26 prefix leaves 6 host bits (32-26=6), yielding 2^6=64 addresses per subnet. Starting at network address .128, the valid addresses run from .129 through .190, and .191 is the final address (broadcast) before the next subnet begins at .192.

Why this answer

A /26 subnet uses blocks of 64 addresses. In plain language, the block that starts at 192.168.20.128 runs through 192.168.20.191. The first address in that block is the network address, and the last address is the broadcast address. That means the broadcast address is 192.168.20.191.

This is a standard subnetting calculation. Once the block size is identified, the broadcast address is simply the last address in the block.

Exam trap

Be careful not to confuse the broadcast address with the first address of the next subnet or with the broadcast address of a different subnet mask.

Why the other options are wrong

A

Option A (192.168.20.159) is incorrect because the broadcast address for the subnet 192.168.20.128/26 is 192.168.20.191, calculated as the highest address in the subnet range from 192.168.20.128 to 192.168.20.191.

C

The option C, 192.168.20.192, is incorrect because it falls outside the range of the subnet defined by 192.168.20.128/26, which has a valid broadcast address of 192.168.20.191.

D

The broadcast address for the subnet 192.168.20.128/26 is 192.168.20.191, not 192.168.20.255. The address 192.168.20.255 is the broadcast address for the entire 192.168.20.0/24 network, which is not relevant to the specified subnet.

When would these options actually be correct?

A

If the question specified a subnet mask of /25 instead of /26, the network address would be 192.168.20.128 and the broadcast address would then be 192.168.20.159, making this option correct.

C

If the question specified a different subnet, such as 192.168.20.192/26, then option C would be the correct broadcast address for that subnet, as it would encompass the range from 192.168.20.192 to 192.168.20.255.

D

If the question asked for the broadcast address of the entire 192.168.20.0/24 network instead of the specific /26 subnet, then 192.168.20.255 would be the correct answer, as it serves as the broadcast address for that larger subnet.

Why candidates pick the wrong answer

A

Candidates may choose this option due to confusion between subnet ranges, mistakenly calculating the broadcast address by incorrectly interpreting the subnet mask or misaligning the address range.

C

Candidates might choose this option due to confusion between the subnet address and the broadcast address, especially if they miscalculate the range or overlook the CIDR notation.

D

Candidates may choose this option due to familiarity with the concept of broadcast addresses, often associating the highest address in a subnet with the broadcast address without considering the specific subnet mask provided.

1027
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure BPDU Guard, Loop Guard, and Root Guard 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
6Step 6
7Step 7

Why this order

The correct order starts by entering global configuration mode, then globally enabling PortFast on all access ports to allow immediate transition to forwarding state. BPDU Guard is then enabled globally on all PortFast-enabled ports to protect against unauthorized switches. Next, Loop Guard is enabled globally to prevent loops from unidirectional links.

Afterwards, the specific uplink interface is selected and Root Guard is applied to prevent a rogue switch from becoming the root bridge. This sequence follows Cisco best practices: apply fast convergence first, then protect the edge with BPDU Guard, apply loop prevention globally, and finally secure core links with Root Guard.

1028
MCQmedium

A host at 192.168.50.10/24 needs to send traffic to 192.168.60.20. Which MAC address will it normally place in the Ethernet destination field for the first frame?

A.The MAC address of the remote host at 192.168.60.20
B.The broadcast MAC address only
C.The MAC address of its configured default gateway
D.Its own source MAC address
AnswerC

When a host must send traffic to an IP address outside its local subnet (like 192.168.60.x from 192.168.50.0/24), it cannot resolve that remote IP to a MAC address via ARP, since ARP is confined to the local broadcast domain. Instead, the host looks up its routing table, identifies the configured default gateway as the next hop, and ARPs for that gateway's IP address to obtain its MAC. The resulting Ethernet frame then uses the gateway's MAC as the destination L2 address, while the destination IP remains the remote host's address, relying on the router to perform Layer 3 forwarding.

Why this answer

When a host wants to send traffic to a different IP subnet, it does not send the frame directly to the remote device’s MAC address. In plain language, the host knows the destination IP is off its local network, so it hands the traffic to the local router. That means the Ethernet frame is addressed to the default gateway’s MAC address, while the IP packet inside still carries the final remote IP destination.

A host uses ARP to learn MAC addresses on its own LAN. Since the remote host is not local, the sender does not ARP for the remote host’s MAC. Instead, it ARPs for the gateway interface on the same subnet.

Exam trap

A frequent exam trap is selecting the remote host’s MAC address as the Ethernet destination for off-subnet traffic. This is incorrect because ARP requests cannot resolve MAC addresses beyond the local subnet. Candidates may confuse IP routing with MAC addressing and assume direct frame delivery to the remote device.

The trap lies in overlooking the default gateway’s role as the local next-hop device that receives frames destined for remote IPs. Remember, the host always sends the frame to the gateway’s MAC, not the remote host’s MAC, when the destination is outside the local subnet.

Why the other options are wrong

A

Incorrect because the remote host’s MAC address is not known to the sender and cannot be resolved via ARP across subnets. The host must send to the gateway’s MAC instead.

B

Incorrect because broadcast MAC addresses are used only for ARP requests or broadcast traffic, not for normal unicast data frames to a specific remote IP.

D

Incorrect because a device’s own MAC address is used as the source MAC in frames it sends, never as the destination MAC.

When would these options actually be correct?

A

In a scenario where both hosts are on the same subnet (e.g., 192.168.50.0/24), a question might ask what MAC address a host would use to communicate directly with another host on the same network. In that case, the MAC address of the remote host at 192.168.60.20 would be correct.

B

In a scenario where a host is broadcasting a message to all devices on the local network segment, such as an ARP request to discover the MAC address of 192.168.60.20, the broadcast MAC address (FF:FF:FF:FF:FF:FF) would be the correct choice.

D

In a different question where a host needs to send traffic to a device on the same local network, and the question specifies that the destination is reachable directly, the host would place its own MAC address in the source field while the destination MAC would be that of the intended recipient.

Why candidates pick the wrong answer

A

Candidates may choose this option due to a misunderstanding of MAC address resolution, thinking that the destination MAC address is always needed for any communication, regardless of subnetting.

B

Candidates might choose this option because they recall that broadcast messages are used for network discovery and may confuse it with the need to reach a host outside the local subnet.

D

Candidates may choose this option because they might confuse the source MAC address with the destination MAC address, thinking that the host would use its own address in the Ethernet frame for communication.

1029
MCQhard

Refer to the exhibit. A network engineer is troubleshooting a missing route on R1. The router R3 is configured to advertise network 192.168.30.0/24 via OSPF, but the route is not present in the OSPF routing table of R1 when issuing the show ip route ospf command. What is the most likely cause?

A.R3 has not enabled OSPF on the network 192.168.30.0/24 using the network command.
B.R3 has passive-interface default configured and has not issued the no passive-interface command on the interface facing the OSPF neighbor.
C.R1 has an inbound ACL applied to GigabitEthernet0/1 that blocks OSPF multicast traffic to 224.0.0.5 and 224.0.0.6.
D.R3's OSPF router ID is duplicated with another OSPF router, causing the SPF algorithm to drop routes.
AnswerB

Passive-interface default suppresses OSPF hello packets on all interfaces unless explicitly enabled. Without hellos, an adjacency cannot form, so R1 never learns the 192.168.30.0/24 route. The exhibit shows OSPF working with another neighbor, confirming the problem is isolated to R3’s interface configuration.

Why this answer

R3 has passive-interface default configured, which makes all interfaces passive by default, preventing OSPF hello packets from being sent. Without the no passive-interface command on the interface facing R1, R3 cannot form an OSPF adjacency, so R1 never learns the 192.168.30.0/24 route. This is a common misconfiguration when using passive-interface default to suppress OSPF on non-neighbor interfaces.

Exam trap

Cisco often tests the passive-interface default behavior where candidates assume that configuring OSPF with a network statement is sufficient to form adjacencies, overlooking that passive-interface default silently blocks hello packets on all interfaces unless explicitly overridden.

Why the other options are wrong

A

The question says R3 advertises the network via OSPF; a missing network command would contradict that, so the failure must be in adjacency formation.

C

The presence of other OSPF routes on the same interface disproves a blanket multicast ACL; the issue is specific to R3’s adjacency.

D

A duplicate router ID could prevent adjacency, but the scenario’s focus on passive-interface default provides a more common and direct cause for a total lack of adjacency when OSPF is correctly configured on the network.

1030
MCQhard

Refer to the exhibit. A network administrator is troubleshooting connectivity issues for hosts on VLAN 50 on SW1. The hosts on VLAN 50 cannot reach any devices outside SW1, even though the trunk link between SW1 and SW2 is up. The administrator issues the 'show interfaces GigabitEthernet0/1 trunk' command on SW1. Based on the output, what is the most likely cause of the issue?

A.The native VLAN on the trunk is misconfigured, causing VLAN 50 traffic to be dropped.
B.The trunk is operating in access mode instead of trunk mode, preventing VLAN 50 traffic.
C.VLAN 50 is not in the allowed VLAN list on the trunk.
D.Spanning tree protocol has blocked the trunk port for VLAN 50, isolating the hosts.
AnswerC

The exhibit's 'Vlans allowed on trunk' line explicitly lists '1-49,60-4094', which omits VLAN 50. This configured allowed list filters which VLANs can traverse the trunk; any VLAN not listed is blocked, even if it is defined on the switch. The absence of VLAN 50 from the allowed list means its frames are dropped at the trunk interface, isolating hosts in VLAN 50 from other switches. This is the exact administrative misconfiguration causing the problem.

Why this answer

The 'show interfaces GigabitEthernet0/1 trunk' output would list the allowed VLANs on the trunk. If VLAN 50 is not included in the allowed VLAN list, traffic from VLAN 50 will be dropped at the trunk, preventing hosts on SW1 from reaching devices outside SW1. This is the most likely cause because the trunk is up but VLAN 50 traffic is not forwarded.

Exam trap

Cisco often tests the distinction between native VLAN misconfiguration and allowed VLAN list misconfiguration, where candidates mistakenly attribute all trunk issues to native VLAN mismatches rather than checking the allowed VLAN list.

Why the other options are wrong

A

The assumption that a native VLAN mismatch can drop tagged VLAN traffic is a common misunderstanding.

B

Misreading the output may lead to believing the trunk is not in trunking mode.

D

Confusing spanning tree blocking with allowed VLAN filtering; the output shows no block state, only absence of the VLAN.

1031
PBQmedium

You are connected to the console of SW1. The network administrator reports that a workstation connected to interface FastEthernet0/1 cannot communicate with the rest of the network. The workstation is configured for VLAN 10, but the interface is in VLAN 1.

Hints

  • Use 'show vlan brief' to see VLAN assignments.
  • The interface is currently in VLAN 1.
  • Change the access VLAN to 10.
A.Configure the interface as a trunk port.
B.Configure the interface as an access port and assign it to VLAN 10.
C.Configure the interface as a trunk port and allow VLAN 10.
D.Configure the interface as a dynamic desirable port.
AnswerB
solution
! SW1
interface FastEthernet0/1
switchport access vlan 10

Why this answer

The port was in VLAN 1 instead of VLAN 10. By configuring 'switchport access vlan 10', the workstation is now in the correct VLAN and can communicate with the rest of the network.

Exam trap

This question tests your understanding of access ports versus trunk ports and how to assign a VLAN to an access port. A common trap is to think that trunking is needed to carry VLAN traffic, but for end devices, access ports are used. Remember that 'switchport access vlan' is the command to assign a VLAN to an access port.

Why the other options are wrong

A

Trunk ports are used to carry multiple VLANs between switches, not to assign a single workstation to a specific VLAN.

C

Trunk ports are designed to carry multiple VLANs and are typically used between switches, not for end-user devices.

D

DTP modes control whether a port becomes a trunk or remains an access port; they do not change the access VLAN.

Why candidates pick the wrong answer

A

Candidates might think that because the workstation is in VLAN 10, the port needs to be a trunk to carry that VLAN, but access ports are used for end devices.

C

Candidates might think that allowing VLAN 10 on a trunk would let the workstation communicate, but the workstation is an end device that expects an access port.

D

Candidates might confuse DTP modes with VLAN assignment, thinking that 'dynamic desirable' will automatically put the port in the correct VLAN.

1032
MCQhard

Refer to the exhibit. An administrator is troubleshooting connectivity from a branch router R1 to the internet. A ping to 8.8.8.8 from R1 fails. The output of the show ip route command is shown. What is the most likely cause?

A.The default route is missing from the routing table.
B.The next-hop IP address for the default route is not reachable.
C.The static route has an incorrect administrative distance.
D.The ip routing process has not been enabled.
AnswerB

The default route via 203.0.113.1 is present, but the routing table contains no connected or static route to reach 203.0.113.1. Without a route to the next-hop, the default route cannot be used, causing the ping failure.

Why this answer

The ping to 8.8.8.8 fails because the default route (0.0.0.0/0) points to a next-hop IP address that is not reachable. The routing table shows the default route is present, but if the next-hop address is not in the routing table via a connected or static route, the router cannot resolve the Layer 2 adjacency and will not forward packets. This is confirmed by the fact that the default route exists but the ping fails, indicating a reachability issue with the next hop.

Exam trap

Cisco often tests the misconception that a missing default route is the only reason for internet connectivity failure, but the trap here is that the default route is present yet the next-hop is unreachable, which candidates overlook because they focus solely on the existence of the route rather than its reachability.

Why the other options are wrong

A

Candidates may misinterpret a failed ping as indicating no default route exists, overlooking that the route is present but unusable.

C

Candidates may think a higher AD is blocking the route, but the AD is standard and not the issue.

D

A common troubleshooting step is to verify ip routing, but the exhibit clearly shows an active routing table.

1033
MCQmedium

Why is SSH preferred over Telnet for remote device administration?

A.SSH uses less bandwidth because it removes the TCP header
B.SSH encrypts management traffic, while Telnet sends data in clear text
C.SSH works only on console ports, which are more secure
D.SSH does not require user authentication
AnswerB

SSH encrypts the entire management session using protocols like AES, ensuring that usernames, passwords, and configuration commands are transmitted in ciphertext. Telnet, by contrast, sends all data in plaintext over TCP port 23, so anyone with a packet sniffer can read sensitive credentials and device output. This confidentiality makes SSH the standard for secure remote administration.

Why this answer

SSH protects credentials and management traffic by encrypting the session. Telnet does not provide encryption, so usernames, passwords, and commands can be exposed in transit.

Exam trap

Don't confuse ease of configuration or bandwidth usage with security features. Focus on the encryption aspect of SSH.

Why the other options are wrong

A

This option is incorrect because SSH does not inherently use less bandwidth than Telnet; both protocols utilize TCP, and SSH's encryption actually adds overhead, potentially increasing bandwidth usage.

C

This option is incorrect because SSH can operate over various types of connections, including console ports, but it is not limited to them. Telnet can also be used over console ports, making this statement misleading.

D

This option is incorrect because SSH does require user authentication, typically through passwords or public key authentication, which is essential for secure access. In contrast, Telnet does not enforce strong authentication mechanisms.

When would these options actually be correct?

A

In a different context, a question might ask which protocol is more efficient for low-bandwidth environments without considering security. If the question specifically states that SSH's bandwidth efficiency is being compared in a scenario where TCP header removal is a factor, then this option could be correct.

C

In a question that specifically asks about the security of console port access methods, stating that SSH works only on console ports could be correct if the context implies that SSH is the preferred method for console access due to its encryption capabilities, while Telnet is not secure.

D

In a different exam scenario, if the question asked about protocols that do not require user authentication for remote access, then this option could be correct. For example, a question about unsecured protocols might highlight that Telnet allows access without authentication, making it a valid point in that context.

Why candidates pick the wrong answer

A

Candidates may find this option appealing due to a misunderstanding of how SSH operates, mistakenly believing that its design inherently optimizes bandwidth usage compared to Telnet, especially if they focus on performance over security.

C

Candidates may be drawn to this option because they associate SSH with enhanced security and may mistakenly believe that its use is restricted to more secure environments like console ports, leading to confusion about its actual operational scope.

D

Candidates may find this option tempting due to a misunderstanding of SSH's authentication mechanisms, confusing it with other protocols that might not require authentication, leading to the assumption that SSH operates similarly.

1034
MCQmedium

A branch LAN requires 50 usable IPv4 host addresses. What is the most efficient subnet mask that provides at least 50 usable hosts?

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

A /26 prefix has 6 host bits, so 2^6 = 64 total addresses, minus 2 for network and broadcast gives 62 usable hosts. This exactly satisfies the requirement of 50 usable addresses with headroom for future growth, and is the smallest prefix that meets the need, avoiding unnecessary address waste.

Why this answer

A /26 provides 64 total addresses and 62 usable host addresses, which is the smallest subnet mask (largest prefix length) that fits 50 hosts, making it the most efficient choice.

Exam trap

Read the requirement carefully. Cisco often uses subtle wording like 'most efficient' or 'industry standard' to eliminate technically correct but non-optimal answers.

Why the other options are wrong

A

A /27 subnet provides only 30 usable host addresses, which is insufficient for the requirement of 50 usable addresses. Therefore, it does not meet the needs of the branch LAN.

C

Option C: /25 provides 126 usable addresses, which exceeds the requirement of 50 usable addresses. However, it is not the smallest prefix that meets the requirement.

D

Option D, /24, provides 256 total addresses, which exceeds the requirement of 50 usable addresses. However, it is not the smallest prefix that meets the requirement, as /26 provides 64 addresses, which is sufficient and more efficient.

When would these options actually be correct?

A

In a different scenario where a branch LAN only requires up to 30 usable IPv4 host addresses, a question could ask for the smallest prefix that meets this requirement. In that case, /27 would be the correct answer.

C

If the exam question specified a need for at least 50 usable addresses but allowed for additional addresses for future growth, then /25 would be the correct choice, as it provides ample room for expansion while still meeting the minimum requirement.

D

In a scenario where a question specifies a need for a larger subnet to accommodate future growth or additional devices, such as requiring 200 usable addresses, option D (/24) would be the correct choice. This would be appropriate if the network is expected to expand significantly.

Why candidates pick the wrong answer

A

Candidates may choose /27 due to a misunderstanding of subnetting calculations, mistakenly believing that it provides enough addresses or confusing it with a similar option that does meet the requirement.

C

Candidates may choose /25 because they misinterpret the requirement as needing a larger subnet for potential future devices, mistakenly believing that a larger prefix is always better for accommodating growth.

D

Candidates may choose option D because they recognize that /24 offers a large number of addresses and may mistakenly believe that more addresses are always better, overlooking the need for efficiency in subnetting.

1035
MCQhard

Two directly connected routers running OSPFv3 do not form an adjacency. Both interfaces have valid IPv6 addresses and can ping each other using link-local addresses. What is the most likely cause?

A.The interfaces are assigned to different OSPFv3 areas.
B.The routers need global unicast addresses before OSPFv3 can run.
C.The router IDs must be identical before adjacency can form.
D.The link-local addresses must be learned from DHCPv6.
AnswerA

In OSPFv3 (and OSPFv2), each interface belongs to exactly one area. Two routers directly connected on the same link must have that link in the same area to become neighbors; if they differ, the Hello packets are rejected because the Area ID is carried in the OSPF header, and the neighbor relationship stays down.

Why this answer

The most likely cause is an OSPFv3 area mismatch on the interface. In practical terms, OSPFv3 still requires neighbors on the same link to agree on the area assignment, just as OSPF for IPv4 does. Link-local reachability alone is not enough to form an adjacency. The protocol parameters still have to match.

This is an important IPv6 routing point because people sometimes assume that successful IPv6 ping means the routing protocol should automatically work. It does not. Adjacency depends on protocol alignment, not just basic connectivity.

Exam trap

A frequent exam trap is to assume that because two routers can ping each other using IPv6 link-local addresses, their OSPFv3 adjacency should automatically form. This mistake overlooks the critical requirement that both routers must be configured in the same OSPFv3 area. Candidates might also incorrectly believe that global unicast addresses are necessary for OSPFv3 adjacency or that router IDs must be identical.

These misconceptions lead to selecting incorrect answers, as adjacency depends on matching area IDs and unique router IDs, not on global addressing or identical IDs.

Why the other options are wrong

B

Incorrect. OSPFv3 forms adjacencies using IPv6 link-local addresses, so global unicast addresses are not mandatory for adjacency formation or neighbor discovery.

C

Incorrect. Router IDs must be unique identifiers for OSPF routers. Identical router IDs cause adjacency failure, but they do not need to be identical to form adjacency.

D

Incorrect. IPv6 link-local addresses are automatically configured on interfaces and do not require DHCPv6. OSPFv3 uses these link-local addresses for neighbor communication.

When would these options actually be correct?

B

In a different scenario where the question specifies that OSPFv3 is configured to require global unicast addresses for its operation, and the routers are only configured with link-local addresses, this option would be correct as it would prevent adjacency formation.

C

In a different scenario, if the question specified that both routers were configured with the same router ID, and that was a requirement for forming an adjacency, then this option would be correct. For example, if the question stated that the routers were misconfigured to have the same router ID, it would prevent adjacency.

D

In a different scenario where the question specifies that OSPFv3 is configured on routers that only have link-local addresses and no global unicast addresses are assigned, this option would be correct. The question could state that the routers are unable to form an OSPFv3 adjacency due to the absence of global unicast addresses, which are necessary for routing beyond the local link.

Why candidates pick the wrong answer

B

Candidates may choose this option due to a common misconception that OSPF requires global unicast addresses, leading them to overlook the capabilities of OSPFv3 with link-local addresses.

C

Candidates might choose this option due to a misunderstanding of OSPFv3 requirements, conflating the need for unique router IDs with adjacency formation, as they may have encountered similar concepts in other routing protocols.

D

Candidates may choose this option due to a misunderstanding of OSPFv3 requirements, mistakenly believing that global unicast addresses are mandatory for any OSPFv3 operation, leading to confusion about the protocol's capabilities.

1036
PBQhard

You are connected to R1. The link between R1 and R2 is down. The output of 'show interfaces gigabitEthernet0/0' on R1 shows: 'GigabitEthernet0/0 is administratively down, line protocol is down (disabled)', with IP address 203.0.113.1/30, MTU 1500, and no input/output errors. Determine the root cause and configure the necessary fix to bring the interface up and restore connectivity.

Network Topology
G0/0203.0.113.1/30G0/0203.0.113.2/30linkR1R2

Hints

  • Check the interface status: 'show interfaces' reveals administratively down.
  • The 'shutdown' command disables the interface; use 'no shutdown' to enable it.
  • After enabling, verify with 'show ip interface brief'.
A.Enter interface configuration mode for GigabitEthernet0/0 and issue the 'no shutdown' command.
B.Enter interface configuration mode and issue the 'speed 100' command to match the remote interface speed.
C.Enter interface configuration mode and issue the 'duplex full' command to force full-duplex operation.
D.Enter interface configuration mode and issue the 'no keepalive' command to disable keepalives.
AnswerA
solution
! R1
configure terminal
interface gigabitethernet0/0
no shutdown

Why this answer

The interface status 'administratively down' means the interface was manually shut down using the 'shutdown' command. To bring it up, you must enter interface configuration mode and issue 'no shutdown', which administratively enables the interface. The other options are incorrect: setting speed to 100 Mbps or forcing full-duplex will not fix an administratively down state, and disabling keepalives is unrelated to the interface being disabled.

Exam trap

Candidates often miss the 'administratively down' keyword in show interfaces output and instead look for speed/duplex mismatches; always read the interface status first.

Why the other options are wrong

B

A speed mismatch would show 'up, line protocol down' and possibly increased input errors, but the interface here is 'administratively down'—manually disabled.

C

A duplex mismatch would cause late collisions or CRC errors, not an 'administratively down' status, which indicates a shutdown state.

D

Disabling keepalives has no effect on 'administratively down' because the interface is disabled at the administrative level, not because of a keepalive failure.

Why candidates pick the wrong answer

B

Candidates might think a speed mismatch is the cause because it is a common layer 1 issue, but the output clearly shows 'administratively down', which is a layer 2 administrative state.

C

Candidates may confuse 'line protocol is down' with a duplex mismatch, but the 'administratively down' keyword clearly indicates the interface was manually disabled.

D

Candidates might think keepalive mismatch is the problem because it is a common cause of line protocol down, but the 'administratively down' state is distinct and indicates a shutdown command.

1037
PBQhard

You are connected to R1 via console. Configure OSPFv3 for IPv6 on R1 and R2 so that IPv6 loopback interfaces on both routers can communicate. R1's GigabitEthernet0/0 and R2's GigabitEthernet0/1 are directly connected. Ensure OSPFv3 is enabled on the correct interfaces and verify neighbors and routes.

Network Topology
G0/02001:db8:12::1/64G0/12001:db8:12::2/64linkR1R2

Hints

  • OSPFv3 must be enabled per-interface, not globally.
  • Use the same OSPFv3 process ID and area on both routers.
  • Check which interfaces are physically connected between the routers.
A.Enable OSPFv3 on R1's GigabitEthernet0/0 and Loopback0, and on R2's GigabitEthernet0/1 and Loopback0.
B.Enable OSPFv3 only on the loopback interfaces of both routers.
C.Enable OSPFv3 on R1's GigabitEthernet0/0 and R2's GigabitEthernet0/1 only, without loopbacks.
D.Enable OSPFv3 on R1's Loopback0 and R2's GigabitEthernet0/1 only.
AnswerA
solution
! R1
interface GigabitEthernet0/0
ipv6 ospf 1 area 0
interface Loopback0
ipv6 ospf 1 area 0

! R2
interface GigabitEthernet0/1
ipv6 ospf 1 area 0
interface Loopback0
ipv6 ospf 1 area 0

Why this answer

The issue is that OSPFv3 is not enabled on the interfaces. On R1, OSPFv3 must be enabled on GigabitEthernet0/0 (the link to R2) and Loopback0 (to advertise the loopback). On R2, OSPFv3 must be enabled on GigabitEthernet0/1 (the link to R1) and Loopback0.

After enabling OSPFv3 on the correct interfaces, the neighbor adjacency forms and routes are exchanged.

Exam trap

A common trap is to enable OSPFv3 only on the link interfaces or only on the loopbacks. Remember that OSPFv3 must be enabled on every interface that needs to be advertised or that participates in neighbor discovery. Also, note that OSPFv3 uses 'ipv6 ospf <process-id> area <area-id>' under the interface, not the network statement used in OSPFv2.

Why the other options are wrong

B

OSPFv3 requires the link interface to be enabled to form neighbors; loopback-only configuration results in no neighbor relationship.

C

OSPFv3 must be enabled on the loopback interfaces to advertise their prefixes; otherwise, they remain unknown to the neighbor.

D

Both routers must have OSPFv3 enabled on the link interface to form an adjacency, and both loopbacks must be enabled to advertise their prefixes.

Why candidates pick the wrong answer

B

Candidates may think that since loopbacks are the endpoints, enabling OSPFv3 only on them is sufficient, ignoring the need for adjacency on the transit link.

C

Candidates might focus only on forming the neighbor adjacency and forget that the loopback prefixes need to be explicitly advertised.

D

Candidates may incorrectly think that enabling OSPFv3 on one side of the link is enough, or they may mix up which interfaces need configuration.

1038
MCQhard

A switch port connected to an end host is configured with both PortFast and BPDU Guard. What is the most likely outcome if a small switch is connected there and starts sending BPDUs?

A.The port is error-disabled by BPDU Guard.
B.The port automatically becomes the root port.
C.The port converts into a trunk for the attached switch.
D.The port ignores the BPDU because PortFast disables STP entirely.
AnswerA

This is correct because BPDU Guard disables the edge port when a BPDU is received.

Why this answer

BPDU Guard places the port into an error-disabled state upon receiving a BPDU, because PortFast defines the port as an edge port that should never receive BPDUs. Option B is incorrect because receiving a BPDU does not automatically make a port a root port; root port selection depends on bridge ID and path cost, and BPDU Guard prevents further STP processing by disabling the port. Option C is incorrect because a port cannot convert to a trunk solely by receiving a BPDU; trunking requires manual configuration or Dynamic Trunking Protocol (DTP).

Option D is incorrect because PortFast does not disable STP entirely; it only speeds up initial convergence, and BPDU Guard actively responds to BPDUs by error-disabling the port.

Exam trap

Remember, BPDU Guard is about protection, not ignoring or processing BPDUs. It disables the port to prevent loops.

Why the other options are wrong

B

This option is wrong because a port configured with PortFast and BPDU Guard will not automatically become the root port when it receives BPDUs; instead, it will be error-disabled due to BPDU Guard's protective mechanism.

C

This option is incorrect because a port configured with PortFast and BPDU Guard does not convert to a trunk when receiving BPDUs; instead, BPDU Guard will disable the port to prevent potential loops.

D

This option is incorrect because PortFast does not disable Spanning Tree Protocol (STP) entirely; it only allows the port to transition to the forwarding state immediately without waiting for STP convergence. BPDU Guard will still take effect if BPDUs are received on a PortFast-enabled port.

When would these options actually be correct?

B

In a different scenario where a switch is configured without BPDU Guard and a port is set to participate in STP, if it receives BPDUs from a connected switch, it could potentially become the root port if it has the lowest bridge ID and path cost.

C

In a different scenario where a switch port is configured to allow trunking and is connected to another switch that is sending BPDUs, the port could be set to automatically negotiate trunking, making it a trunk port. The question would need to specify that trunking is enabled and that BPDUs are expected as part of the configuration.

D

In a different scenario where a switch is configured to disable STP entirely on a specific port, a question might ask what happens when a BPDU is received on that port. In that case, the correct answer could be that the port ignores the BPDU since STP is completely disabled.

Why candidates pick the wrong answer

B

Candidates may find this option tempting because they might confuse the behavior of STP with PortFast configurations, thinking that any BPDU received would lead to a re-evaluation of the port's role in the STP topology.

C

Candidates might be tempted by this option due to a misunderstanding of how switch port configurations work, particularly the interaction between PortFast and trunking, leading them to incorrectly assume that receiving BPDUs would trigger trunking.

D

Candidates may find this option tempting because they might confuse PortFast's functionality with STP being entirely disabled, leading them to believe that no BPDUs would be processed at all.

1039
Matchingmedium

Match each trunking or switchport term to its most accurate description.

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

Concepts
Matches

A switch link that can carry multiple VLANs

A switchport that normally belongs to one VLAN for endpoint traffic

The VLAN associated with untagged traffic on an 802.1Q trunk

The setting that restricts which VLANs a trunk may carry

Why these pairings

These terms define how switchports handle VLAN traffic in trunking environments.

Exam trap

Candidates often confuse terms like 'access port' and 'trunk port' or mistake protocols (802.1Q) and properties (native VLAN) for port types. Focus on the function: trunk ports carry multiple VLANs; access ports carry one; 802.1Q is the tagging method; native VLAN is the untagged VLAN on a trunk.

1040
MCQhard

A host is configured with 10.1.1.34/30. Which address is the broadcast address for its subnet?

A.10.1.1.31
B.10.1.1.35
C.10.1.1.32
D.10.1.1.36
AnswerB

The /30 subnet mask specified for the host 10.1.1.34 allocates two bits for host addresses. This creates a subnet containing four addresses in total. The network address for 10.1.1.34/30 is 10.1.1.32, where all host bits are zero. Consequently, the broadcast address is the last address in this subnet, where all host bits are set to one, which calculates to 10.1.1.35.

Why this answer

A /30 subnet has a block size of 4. In practical terms, the last-octet blocks are 0–3, 4–7, 8–11, and so on. Because 34 falls within the 32–35 block, the broadcast address is the last address in that block: 10.1.1.35.

This question tests whether you can identify the correct subnet block before choosing the broadcast address.

Exam trap

Ensure you correctly identify the subnet range and understand the roles of network, host, and broadcast addresses.

Why the other options are wrong

A

The address 10.1.1.31 is incorrect as a broadcast address for the subnet 10.1.1.34/30; the correct broadcast address is 10.1.1.35, derived from the subnet mask which allows for only 4 IP addresses (10.1.1.34 to 10.1.1.37).

C

The address 10.1.1.32 is not the broadcast address for the subnet 10.1.1.34/30; instead, it is the network address for the subnet, which is 10.1.1.32 to 10.1.1.35.

D

The address 10.1.1.36 is incorrect because it exceeds the valid range for a /30 subnet, which only allows for four IP addresses (two usable hosts, one network, and one broadcast). The broadcast address for the subnet 10.1.1.34/30 is 10.1.1.35.

When would these options actually be correct?

A

In a different context, if the subnet mask were /29 instead of /30, the broadcast address for the subnet 10.1.1.24/29 would be 10.1.1.31, making this option correct for that specific question.

C

If the question specified a subnet mask of /29 instead of /30, then 10.1.1.32 would be the broadcast address for the subnet 10.1.1.32/29, which ranges from 10.1.1.32 to 10.1.1.39.

D

In a different question where the subnet mask is /29 and the network address is 10.1.1.32, the broadcast address would be 10.1.1.39. In this scenario, option D (10.1.1.36) could be presented as a potential answer for a question regarding valid addresses within that subnet.

Why candidates pick the wrong answer

A

Candidates may be tempted by this option because it follows the pattern of common subnetting calculations, where the last address in a range is often mistakenly assumed to be the broadcast address without careful consideration of the subnet mask.

C

Candidates may confuse the calculation of broadcast addresses and mistakenly identify the next address after the network address as the broadcast address, especially when dealing with small subnets.

D

Candidates may choose option D due to a misunderstanding of subnetting boundaries, mistakenly believing that addresses immediately following the last usable IP might be valid broadcast addresses in different subnet configurations.

1041
MCQhard

A network technician connects a new Cisco switch to an existing access switch using a Category 5e copper patch cable. The link fails to come up, and the interface status shows 'err-disabled'. The technician checks the interface diagnostics and the running configuration. What action should the technician take to resolve the problem?

A.Replace the Category 5e cable with a Category 6 cable to support Gigabit Ethernet.
B.Configure the interface as a trunk port and disable spanning-tree BPDU guard.
C.Replace the copper SFP with a fiber SFP to increase the distance.
D.Manually set the speed and duplex to 1000 Mbps and full duplex on both switches.
AnswerB

The port is in err-disabled because bpduguard is enabled. Since this is a connection between two switches, the port should be configured as a trunk (or at least not as an access port with portfast) and bpduguard should be disabled to prevent the errdisable state.

Why this answer

The most likely reason for the err-disabled state is a spanning-tree BPDU guard violation on the access switch's port configured with PortFast. When another switch is connected, it sends BPDUs, triggering BPDU guard to error-disable the port. Configuring the interface as a trunk port and disabling BPDU guard (option B) resolves the issue by allowing BPDUs without triggering the protection.

Option A is unnecessary because Category 5e supports Gigabit Ethernet. Option C is irrelevant since the problem is not distance-related. Option D is risky because auto-negotiation is preferred and manual settings can cause mismatches.

Exam trap

Cisco often tests the misconception that err-disabled is always caused by speed/duplex mismatches or cable issues, but the trap here is that BPDU guard on a PortFast access port is a frequent and specific cause when connecting another switch.

Why the other options are wrong

A

The symptom is err-disabled, not a speed or duplex mismatch; cable type is not the issue.

C

The port is a built-in copper port, not an SFP-based interface; distance is not the issue.

D

The err-disabled state is due to BPDU guard, not speed/duplex mismatch; manual settings would not fix the root cause.

1042
Matchingeasy

Which term refers to a lightweight data-interchange format that is easy for humans to read and write, and easy for machines to parse and generate?

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

Concepts
Matches

Lightweight structured data format often used in API responses

Data modeling language for network configuration and state

Architecture style that commonly uses HTTP methods such as GET and POST

Credential or value used to authorize API requests

Why these pairings

JSON (JavaScript Object Notation) is a lightweight data-interchange format that is easy for humans to read and write, and easy for machines to parse and generate. It is commonly used in REST APIs. XML (eXtensible Markup Language) is also a data format but it is more verbose and uses tags; it is typically associated with SOAP rather than being the best match for the description given.

REST (Representational State Transfer) is an architectural style, not a data format, and SOAP (Simple Object Access Protocol) is a protocol, not a data format. Therefore, only JSON correctly matches the description of a lightweight data format.

Exam trap

The trap is confusing data formats with API protocols. Many candidates mistakenly think XML or JSON are protocols because they are used with REST/SOAP, but they are formats. Remember: formats describe data structure; protocols define communication rules.

When would these options actually be correct?

B

If the question asked 'Which data format uses tags like <name>value</name>?' or 'Which format is commonly used in SOAP web services?', then XML would be correct.

C

REST would be correct in a question asking to match API architectural styles to their characteristics, such as 'Which API style uses standard HTTP methods and is stateless?'

D

In a question asking to match API protocols to their characteristics, SOAP would be correct for 'uses XML-based messaging' or 'supports WS-Security'. For example, 'Match each API protocol to its primary messaging format: SOAP → XML'.

Why candidates pick the wrong answer

B

Candidates may confuse XML with JSON as both are data interchange formats, or they might think XML is more 'standard' and thus the correct answer.

C

Candidates often confuse REST with a data format because it is commonly used with JSON in web APIs, leading them to think it is a data format itself.

D

Candidates may confuse SOAP with a data format because it uses XML, or they might think 'API term' includes SOAP as a valid option, overlooking that JSON is the only data format listed.

1043
MCQhard

A network engineer is troubleshooting a link between two Cisco Catalyst 9300 switches that are connected via a single-mode fiber optic cable. The link is up, but the interface counters show a high number of CRC errors and frame check sequence (FCS) errors. The interface is configured for 1000 Mbps and full duplex on both ends. What is the most likely cause of these errors?

A.A speed or duplex mismatch between the two switches
B.Faulty or dirty fiber optic cable or connectors
C.Incorrect SFP+ module type inserted in the switch
D.Excessive cable length beyond the distance limit
AnswerB

The diagnostic optical monitoring (DOM) reports a receive power of -20 dBm on SwitchA, which falls well below the typical receive sensitivity range for 10GBASE-LR modules (often around -14.4 dBm for 10 Gbps, though less sensitive for 1 Gbps). Such excessive optical loss is usually caused by contamination on the fiber end faces, damaged fiber, or poor splices/connectors. Since the transmit power on the remote side may be within normal range, the large difference points to a physical-layer attenuation rather than a module failure.

Why this answer

CRC and FCS errors indicate corruption at the data-link layer, typically caused by physical-layer issues such as signal degradation. Since the link is up and both ends are configured for 1000 Mbps full duplex, a speed/duplex mismatch is ruled out. Dirty or faulty single-mode fiber connectors or the cable itself can introduce optical signal loss or reflections, leading to bit errors that manifest as CRC/FCS errors.

Exam trap

Cisco often tests the distinction between CRC errors (physical-layer signal integrity) and duplex mismatch symptoms (late collisions, runts), leading candidates to incorrectly choose a speed/duplex mismatch when the interface counters show CRC errors.

Why the other options are wrong

A

The exhibit confirms consistent speed and duplex settings.

C

The modules are correctly identified and match the fiber type.

D

There is no evidence of the cable length in the exhibit, and the low power is more indicative of a physical fault rather than simply exceeding distance limits.

1044
Multi-Selectmedium

Which two statements accurately describe common uses of NTP in network operations?

Select 2 answers
A.It helps align device clocks across the network.
B.It improves the reliability of event timelines and log correlation.
C.It replaces the need for Syslog.
D.It assigns IP addresses to hosts.
E.It provides WLAN encryption.
AnswersA, B

This is correct because clock synchronization is NTP's core role.

Why this answer

NTP is widely used to keep device clocks aligned, which improves the reliability of event timelines and log correlation because timestamps from different systems can be compared meaningfully. NTP does not replace Syslog, assign IP addresses (DHCP), or provide WLAN encryption; those are separate functions. Its sole purpose is time synchronization.

Exam trap

A frequent exam trap is assuming that NTP performs functions beyond time synchronization, such as replacing Syslog or assigning IP addresses. Candidates might incorrectly select options suggesting NTP handles logging or DHCP tasks because these services are all related to network management. However, NTP’s sole purpose is to synchronize device clocks.

Confusing NTP with DHCP or Syslog overlooks their distinct roles and can lead to selecting incorrect answers. Understanding that NTP supports but does not replace logging or address assignment is crucial to avoid this trap.

Why the other options are wrong

C

This option is incorrect because NTP does not replace Syslog; Syslog is responsible for logging events, while NTP only synchronizes time.

D

This option is incorrect because IP address assignment is handled by DHCP, not NTP, which only manages time synchronization.

E

This option is incorrect because NTP has no role in providing WLAN encryption; encryption is managed by wireless security protocols like WPA2 or WPA3.

When would these options actually be correct?

C

If the exam question asked about protocols that can replace or enhance logging mechanisms in a network, and if it included a context where time synchronization impacts log accuracy, then a statement about NTP replacing Syslog could be considered correct.

D

If the exam question asked about protocols used for network configuration and management, including IP address assignment, then option D could be correct in a context discussing DHCP or similar protocols that manage IP addressing.

E

If the exam question asked about protocols that provide security features for wireless networks, then option E could be correct. For example, a question might ask which protocols are used to secure WLAN communications, where encryption methods would be relevant.

Why candidates pick the wrong answer

C

Candidates might confuse the roles of NTP and Syslog due to their interrelated functions in network operations, leading them to believe that time synchronization could eliminate the need for logging protocols.

D

Candidates may confuse NTP with other network services that manage device configurations, leading them to mistakenly believe that NTP could also handle IP address assignments, especially if they are not fully aware of the distinct roles of different network protocols.

E

Candidates may confuse NTP's role in network operations with security features, leading them to mistakenly associate it with WLAN encryption due to the importance of timing in secure communications.

1045
Multi-Selectmedium

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

Select 2 answers
A.SFP transceivers are permanently installed on the switch motherboard and cannot be replaced.
B.1000BASE-SX SFP transceivers are designed for multimode fiber and typically support distances up to 550 meters.
C.Multimode fiber typically uses laser-based transmitters for long-distance transmission.
D.Single-mode fiber (SMF) with 1000BASE-LX SFP transceivers can support distances up to 5 km.
E.Single-mode fiber has a larger core diameter than multimode fiber, allowing longer distances.
AnswersB, D

1000BASE-SX uses multimode fiber with a 850 nm wavelength and supports distances up to 550 m (depending on fiber grade).

Why this answer

1000BASE-SX SFP transceivers are designed for multimode fiber (MMF) and use short-wavelength lasers (850 nm). Over 50/125 µm MMF, they support up to 550 meters. Option D is correct because 1000BASE-LX SFP transceivers are designed for single-mode fiber (SMF) and support distances up to 5 km according to the IEEE 802.3 standard (not 10 km, which is typically a vendor-specific LH extension).

Option A is false because SFPs are hot-swappable pluggable modules, not permanently installed. Option C is false because multimode fiber typically uses LED or VCSEL transmitters for short distances, not lasers for long-haul. Option E is false because single-mode fiber has a smaller core diameter (8-10 µm) than multimode fiber (50-62.5 µm), which reduces modal dispersion and allows longer distances.

Exam trap

Cisco often tests the misconception that multimode fiber always uses lasers for long distances, when in fact multimode fiber is optimized for shorter runs with LED or VCSEL sources, while single-mode fiber uses lasers for extended reach.

Why the other options are wrong

A

This statement is false because SFP slots are designed for modular, replaceable transceivers.

C

Laser transmitters are used in single-mode fiber for longer distances; multimode uses LED/VCSEL.

E

Single-mode fiber has a smaller core, not larger. The smaller core reduces dispersion and allows longer reach.

1046
PBQhard

You are connected to R1 via the console. R1 has two directly connected interfaces: G0/0 to R2 (IPv4 only) and G0/1 to a LAN switch (dual stack). Your task: configure IPv4 and IPv6 default routes on R1 pointing to R2 (next-hop 10.0.0.2 and 2001:db8:1::2). Also configure a floating static route to 192.0.2.0/24 via R2 with an administrative distance of 10 (so it is used only if the directly connected route fails). The current running-config shows an incorrect static route that causes recursive routing failure. Identify and fix the issue.

Network Topology
G0/010.0.0.1/30G0/010.0.0.2/30linkG0/1192.168.1.1/24R2R1switchLAN

Hints

  • Check the next-hop IP in the static route to 192.0.2.0/24 — is it a directly connected neighbor?
  • For a floating static route, the administrative distance must be higher than the primary route's AD.
  • Use 'show ip route 192.0.2.0' to see if the route is flagged as 'recursive failure'.
A.Remove the incorrect static route 192.0.2.0 255.255.255.0 10.0.0.1 and add ip route 192.0.2.0 255.255.255.0 10.0.0.2 10
B.Remove the incorrect static route 192.0.2.0 255.255.255.0 10.0.0.1 and add ip route 192.0.2.0 255.255.255.0 10.0.0.2 1
C.Keep the existing static route and add ip route 192.0.2.0 255.255.255.0 10.0.0.2 10
D.Remove the incorrect static route 192.0.2.0 255.255.255.0 10.0.0.1 and add ip route 192.0.2.0 255.255.255.0 g0/0
AnswerA
solution
! R1
no ip route 192.0.2.0 255.255.255.0 10.0.0.1
ip route 192.0.2.0 255.255.255.0 10.0.0.2 10

Why this answer

The static route to 192.0.2.0/24 uses next-hop 10.0.0.1, which is R1's own interface IP, not R2's. This causes recursive routing failure because the router tries to reach itself. The correct next-hop should be 10.0.0.2 (R2's G0/0 IP).

Additionally, the floating static route must have a higher AD (10) so it is less preferred than the directly connected route (AD 0). Remove the incorrect route and add the correct floating static route with AD 10.

Exam trap

Watch out for recursive routing failures caused by using the router's own interface IP as the next-hop. Also, remember that floating static routes require a higher administrative distance than the primary route to act as a backup.

Why the other options are wrong

B

The specific factual error: The AD of a floating static route must be higher than the primary route's AD to serve as a backup. Here AD 1 is lower than 0? Actually directly connected routes have AD 0, so AD 1 is higher than 0, but the question states the floating static route should be used only if the directly connected route fails, so AD must be higher than 0. AD 1 is higher than 0, so it would still be a backup? Wait, the primary route is directly connected (AD 0).

A floating static route with AD 1 would be less preferred than AD 0, so it would only be used if the directly connected route fails. That is correct behavior. However, the question says 'with an administrative distance of 10' so AD 1 is not 10.

The error is that the AD is not 10 as specified. Also, the explanation in the stem says 'the floating static route must have a higher AD (10) so it is less preferred than the directly connected route (AD 0).' Actually AD 1 is also higher than 0, so it would also be less preferred. But the question explicitly asks for AD 10.

So the answer is wrong because it uses AD 1 instead of 10.

C

The specific factual error: The incorrect static route remains in the routing table, causing recursive routing failure. The router will still try to resolve the next-hop 10.0.0.1, which is its own interface, leading to a loop.

D

The specific factual error: The route does not have an administrative distance of 10, and using an exit interface instead of a next-hop IP is not the intended configuration. Also, the route would be installed with default AD 1, not 10.

Why candidates pick the wrong answer

B

Candidates might think any AD higher than 0 works, but the question specifies AD 10, so using AD 1 is not compliant with the requirement.

C

Candidates might think that adding a more specific route (with AD 10) will override the existing route, but since both routes have the same prefix and mask, the one with lower AD is preferred. The existing route has AD 1 (default) and the new route has AD 10, so the existing route remains active and causes failure.

D

Candidates might think that using an exit interface avoids recursive lookup, but the question explicitly requires a floating static route with AD 10, and the next-hop IP is specified as 10.0.0.2.

1047
PBQmedium

You are connected to R1 via the console. R1 is a Cisco ISR 4321 router running IOS-XE. The network manager wants to monitor interface utilization changes. Use RESTCONF to retrieve the operational state of GigabitEthernet0/0/0 on R1. The device has RESTCONF enabled with username 'admin' and password 'cisco'. The management IP is 192.168.1.1.

Hints

  • RESTCONF uses HTTPS on port 443 by default.
  • The interface name in the URI must be URL-encoded (e.g., '/' becomes '%2F').
  • Use the 'Accept' header to request JSON data.
A.curl -X GET -u admin:cisco https://192.168.1.1/restconf/data/ietf-interfaces:interfaces-state/interface=GigabitEthernet0%2F0%2F0
B.curl -X GET -u admin:cisco https://192.168.1.1/restconf/data/ietf-interfaces:interfaces/GigabitEthernet0/0/0
C.curl -X POST -u admin:cisco https://192.168.1.1/restconf/data/ietf-interfaces:interfaces/interface=GigabitEthernet0%2F0%2F0
D.curl -X GET -u admin:cisco https://192.168.1.1/restconf/data/Cisco-IOS-XE-interfaces-oper:interfaces/GigabitEthernet0/0/0
AnswerA
solution
! R1
curl -k -X GET https://192.168.1.1/restconf/data/ietf-interfaces:interfaces/interface=GigabitEthernet0%2F0%2F0 -u admin:cisco -H "Accept: application/yang-data+json"

Why this answer

RESTCONF uses GET to retrieve data. To retrieve operational state (including interface counters), the path must lead to the `interfaces-state` container, not `interfaces`. The correct YANG data model for operational interface state is `ietf-interfaces:interfaces-state`, and the interface name must be URL-encoded to replace slashes with `%2F`.

Option C uses POST, which is wrong. Option B lacks URL encoding and uses the config container. Option D uses a Cisco-specific module and unencoded slashes, and is not the standard operational state path.

Exam trap

The most common mistake is using the `ietf-interfaces:interfaces` configuration container instead of the `ietf-interfaces:interfaces-state` operational state container, causing retrieval of the running configuration rather than live interface counters and utilization.

Why the other options are wrong

B

The request uses unencoded slashes in the interface name and the configuration container `interfaces`, not `interfaces-state`, so it will not retrieve operational state.

C

RESTCONF uses GET for retrieval; POST is used to create new resources or invoke operations, not to read operational data.

D

This uses a Cisco-IOS-XE-specific module and unencoded slashes, while the task expects the standard ietf-interfaces operational state path.

Why candidates pick the wrong answer

B

Candidates might think that appending the interface name directly after 'interfaces/' is sufficient, similar to how some other APIs work.

C

Candidates may confuse POST with GET, especially if they are more familiar with other REST APIs where POST is used for queries.

D

Candidates might think that using a Cisco-specific YANG module is correct, and they may forget to URL-encode the interface name.

1048
MCQhard

Refer to the exhibit. A network administrator connects an IP phone to interface GigabitEthernet1/0/1 on a Cisco Catalyst switch. The PC connected through the phone works normally on the data VLAN, but the phone cannot obtain an IP address and fails to register with the call server. Which action will resolve the problem?

A.Configure 'switchport trunk allowed vlan 10,20' on interface Gi1/0/1 and change the switchport mode to trunk.
B.Add 'switchport voice vlan 20' on interface GigabitEthernet1/0/1.
C.Issue 'switchport access vlan 20' and 'switchport voice vlan 10' on interface Gi1/0/1.
D.Enable 'switchport port-security mac-address sticky' on the interface and manually add the phone’s MAC address to the access VLAN.
AnswerB

The 'switchport voice vlan 20' command is the correct Cisco IOS configuration for a voice-enabled access port. It leaves VLAN 10 as the default access VLAN for PC data (untagged) while defining VLAN 20 as the voice VLAN for the IP phone. The phone discovers VLAN 20 via CDP or LLDP and tags its voice frames with 802.1Q, keeping voice and data in separate Layer 2 domains and subnets.

Why this answer

The PC works on the data VLAN, but the phone cannot obtain an IP address, indicating the phone is not receiving the correct VLAN assignment. The phone should be placed in the voice VLAN (VLAN 20) using the 'switchport voice vlan 20' command, which allows the switch to tag the phone's traffic with VLAN 20 via CDP/LLDP, enabling it to get an IP from the voice VLAN DHCP server.

Exam trap

Cisco often tests the distinction between 'switchport access vlan' (for data) and 'switchport voice vlan' (for voice), and the trap here is that candidates may confuse which VLAN is assigned to which device, or incorrectly think trunking is required for a phone connection.

Why the other options are wrong

A

A trunk port does not provide the voice VLAN advertisement mechanism to the phone; the PC would need to send tagged frames, which typical endpoint NICs do not do.

C

The phone requires access to VLAN 20 for voice services, and the PC must remain in VLAN 10 for data; this configuration does the opposite, failing to meet the requirement.

D

The phone still cannot learn the voice VLAN; port security does not provide a DHCP address or make the switch advertise VLAN 20 to the phone.

1049
MCQhard

A user reports that they cannot access the company's internal web server at 'intranet.company.local' from their workstation. The workstation can ping the web server's IP address 192.168.10.50 successfully, and other internal services like email (mail.company.local) are reachable. Which DNS record issue is most likely causing this problem?

A.Add a CNAME record that aliases 'intranet.company.local' to 'webserver.company.local'
B.Add an A record mapping 'intranet.company.local' to IP address 192.168.10.50
C.Verify the PTR record for 192.168.10.50 points to 'intranet.company.local'
D.Check the NS records for the 'company.local' zone to ensure proper delegation
AnswerB

The nslookup output confirms that a forward lookup for 'intranet.company.local' returns no A record, even though the target IP 192.168.10.50 is reachable on the network. Creating an A record in the company.local DNS zone maps the hostname to that IP address, allowing clients to resolve the name to the correct destination. Because the IP is already valid and no CNAME or other record exists, a direct A record is the minimal, correct fix.

Why this answer

The workstation can ping the web server's IP address (192.168.10.50), confirming network connectivity and that the server is online. However, the user cannot access the server by its hostname 'intranet.company.local', which indicates a DNS resolution failure. Since other internal services like email are reachable, the DNS zone is functioning, but there is no A record that maps the hostname 'intranet' to its IP address.

Adding an A record for 'intranet.company.local' pointing to 192.168.10.50 will resolve the issue.

Exam trap

Cisco often tests the distinction between forward DNS records (A/AAAA) and reverse DNS records (PTR), and candidates mistakenly choose PTR when the symptom is a forward resolution failure, confusing the direction of the lookup.

Why the other options are wrong

A

The root cause is a missing A record; a CNAME record would not resolve without an A record for the target.

C

PTR records are not used for forward name resolution; the issue is with the forward lookup zone.

D

The zone delegation is working (other records resolve), so NS records are not the cause.

1050
MCQhard

A network engineer notices that an uplink port on a distribution switch has moved to a root-inconsistent state and is blocking traffic. The port is configured with Root Guard and is connected to a new access switch. The new access switch has a lower bridge priority than the current root bridge. What is the most likely cause?

A.BPDU Guard has errdisabled the port because a BPDU was received on an access port.
B.BPDU Filter is blocking inbound BPDUs, causing the switch to fail to detect the topology change and isolate the port.
C.Root Guard has placed the port into root-inconsistent state because the new switch advertised a superior BPDU.
D.Loop Guard has detected a unidirectional link and placed the port in a blocking state to prevent a loop.
AnswerC

Root Guard is designed to prevent the port from becoming a root port. Upon receiving a superior BPDU (lower bridge ID), it places the port in root-inconsistent state, effectively blocking traffic. This directly matches the symptom described.

Why this answer

Root Guard is configured on the uplink port of the distribution switch. When the new access switch advertises a superior BPDU (lower bridge priority than the current root bridge), Root Guard places the port into a root-inconsistent state to prevent the distribution switch from accepting the new switch as the root bridge. This blocks traffic on that port to protect the spanning-tree topology.

Exam trap

Cisco often tests the distinction between Root Guard and BPDU Guard, where candidates confuse the root-inconsistent state with an errdisable state or assume any BPDU-related protection will errdisable the port.

Why the other options are wrong

A

Candidates mistakenly equate BPDU Guard with any BPDU-induced blocking, but the state 'root-inconsistent' is specific to Root Guard.

B

Candidates may think that filtering BPDUs leads to port isolation, but BPDU Filter would not trigger a protective state like root-inconsistent.

D

Candidates often confuse Loop Guard and Root Guard because both can cause inconsistent states, but Loop Guard triggers loop-inconsistent, not root-inconsistent, and is triggered by BPDU loss, not receipt of superior BPDUs.

Page 13

Page 14 of 19

Page 15